1 /*
2  * Copyright (c) 2022-2023 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_DAUDIO_UTILS_H
17 #define OHOS_DAUDIO_UTILS_H
18 
19 #include <fstream>
20 #include <map>
21 #include <string>
22 
23 #include "cJSON.h"
24 
25 #define AUDIO_MS_PER_SECOND 1000
26 #define AUDIO_US_PER_SECOND 1000000
27 #define AUDIO_NS_PER_SECOND ((int64_t)1000000000)
28 #define AUDIO_MMAP_NOIRQ_INTERVAL 5
29 #define AUDIO_MMAP_VOIP_INTERVAL  20
30 #define AUDIO_NORMAL_INTERVAL     20
31 namespace OHOS {
32 namespace DistributedHardware {
33 const std::string DUMP_SERVER_PARA = "sys.daudio_host.dump.write.enable";
34 const std::string DUMP_SERVICE_DIR = "/data/local/tmp/";
35 std::string GetAnonyString(const std::string &value);
36 
37 std::string GetChangeDevIdMap(int32_t devId);
38 
39 int32_t GetAudioParamStr(const std::string &params, const std::string &key, std::string &value);
40 
41 int32_t GetAudioParamInt(const std::string &params, const std::string &key, int32_t &value);
42 
43 int32_t GetAudioParamUInt(const std::string &params, const std::string &key, uint32_t &value);
44 
45 int32_t GetAudioParamBool(const std::string &params, const std::string &key, bool &value);
46 
47 int32_t SetAudioParamStr(std::string &params, const std::string &key, const std::string &value);
48 
49 int32_t GetDevTypeByDHId(int32_t dhId);
50 
51 int64_t GetNowTimeUs();
52 
53 uint32_t CalculateFrameSize(uint32_t sampleRate, uint32_t channelCount,
54     int32_t format, uint32_t timeInterval, bool isMMAP);
55 
56 int32_t CalculateSampleNum(uint32_t sampleRate, uint32_t timems);
57 
58 int64_t GetCurNano();
59 
60 int32_t AbsoluteSleep(int64_t nanoTime);
61 
62 int64_t CalculateOffset(const int64_t frameindex, const int64_t framePeriodNs, const int64_t startTime);
63 
64 int64_t UpdateTimeOffset(const int64_t frameIndex, const int64_t framePeriodNs, int64_t &startTime);
65 
66 bool IsOutDurationRange(int64_t startTime, int64_t endTime, int64_t lastStartTime);
67 
68 void SaveFile(std::string fileName, uint8_t *audioData, int32_t size);
69 
70 int32_t WrapCJsonItem(const std::initializer_list<std::pair<std::string, std::string>> &keys, std::string &content);
71 
72 bool CJsonParamCheck(const cJSON *jsonObj, const std::initializer_list<std::string> &keys);
73 
74 std::string ParseStringFromArgs(const std::string &args, const char *key);
75 
76 bool CheckIsNum(const std::string &jsonString);
77 
78 template <typename T>
79 bool GetSysPara(const char *key, T &value);
80 bool IsParamEnabled(const std::string &key, bool &isEnabled);
81 
82 class DumpFileUtil {
83 public:
84     static void OpenDumpFile(const std::string &para, const std::string &fileName, FILE **file);
85     static void CloseDumpFile(FILE **dumpFile);
86     static void WriteDumpFile(FILE *dumpFile, void *buffer, size_t bufferSize);
87 
88     static std::map<std::string, std::string> g_lastPara;
89 
90 private:
91     static FILE *OpenDumpFileInner(const std::string &para, const std::string &fileName);
92     static void ChangeDumpFileState(const std::string &para, FILE **dumpFile, const std::string &fileName);
93 };
94 } // DistributedHardware
95 } // OHOS
96 #endif