1 .. -*- coding: utf-8; mode: rst -*-
12 CEC_DQEVENT - Dequeue a CEC event
18 .. c:function:: int ioctl( int fd, CEC_DQEVENT, struct cec_event *argp )
25 File descriptor returned by :c:func:`open() <cec-open>`.
33 CEC devices can send asynchronous events. These can be retrieved by
34 calling :c:func:`CEC_DQEVENT`. If the file descriptor is in
35 non-blocking mode and no event is pending, then it will return -1 and
36 set errno to the ``EAGAIN`` error code.
38 The internal event queues are per-filehandle and per-event type. If
39 there is no more room in a queue then the last event is overwritten with
40 the new one. This means that intermediate results can be thrown away but
41 that the latest event is always available. This also means that is it
42 possible to read two successive events that have the same value (e.g.
43 two :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>` events with
44 the same state). In that case the intermediate state changes were lost but
45 it is guaranteed that the state did change in between the two events.
47 .. tabularcolumns:: |p{1.2cm}|p{2.9cm}|p{13.4cm}|
49 .. c:type:: cec_event_state_change
51 .. flat-table:: struct cec_event_state_change
58 - The current physical address. This is ``CEC_PHYS_ADDR_INVALID`` if no
59 valid physical address is set.
62 - The current set of claimed logical addresses. This is 0 if no logical
63 addresses are claimed or if ``phys_addr`` is ``CEC_PHYS_ADDR_INVALID``.
64 If bit 15 is set (``1 << CEC_LOG_ADDR_UNREGISTERED``) then this device
65 has the unregistered logical address. In that case all other bits are 0.
68 .. c:type:: cec_event_lost_msgs
70 .. tabularcolumns:: |p{1.0cm}|p{2.0cm}|p{14.5cm}|
72 .. flat-table:: struct cec_event_lost_msgs
79 - Set to the number of lost messages since the filehandle was opened
80 or since the last time this event was dequeued for this
81 filehandle. The messages lost are the oldest messages. So when a
82 new message arrives and there is no more room, then the oldest
83 message is discarded to make room for the new one. The internal
84 size of the message queue guarantees that all messages received in
85 the last two seconds will be stored. Since messages should be
86 replied to within a second according to the CEC specification,
87 this is more than enough.
90 .. tabularcolumns:: |p{1.0cm}|p{4.4cm}|p{2.5cm}|p{9.6cm}|
94 .. flat-table:: struct cec_event
101 - :cspan:`1`\ Timestamp of the event in ns.
103 The timestamp has been taken from the ``CLOCK_MONOTONIC`` clock.
105 To access the same clock from userspace use :c:func:`clock_gettime`.
108 - :cspan:`1` The CEC event type, see :ref:`cec-events`.
111 - :cspan:`1` Event flags, see :ref:`cec-event-flags`.
117 - struct cec_event_state_change
119 - The new adapter state as sent by the :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>`
122 - struct cec_event_lost_msgs
124 - The number of lost messages as sent by the :ref:`CEC_EVENT_LOST_MSGS <CEC-EVENT-LOST-MSGS>`
128 .. tabularcolumns:: |p{5.6cm}|p{0.9cm}|p{11.0cm}|
132 .. flat-table:: CEC Events Types
137 * .. _`CEC-EVENT-STATE-CHANGE`:
139 - ``CEC_EVENT_STATE_CHANGE``
141 - Generated when the CEC Adapter's state changes. When open() is
142 called an initial event will be generated for that filehandle with
143 the CEC Adapter's state at that time.
144 * .. _`CEC-EVENT-LOST-MSGS`:
146 - ``CEC_EVENT_LOST_MSGS``
148 - Generated if one or more CEC messages were lost because the
149 application didn't dequeue CEC messages fast enough.
150 * .. _`CEC-EVENT-PIN-CEC-LOW`:
152 - ``CEC_EVENT_PIN_CEC_LOW``
154 - Generated if the CEC pin goes from a high voltage to a low voltage.
155 Only applies to adapters that have the ``CEC_CAP_MONITOR_PIN``
157 * .. _`CEC-EVENT-PIN-CEC-HIGH`:
159 - ``CEC_EVENT_PIN_CEC_HIGH``
161 - Generated if the CEC pin goes from a low voltage to a high voltage.
162 Only applies to adapters that have the ``CEC_CAP_MONITOR_PIN``
164 * .. _`CEC-EVENT-PIN-HPD-LOW`:
166 - ``CEC_EVENT_PIN_HPD_LOW``
168 - Generated if the HPD pin goes from a high voltage to a low voltage.
169 Only applies to adapters that have the ``CEC_CAP_MONITOR_PIN``
170 capability set. When open() is called, the HPD pin can be read and
171 if the HPD is low, then an initial event will be generated for that
173 * .. _`CEC-EVENT-PIN-HPD-HIGH`:
175 - ``CEC_EVENT_PIN_HPD_HIGH``
177 - Generated if the HPD pin goes from a low voltage to a high voltage.
178 Only applies to adapters that have the ``CEC_CAP_MONITOR_PIN``
179 capability set. When open() is called, the HPD pin can be read and
180 if the HPD is high, then an initial event will be generated for that
184 .. tabularcolumns:: |p{6.0cm}|p{0.6cm}|p{10.9cm}|
188 .. flat-table:: CEC Event Flags
193 * .. _`CEC-EVENT-FL-INITIAL-STATE`:
195 - ``CEC_EVENT_FL_INITIAL_STATE``
197 - Set for the initial events that are generated when the device is
198 opened. See the table above for which events do this. This allows
199 applications to learn the initial state of the CEC adapter at
201 * .. _`CEC-EVENT-FL-DROPPED-EVENTS`:
203 - ``CEC_EVENT_FL_DROPPED_EVENTS``
205 - Set if one or more events of the given event type have been dropped.
206 This is an indication that the application cannot keep up.
213 On success 0 is returned, on error -1 and the ``errno`` variable is set
214 appropriately. The generic error codes are described at the
215 :ref:`Generic Error Codes <gen-errors>` chapter.
217 The :ref:`ioctl CEC_DQEVENT <CEC_DQEVENT>` can return the following
221 This is returned when the filehandle is in non-blocking mode and there
222 are no pending events.
225 An interrupt (e.g. Ctrl-C) arrived while in blocking mode waiting for