blob: 48d21cf3e197b17932200d5a74ea38702136089b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// Copyright (c) 2012 The Chromium 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 CHROMEOS_DBUS_BLOCKING_METHOD_CALLER_H_
#define CHROMEOS_DBUS_BLOCKING_METHOD_CALLER_H_
#pragma once
#include "base/callback.h"
#include "base/synchronization/waitable_event.h"
#include "chromeos/chromeos_export.h"
namespace dbus {
class Bus;
class ObjectProxy;
class MethodCall;
class Response;
} // namespace dbus
namespace chromeos {
// A utility class to call D-Bus methods in a synchronous (blocking) way.
// Note: Blocking the thread until it returns is not a good idea in most cases.
// Avoid using this class as hard as you can.
class CHROMEOS_EXPORT BlockingMethodCaller {
public:
BlockingMethodCaller(dbus::Bus* bus, dbus::ObjectProxy* proxy);
virtual ~BlockingMethodCaller();
// Calls the method and blocks until it returns.
// The caller is responsible to delete the returned object.
dbus::Response* CallMethodAndBlock(dbus::MethodCall* method_call);
private:
dbus::Bus* bus_;
dbus::ObjectProxy* proxy_;
base::WaitableEvent on_blocking_method_call_;
DISALLOW_COPY_AND_ASSIGN(BlockingMethodCaller);
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_BLOCKING_METHOD_CALLER_H_
|