blob: 0a09267b9051be7b48cd5f458b93f92b54c9edb0 [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"
Darin Petkovf7897bc2011-06-08 17:13:36 -070017#include "shill/glib.h"
Darin Petkov633ac6f2011-07-08 13:56:13 -070018#include "shill/shill_config.h"
Darin Petkovd1b715b2011-06-02 21:21:22 -070019#include "shill/shill_daemon.h"
Paul Stewart75897df2011-04-27 09:05:53 -070020
21using std::string;
22
Chris Masoneee929b72011-05-10 10:02:18 -070023namespace switches {
24
25// Don't daemon()ize; run in foreground.
26static const char kForeground[] = "foreground";
27// Directory to read confguration settings.
28static const char kConfigDir[] = "config-dir";
29// Directory to read default configuration settings (Read Only).
30static const char kDefaultConfigDir[] = "default-config-dir";
31// Flag that causes shill to show the help message and exit.
32static const char kHelp[] = "help";
Chris Masone7ccc8192011-05-24 14:54:49 -070033// LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.
34static const char kLogLevel[] = "log-level";
Chris Masoneee929b72011-05-10 10:02:18 -070035
36// The help message shown if help flag is passed to the program.
37static const char kHelpMessage[] = "\n"
38 "Available Switches: \n"
39 " --foreground\n"
40 " Don\'t daemon()ize; run in foreground.\n"
41 " --config_dir\n"
42 " Directory to read confguration settings.\n"
43 " --default_config_dir\n"
Chris Masone7ccc8192011-05-24 14:54:49 -070044 " Directory to read default configuration settings (Read Only)."
45 " --log-level=N\n"
46 " LOG() level. 0 = INFO, 1 = WARNING, 2 = ERROR.\n"
47 " --v=N\n"
48 " Enables VLOG(N) and below.\n"
49 " --vmodule=\"*file_pattern*=1,certain_file.cc=2\".\n"
50 " Enable VLOG() at different levels in different files/modules.\n";
Chris Masoneee929b72011-05-10 10:02:18 -070051} // namespace switches
52
53// Always logs to the syslog and logs to stderr if
54// we are running in the foreground.
55void SetupLogging(bool foreground) {
56 int log_flags = 0;
57 log_flags |= chromeos::kLogToSyslog;
58 if (foreground) {
59 log_flags |= chromeos::kLogToStderr;
60 }
61 chromeos::InitLog(log_flags);
62}
63
64
65int main(int argc, char** argv) {
Chris Masone0e1d1042011-05-09 18:07:03 -070066 base::AtExitManager exit_manager;
Chris Masoneee929b72011-05-10 10:02:18 -070067 CommandLine::Init(argc, argv);
68 CommandLine* cl = CommandLine::ForCurrentProcess();
69
70 // If the help flag is set, force log in foreground.
71 SetupLogging(cl->HasSwitch(switches::kForeground) ||
72 cl->HasSwitch(switches::kHelp));
73 if (cl->HasSwitch(switches::kHelp)) {
74 LOG(INFO) << switches::kHelpMessage;
75 return 0;
Paul Stewart75897df2011-04-27 09:05:53 -070076 }
Chris Masone7ccc8192011-05-24 14:54:49 -070077 if (cl->HasSwitch(switches::kLogLevel)) {
78 std::string log_level = cl->GetSwitchValueASCII(switches::kLogLevel);
79 int level = 0;
80 if (base::StringToInt(log_level, &level) &&
81 level >= 0 && level < logging::LOG_NUM_SEVERITIES) {
82 logging::SetMinLogLevel(level);
83 } else {
84 LOG(WARNING) << "Bad log level: " << log_level;
85 }
86 }
Paul Stewart75897df2011-04-27 09:05:53 -070087
Chris Masoneee929b72011-05-10 10:02:18 -070088 FilePath config_dir(cl->GetSwitchValueASCII(switches::kConfigDir));
89 FilePath default_config_dir(
90 !cl->HasSwitch(switches::kDefaultConfigDir) ?
91 shill::Config::kShillDefaultPrefsDir :
92 cl->GetSwitchValueASCII(switches::kDefaultConfigDir));
Paul Stewart75897df2011-04-27 09:05:53 -070093
Paul Stewart75897df2011-04-27 09:05:53 -070094 shill::Config config; /* (config_dir, default_config_dir) */
95
96 // TODO(pstew): This should be chosen based on config
Darin Petkovd1b715b2011-06-02 21:21:22 -070097 shill::DBusControl *dbus_control = new shill::DBusControl();
98 dbus_control->Init();
Darin Petkovf7897bc2011-06-08 17:13:36 -070099 shill::GLib glib;
100 shill::DHCPProvider::GetInstance()->Init(dbus_control->connection(), &glib);
Paul Stewart75897df2011-04-27 09:05:53 -0700101
Darin Petkovd1b715b2011-06-02 21:21:22 -0700102 shill::Daemon daemon(&config, dbus_control);
Paul Stewart75897df2011-04-27 09:05:53 -0700103 daemon.Run();
104
105 return 0;
106}