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_IPC_I_MEDIA_KEYS_MODULE_SERVICE_H_
21 : #define FIREBOLT_RIALTO_SERVER_IPC_I_MEDIA_KEYS_MODULE_SERVICE_H_
22 :
23 : #include "ICdmService.h"
24 : #include "mediakeysmodule.pb.h"
25 : #include <IIpcServer.h>
26 : #include <memory>
27 :
28 : namespace firebolt::rialto::server::ipc
29 : {
30 : class IMediaKeysModuleService;
31 :
32 : /**
33 : * @brief IMediaKeysModuleService factory class, returns a concrete implementation of IMediaKeysModuleService
34 : */
35 : class IMediaKeysModuleServiceFactory
36 : {
37 : public:
38 11 : IMediaKeysModuleServiceFactory() = default;
39 11 : virtual ~IMediaKeysModuleServiceFactory() = default;
40 :
41 : /**
42 : * @brief Create a IMediaKeysModuleServiceFactory instance.
43 : *
44 : * @retval the factory instance or null on error.
45 : */
46 : static std::shared_ptr<IMediaKeysModuleServiceFactory> createFactory();
47 :
48 : /**
49 : * @brief Creates a MediaKeysModuleService object.
50 : *
51 : * @param[in] cdmService : The service for cdm objects.
52 : *
53 : * @retval the rialto controller ipc instance or null on error.
54 : */
55 : virtual std::shared_ptr<IMediaKeysModuleService> create(service::ICdmService &cdmService) const = 0;
56 : };
57 :
58 : /**
59 : * @brief The definition of the IMediaKeysModuleService interface.
60 : */
61 : class IMediaKeysModuleService : public ::firebolt::rialto::MediaKeysModule,
62 : public std::enable_shared_from_this<IMediaKeysModuleService>
63 : {
64 : public:
65 58 : IMediaKeysModuleService() = default;
66 58 : virtual ~IMediaKeysModuleService() = default;
67 :
68 : IMediaKeysModuleService(const IMediaKeysModuleService &) = delete;
69 : IMediaKeysModuleService(IMediaKeysModuleService &&) = delete;
70 : IMediaKeysModuleService &operator=(const IMediaKeysModuleService &) = delete;
71 : IMediaKeysModuleService &operator=(IMediaKeysModuleService &&) = delete;
72 :
73 : /**
74 : * @brief Connect to the ipc client.
75 : *
76 : * @param[in] ipcClient : The ipc client to connect to.
77 : */
78 : virtual void clientConnected(const std::shared_ptr<::firebolt::rialto::ipc::IClient> &ipcClient) = 0;
79 :
80 : /**
81 : * @brief Disconnect from the ipc client.
82 : *
83 : * @param[in] ipcClient : The ipc client to disconnect to.
84 : */
85 : virtual void clientDisconnected(const std::shared_ptr<::firebolt::rialto::ipc::IClient> &ipcClient) = 0;
86 : };
87 :
88 : } // namespace firebolt::rialto::server::ipc
89 :
90 : #endif // FIREBOLT_RIALTO_SERVER_IPC_I_MEDIA_KEYS_MODULE_SERVICE_H_
|