blob: 3fbb5e15f57a454f4c6eeb4607d87df40f15797e [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <cstdlib>
#include <string>
#include <base/at_exit.h>
#include <base/command_line.h>
#include <base/logging.h>
#include <chromeos/syslog_logging.h>
#include <dbus-c++/eventloop-integration.h>
#include "shill/rpc_task.h"
#include "shill/shims/environment.h"
#include "shill/shims/task_proxy.h"
using shill::shims::Environment;
using std::map;
using std::string;
int main(int argc, char **argv) {
base::AtExitManager exit_manager;
CommandLine::Init(argc, argv);
chromeos::InitLog(chromeos::kLogToSyslog | chromeos::kLogHeader);
Environment *environment = Environment::GetInstance();
string service, path, reason;
if (!environment->GetVariable(shill::kRPCTaskServiceVariable, &service) ||
!environment->GetVariable(shill::kRPCTaskPathVariable, &path) ||
!environment->GetVariable("script_type", &reason)) {
LOG(ERROR) << "Environment variables not available.";
return EXIT_FAILURE;
}
DBus::BusDispatcher dispatcher;
DBus::default_dispatcher = &dispatcher;
DBus::Connection connection(DBus::Connection::SystemBus());
shill::shims::TaskProxy proxy(&connection, path, service);
map<string, string> env = environment->AsMap();
proxy.Notify(reason, env);
return EXIT_SUCCESS;
}