1 /* 2 * Copyright (C) 2025 Huawei Device Co., Ltd. 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 AI_SCHEDULE_H 17 #define AI_SCHEDULE_H 18 #include "sp_profiler.h" 19 #include <string> 20 21 namespace OHOS { 22 namespace SmartPerf { 23 class AISchedule : public SpProfiler { 24 public: 25 std::map<std::string, std::string> ItemData() override; GetInstance()26 static AISchedule &GetInstance() 27 { 28 static AISchedule instance; 29 return instance; 30 } 31 void SetProcessId(const std::string &pid); 32 33 private: AISchedule()34 AISchedule() {}; 35 AISchedule(const AISchedule &) = delete; 36 AISchedule &operator=(const AISchedule &) = delete; 37 std::map<std::string, std::string> aiScheduleParams; 38 const std::string aiScheduleParamPid = "pid"; 39 const std::string aiScheduleParamType = "functionType"; 40 const std::string createPlugin = "onCreatePlugin"; 41 std::string processId = ""; 42 }; 43 } // namespace SmartPerf 44 } // namespace OHOS 45 #endif // AI_SCHEDULE_H