blob: 27ead0e25c0a81887c61f11c7b97c959281aaae5 [file] [log] [blame]
Paul Stewart75897df2011-04-27 09:05:53 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <time.h>
6#include <string>
Paul Stewart75897df2011-04-27 09:05:53 -07007
Chris Masone0e1d1042011-05-09 18:07:03 -07008#include <base/at_exit.h>
Chris Masoneee929b72011-05-10 10:02:18 -07009#include <base/command_line.h>
10#include <base/file_path.h>
11#include <base/logging.h>
Chris Masone7ccc8192011-05-24 14:54:49 -070012#include <base/string_number_conversions.h>
Chris Masoneee929b72011-05-10 10:02:18 -070013#include <chromeos/syslog_logging.h>
14
Paul Stewart75897df2011-04-27 09:05:53 -070015#include "shill/dbus_control.h"
Darin Petkovd1b715b2011-06-02 21:21:22 -070016#include "shill/dhcp_provider.h"
17#include "shill/shill_daemon.h"
Paul Stewart75897df2011-04-27 09:05:53 -070018
19using std::string;
20
Chris Masoneee929b72011-05-10 10:02:18 -070021namespace switches {
22
23// Don't daemon()ize; run in foreground.
24static const char kForeground[] = "foreground";
25// Directory to read confguration settings.
26static const char kConfigDir[] = "config-dir";
27// Directory to read default configuration settings (Read Only).
28static const char kDefaultConfigDir[] = "default-config-dir";
29// Flag that causes shill to show the help message and exit.
30static const char kHelp[] = "help";
Chris Masone7ccc8192011-05-24 14:54:49 -070031// LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.
32static const char kLogLevel[] = "log-level";
Chris Masoneee929b72011-05-10 10:02:18 -070033
34// The help message shown if help flag is passed to the program.
35static const char kHelpMessage[] = "\n"
36 "Available Switches: \n"
37 " --foreground\n"
38 " Don\'t daemon()ize; run in foreground.\n"
39 " --config_dir\n"
40 " Directory to read confguration settings.\n"
41 " --default_config_dir\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070042 " Directory to read default configuration settings (Read Only)."
43 " --log-level=N\n"
44 " LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.\n"
45 " --v=N\n"
46 " Enables VLOG(N) and below.\n"
47 " --vmodule=\"*file_pattern*=1,certain_file.cc=2\".\n"
48 " Enable VLOG() at different levels in different files/modules.\n";
Chris Masoneee929b72011-05-10 10:02:18 -070049} // namespace switches
50
51// Always logs to the syslog and logs to stderr if
52// we are running in the foreground.
53void SetupLogging(bool foreground) {
54 int log_flags = 0;
55 log_flags |= chromeos::kLogToSyslog;
56 if (foreground) {
57 log_flags |= chromeos::kLogToStderr;
58 }
59 chromeos::InitLog(log_flags);
60}
61
62
63int main(int argc, char** argv) {
Chris Masone0e1d1042011-05-09 18:07:03 -070064 base::AtExitManager exit_manager;
Chris Masoneee929b72011-05-10 10:02:18 -070065 CommandLine::Init(argc, argv);
66 CommandLine* cl = CommandLine::ForCurrentProcess();
67
68 // If the help flag is set, force log in foreground.
69 SetupLogging(cl->HasSwitch(switches::kForeground) ||
70 cl->HasSwitch(switches::kHelp));
71 if (cl->HasSwitch(switches::kHelp)) {
72 LOG(INFO) << switches::kHelpMessage;
73 return 0;
Paul Stewart75897df2011-04-27 09:05:53 -070074 }
Chris Masone7ccc8192011-05-24 14:54:49 -070075 if (cl->HasSwitch(switches::kLogLevel)) {
76 std::string log_level = cl->GetSwitchValueASCII(switches::kLogLevel);
77 int level = 0;
78 if (base::StringToInt(log_level, &level) &&
79 level >= 0 && level < logging::LOG_NUM_SEVERITIES) {
80 logging::SetMinLogLevel(level);
81 } else {
82 LOG(WARNING) << "Bad log level: " << log_level;
83 }
84 }
Paul Stewart75897df2011-04-27 09:05:53 -070085
Chris Masoneee929b72011-05-10 10:02:18 -070086 FilePath config_dir(cl->GetSwitchValueASCII(switches::kConfigDir));
87 FilePath default_config_dir(
88 !cl->HasSwitch(switches::kDefaultConfigDir) ?
89 shill::Config::kShillDefaultPrefsDir :
90 cl->GetSwitchValueASCII(switches::kDefaultConfigDir));
Paul Stewart75897df2011-04-27 09:05:53 -070091
Paul Stewart75897df2011-04-27 09:05:53 -070092 shill::Config config; /* (config_dir, default_config_dir) */
93
94 // TODO(pstew): This should be chosen based on config
Darin Petkovd1b715b2011-06-02 21:21:22 -070095 shill::DBusControl *dbus_control = new shill::DBusControl();
96 dbus_control->Init();
97 shill::DHCPProvider::GetInstance()->Init(dbus_control->connection());
Paul Stewart75897df2011-04-27 09:05:53 -070098
Darin Petkovd1b715b2011-06-02 21:21:22 -070099 shill::Daemon daemon(&config, dbus_control);
Paul Stewart75897df2011-04-27 09:05:53 -0700100 daemon.Run();
101
102 return 0;
103}