2015-12-12 13:23:44 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
2015-12-13 11:47:14 -06:00
|
|
|
#ifndef INCLUDED_LOOLCHILDPROCESSSESSION_HPP
|
|
|
|
#define INCLUDED_LOOLCHILDPROCESSSESSION_HPP
|
|
|
|
|
2016-01-10 21:52:00 -06:00
|
|
|
#include <mutex>
|
|
|
|
|
2015-12-13 11:47:14 -06:00
|
|
|
#define LOK_USE_UNSTABLE_API
|
|
|
|
#include <LibreOfficeKit/LibreOfficeKit.h>
|
2016-02-04 11:35:26 -06:00
|
|
|
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
|
2015-12-12 13:23:44 -06:00
|
|
|
|
2016-01-24 17:25:02 -06:00
|
|
|
#include <Poco/Thread.h>
|
2015-12-19 14:55:19 -06:00
|
|
|
#include <Poco/NotificationQueue.h>
|
2016-02-26 00:25:13 -06:00
|
|
|
|
|
|
|
#include "Common.hpp"
|
2015-12-12 13:23:44 -06:00
|
|
|
#include "LOOLSession.hpp"
|
|
|
|
|
2016-01-06 12:47:03 -06:00
|
|
|
// The client port number, which is changed via loolwsd args.
|
2016-04-05 08:32:10 -05:00
|
|
|
extern int ClientPortNumber;
|
2016-01-06 12:47:03 -06:00
|
|
|
|
2016-01-24 17:25:02 -06:00
|
|
|
class CallbackWorker;
|
|
|
|
|
2015-12-12 13:23:44 -06:00
|
|
|
class ChildProcessSession final : public LOOLSession
|
|
|
|
{
|
2016-01-24 14:24:11 -06:00
|
|
|
public:
|
|
|
|
class Statistics
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Statistics() :
|
|
|
|
_lastActivityTime(std::chrono::steady_clock::now())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void updateLastActivityTime()
|
|
|
|
{
|
|
|
|
_lastActivityTime = std::chrono::steady_clock::now();
|
|
|
|
}
|
|
|
|
|
|
|
|
double getInactivityMS() const
|
|
|
|
{
|
|
|
|
const auto duration = (std::chrono::steady_clock::now() - _lastActivityTime);
|
|
|
|
return std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::chrono::steady_clock::time_point _lastActivityTime;
|
|
|
|
};
|
|
|
|
|
2015-12-12 13:23:44 -06:00
|
|
|
public:
|
2015-12-13 13:25:57 -06:00
|
|
|
/// Create a new ChildProcessSession
|
2015-12-23 20:20:49 -06:00
|
|
|
/// ws The socket between master and kit (jailed).
|
2015-12-13 13:25:57 -06:00
|
|
|
/// loKit The LOKit instance.
|
|
|
|
/// loKitDocument The instance to an existing document (when opening
|
|
|
|
/// a new view) or nullptr (when first view).
|
2016-01-06 21:47:01 -06:00
|
|
|
/// jailId The JailID of the jail root directory,
|
|
|
|
// used by downloadas to construct jailed path.
|
2015-12-27 21:47:39 -06:00
|
|
|
ChildProcessSession(const std::string& id,
|
|
|
|
std::shared_ptr<Poco::Net::WebSocket> ws,
|
2015-12-13 13:25:57 -06:00
|
|
|
LibreOfficeKitDocument * loKitDocument,
|
2016-01-06 21:47:01 -06:00
|
|
|
const std::string& jailId,
|
2016-02-07 13:53:45 -06:00
|
|
|
std::function<LibreOfficeKitDocument*(const std::string&, const std::string&, const std::string&, bool)> onLoad,
|
2016-01-10 09:33:58 -06:00
|
|
|
std::function<void(const std::string&)> onUnload);
|
2015-12-12 13:23:44 -06:00
|
|
|
virtual ~ChildProcessSession();
|
|
|
|
|
2016-01-07 01:35:24 -06:00
|
|
|
virtual bool getStatus(const char *buffer, int length) override;
|
2015-12-12 13:23:44 -06:00
|
|
|
|
2016-01-07 01:35:24 -06:00
|
|
|
virtual bool getCommandValues(const char *buffer, int length, Poco::StringTokenizer& tokens) override;
|
2015-12-12 13:23:44 -06:00
|
|
|
|
|
|
|
virtual bool getPartPageRectangles(const char *buffer, int length) override;
|
|
|
|
|
2016-01-21 08:26:34 -06:00
|
|
|
virtual void disconnect(const std::string& reason = "") override;
|
|
|
|
virtual bool handleDisconnect(Poco::StringTokenizer& tokens) override;
|
|
|
|
|
2016-01-03 09:56:41 -06:00
|
|
|
int getViewId() const { return _viewId; }
|
|
|
|
|
2016-01-08 19:45:51 -06:00
|
|
|
const std::string& getDocType() const { return _docType; }
|
|
|
|
|
|
|
|
LibreOfficeKitDocument *getLoKitDocument() const { return _loKitDocument; }
|
|
|
|
|
2016-01-24 17:25:02 -06:00
|
|
|
void loKitCallback(const int nType, const char* pPayload);
|
|
|
|
|
2016-01-18 02:41:04 -06:00
|
|
|
std::unique_lock<std::recursive_mutex> getLock() { return std::unique_lock<std::recursive_mutex>(Mutex); }
|
2016-01-10 21:52:00 -06:00
|
|
|
|
2016-01-24 14:24:11 -06:00
|
|
|
const Statistics& getStatistics() const { return _stats; }
|
|
|
|
bool isInactive() const { return _stats.getInactivityMS() >= InactivityThresholdMS; }
|
|
|
|
|
2015-12-12 13:23:44 -06:00
|
|
|
protected:
|
|
|
|
virtual bool loadDocument(const char *buffer, int length, Poco::StringTokenizer& tokens) override;
|
|
|
|
|
2016-01-07 01:35:24 -06:00
|
|
|
virtual void sendTile(const char *buffer, int length, Poco::StringTokenizer& tokens) override;
|
2016-01-14 06:00:04 -06:00
|
|
|
|
|
|
|
virtual void sendCombinedTiles(const char *buffer, int length, Poco::StringTokenizer& tokens) override;
|
2015-12-12 13:23:44 -06:00
|
|
|
|
2016-01-07 01:35:24 -06:00
|
|
|
virtual void sendFontRendering(const char *buffer, int length, Poco::StringTokenizer& tokens) override;
|
2015-12-12 13:23:44 -06:00
|
|
|
|
|
|
|
bool clientZoom(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
2016-02-02 04:48:41 -06:00
|
|
|
bool clientVisibleArea(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
2015-12-12 13:23:44 -06:00
|
|
|
bool downloadAs(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool getChildId();
|
|
|
|
bool getTextSelection(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool paste(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool insertFile(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool keyEvent(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool mouseEvent(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool unoCommand(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool selectText(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool selectGraphic(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool resetSelection(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool saveAs(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool setClientPart(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
bool setPage(const char *buffer, int length, Poco::StringTokenizer& tokens);
|
|
|
|
|
2015-12-25 12:51:32 -06:00
|
|
|
private:
|
|
|
|
|
|
|
|
virtual bool _handleInput(const char *buffer, int length) override;
|
|
|
|
|
|
|
|
private:
|
2016-01-08 19:45:51 -06:00
|
|
|
LibreOfficeKitDocument *_loKitDocument;
|
|
|
|
std::string _docType;
|
2016-01-08 18:58:50 -06:00
|
|
|
const bool _multiView;
|
|
|
|
const std::string _jailId;
|
2016-01-03 09:56:41 -06:00
|
|
|
/// View ID, returned by createView() or 0 by default.
|
|
|
|
int _viewId;
|
2015-12-12 13:23:44 -06:00
|
|
|
int _clientPart;
|
2016-02-07 13:53:45 -06:00
|
|
|
std::function<LibreOfficeKitDocument*(const std::string&, const std::string&, const std::string&, bool)> _onLoad;
|
2016-01-10 09:33:58 -06:00
|
|
|
std::function<void(const std::string&)> _onUnload;
|
2016-01-24 14:24:11 -06:00
|
|
|
/// Statistics and activity tracking.
|
|
|
|
Statistics _stats;
|
2016-01-10 21:52:00 -06:00
|
|
|
|
2016-01-24 17:25:02 -06:00
|
|
|
std::unique_ptr<CallbackWorker> _callbackWorker;
|
|
|
|
Poco::Thread _callbackThread;
|
|
|
|
Poco::NotificationQueue _callbackQueue;
|
|
|
|
|
2016-01-11 21:57:49 -06:00
|
|
|
/// Synchronize _loKitDocument acess.
|
2016-01-24 17:25:02 -06:00
|
|
|
/// This should be owned by Document.
|
2016-01-18 02:41:04 -06:00
|
|
|
static std::recursive_mutex Mutex;
|
2016-01-24 14:24:11 -06:00
|
|
|
|
|
|
|
static constexpr auto InactivityThresholdMS = 120 * 1000;
|
2015-12-12 13:23:44 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-12-13 11:47:14 -06:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|