Line data Source code
1 : /*
2 : * If not stated otherwise in this file or this component's LICENSE file the
3 : * following copyright and licenses apply:
4 : *
5 : * Copyright 2022 Sky UK
6 : *
7 : * Licensed under the Apache License, Version 2.0 (the "License");
8 : * you may not use this file except in compliance with the License.
9 : * You may obtain a copy of the License at
10 : *
11 : * http://www.apache.org/licenses/LICENSE-2.0
12 : *
13 : * Unless required by applicable law or agreed to in writing, software
14 : * distributed under the License is distributed on an "AS IS" BASIS,
15 : * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 : * See the License for the specific language governing permissions and
17 : * limitations under the License.
18 : */
19 :
20 : #ifndef FIREBOLT_RIALTO_SERVER_SERVICE_I_SESSION_SERVER_MANAGER_H_
21 : #define FIREBOLT_RIALTO_SERVER_SERVICE_I_SESSION_SERVER_MANAGER_H_
22 :
23 : #include "IAckSender.h"
24 : #include "RialtoLogging.h"
25 : #include "SessionServerCommon.h"
26 : #include <memory>
27 : #include <string>
28 :
29 : namespace firebolt::rialto::server::service
30 : {
31 : class ISessionServerManager
32 : {
33 : public:
34 48 : ISessionServerManager() = default;
35 48 : virtual ~ISessionServerManager() = default;
36 :
37 : ISessionServerManager(const ISessionServerManager &) = delete;
38 : ISessionServerManager(ISessionServerManager &&) = delete;
39 : ISessionServerManager &operator=(const ISessionServerManager &) = delete;
40 : ISessionServerManager &operator=(ISessionServerManager &&) = delete;
41 :
42 : virtual bool initialize(int argc, char *argv[]) = 0;
43 : virtual void startService() = 0;
44 : virtual bool configureIpc(const std::string &socketName, unsigned int socketPermissions,
45 : const std::string &socketOwner, const std::string &socketGroup) = 0;
46 : virtual bool configureIpc(int32_t socketFd) = 0;
47 : virtual bool configureServices(const common::SessionServerState &state,
48 : const common::MaxResourceCapabilitites &maxResource,
49 : const std::string &clientDisplayName, const std::string &appName) = 0;
50 : virtual bool setState(const common::SessionServerState &state) = 0;
51 : virtual void setLogLevels(RIALTO_DEBUG_LEVEL defaultLogLevels, RIALTO_DEBUG_LEVEL clientLogLevels,
52 : RIALTO_DEBUG_LEVEL sessionServerLogLevels, RIALTO_DEBUG_LEVEL ipcLogLevels,
53 : RIALTO_DEBUG_LEVEL serverManagerLogLevels, RIALTO_DEBUG_LEVEL commonLogLevels) = 0;
54 : virtual bool ping(std::int32_t id, const std::shared_ptr<IAckSender> &ackSender) = 0;
55 : };
56 : } // namespace firebolt::rialto::server::service
57 :
58 : #endif // FIREBOLT_RIALTO_SERVER_SERVICE_I_SESSION_SERVER_MANAGER_H_
|