1 /* 2 * Copyright (c) Huawei Technologies Co., Ltd. 2024. All rights reserved. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FFRT_PROFILER_SERVICE_H 17 #define FFRT_PROFILER_SERVICE_H 18 19 #include <memory> 20 #include <string> 21 #include <vector> 22 23 #include "service_entry.h" 24 #include "ffrt_profiler_common.h" 25 26 namespace OHOS::Developtools::Profiler { 27 class FfrtProfilerManager; 28 29 class FfrtProfilerSocketService : public ServiceBase { 30 public: 31 FfrtProfilerSocketService(std::shared_ptr<FfrtProfilerManager> ffrtMgr); 32 ~FfrtProfilerSocketService(); 33 bool ProtocolProc(SocketContext &context, uint32_t pnum, const int8_t *buf, const uint32_t size) override; 34 void SetConfig(int32_t shmSize, int32_t flushCount, bool block, int32_t clockType); 35 private: 36 bool StartService(const std::string& unixSocketName); 37 38 private: 39 std::shared_ptr<ServiceEntry> serviceEntry_{nullptr}; 40 std::shared_ptr<FfrtProfilerManager> ffrtMgr_{nullptr}; 41 std::mutex mtx_; 42 FfrtConfig config_; 43 }; 44 } // namespace OHOS::Developtools::Profiler 45 #endif // FFRT_PROFILER_SERVICE_H