blob: 32725c71bf460ad51bfb7046b4c52f9c8f5365b9 [file] [log] [blame]
// Copyright (c) 2010 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.
#ifndef LIBBRILLO_BRILLO_GLIB_ABSTRACT_DBUS_SERVICE_H_
#define LIBBRILLO_BRILLO_GLIB_ABSTRACT_DBUS_SERVICE_H_
// IMPORTANT: Do not use this in new code. Instead, use
// <brillo/daemons/dbus_daemon.h>. See https://goo.gl/EH3MmR for more details.
#include <brillo/brillo_export.h>
#include <brillo/glib/dbus.h>
namespace brillo {
namespace dbus {
class BRILLO_EXPORT AbstractDbusService {
public:
virtual ~AbstractDbusService() {}
// Setup the wrapped GObject and the GMainLoop
virtual bool Initialize() = 0;
virtual bool Reset() = 0;
// Registers the GObject as a service with the system DBus
// TODO(wad) make this testable by making BusConn and Proxy
// subclassing friendly.
virtual bool Register(const brillo::dbus::BusConnection& conn);
// Starts the run loop
virtual bool Run();
// Stops the run loop
virtual bool Shutdown();
// Used internally during registration to set the
// proper service information.
virtual const char* service_name() const = 0;
virtual const char* service_path() const = 0;
virtual const char* service_interface() const = 0;
virtual GObject* service_object() const = 0;
protected:
virtual GMainLoop* main_loop() = 0;
};
} // namespace dbus
} // namespace brillo
#endif // LIBBRILLO_BRILLO_GLIB_ABSTRACT_DBUS_SERVICE_H_