1 /*
2  * Copyright (c) 2021-2022 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 #include "mmi_service.h"
17 
18 #undef MMI_LOG_TAG
19 #define MMI_LOG_TAG "MmiServiceDemo"
20 namespace OHOS {
21 namespace MMI {
22 namespace {
23 constexpr int32_t SLEEP_TIME = 10 * 60;
24 } // namespace
25 } // namespace MMI
26 } // namespace OHOS
27 
main(int32_t argc,const char * argv[])28 int32_t main(int32_t argc, const char *argv[])
29 {
30     auto service = OHOS::MMIService::GetInstance();
31     service->OnStart();
32     while (1) {
33         std::this_thread::sleep_for(std::chrono::seconds(SLEEP_TIME));
34     }
35     service->OnStop();
36     service->OnDump();
37     MMI_HILOGD("mmi-service stopping. argc:%{public}d, argv:%{public}s", argc, argv[0]);
38     return RET_OK;
39 }
40