You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
// 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_
|