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 RIALTO_SERVERMANAGER_COMMON_SESSION_SERVER_APP_FACTORY_H_
21 : #define RIALTO_SERVERMANAGER_COMMON_SESSION_SERVER_APP_FACTORY_H_
22 :
23 : #include "ILinuxWrapper.h"
24 : #include "ISessionServerAppFactory.h"
25 : #include <chrono>
26 : #include <list>
27 : #include <memory>
28 : #include <string>
29 :
30 : namespace rialto::servermanager::common
31 : {
32 : class SessionServerAppFactory : public ISessionServerAppFactory
33 : {
34 : public:
35 : explicit SessionServerAppFactory(const std::list<std::string> &environmentVariables,
36 : const std::string &sessionServerPath,
37 : std::chrono::milliseconds sessionServerStartupTimeout,
38 : unsigned int socketPermissions, const std::string &socketOwner,
39 : const std::string &socketGroup);
40 0 : ~SessionServerAppFactory() override = default;
41 :
42 : std::unique_ptr<ISessionServerApp>
43 : create(const std::string &appName, const firebolt::rialto::common::SessionServerState &initialState,
44 : const firebolt::rialto::common::AppConfig &appConfig, SessionServerAppManager &sessionServerAppManager,
45 : std::unique_ptr<firebolt::rialto::ipc::INamedSocket> &&namedSocket) const override;
46 : std::unique_ptr<ISessionServerApp>
47 : create(SessionServerAppManager &sessionServerAppManager,
48 : std::unique_ptr<firebolt::rialto::ipc::INamedSocket> &&namedSocket) const override;
49 :
50 : private:
51 : const std::list<std::string> m_kEnvironmentVariables;
52 : const std::string m_kSessionServerPath;
53 : const std::chrono::milliseconds m_kSessionServerStartupTimeout;
54 : const unsigned int m_kSocketPermissions;
55 : const std::string m_kSocketOwner;
56 : const std::string m_kSocketGroup;
57 : std::shared_ptr<firebolt::rialto::wrappers::ILinuxWrapperFactory> m_linuxWrapperFactory;
58 : };
59 : } // namespace rialto::servermanager::common
60 :
61 : #endif // RIALTO_SERVERMANAGER_COMMON_SESSION_SERVER_APP_FACTORY_H_
|