f7af990485
- previously we set the Modified state in admin panel only when wsd successfully upload the document to storage - modified state updation depends on core, it might happen that uploading is already done and successfull but we didnot get the modified state from the core which will show wrong modified status in admin panel Change-Id: I014a8f92753fc6a93b37921d0f3cdce390bef35e Signed-off-by: Rash419 <rashesh.padia@collabora.com>
237 lines
7.9 KiB
C++
237 lines
7.9 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "AdminModel.hpp"
|
|
#include "Log.hpp"
|
|
|
|
#include "net/WebSocketHandler.hpp"
|
|
#include "COOLWSD.hpp"
|
|
|
|
class Admin;
|
|
|
|
/// Handle admin client's Websocket requests & replies.
|
|
class AdminSocketHandler : public WebSocketHandler
|
|
{
|
|
public:
|
|
/// Client connection to remote admin socket
|
|
AdminSocketHandler(Admin* adminManager);
|
|
|
|
/// Connection from remote admin socket
|
|
AdminSocketHandler(Admin* adminManager,
|
|
const std::weak_ptr<StreamSocket>& socket,
|
|
const Poco::Net::HTTPRequest& request);
|
|
|
|
/// Handle the initial Admin WS upgrade request.
|
|
/// @returns true if we should give this socket to the Admin poll.
|
|
static bool handleInitialRequest(const std::weak_ptr<StreamSocket> &socket,
|
|
const Poco::Net::HTTPRequest& request);
|
|
|
|
static void subscribeAsync(const std::shared_ptr<AdminSocketHandler>& handler);
|
|
|
|
/// Process incoming websocket messages
|
|
void handleMessage(const std::vector<char> &data) override;
|
|
|
|
private:
|
|
/// Sends text frames simply to authenticated clients.
|
|
void sendTextFrame(const std::string& message);
|
|
|
|
private:
|
|
Admin* _admin;
|
|
int _sessionId;
|
|
bool _isAuthenticated;
|
|
};
|
|
|
|
class MonitorSocketHandler : public AdminSocketHandler
|
|
{
|
|
public:
|
|
MonitorSocketHandler(Admin *admin, const std::string &uri);
|
|
|
|
int getPollEvents(std::chrono::steady_clock::time_point now,
|
|
int64_t &timeoutMaxMicroS) override;
|
|
|
|
void performWrites(std::size_t capacity) override;
|
|
|
|
void onDisconnect() override;
|
|
|
|
private:
|
|
bool _connecting;
|
|
std::string _uri;
|
|
};
|
|
|
|
class MemoryStatsTask;
|
|
|
|
/// An admin command processor.
|
|
class Admin : public SocketPoll
|
|
{
|
|
Admin(const Admin &) = delete;
|
|
Admin& operator = (const Admin &) = delete;
|
|
Admin();
|
|
public:
|
|
virtual ~Admin();
|
|
|
|
static Admin& instance()
|
|
{
|
|
static Admin admin;
|
|
return admin;
|
|
}
|
|
|
|
void start();
|
|
void stop();
|
|
|
|
void startMonitors();
|
|
|
|
void updateMonitors(std::vector<std::string>& oldMonitors);
|
|
|
|
std::vector<std::string> getMonitorList();
|
|
|
|
/// Custom poll thread function
|
|
void pollingThread() override;
|
|
|
|
size_t getTotalMemoryUsage();
|
|
/// Takes into account the 'memproportion' property in config file to find the amount of memory
|
|
/// available to us.
|
|
size_t getTotalAvailableMemory() { return _totalAvailMemKb; }
|
|
size_t getTotalCpuUsage();
|
|
|
|
void modificationAlert(const std::string& dockey, pid_t pid, bool value);
|
|
|
|
void uploadedAlert(const std::string& dockey, pid_t pid, bool value);
|
|
|
|
/// Update the Admin Model.
|
|
void update(const std::string& message);
|
|
|
|
/// Calls with same pid will increment view count, if pid already exists
|
|
void addDoc(const std::string& docKey, pid_t pid, const std::string& filename,
|
|
const std::string& sessionId, const std::string& userName, const std::string& userId,
|
|
const int smapsFD, const Poco::URI& wopiSrc);
|
|
|
|
/// Decrement view count till becomes zero after which doc is removed
|
|
void rmDoc(const std::string& docKey, const std::string& sessionId);
|
|
|
|
/// Remove the document with all views. Used on termination or catastrophic failure.
|
|
void rmDoc(const std::string& docKey);
|
|
|
|
void setForKitPid(const int forKitPid) { _forKitPid = forKitPid; _model.setForKitPid(forKitPid);}
|
|
|
|
/// Callers must ensure that modelMutex is acquired
|
|
AdminModel& getModel();
|
|
|
|
unsigned getMemStatsInterval();
|
|
|
|
unsigned getCpuStatsInterval();
|
|
|
|
unsigned getNetStatsInterval();
|
|
|
|
/// Returns the log levels of wsd and forkit & kits.
|
|
std::string getChannelLogLevels();
|
|
|
|
/// Sets the specified channel's log level (wsd or forkit and kits).
|
|
void setChannelLogLevel(const std::string& channelName, std::string level);
|
|
|
|
std::string getLogLines();
|
|
|
|
void rescheduleMemTimer(unsigned interval);
|
|
|
|
void rescheduleCpuTimer(unsigned interval);
|
|
|
|
void updateLastActivityTime(const std::string& docKey);
|
|
void addBytes(const std::string& docKey, uint64_t sent, uint64_t recv);
|
|
|
|
void dumpState(std::ostream& os) const override;
|
|
|
|
const DocProcSettings& getDefDocProcSettings() const { return _defDocProcSettings; }
|
|
void setDefDocProcSettings(const DocProcSettings& docProcSettings, bool notifyKit)
|
|
{
|
|
_defDocProcSettings = docProcSettings;
|
|
_model.setDefDocProcSettings(docProcSettings);
|
|
_cleanupIntervalMs = _defDocProcSettings.getCleanupSettings().getCleanupInterval();
|
|
if (notifyKit)
|
|
notifyForkit();
|
|
}
|
|
|
|
/// Attempt a synchronous connection to a monitor with @uri @when that future comes
|
|
void scheduleMonitorConnect(const std::string &uri, std::chrono::steady_clock::time_point when);
|
|
|
|
void sendMetrics(const std::shared_ptr<StreamSocket>& socket, const std::shared_ptr<Poco::Net::HTTPResponse>& response);
|
|
|
|
void setViewLoadDuration(const std::string& docKey, const std::string& sessionId, std::chrono::milliseconds viewLoadDuration);
|
|
void setDocWopiDownloadDuration(const std::string& docKey, std::chrono::milliseconds wopiDownloadDuration);
|
|
void setDocWopiUploadDuration(const std::string& docKey, const std::chrono::milliseconds uploadDuration);
|
|
void addSegFaultCount(unsigned segFaultCount);
|
|
void addLostKitsTerminated(unsigned lostKitsTerminated);
|
|
|
|
void getMetrics(std::ostringstream &metrics);
|
|
|
|
// delete entry from _monitorSocket map
|
|
void deleteMonitorSocket(const std::string &uriWithoutParam);
|
|
|
|
private:
|
|
/// Notify Forkit of changed settings.
|
|
void notifyForkit();
|
|
|
|
/// Memory consumption has increased, start killing kits etc. till memory consumption gets back
|
|
/// under @hardModeLimit
|
|
void triggerMemoryCleanup(size_t hardModeLimit);
|
|
void notifyDocsMemDirtyChanged();
|
|
void cleanupResourceConsumingDocs();
|
|
void cleanupLostKits();
|
|
|
|
/// Round the interval up to multiples of MinStatsIntervalMs.
|
|
/// This is to avoid arbitrarily small intervals that hammer the server.
|
|
static int capAndRoundInterval(const unsigned interval)
|
|
{
|
|
const int value = std::max<int>(interval, MinStatsIntervalMs);
|
|
return ((value + MinStatsIntervalMs - 1) / MinStatsIntervalMs) * MinStatsIntervalMs;
|
|
}
|
|
|
|
/// Synchronous connection setup to remote monitoring server
|
|
void connectToMonitorSync(const std::string &uri);
|
|
|
|
private:
|
|
/// The model is accessed only during startup & in
|
|
/// the Admin Poll thread.
|
|
AdminModel _model;
|
|
int _forKitPid;
|
|
size_t _lastTotalMemory;
|
|
size_t _lastJiffies;
|
|
uint64_t _lastSentCount;
|
|
uint64_t _lastRecvCount;
|
|
size_t _totalSysMemKb;
|
|
size_t _totalAvailMemKb;
|
|
std::string _forkitLogLevel;
|
|
|
|
struct MonitorConnectRecord
|
|
{
|
|
void setWhen(std::chrono::steady_clock::time_point when) { _when = when; }
|
|
std::chrono::steady_clock::time_point getWhen() const { return _when; }
|
|
|
|
void setUri(const std::string& uri) { _uri = uri; }
|
|
std::string getUri() const { return _uri; }
|
|
|
|
private:
|
|
std::chrono::steady_clock::time_point _when;
|
|
std::string _uri;
|
|
};
|
|
std::vector<MonitorConnectRecord> _pendingConnects;
|
|
|
|
int _cpuStatsTaskIntervalMs;
|
|
int _memStatsTaskIntervalMs;
|
|
int _netStatsTaskIntervalMs;
|
|
size_t _cleanupIntervalMs;
|
|
DocProcSettings _defDocProcSettings;
|
|
|
|
// Don't update any more frequently than this since it's excessive.
|
|
static const int MinStatsIntervalMs;
|
|
static const int DefStatsIntervalMs;
|
|
|
|
// map to make sure only connection with unique monitor uri exists
|
|
std::map<std::string, std::shared_ptr<MonitorSocketHandler>> _monitorSockets;
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|