summaryrefslogtreecommitdiff
path: root/SDL_Core/src/appMain/main.cc
blob: 465f18d286403f1cc9f469532eb7811e9c67a561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/**
 * \file appMain.cc
 * \brief SmartDeviceLink main application sources
 * Copyright (c) 2013, Ford Motor Company
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided with the
 * distribution.
 *
 * Neither the name of the Ford Motor Company nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/stat.h>
#include <signal.h>
#include <fcntl.h>
#include <unistd.h>
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <string>
#include <iostream>  // cpplint: Streams are highly discouraged.
#include <fstream>   // cpplint: Streams are highly discouraged.

// ----------------------------------------------------------------------------

#include "./life_cycle.h"

#include "utils/signals.h"
#include "config_profile/profile.h"

#if defined(EXTENDED_MEDIA)
#include <gst/gst.h>
#endif

#include "media_manager/media_manager_impl.h"
// ----------------------------------------------------------------------------
// Third-Party includes
#include "networking.h"  // cpplint: Include the directory when naming .h files

// ----------------------------------------------------------------------------

namespace {

const char kBrowser[] = "/usr/bin/chromium-browser";
const char kBrowserName[] = "chromium-browser";
const char kBrowserParams[] = "--auth-schemes=basic,digest,ntlm";
const char kLocalHostAddress[] = "127.0.0.1";
const char kApplicationVersion[] = "SDL_RB_B3.2";

#ifdef __QNX__
bool Execute(std::string command, const char * const *) {
  log4cxx::LoggerPtr logger = log4cxx::LoggerPtr(
      log4cxx::Logger::getLogger("appMain"));
  if (system(command.c_str()) == -1) {
    LOG4CXX_INFO(logger, "Can't start HMI!");
    return false;
  }
  return true;
}
#else
bool Execute(std::string file, const char * const * argv) {
  log4cxx::LoggerPtr logger = log4cxx::LoggerPtr(
      log4cxx::Logger::getLogger("appMain"));
  // Create a child process.
  pid_t pid_hmi = fork();

  switch (pid_hmi) {
    case -1: {  // Error
      LOG4CXX_INFO(logger, "fork() failed!");
      return false;
    }
    case 0: {  // Child process
      int32_t fd_dev0 = open("/dev/null", O_RDWR, S_IWRITE);
      if (0 > fd_dev0) {
        LOG4CXX_WARN(logger, "Open dev0 failed!");
        return false;
      }
      // close input/output file descriptors.
      close(STDIN_FILENO);
      close(STDOUT_FILENO);
      close(STDERR_FILENO);

      // move input/output to /dev/null.
      dup2(fd_dev0, STDIN_FILENO);
      dup2(fd_dev0, STDOUT_FILENO);
      dup2(fd_dev0, STDERR_FILENO);

      // Execute the program.
      if (execvp(file.c_str(), const_cast<char* const *>(argv)) == -1) {
        LOG4CXX_ERROR_WITH_ERRNO(logger, "execvp() failed! Can't start HMI!");
        _exit(EXIT_FAILURE);
      }

      return true;
    }
    default: { /* Parent process */
      LOG4CXX_INFO(logger, "Process created with pid " << pid_hmi);
      return true;
    }
  }
}
#endif

#ifdef WEB_HMI
/**
 * Initialize HTML based HMI.
 * @return true if success otherwise false.
 */
