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 : #include "SetLogLevelsService.h"
21 : #include "mediapipelinemodule.pb.h"
22 :
23 : namespace firebolt::rialto::server::ipc
24 : {
25 2 : void SetLogLevelsService::clientConnected(const std::shared_ptr<::firebolt::rialto::ipc::IClient> &ipcClient)
26 : {
27 2 : std::lock_guard<std::mutex> lock(m_mutex);
28 2 : m_connectedClients.insert(ipcClient);
29 : }
30 :
31 1 : void SetLogLevelsService::clientDisconnected(const std::shared_ptr<::firebolt::rialto::ipc::IClient> &ipcClient)
32 : {
33 1 : std::lock_guard<std::mutex> lock(m_mutex);
34 1 : m_connectedClients.erase(ipcClient);
35 : }
36 :
37 1 : void SetLogLevelsService::setLogLevels(RIALTO_DEBUG_LEVEL defaultLogLevels, RIALTO_DEBUG_LEVEL clientLogLevels,
38 : RIALTO_DEBUG_LEVEL ipcLogLevels, RIALTO_DEBUG_LEVEL commonLogLevels)
39 : {
40 1 : auto event = std::make_shared<firebolt::rialto::SetLogLevelsEvent>();
41 1 : event->set_defaultloglevels(static_cast<std::uint32_t>(defaultLogLevels));
42 1 : event->set_clientloglevels(static_cast<std::uint32_t>(clientLogLevels));
43 1 : event->set_ipcloglevels(static_cast<std::uint32_t>(ipcLogLevels));
44 1 : event->set_commonloglevels(static_cast<std::uint32_t>(commonLogLevels));
45 :
46 1 : std::lock_guard<std::mutex> lock(m_mutex);
47 2 : for (const auto &client : m_connectedClients)
48 : {
49 1 : client->sendEvent(event);
50 : }
51 : }
52 : } // namespace firebolt::rialto::server::ipc
|