• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2024 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 OHOS_RENDER_3D_WIDGET_QOS_H
17 #define OHOS_RENDER_3D_WIDGET_QOS_H
18 
19 #include <qos.h>
20 #include "3d_widget_adapter_log.h"
21 
22 class Widget3DQosScoped {
23 public:
Widget3DQosScoped(const std::string & value)24     inline Widget3DQosScoped(const std::string &value) : mMsg(value)
25     {
26         int ret = OHOS::QOS::SetThreadQos(OHOS::QOS::QosLevel::QOS_USER_INTERACTIVE);
27         WIDGET_LOGD("%s SetThreadQos: %d", mMsg.c_str(), ret);
28     }
29 
~Widget3DQosScoped()30     inline ~Widget3DQosScoped()
31     {
32         int ret = OHOS::QOS::ResetThreadQos();
33         WIDGET_LOGD("%s ResetThreadQoS: %d", mMsg.c_str(), ret);
34     }
35 private:
36     std::string mMsg;
37 };
38 
39 #endif // OHOS_RENDER_3D_WIDGET_QOS_H
40