bool InitHmi() {
log4cxx::LoggerPtr logger = log4cxx::LoggerPtr(
                              log4cxx::Logger::getLogger("appMain"));

struct stat sb;
if (stat("hmi_link", &sb) == -1) {
  LOG4CXX_INFO(logger, "File with HMI link doesn't exist!");
  return false;
}

std::ifstream file_str;
file_str.open("hmi_link");

if (!file_str.is_open()) {
  LOG4CXX_INFO(logger, "File with HMI link was not opened!");
  return false;
}

file_str.seekg(0, std::ios::end);
int32_t length = file_str.tellg();
file_str.seekg(0, std::ios::beg);

std::string hmi_link;
std::getline(file_str, hmi_link);


LOG4CXX_INFO(logger,
             "Input string:" << hmi_link << " length = " << hmi_link.size());
file_str.close();

if (stat(hmi_link.c_str(), &sb) == -1) {
  LOG4CXX_INFO(logger, "HMI index.html doesn't exist!");
  return false;
}

#ifdef OS_MACOSX
  // On Mac, use system() to call osascript to start Chrome
  const char kCommand[] = "osascript -e 'tell application \"Google Chrome\" to open \"%s\"'";
  char *cmd;

  asprintf(&cmd, kCommand, hmi_link.c_str());

  int ret = system(cmd);

  free(cmd);

  if (ret != 0)
    LOG4CXX_ERROR(logger, "Error launching HTML5 HMI: is Google Chrome installed?");

  return (ret ? false : true);
#elif OS_LINUX
	// On Linux, use Execute() to start the browser
  std::string kBin = kBrowser;
  const char* const kParams[4] = {kBrowserName, kBrowserParams,
      hmi_link.c_str(), NULL};

  return Execute(kBin, kParams);
#else
#error "Add a way to launch the web HMI on your platform"
#endif
}
#endif  // WEB_HMI

#ifdef QT_HMI
/**
 * Initialize HTML based HMI.
 * @return true if success otherwise false.
 */
bool InitHmi() {
  log4cxx::LoggerPtr logger = log4cxx::LoggerPtr(
      log4cxx::Logger::getLogger("appMain"));
  std::string kStartHmi = "./start_hmi.sh";
  struct stat sb;
  if (stat(kStartHmi.c_str(), &sb) == -1) {
    LOG4CXX_INFO(logger, "HMI start script doesn't exist!");
    return false;
  }

  return Execute(kStartHmi, NULL);
}
#endif  // QT_HMI
}

/**
 * \brief Entry point of the program.
 * \param argc number of argument
 * \param argv array of arguments
 * \return EXIT_SUCCESS or EXIT_FAILURE
 */
int32_t main(int32_t argc, char** argv) {

  // --------------------------------------------------------------------------
  // Logger initialization

  log4cxx::LoggerPtr logger = log4cxx::LoggerPtr(
                                log4cxx::Logger::getLogger("appMain"));
  log4cxx::PropertyConfigurator::configure("log4cxx.properties");

  threads::Thread::SetNameForId(threads::Thread::CurrentId(), "MainThread");

  LOG4CXX_INFO(logger, "Application started!");
  LOG4CXX_INFO(logger, "Application version " << kApplicationVersion);

  // Initialize gstreamer. Needed to activate debug from the command line.
#if defined(EXTENDED_MEDIA_MODE)
  gst_init(&argc, &argv);
#endif

  // --------------------------------------------------------------------------
  // Components initialization

  profile::Profile::instance()->config_file_name("smartDeviceLink.ini");

  main_namespace::LifeCycle::instance()->StartComponents();

  // --------------------------------------------------------------------------
  // Third-Party components initialization.

  if (!main_namespace::LifeCycle::instance()->InitMessageSystem()) {
    main_namespace::LifeCycle::instance()->StopComponents();
// without this line log4cxx threads continue using some instances destroyed by exit()
    log4cxx::Logger::getRootLogger()->closeNestedAppenders();
    exit(EXIT_FAILURE);
  }
  LOG4CXX_INFO(logger, "InitMessageBroker successful");

  if (profile::Profile::instance()->launch_hmi()) {
    if (profile::Profile::instance()->server_address() ==
        std::string(kLocalHostAddress)) {
      LOG4CXX_INFO(logger, "Start HMI on localhost");

      if (!InitHmi()) {
        main_namespace::LifeCycle::instance()->StopComponents();
// without this line log4cxx threads continue using some instances destroyed by exit()
        log4cxx::Logger::getRootLogger()->closeNestedAppenders();
        exit(EXIT_FAILURE);
      }
      LOG4CXX_INFO(logger, "InitHmi successful");
    }
  }
  // --------------------------------------------------------------------------

  utils::SubscribeToTerminateSignal(
    &main_namespace::LifeCycle::StopComponentsOnSignal);

  pause();
}