• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Chipsea Technologies (Shenzhen) Corp., 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 DMD_REPORT_H
17 #define DMD_REPORT_H
18 
19 #include <map>
20 #include <mutex>
21 #include <string>
22 
23 namespace OHOS {
24 namespace Sensors {
25 enum SensorEventId {
26     JNI_ENV_VAR_EXCEPTION = 951000106,
27     CLASS_NOT_FOUND = 951000107,
28     NATIVE_METHOD_REGISTER_EXCEPTION = 951000108,
29     JAVA_VM_THREAD_ATTACH_EXCEPTION = 951000109,
30     SENSOR_SERVICE_EXCEPTION = 951000110,
31     MISC_SERVICE_EXCEPTION = 951000111,
32     SENSOR_SERVICE_IPC_EXCEPTION = 951000112,
33     MISC_SERVICE_IPC_EXCEPTION = 951000113,
34     SENSOR_HDF_SERVICE_EXCEPTION = 951000114,
35     SENSOR_DATA_CHANNEL_EXCEPTION = 951000117,
36 };
37 
38 class DmdReport {
39 public:
40     DmdReport() = default;
41     virtual ~DmdReport() = default;
42     static void ReportException(int32_t eventId, const std::string &interfaceName, int32_t error);
43 
44 private:
45     static std::mutex eventMutex_;
46     static std::map<int32_t, int64_t> eventMap_;
47 };
48 }  // namespace Sensors
49 }  // namespace OHOS
50 #endif  // DMD_REPORT_H
51