
* cherry-pick 4dfcad96506fb5b88c5bb27342b6d9413fc361c9 from mozilla upstream * cherry-pick a95fa8c088b9edaff2de18751336942c2d145a9a from mozilla * cherry-pick commit 4fc1ebbad86a9abcafdc761725a7afd811c8d2d3 from mozilla * cherry-pick 4dfcad96506fb5b88c5bb27342b6d9413fc361c9 from mozilla upstream * cherry-pick 22de4fcbd454c64ff496c3380eeaeeb6afff4d64 from mozilla upstream * cherry-pick 649673be561b66c96367adf379da1545f8838763 from mozilla upstream * cherry-pick 41bdad34517d0ddaef32139482e5505d92e4b533 from mozilla upstream * cherry-pick f6e49a85538eaa230d3a8634fa7600966132ccab from mozilla upstream * cherry-pick 86c585387efa0a09c7937dfe799a90a666404fcd from mozilla upstream * cherry-pick a18c1fac740469ca3566751b74a16227518630c4 from mozilla upstream * fixed missing ; * added excludeLocalNetworks() for linux * build fixes on windows after cherry-picks * Add rules for excluded sites splittunell mode * Fix app splittunell when ipv6 is not setup * Fix Linux build --------- Co-authored-by: Mykola Baibuz <mykola.baibuz@gmail.com>
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
/* 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/. */
|
|
|
|
#ifndef WINDOWSSERVICEMANAGER
|
|
#define WINDOWSSERVICEMANAGER
|
|
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
|
|
#include "Windows.h"
|
|
#include "Winsvc.h"
|
|
|
|
/**
|
|
* @brief The WindowsServiceManager provides control over the a
|
|
* service via SCM
|
|
*/
|
|
class WindowsServiceManager : public QObject {
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY_MOVE(WindowsServiceManager)
|
|
|
|
public:
|
|
// Creates a WindowsServiceManager for the Named service.
|
|
// returns nullptr if
|
|
static std::unique_ptr<WindowsServiceManager> open(const QString serviceName);
|
|
WindowsServiceManager(SC_HANDLE serviceManager, SC_HANDLE service);
|
|
~WindowsServiceManager();
|
|
|
|
// true if the Service is running
|
|
bool isRunning() { return getStatus().dwCurrentState == SERVICE_RUNNING; };
|
|
|
|
// Starts the service if execute rights are present
|
|
// Starts to poll for serviceStarted
|
|
bool startService();
|
|
|
|
// Stops the service if execute rights are present.
|
|
// Starts to poll for serviceStopped
|
|
bool stopService();
|
|
|
|
signals:
|
|
// Gets Emitted after the Service moved From SERVICE_START_PENDING to
|
|
// SERVICE_RUNNING
|
|
void serviceStarted();
|
|
void serviceStopped();
|
|
|
|
private:
|
|
// Returns the State of the Process:
|
|
// See
|
|
// SERVICE_STOPPED,SERVICE_STOP_PENDING,SERVICE_START_PENDING,SERVICE_RUNNING
|
|
SERVICE_STATUS_PROCESS getStatus();
|
|
SC_HANDLE m_serviceManager;
|
|
SC_HANDLE m_service; // Service handle with r/w priv.
|
|
DWORD m_state_target;
|
|
int m_currentWaitTime;
|
|
int m_maxWaitTime;
|
|
QTimer m_timer;
|
|
|
|
bool startPolling(DWORD goal_state, int maxS);
|
|
};
|
|
|
|
#endif // WINDOWSSERVICEMANAGER
|