1 .. -*- coding: utf-8; mode: rst -*-
12 CEC_DQEVENT - Dequeue a CEC event
18 .. cpp:function:: int ioctl( int fd, int request, struct cec_event *argp )
24 File descriptor returned by :ref:`open() <cec-func-open>`.
35 .. note:: This documents the proposed CEC API. This API is not yet finalized
36 and is currently only available as a staging kernel module.
38 CEC devices can send asynchronous events. These can be retrieved by
39 calling :ref:`ioctl CEC_DQEVENT <CEC_DQEVENT>`. If the file descriptor is in
40 non-blocking mode and no event is pending, then it will return -1 and
41 set errno to the ``EAGAIN`` error code.
43 The internal event queues are per-filehandle and per-event type. If
44 there is no more room in a queue then the last event is overwritten with
45 the new one. This means that intermediate results can be thrown away but
46 that the latest event is always available. This also means that is it
47 possible to read two successive events that have the same value (e.g.
48 two :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>` events with
49 the same state). In that case the intermediate state changes were lost but
50 it is guaranteed that the state did change in between the two events.
53 .. _cec-event-state-change_s:
55 .. flat-table:: struct cec_event_state_change
67 - The current physical address.
75 - The current set of claimed logical addresses.
79 .. _cec-event-lost-msgs_s:
81 .. flat-table:: struct cec_event_lost_msgs
93 - Set to the number of lost messages since the filehandle was opened
94 or since the last time this event was dequeued for this
95 filehandle. The messages lost are the oldest messages. So when a
96 new message arrives and there is no more room, then the oldest
97 message is discarded to make room for the new one. The internal
98 size of the message queue guarantees that all messages received in
99 the last two seconds will be stored. Since messages should be
100 replied to within a second according to the CEC specification,
101 this is more than enough.
107 .. flat-table:: struct cec_event
119 - Timestamp of the event in ns.
120 The timestamp has been taken from the ``CLOCK_MONOTONIC`` clock. To access
121 the same clock from userspace use :c:func:`clock_gettime(2)`.
131 - The CEC event type, see :ref:`cec-events`.
141 - Event flags, see :ref:`cec-event-flags`.
157 - struct cec_event_state_change
161 - The new adapter state as sent by the :ref:`CEC_EVENT_STATE_CHANGE <CEC-EVENT-STATE-CHANGE>`
167 - struct cec_event_lost_msgs
171 - The number of lost messages as sent by the :ref:`CEC_EVENT_LOST_MSGS <CEC-EVENT-LOST-MSGS>`
178 .. flat-table:: CEC Events Types
184 - .. _`CEC-EVENT-STATE-CHANGE`:
186 - ``CEC_EVENT_STATE_CHANGE``
190 - Generated when the CEC Adapter's state changes. When open() is
191 called an initial event will be generated for that filehandle with
192 the CEC Adapter's state at that time.
194 - .. _`CEC-EVENT-LOST-MSGS`:
196 - ``CEC_EVENT_LOST_MSGS``
200 - Generated if one or more CEC messages were lost because the
201 application didn't dequeue CEC messages fast enough.
207 .. flat-table:: CEC Event Flags
213 - .. _`CEC-EVENT-FL-INITIAL-VALUE`:
215 - ``CEC_EVENT_FL_INITIAL_VALUE``
219 - Set for the initial events that are generated when the device is
220 opened. See the table above for which events do this. This allows
221 applications to learn the initial state of the CEC adapter at
229 On success 0 is returned, on error -1 and the ``errno`` variable is set
230 appropriately. The generic error codes are described at the
231 :ref:`Generic Error Codes <gen-errors>` chapter.