blob: 772af76a27d8927acd06ef4d00dbe9f4f15e9b80 [file] [log] [blame]
//
// Copyright (C) 2014 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include "apmanager/daemon.h"
#include <sysexits.h>
#include <base/logging.h>
#include <base/message_loop/message_loop_proxy.h>
#include <base/run_loop.h>
namespace apmanager {
namespace {
const char kAPManagerServiceName[] = "org.chromium.apmanager";
const char kAPMRootServicePath[] = "/org/chromium/apmanager";
} // namespace
// static
const char Daemon::kAPManagerGroupName[] = "apmanager";
const char Daemon::kAPManagerUserName[] = "apmanager";
Daemon::Daemon(const base::Closure& startup_callback)
: DBusServiceDaemon(kAPManagerServiceName, kAPMRootServicePath),
startup_callback_(startup_callback) {
}
int Daemon::OnInit() {
int return_code = chromeos::DBusServiceDaemon::OnInit();
if (return_code != EX_OK) {
return return_code;
}
// Signal that we've acquired all resources.
startup_callback_.Run();
// Start manager.
manager_->Start();
return EX_OK;
}
void Daemon::OnShutdown(int* return_code) {
manager_.reset();
chromeos::DBusServiceDaemon::OnShutdown(return_code);
}
void Daemon::RegisterDBusObjectsAsync(
chromeos::dbus_utils::AsyncEventSequencer* sequencer) {
manager_.reset(new apmanager::Manager());
manager_->RegisterAsync(object_manager_.get(), bus_, sequencer);
}
} // namespace apmanager