summaryrefslogtreecommitdiff
path: root/spec/Connection_Interface_Service_Point.xml
blob: b135c04c72fd8e1bd8106c17ef12bf9ad1f12e47 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" ?>
<node name="/Connection_Interface_Service_Point" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
  <tp:copyright> Copyright © 2005-2010 Nokia Corporation </tp:copyright>
  <tp:copyright> Copyright © 2005-2010 Collabora Ltd </tp:copyright>
  <tp:license xmlns="http://www.w3.org/1999/xhtml">
    <p>This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.</p>

<p>This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.</p>

<p>You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</p>
  </tp:license>
  <interface name="org.freedesktop.Telepathy.Connection.Interface.ServicePoint">
    <tp:added version="0.19.7">(as stable API)</tp:added>

    <tp:docstring xmlns="http://www.w3.org/1999/xhtml">
      <p>An interface for connections whose channels may be able to indicate
        specific they are connected to some form
        of service station.  For example, when
        dialing 9-1-1 in the US, a GSM modem/network will recognize that as
        an emergency call, and inform higher levels of the stack that the
        call is being handled by an emergency service.  In this example,
        the call is handled by a Public Safety Answering Point (PSAP) which is labeled
        as "urn:service:sos".  Other networks and protocols may handle this
        differently while still using this interface.</p>
    </tp:docstring>

   <tp:struct name="Service_Point_Info" array-name="Service_Point_Info_List">
      <tp:member type="(us)" tp:type="Service_Point" name="Service_Point">
        <tp:docstring>
          The service point.
        </tp:docstring>
      </tp:member>
      <tp:member type="as" name="Service_IDs">
        <tp:docstring>
          A list of IDs that are mapped to this service. This is provided as
          a convenience for the UIs, but the preferred method for
          requesting channel to a service is by setting the <tp:dbus-ref
            namespace="org.freedesktop.Telepathy.Channel.Interface.ServicePoint">InitialServicePoint</tp:dbus-ref>
            property in a channel request.
        </tp:docstring>
      </tp:member>
      <tp:docstring>
        <p>Description of a service point and IDs which are mapped to it.</p>

        <p>An example Service Point info for GSM emergency calls (callable
          through "911" and "112") could look like:</p>

<pre>
  ServicePointInfo = (
    Service_Point: (
      Service_Point_Type: 1 (Emergency),
      Service_Point: "urn:service:sos"
    ),
    Service_IDs: [ "911", "112" ]
  )
</pre>
      </tp:docstring>
    </tp:struct>

    <property name="KnownServicePoints" tp:name-for-bindings="Known_Service_Points"
      type="a((us)as)" tp:type="Service_Point_Info[]" access="read">
        <tp:docstring xmlns="http://www.w3.org/1999/xhtml">
         The list of all (known) service points.
        </tp:docstring>
    </property>

    <signal name="ServicePointsChanged" tp:name-for-bindings="Service_Points_Changed">
      <arg name="Service_Points" type="a((us)as)" tp:type="Service_Point_Info[]">
        <tp:docstring xmlns="http://www.w3.org/1999/xhtml">
          <p>The new value of
            <tp:member-ref>KnownServicePoints</tp:member-ref>.</p>
        </tp:docstring>
      </arg>
      <tp:docstring>
        Emitted when the list of known service points (or their IDs) has
        changed.
      </tp:docstring>
    </signal>

    <tp:struct name="Service_Point">
      <tp:docstring>A service point.</tp:docstring>
      <tp:member type="u" name="Service_Point_Type"
        tp:type="Service_Point_Type">
        <tp:docstring>
          The service type.
        </tp:docstring>
      </tp:member>
      <tp:member type="s" name="Service">
        <tp:docstring>
          String representation of the service point. The representation is
          service specific; it may be a 'service' Uniform Resource Name as
          specified by <a
            href="http://www.rfc-editor.org/rfc/rfc5031.txt">RFC 5031</a>,
          or may be in some other form. Empty, unused or unknown value is
          represented by "".
        </tp:docstring>
      </tp:member>
    </tp:struct>

    <tp:enum name="Service_Point_Type" type="u">
      <tp:docstring>
        The various types of service points a channel might connect to.
      </tp:docstring>

      <tp:enumvalue value="0" suffix="None">
        <tp:docstring>
          The channel is not communicating with a service point, or it is not
          known whether it is communicating with a service point (e.g. an
          ordinary call).
        </tp:docstring>
      </tp:enumvalue>

      <tp:enumvalue value="1" suffix="Emergency">
        <tp:docstring>
          The service point is a generic emergency point.
        </tp:docstring>
      </tp:enumvalue>

      <tp:enumvalue value="2" suffix="Counseling">
        <tp:docstring>
          The service point is some kind of counseling service (ie, mental health
          or child-services counseling).
        </tp:docstring>
      </tp:enumvalue>
    </tp:enum>
  </interface>
</node>
<!-- vim:set sw=2 sts=2 et ft=xml: -->