blob: aa0f6e11e5143488cee1260db98bdf61c96b7b7a (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
description: >
Implement to provide DBus service lookup features.
Any OpenBMC implementation must provide exactly one implementation of
xyz.openbmc_project.ObjectMapper on /xyz/openbmc_project/ObjectMapper.
methods:
- name: GetObject
description: >
Obtain a dictionary of service -> implemented interface(s)
for the given path.
parameters:
- name: path
type: s # TODO: o
description: >
The object path for which the result should be fetched.
returns:
- name: services
type: a{sas}
description: >
A dictionary of service -> implemented interface(s).
- name: GetAncestors
description: >
Obtain a dictionary of ancestor -> services where ancestor is an
ancestor of path and services is of the type returned by the
GetObject method.
parameters:
- name: path
type: s # TODO: o
description: >
The path for which the result should be fetched.
returns:
- name: ancestors
type: a{sa{sas}} # TODO a{oa{sas}}
description: >
A dictionary of ancestor -> services.
- name: GetSubTree
description: >
Obtain a dictionary of path -> services where path is in
sutbtree and services is of the type returned by the
GetObject method.
parameters:
- name: subtree
type: s # TODO: o
description: >
The subtree path for which the result should be fetched.
- name: depth
type: i
description: >
The maximum subtree depth for which results should be fetched.
For unconstrained fetches use a depth of zero.
returns:
- name: objects
type: a{sa{sas}} # TODO a{oa{sas}}
description: >
A dictionary of path -> services.
- name: GetSubTreePaths
description: >
Obtain an array of paths where array elements are in subtree.
parameters:
- name: subtree
type: s # TODO: o
description: >
The subtree path for which the result should be fetched.
- name: depth
type: i
description: >
The maximum subtree depth for which results should be fetched.
For unconstrained fetches use a depth of zero.
returns:
- name: paths
type: as # TODO ao
description: >
An array of paths.
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|