1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chromeos/dbus/introspectable_client.h"
10 #include "base/bind.h"
11 #include "base/logging.h"
13 #include "dbus/message.h"
14 #include "dbus/object_path.h"
15 #include "dbus/object_proxy.h"
16 #include "third_party/libxml/chromium/libxml_utils.h"
20 // D-Bus specification constants.
21 const char kIntrospectableInterface
[] = "org.freedesktop.DBus.Introspectable";
22 const char kIntrospect
[] = "Introspect";
24 // String constants used for parsing D-Bus Introspection XML data.
25 const char kInterfaceNode
[] = "interface";
26 const char kInterfaceNameAttribute
[] = "name";
32 // The IntrospectableClient implementation used in production.
33 class IntrospectableClientImpl
: public IntrospectableClient
{
35 explicit IntrospectableClientImpl(dbus::Bus
* bus
)
37 weak_ptr_factory_(this) {
40 virtual ~IntrospectableClientImpl() {
43 // IntrospectableClient override.
44 virtual void Introspect(const std::string
& service_name
,
45 const dbus::ObjectPath
& object_path
,
46 const IntrospectCallback
& callback
) OVERRIDE
{
47 dbus::MethodCall
method_call(kIntrospectableInterface
, kIntrospect
);
49 dbus::ObjectProxy
* object_proxy
= bus_
->GetObjectProxy(service_name
,
52 object_proxy
->CallMethod(
54 dbus::ObjectProxy::TIMEOUT_USE_DEFAULT
,
55 base::Bind(&IntrospectableClientImpl::OnIntrospect
,
56 weak_ptr_factory_
.GetWeakPtr(),
57 service_name
, object_path
, callback
));
61 // Called by dbus:: when a response for Introspect() is recieved.
62 void OnIntrospect(const std::string
& service_name
,
63 const dbus::ObjectPath
& object_path
,
64 const IntrospectCallback
& callback
,
65 dbus::Response
* response
) {
69 if (response
!= NULL
) {
70 dbus::MessageReader
reader(response
);
71 if (!reader
.PopString(&xml_data
)) {
72 LOG(WARNING
) << "Introspect response has incorrect paramters: "
73 << response
->ToString();
80 callback
.Run(service_name
, object_path
, xml_data
, success
);
85 // Weak pointer factory for generating 'this' pointers that might live longer
87 // Note: This should remain the last member so it'll be destroyed and
88 // invalidate its weak pointers before any other members are destroyed.
89 base::WeakPtrFactory
<IntrospectableClientImpl
> weak_ptr_factory_
;
91 DISALLOW_COPY_AND_ASSIGN(IntrospectableClientImpl
);
94 // The IntrospectableClient implementation used on Linux desktop, which does
96 class IntrospectableClientStubImpl
: public IntrospectableClient
{
98 // IntrospectableClient override.
99 virtual void Introspect(const std::string
& service_name
,
100 const dbus::ObjectPath
& object_path
,
101 const IntrospectCallback
& callback
) OVERRIDE
{
102 VLOG(1) << "Introspect: " << service_name
<< " " << object_path
.value();
103 callback
.Run(service_name
, object_path
, "", false);
107 IntrospectableClient::IntrospectableClient() {
110 IntrospectableClient::~IntrospectableClient() {
114 std::vector
<std::string
>
115 IntrospectableClient::GetInterfacesFromIntrospectResult(
116 const std::string
& xml_data
) {
117 std::vector
<std::string
> interfaces
;
120 if (!reader
.Load(xml_data
))
124 // Skip to the next open tag, exit when done.
125 while (!reader
.SkipToElement()) {
126 if (!reader
.Read()) {
131 // Only look at interface nodes.
132 if (reader
.NodeName() != kInterfaceNode
)
135 // Skip if missing the interface name.
136 std::string interface_name
;
137 if (!reader
.NodeAttribute(kInterfaceNameAttribute
, &interface_name
))
140 interfaces
.push_back(interface_name
);
141 } while (reader
.Read());
147 IntrospectableClient
* IntrospectableClient::Create(
148 DBusClientImplementationType type
,
150 if (type
== REAL_DBUS_CLIENT_IMPLEMENTATION
)
151 return new IntrospectableClientImpl(bus
);
152 DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION
, type
);
153 return new IntrospectableClientStubImpl();
156 } // namespace chromeos