Apollo 10.0
自动驾驶开放平台
main.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2017 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16
17#include <filesystem>
18
19#include "gperftools/heap-profiler.h"
20#include "gperftools/malloc_extension.h"
21#include "gperftools/profiler.h"
22
24#include "cyber/init.h"
26
27int main(int argc, char* argv[]) {
28 // set working directory to APOLLO_RUNTIME_PATH for relative file paths
29 const char* apollo_runtime_path = std::getenv("APOLLO_RUNTIME_PATH");
30 if (apollo_runtime_path != nullptr) {
31 if (std::filesystem::is_directory(
32 std::filesystem::status(apollo_runtime_path))) {
33 std::filesystem::current_path(apollo_runtime_path);
34 }
35 }
36 google::ParseCommandLineFlags(&argc, &argv, true);
37 // Added by caros to improve dv performance
38
39 std::signal(SIGTERM, [](int sig) {
41 if (FLAGS_dv_cpu_profile) {
42 ProfilerStop();
43 }
44 if (FLAGS_dv_heap_profile) {
45 HeapProfilerDump("Befor shutdown");
46 HeapProfilerStop();
47 }
48 });
49
50 std::signal(SIGINT, [](int sig) {
52 if (FLAGS_dv_cpu_profile) {
53 ProfilerStop();
54 }
55 if (FLAGS_dv_heap_profile) {
56 HeapProfilerDump("Befor shutdown");
57 HeapProfilerStop();
58 }
59 });
60
61 if (FLAGS_dv_cpu_profile) {
62 auto base_name_cpu = std::string(argv[0]) + "_cpu" + std::string(".prof");
63 ProfilerStart(base_name_cpu.c_str());
64 }
65 if (FLAGS_dv_heap_profile) {
66 auto base_name_heap = std::string(argv[0]) + "_heap" + std::string(".prof");
67 HeapProfilerStart(base_name_heap.c_str());
68 }
69
70 apollo::cyber::GlobalData::Instance()->SetProcessGroup("dreamview_sched");
71 apollo::cyber::Init(argv[0]);
72
74 const bool init_success = dreamview.Init().ok() && dreamview.Start().ok();
75 if (!init_success) {
76 AERROR << "Failed to initialize dreamview server";
77 return -1;
78 }
80 return 0;
81}
bool ok() const
check whether the return status is OK.
Definition status.h:67
apollo::common::Status Init()
Definition dreamview.cc:54
apollo::common::Status Start()
Definition dreamview.cc:124
#define AERROR
Definition log.h:44
int main(int argc, char *argv[])
Definition main.cc:27
void OnShutdown(int sig)
Definition init.cc:89
void WaitForShutdown()
Definition state.h:50
bool Init(const char *binary_name, const std::string &dag_info)
Definition init.cc:98