blob: 3ab81e669a99ce445e75bf1c82ffb1a7de516d2f [file] [log] [blame]
Ian Coolidge611fcf92015-06-03 17:20:30 -07001//
2// Copyright (C) 2015 Google, Inc.
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//
Arman Ugurayae43de62015-09-24 15:05:21 -070016
Pavlin Radoslavov1377f932016-02-11 19:44:47 -080017#ifdef BT_LIBCHROME_NDEBUG
18#define NDEBUG 1
19#endif
20
Arman Uguray065d0f72015-07-16 18:12:13 -070021#include <base/at_exit.h>
22#include <base/command_line.h>
23#include <base/files/scoped_file.h>
Pavlin Radoslavov1377f932016-02-11 19:44:47 -080024#include <base/logging.h>
Arman Uguray065d0f72015-07-16 18:12:13 -070025
Ian Coolidge611fcf92015-06-03 17:20:30 -070026// For system properties
27// TODO(icoolidge): abstraction or non-cutils stub.
Arman Ugurayf2d64342015-07-08 15:47:39 -070028#if !defined(OS_GENERIC)
Ian Coolidge611fcf92015-06-03 17:20:30 -070029#include <cutils/properties.h>
Arman Ugurayf2d64342015-07-08 15:47:39 -070030#endif // !defined(OS_GENERIC)
Ian Coolidge611fcf92015-06-03 17:20:30 -070031
Arman Ugurayfe65fb72015-07-24 19:14:42 -070032#include "service/daemon.h"
Arman Uguray065d0f72015-07-16 18:12:13 -070033#include "service/switches.h"
Ian Coolidge611fcf92015-06-03 17:20:30 -070034
35namespace {
36
Arman Ugurayf2d64342015-07-08 15:47:39 -070037// TODO(armansito): None of these should be hardcoded here. Instead, pass these
38// via commandline.
Ian Coolidge611fcf92015-06-03 17:20:30 -070039const char kDisableProperty[] = "persist.bluetooth.disable";
Ian Coolidge611fcf92015-06-03 17:20:30 -070040
41} // namespace
42
Arman Uguray065d0f72015-07-16 18:12:13 -070043int main(int argc, char *argv[]) {
44 base::AtExitManager exit_manager;
45 base::CommandLine::Init(argc, argv);
46
Arman Uguray503baaa2015-08-20 11:49:00 -070047 logging::LoggingSettings log_settings;
48 if (!logging::InitLogging(log_settings)) {
49 LOG(ERROR) << "Failed to set up logging";
50 return EXIT_FAILURE;
51 }
52
Arman Uguray065d0f72015-07-16 18:12:13 -070053 // TODO(armansito): Initialize base/logging. By default it will dump to stdout
54 // but we might want to change that based on a command-line switch. Figure out
55 // how to route the logging to Android's syslog. Once that's done, we won't
56 // need to use osi/include/log.h anymore.
57
58 // TODO(armansito): Register exit-time clean-up handlers for the IPC sockets.
59 // Register signal handlers.
60 auto command_line = base::CommandLine::ForCurrentProcess();
61 if (command_line->HasSwitch(bluetooth::switches::kHelpLong) ||
62 command_line->HasSwitch(bluetooth::switches::kHelpShort)) {
63 LOG(INFO) << bluetooth::switches::kHelpMessage;
64 return EXIT_SUCCESS;
65 }
66
Arman Ugurayf2d64342015-07-08 15:47:39 -070067#if !defined(OS_GENERIC)
Arman Uguray065d0f72015-07-16 18:12:13 -070068 // TODO(armansito): Remove Chromecast specific property out of here. This
69 // should just be obtained from global config.
Ian Coolidge611fcf92015-06-03 17:20:30 -070070 char disable_value[PROPERTY_VALUE_MAX];
Arman Ugurayfe65fb72015-07-24 19:14:42 -070071 int status = property_get(kDisableProperty, disable_value, nullptr);
Ian Coolidge611fcf92015-06-03 17:20:30 -070072 if (status && !strcmp(disable_value, "1")) {
Arman Uguray065d0f72015-07-16 18:12:13 -070073 LOG(INFO) << "service disabled";
Ian Coolidge611fcf92015-06-03 17:20:30 -070074 return EXIT_SUCCESS;
75 }
Arman Uguray065d0f72015-07-16 18:12:13 -070076#endif // !defined(OS_GENERIC)
Ian Coolidge611fcf92015-06-03 17:20:30 -070077
Arman Ugurayfe65fb72015-07-24 19:14:42 -070078 if (!bluetooth::Daemon::Initialize()) {
79 LOG(ERROR) << "Failed to initialize Daemon";
Arman Ugurayf2d64342015-07-08 15:47:39 -070080 return EXIT_FAILURE;
81 }
82
Arman Ugurayfe65fb72015-07-24 19:14:42 -070083 // Start the main event loop.
84 bluetooth::Daemon::Get()->StartMainLoop();
Arman Ugurayf2d64342015-07-08 15:47:39 -070085
Arman Ugurayfe65fb72015-07-24 19:14:42 -070086 // The main message loop has exited; clean up the Daemon.
87 bluetooth::Daemon::Get()->ShutDown();
Ian Coolidge611fcf92015-06-03 17:20:30 -070088
Ian Coolidge611fcf92015-06-03 17:20:30 -070089 return EXIT_SUCCESS;
90}