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_RINGTONE_DFX_MANAGER_H
17 #define OHOS_RINGTONE_DFX_MANAGER_H
18 
19 #include "ability_context.h"
20 #include "dfx_reporter.h"
21 #include "ringtone_type.h"
22 
23 #define EXPORT __attribute__ ((visibility ("default")))
24 
25 namespace OHOS {
26 namespace Media {
27 class DfxManager {
28 public:
29     DfxManager();
30     ~DfxManager();
31     EXPORT static std::shared_ptr<DfxManager> GetInstance();
32     EXPORT int64_t HandleReportXml();
33     EXPORT int32_t Init(const std::shared_ptr<OHOS::AbilityRuntime::Context> &context);
34     EXPORT int64_t RequestTonesCount(SourceType type);
35 
36 private:
37     static std::mutex instanceLock_;
38     static std::shared_ptr<DfxManager> dfxManagerInstance_;
39     std::atomic<bool> isInitSuccess_;
40     std::shared_ptr<DfxReporter> dfxReporter_;
41     std::shared_ptr<OHOS::AbilityRuntime::Context> context_ = nullptr;
42 };
43 } // namespace Media
44 } // namespace OHOS
45 
46 #endif  // OHOS_RINGTONE_DFX_MANAGER_H
47