summaryrefslogtreecommitdiff
path: root/specs/record.xml
blob: 8d7bd0a6ed05d1c5bce76f76b67d9c14d64b09a5 (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
                   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
[
<!ENTITY % defs SYSTEM "defs.ent"> %defs;
]>


<!-- lifted from troff+ms+XMan by doclifter -->
<book id="record">

<bookinfo>
  <title>Record Extension Protocol Specification</title>
  <subtitle>X Consortium Standard</subtitle>
  <authorgroup>
    <author>
      <firstname>Martha</firstname><surname>Zimet</surname>
      <affiliation><orgname>Network Computing Devices, Inc.</orgname></affiliation>
    </author>
    <editor>
      <firstname>Stephen</firstname><surname>Gildea</surname>
      <affiliation><orgname>X Consortium</orgname></affiliation>
    </editor>
  </authorgroup>
  <releaseinfo>X Version 11, Release &fullrelvers;</releaseinfo>
  <copyright><year>1994</year><holder>Network Computing Devices, Inc.</holder>
  </copyright>

<legalnotice>
<para>
Permission to use, copy, modify, distribute, and sell this
documentation for any purpose is hereby granted without fee,
provided that the above copyright notice and this permission
notice appear in all copies.  Network Computing Devices, Inc.
makes no representations about the suitability for any purpose
of the information in this document.  This documentation is
provided &ldquo;as is&rdquo; without express or implied warranty.
</para>
</legalnotice>

<legalnotice>
<para role="multiLicensing">Copyright &copy; 1994, 1995 X Consortium</para>
<para>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
</para>

<para>
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
</para>

<para>
THE SOFTWARE IS PROVIDED &ldquo;AS IS&rdquo;, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
</para>

<para>
Except as contained in this notice, the name of the X Consortium and
shall not be used in advertising or otherwise to promote the sale, use
or other dealings in this Software without prior written authorization
from the X Consortium.
</para>
<para>X Window System is a trademark of The Open Group.</para>
</legalnotice>
</bookinfo>

<chapter id="Introduction">
<title>Introduction</title>
<para>
Several proposals have been written over the past few years that address some
of the issues surrounding the recording and playback of user actions
in the X Window System<footnote><para>
<emphasis remap='I'>X Window System</emphasis> is a trademark of The Open Group.
</para></footnote>
:
</para>

<itemizedlist>
  <listitem>
    <para>
<emphasis remap='I'>Some Proposals for a Minimal X11 Testing Extension</emphasis>,
Kieron Drake, UniSoft Ltd., April 1991
    </para>
  </listitem>
  <listitem>
    <para>
<emphasis remap='I'>X11 Input Synthesis Extension Proposal</emphasis>, Larry Woestman,
Hewlett Packard, November 1991
    </para>
  </listitem>
  <listitem>
    <para>
<emphasis remap='I'>XTrap Architecture</emphasis>, Dick Annicchiario, et al, Digital Equipment Corporation,
July 1991
    </para>
  </listitem>
  <listitem>
    <para>
<emphasis remap='I'>XTest Extension Recording Specification</emphasis>, Yochanan Slonim,
Mercury Interactive, December 1992
    </para>
  </listitem>
</itemizedlist>

<para>
This document both unifies and extends the previous diverse approaches
to generate a proposal for an X extension that provides support for
the recording of all core X protocol and arbitrary extension protocol.
Input synthesis, or playback, has already been implemented in the
XTest extension, an X Consortium standard.  Therefore, this extension
is limited to recording.
</para>

<para>
In order to provide both record and playback functionality, a
hypothetical record application could use this extension to capture
both user actions and their consequences.  For example, a button press
(a user action) may cause a window to be mapped and a corresponding
<function>MapNotify</function>
event to be sent (a consequence).  This information could be
stored for later use by a playback application.
</para>

<para>
The playback application could use the recorded actions as input for
the XTest extension's
<function>XTestFakeInput</function>
operation to synthesize the
appropriate input events.  The "consequence" or synchronization
information is then used as a synchronization point during playback.
That is, the playback application does not generate specific
synthesized events until their matching synchronization condition
occurs.  When the condition occurs the processing of synthesized
events continues.  Determination that the condition has occurred may be
made by capturing the consequences of the synthesized events and
comparing them to the previously recorded synchronization information.
For example, if a button press was followed by a
<function>MapNotify</function>
event on a
particular window in the recorded data, the playback application might
synthesize the button press then wait for the
<function>MapNotify</function>
event on the
appropriate window before proceeding with subsequent synthesized
input.
</para>

<para>
Because
it is impossible to predict what synchronization information will be
required by a particular application, the extension provides
facilities to record any subset of core X protocol and arbitrary
extension protocol.
As such, this extension does not enforce a specific
synchronization methodology; any method based on information in the X
protocol stream (e.g., watching for window mapping/unmapping, cursor
changes, drawing of certain text strings, etc.) can capture the
information it needs using RECORD facilities.
</para>

<sect1 id="Acknowledgements">
<title>Acknowledgements</title>
<para>
The document represents the culmination of two years of debate and
experiments done under the auspices of the X Consortium xtest working
group.  Although this was a group effort, the author remains
responsible for any errors or omissions.
Two years ago, Robert Chesler of Absol-puter, Kieron Drake of UniSoft
Ltd., Marc Evans of Synergytics and Ken Miller of Digitial shared the
vision of a standard extension for recording and were all instrumental
in the early protocol development.  During the last two years, Bob
Scheifler of the X Consortium and Jim Fulton of NCD continuously
provided input to the protocol design, as well as encouragement to the
author.  In the last few months, Stephen Gildea and Dave Wiggins,
both X Consortium staff, have spent considerable time fine tuning the
protocol design and reviewing the protocol specifications.  Most
recently, Amnon Cohen of Mercury Interactive has assisted in
clarification of the recorded event policy, and Kent Siefkes of
Performance Awareness has assisted in clarification of the timestamp
policy.
</para>
</sect1>

<sect1 id="Goals">
<title>Goals</title>
<itemizedlist>
  <listitem>
    <para>
To provide a standard for recording,
whereby both device events and synchronization information in the
form of device event consequences are recorded.
    </para>
  </listitem>
  <listitem>
    <para>
To record contextual information used in synchronized playback
without prior knowledge of the application
that
is being recorded.
    </para>
  </listitem>
  <listitem>
    <para>
To provide the ability to record arbitrary X protocol extensions.
<!-- .RE -->
    </para>
  </listitem>
</itemizedlist>
</sect1>

<sect1 id="Requirements">
<title>Requirements</title>
<para>
The extension should function as follows:
</para>

<itemizedlist>
  <listitem>
    <para>
It should
not be dependent on other clients or extensions for its operation.
    </para>
  </listitem>
  <listitem>
    <para>
It should
not significantly impact performance.
    </para>
  </listitem>
  <listitem>
    <para>
It should
support the recording of all device input (core devices and XInput devices).
    </para>
  </listitem>
  <listitem>
    <para>
It should
be extendible.
    </para>
  </listitem>
  <listitem>
    <para>
It should
support the recording of synchronization information for user events.
    </para>
  </listitem>
</itemizedlist>
</sect1>
</chapter>

<chapter id="Design">
<title>Design</title>
<para>
This section gives an overview of the RECORD extension and discusses
its overall operation and data types.
</para>

<sect1 id="Overview">
<title>Overview</title>
<para>
The mechanism used by this extension for recording is to intercept
core X protocol and arbitrary X extension protocol entirely within the X server
itself.  When the extension has been requested to intercept specific
protocol by one or more clients, the protocol data are formatted and
returned to the recording clients.
</para>
<para>
<!-- .LP -->
The extension provides a mechanism for capturing all events, including
input device events that go to no clients, that is analogous to a client
expressing "interest" in all events in all windows, including the root
window.  Event filtering in the extension provides a mechanism for feeding
device events to recording clients; it does not provide a mechanism for
in-place, synchronous event substitution, modification, or withholding.
In addition, the
extension does not provide data compression before intercepted protocol
is returned to the recording clients.
</para>
<sect2 id="Data_Delivery">
<title>Data Delivery</title>
<!-- .XS -->
<!-- (SN Data Delivery -->
<!-- .XE -->
<para>
<!-- .LP -->
Because
events are limited in size to
32 bytes, using events to return intercepted protocol data to recording
clients is prohibitive in terms of performance.  Therefore, intercepted
protocol data are returned to recording clients through multiple replies
to the extension request to begin protocol interception and reporting.
This utilization is consistent with
<function>ListFontsWithInfo ,</function>
for example, where a
single request has multiple replies.
</para>
<para>
<!-- .LP -->
Individual requests, replies, events or errors intercepted by the extension
on behalf of recording clients cannot be split across reply packets.  In order
to reduce overhead, multiple intercepted requests, replies, events and errors
might be collected
into a single reply.
Nevertheless, all data are returned to the client in a timely manner.
</para>
</sect2>
<sect2 id="Record_Context">
<title>Record Context</title>
<!-- .XS -->
<!-- (SN Record Context -->
<!-- .XE -->
<para>
<!-- .LP -->
The extension adds a record context resource (RC)
to the set of resources managed by the server.  All the
extension operations take an RC as an argument.  Although the protocol
permits sharing of RCs between clients, it is expected that clients will
use their own RCs.  The attributes used in extension operations are stored
in the RCs, and these attributes include the protocol and clients to
intercept.
</para>
<para>
<!-- .LP -->
The terms "register" and "unregister" are used to describe the
relationship between clients to intercept and the RC.  To register
a client with an RC means the client is added to the list
of clients to intercept; to unregister a client means the client
is deleted from the list of clients to intercept.  When the
server is requested to register or unregister clients from an RC,
it is required to do so immediately.  That is, it is not permissible for
the server to wait until recording is enabled to register clients
or recording is disabled to unregister clients.
</para>
</sect2>

<sect2 id="Record_Client_Connections">
<title>Record Client Connections</title>
<!-- .XS -->
<!-- (SN Record Client Connections -->
<!-- .XE -->
<para>
<!-- .LP -->
The typical communication model for a recording client is to open
two connections to the server and use one for RC control and
the other for reading protocol data.
</para>
<para>
<!-- .LP -->
The "control" connection can execute requests to obtain information about
the supported protocol version, create and destroy RCs, specify protocol
types to intercept and clients to be recorded, query the current state
of an RC, and to stop interception and reporting of protocol data.  The
"data" connection can execute a request to
enable interception
and reporting of specified protocol for a particular RC.  When the
"enable" request is issued, intercepted protocol is sent back on the
same connection, generally in more than one reply packet.  Until the last
reply to the "enable" request is sent by the server, signifying that
the request execution is complete, no other requests will be executed by
the server on that connection.  That is, the connection that data are being
reported on cannot issue the "disable" request until the last reply
to the "enable" request is sent by the server.  Therefore, unless a
recording client never has the need to disable the interception and reporting
of protocol data, two client connections are necessary.
</para>
</sect2>
<sect2 id="Events">
<title>Events</title>
<!-- .XS -->
<!-- (SN Events -->
<!-- .XE -->
<para>
<!-- .LP -->
The terms "delivered events" and "device events" are used
to describe the two event classes recording clients may
select for interception.  These event classes are handled differently
by the extension.  Delivered events are core X events or X extension events
the server actually delivers to one or more clients.  Device events are
events generated by core X devices or extension input devices that the
server may or may not deliver to any clients.  When device events
are selected for interception by a recording client, the extension
guarantees each device event is recorded and will be forwarded
to the recording client in the same order it is generated by the
device.
</para>
<para>
<!-- .LP -->
The recording of selected device events is not affected
by server grabs.  Delivered events, on the other hand, can be affected
by server grabs.
If a recording client selects both
a device event and delivered events that result from that device
event, the delivered events are recorded after the device event.
In the absence of grabs, the delivered events for a
device event precede later device events.
</para>
<para>
<!-- .LP -->
Requests that have side effects on
devices, such as
<function>WarpPointer</function>
and
<function>GrabPointer</function>
with a confine-to window,
will cause RECORD to record an associated device event.
The XTEST extension request
<function>XTestFakeInput</function>
causes a device event to be recorded; the
device events are recorded in the same order that the
<function>XTestFakeInput</function>
requests are received by the server.
</para>
<para>
<!-- .LP -->
If a key autorepeats, multiple
<function>KeyPress</function>
and
<function>KeyRelease</function>
device events are reported.
</para>
</sect2>

<sect2 id="Timing">
<title>Timing</title>
<!-- .XS -->
<!-- (SN Timing -->
<!-- .XE -->
<para>
Requests are recorded just before
they are executed; the time associated with a request is the server
time when it is recorded.
</para>
</sect2>
</sect1>

<sect1 id="Types">
<title>Types</title>
<para>
The following new types are used in the request definitions that appear
in section 3. <!-- xref -->
</para>

<para>RC: CARD32</para>

<para>
The
<function>"RC"</function>
type is a resource identifier for a server record context.
</para>

<informaltable frame="none">
  <tgroup cols='3' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <colspec colname='c2' colsep="0" colwidth="1*"/>
  <colspec colname='c3' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>RANGE8:</entry>
      <entry>[first, last:</entry>
      <entry>CARD8]</entry>
    </row>
    <row rowsep="0">
      <entry>RANGE16:</entry>
      <entry>[first, last:</entry>
      <entry>CARD16]</entry>
    </row>
    <row rowsep="0">
      <entry>EXTRANGE:</entry>
      <entry>[major:</entry>
      <entry>RANGE8</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>minor:</entry>
      <entry>RANGE16]</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<informaltable frame="none">
  <tgroup cols='3' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <colspec colname='c2' colsep="0" colwidth="1*"/>
  <colspec colname='c3' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>RECORDRANGE:</entry>
      <entry>[core-requests:</entry>
      <entry>RANGE8</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>core-replies:</entry>
      <entry>RANGE8</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>ext-requests:</entry>
      <entry>EXTRANGE</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>ext-replies:</entry>
      <entry>EXTRANGE</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>delivered-events:</entry>
      <entry>RANGE8</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>device-events:</entry>
      <entry>RANGE8</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>errors:</entry>
      <entry>RANGE8</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>client-started:</entry>
      <entry>BOOL</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>client-died:</entry>
      <entry>BOOL]</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
The
<function>"RECORDRANGE"</function>
structure contains the protocol values to intercept.  Typically,
this structure is sent by recording clients over the control connection
when creating or modifying an RC.
</para>

<itemizedlist>
  <listitem>
    <para>
<!-- .IN "core-requests" -->
<!-- .br -->
Specifies core X protocol requests with an opcode field between <emphasis remap='I'>first</emphasis>
and <emphasis remap='I'>last</emphasis> inclusive.  If <emphasis remap='I'>first</emphasis> is equal to 0 and <emphasis remap='I'>last</emphasis> is equal to 0, no
core requests are specified by this RECORDRANGE.  If <emphasis remap='I'>first</emphasis> is greater
than <emphasis remap='I'>last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "core-replies" -->
<!-- .br -->
Specifies replies resulting from core X protocol requests with an opcode
field between <emphasis remap='I'>first</emphasis> and <emphasis remap='I'>last</emphasis> inclusive.  If <emphasis remap='I'>first</emphasis> is equal to 0 and <emphasis remap='I'>last</emphasis>
is equal to 0, no core replies are specified by this RECORDRANGE.  If
<emphasis remap='I'>first</emphasis> is greater than <emphasis remap='I'>last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "ext-requests" -->
<!-- .br -->
Specifies extension protocol requests with a major opcode field between
<emphasis remap='I'>major.first</emphasis> and <emphasis remap='I'>major.last</emphasis> and a minor opcode field between <emphasis remap='I'>minor.first</emphasis>
and <emphasis remap='I'>minor.last</emphasis> inclusive.
If <emphasis remap='I'>major.first</emphasis> and <emphasis remap='I'>major.last</emphasis> are equal to 0, no
extension protocol requests are specified by this RECORDRANGE.  If
<emphasis remap='I'>major.first</emphasis> or <emphasis remap='I'>major.last</emphasis> is less than 128 and greater than 0,
if <emphasis remap='I'>major.first</emphasis> is greater than <emphasis remap='I'>major.last</emphasis>,
or if <emphasis remap='I'>minor.first</emphasis>
is greater than <emphasis remap='I'>minor.last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "ext-replies" -->
<!-- .br -->
Specifies replies resulting from extension protocol requests with a
major opcode field between <emphasis remap='I'>major.first</emphasis> and <emphasis remap='I'>major.last</emphasis> and
a minor opcode field between <emphasis remap='I'>minor.first</emphasis> and <emphasis remap='I'>minor.last</emphasis>
inclusive.  If <emphasis remap='I'>major.first</emphasis> and <emphasis remap='I'>major.last</emphasis> are equal to 0,
no extension protocol replies are specified by this RECORDRANGE.  If
<emphasis remap='I'>major.first</emphasis> or <emphasis remap='I'>major.last</emphasis> is less than 128 and greater
than 0,
if <emphasis remap='I'>major.first</emphasis> is greater than <emphasis remap='I'>major.last</emphasis>,
or if <emphasis remap='I'>minor.first</emphasis> is greater than <emphasis remap='I'>minor.last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "delivered-events" -->
<!-- .br -->
This is used for both core X protocol events and arbitrary extension
events.  Specifies events that are delivered to at least one client
that have a code field between <emphasis remap='I'>first</emphasis> and <emphasis remap='I'>last</emphasis>
inclusive.  If <emphasis remap='I'>first</emphasis> is equal to 0 and <emphasis remap='I'>last</emphasis> is equal to 0,
no events are specified by this RECORDRANGE.
Otherwise, if <emphasis remap='I'>first</emphasis> is less than 2
or <emphasis remap='I'>last</emphasis> is less than 2, or if
<emphasis remap='I'>first</emphasis> is greater than <emphasis remap='I'>last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "device-events" -->
<!-- .br -->
This is used for both core X device events and X extension device
events that may or may not be delivered to a client.
Specifies device events that have a code field between <emphasis remap='I'>first</emphasis> and
<emphasis remap='I'>last</emphasis> inclusive.  If <emphasis remap='I'>first</emphasis> is equal to 0 and <emphasis remap='I'>last</emphasis>
is equal to 0, no device events are specified by this RECORDRANGE.
Otherwise,
if <emphasis remap='I'>first</emphasis> is less than 2 or <emphasis remap='I'>last</emphasis> is less
than 2, or if <emphasis remap='I'>first</emphasis> is greater than <emphasis remap='I'>last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
Because
the generated device event may or may not be associated with a
client, unlike other RECORDRANGE components, which select protocol for a
specific client, selecting for device events in any RECORDRANGE in an RC
causes the recording client to receive one instance for each device event
generated that is in the range specified.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "errors" -->
<!-- .br -->
This is used for both core X protocol errors and arbitrary extension
errors.  Specifies errors that have a code field between <emphasis remap='I'>first</emphasis> and
<emphasis remap='I'>last</emphasis> inclusive.  If <emphasis remap='I'>first</emphasis> is equal to 0 and <emphasis remap='I'>last</emphasis> is equal to 0, no
errors are specified by this RECORDRANGE.  If <emphasis remap='I'>first</emphasis> is greater
than <emphasis remap='I'>last</emphasis>, a
<function>"Value"</function>
error results.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "client-started" -->
<!-- .br -->
Specifies the connection setup reply.
If
<function>False ,</function>
the connection setup reply is not specified by
this RECORDRANGE.
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IN "client-died" -->
<!-- .br -->
Specifies notification when a client disconnects.
If
<function>False ,</function>
notification when a client disconnects is not specified by
this RECORDRANGE.
    </para>
  </listitem>
</itemizedlist>

<informaltable frame="none">
  <tgroup cols='3' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <colspec colname='c2' colsep="0" colwidth="1*"/>
  <colspec colname='c3' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>ELEMENT_HEADER:</entry>
      <entry>[from-server-time:</entry>
      <entry>BOOL</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>from-client-time:</entry>
      <entry>BOOL</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>from-client-sequence:</entry>
      <entry>BOOL]</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
The
<function>ELEMENT_HEADER</function>
structure specifies additional data that precedes each protocol
element in the <emphasis remap='I'>data</emphasis> field of a
<function>RecordEnableContext</function>
reply.
</para>

<itemizedlist>
  <listitem>
    <para>
If <emphasis remap='I'>from-server-time</emphasis> is
<function>True ,</function>
each intercepted protocol element
with category
<function>FromServer</function>
is preceded by the server time when the protocol was recorded.
    </para>
  </listitem>
  <listitem>
    <para>
If <emphasis remap='I'>from-client-time</emphasis> is
<function>True ,</function>
each intercepted protocol element
with category
<function>FromClient</function>
is preceded by the server time when the protocol was recorded.
    </para>
  </listitem>
  <listitem>
    <para>
If <emphasis remap='I'>from-client-sequence</emphasis> is
<function>True ,</function>
each intercepted protocol
element with category
<function>FromClient</function>
or
<function>ClientDied</function>
is preceded by the
32-bit sequence number of the recorded client's most recent request
processed by the server at that time.
For
<function>FromClient ,</function>
this will be one less than the sequence number of the
following request.
For
<function>ClientDied ,</function>
the sequence number will be the only data, because no
protocol is recorded.
    </para>
  </listitem>
</itemizedlist>

<para>
Note that a reply containing device events is treated the same as
other replies with category
<function>FromServer</function>
for purposes of these flags.
Protocol with category
<function>FromServer</function>
is never preceded by a sequence
number because almost all such protocol has a sequence number in it anyway.
</para>

<para>
<!-- .LP -->
If both a server time and a sequence number have been requested for a
reply, each protocol request is
preceded first by the time and second by the sequence number.
</para>

<para>XIDBASE: CARD32</para>

<para>
<!-- .LP -->
The XIDBASE type is used to identify a particular client.  Valid
values are any existing resource identifier
of any connected client,
in which case the client
that created the resource is specified, or the resource identifier
base sent to the target client from the server in the connection setup
reply.  A value of 0 (zero) is valid when the XIDBASE is associated
with device events that may not have been delivered to a client.
</para>

<para>
CLIENTSPEC: XIDBASE or {<emphasis>CurrentClients</emphasis>,
<emphasis>FutureClients</emphasis>, <emphasis>AllClients</emphasis>}
</para>

<para>
The CLIENTSPEC type defines the set of clients the RC attributes are
associated with.  This type is used by recording clients when creating
an RC or when changing RC attributes.  XIDBASE specifies that the RC
attributes apply to a single client only.
<function>CurrentClients</function>
specifies
that the RC attributes apply to current client connections;
<function>FutureClients</function>
specifies future client connections;
<function>AllClients</function>
specifies all client connections, which includes current and future.
</para>

<para>
The numeric values for
<function>CurrentClients ,</function>
<function>FutureClients</function>
and
<function>AllClients</function>
are
defined such that there will be no intersection with valid XIDBASEs.
</para>

<para>
<!-- .LP -->
When the context is enabled, the data connection is unregistered if it
was registered.
If the context is enabled,
<function>CurrentClients</function>
and
<function>AllClients</function>
silently exclude the recording data connection.
It is an error to explicitly register the data connection.
</para>

<informaltable frame="none">
  <tgroup cols='3' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <colspec colname='c2' colsep="0" colwidth="1*"/>
  <colspec colname='c3' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>CLIENT_INFO:</entry>
      <entry>[client-resource:</entry>
      <entry>CLIENTSPEC</entry>
    </row>
    <row rowsep="0">
      <entry></entry>
      <entry>intercepted-protocol:</entry>
      <entry>LISTofRECORDRANGE]</entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
This structure specifies an intercepted client and the protocol to be
intercepted for the client.  The <emphasis remap='I'>client-resource</emphasis> field is a
resource base that identifies the intercepted client.  The
<emphasis remap='I'>intercepted-protocol</emphasis> field specifies the protocol to intercept
for the <emphasis remap='I'>client-resource</emphasis>.
</para>
</sect1>

<sect1 id="Errors">
<title>Errors</title>
<para>
<emphasis role="bold">RecordContext</emphasis>
</para>

<itemizedlist>
  <listitem>
    <para>
<!-- .IN RecordContext -->
<!-- .br -->
This error is returned if the value for an RC argument
in a request does not name a defined record context.
    </para>
  </listitem>
</itemizedlist>
</sect1>
</chapter>

<chapter id="Protocol_Requests">
<title>Protocol Requests</title>
<!-- .XS -->
<!-- (SN Protocol Requests -->
<!-- .XE -->
<!-- .sp -->
<para>
<function>RecordQueryVersion</function>
</para>

<itemizedlist>
  <listitem>
    <para>
<emphasis remap='I'>major-version</emphasis>,
<emphasis remap='I'>minor-version</emphasis>: CARD16
    </para>
  </listitem>
</itemizedlist>
<para>
-&gt;
</para>
<itemizedlist>
  <listitem>
    <para>
<emphasis remap='I'>major-version</emphasis>,
<emphasis remap='I'>minor-version</emphasis>: CARD16
    </para>
  </listitem>
</itemizedlist>

<para>
This request specifies the RECORD extension protocol version the client
would like to use.  When the specified protocol version is supported
by the extension, the protocol version the server expects from the
client is returned.  Clients must use this request before other RECORD
extension requests.
</para>

<para>
This request also determines whether or not the RECORD extension protocol
version specified by the client is supported by the extension.  If the
extension supports the version specified by the client, this version number
should be returned.  If the client has requested a higher version than is
supported by the server, the server's highest version should be returned.
Otherwise, if the client has requested a lower version than is supported
by the server, the server's lowest version should be returned.  This document
defines major version one (1),
minor version thirteen (13).
</para>

<para>
<function>RecordCreateContext</function>
</para>

<informaltable frame="none">
  <tgroup cols='1' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>context</emphasis>: RC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>element-header</emphasis>: ELEMENT_HEADER
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>client-specifiers</emphasis>: LISTofCLIENTSPEC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>ranges</emphasis>: LISTofRECORDRANGE
      </entry>
    </row>
    <row rowsep="0">
      <entry>
Errors:
<function>Match ,</function>
<function>Value ,</function>
<function>IDChoice ,</function>
<function>Alloc</function>
      </entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
This request creates a new
record context
within the server and assigns the identifier <emphasis remap='I'>context</emphasis> to
it.  After the <emphasis remap='I'>context</emphasis> is created, this request registers the
set of clients in <emphasis remap='I'>client-specifiers</emphasis> with the <emphasis remap='I'>context</emphasis> and
specifies the protocol to intercept for those clients.
The recorded protocol elements will be preceded by data as specified
by <emphasis remap='I'>element-header</emphasis>.
Typically,
this request is used by a recording client over the control
connection.  Multiple RC
objects can exist simultaneously, containing overlapping sets of
protocol and clients to intercept.
</para>

<para>
If any of the values in
<emphasis remap='I'>element-header</emphasis> or
<emphasis remap='I'>ranges</emphasis> is invalid, a
<function>"Value"</function>
error results.  Duplicate items in the list of <emphasis remap='I'>client-specifiers</emphasis> are
ignored.  If any item in the <emphasis remap='I'>client-specifiers</emphasis> list is not a valid
CLIENTSPEC, a
<function>"Match"</function>
error results.  Otherwise, each item in the <emphasis remap='I'>client-specifiers</emphasis> list is
processed as follows:
</para>

<itemizedlist>
  <listitem>
    <para>
If the item is an XIDBASE identifying a particular client, the
specified client is registered with the <emphasis remap='I'>context</emphasis> and the protocol
to intercept for the client is then set to <emphasis remap='I'>ranges</emphasis>.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>CurrentClients ,</function>
all existing clients are registered with the
<emphasis remap='I'>context</emphasis> at this time.
The protocol to intercept for all clients registered
with the <emphasis remap='I'>context</emphasis> is then set to <emphasis remap='I'>ranges</emphasis>.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>FutureClients ,</function>
all clients that connect to the server
after this request executes will be automatically registered with the
<emphasis remap='I'>context</emphasis>.  The protocol to intercept for such clients will be set to
<emphasis remap='I'>ranges</emphasis> in the <emphasis remap='I'>context</emphasis>.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>AllClients ,</function>
the effect is as if the actions described
for
<function>FutureClients</function>
are performed, followed by the actions for
<function>CurrentClients .</function>
    </para>
  </listitem>
</itemizedlist>

<para>
The
<function>"Alloc"</function>
error results when the server is unable to allocate the necessary
resources.
</para>

<para>
<function>RecordRegisterClients</function>
</para>

<informaltable frame="none">
  <tgroup cols='1' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>context</emphasis>: RC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>element-header</emphasis>: ELEMENT_HEADER
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>client-specifiers</emphasis>: LISTofCLIENTSPEC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>ranges</emphasis>: LISTofRECORDRANGE
      </entry>
    </row>
    <row rowsep="0">
      <entry>
Errors:
<function>Match ,</function>
<function>Value ,</function>
<function>RecordContext ,</function>
<function>Alloc</function>
      </entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
This request registers the set of clients in <emphasis remap='I'>client-specifiers</emphasis> with
the given <emphasis remap='I'>context</emphasis> and specifies the protocol to intercept for those
clients.
The header preceding each recorded protocol element is set as specified
by <emphasis remap='I'>element-header</emphasis>.
These flags affect the entire
context; their effect is not limited to the clients registered by
this request.
Typically, this request is used by a recording client over
the control connection.
</para>

<para>
If <emphasis remap='I'>context</emphasis> does not name a valid RC, a
<function>"RecordContext"</function>
error results.  If any of the values in
<emphasis remap='I'>element-header</emphasis> or <emphasis remap='I'>ranges</emphasis> is invalid, a
<function>"Value"</function>
error results.  Duplicate items in the list of <emphasis remap='I'>client-specifiers</emphasis> are
ignored.  If any item in the list of <emphasis remap='I'>client-specifiers</emphasis> is not a
valid CLIENTSPEC, a
<function>"Match"</function>
error results.
If the <emphasis remap='I'>context</emphasis> is enabled and the XID of the enabling connection
is specified, a
<function>"Match"</function>
error results.
Otherwise, each item in the <emphasis remap='I'>client-specifiers</emphasis> list is
processed as follows:
</para>

<itemizedlist>
  <listitem>
    <para>
If the item is an XIDBASE identifying a particular client, the
specified client is registered with the <emphasis remap='I'>context</emphasis> if it is not already
registered.  The protocol to intercept for the client is then set to
<emphasis remap='I'>ranges</emphasis>.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>CurrentClients ,</function>
all existing clients that are not
already registered with the specified <emphasis remap='I'>context</emphasis>,
except the enabling connection if the <emphasis remap='I'>context</emphasis> is enabled,
are registered at this
time.  The protocol to intercept for all clients registered with the
<emphasis remap='I'>context</emphasis> is then set to <emphasis remap='I'>ranges</emphasis>.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>FutureClients ,</function>
all clients that connect to the server
after this request executes will be automatically registered with the
<emphasis remap='I'>context</emphasis>.  The protocol to intercept for such clients will be set to
<emphasis remap='I'>ranges</emphasis> in the <emphasis remap='I'>context</emphasis>.
The set of clients that are registered with the
<emphasis remap='I'>context</emphasis> and their corresponding sets
of protocol to intercept are left intact.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>AllClients ,</function>
the effect is as if the actions described
for
<function>FutureClients</function>
are performed, followed by the actions for
<function>CurrentClients .</function>
    </para>
  </listitem>
</itemizedlist>
<para>
The
<function>"Alloc"</function>
error results when the server is unable to allocate the necessary
resources.
</para>

<para>
<function>RecordUnregisterClients</function>
</para>

<informaltable frame="none">
  <tgroup cols='1' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>context</emphasis>: RC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>client-specifiers</emphasis>: LISTofCLIENTSPEC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
Errors:
<function>Match ,</function>
<function>RecordContext</function>
      </entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>


<para>
This request removes the set of clients in <emphasis remap='I'>client-specifiers</emphasis> from the
given <emphasis remap='I'>context</emphasis>'s set of registered clients.  Typically, this request is
used by a recording client over the control connection.
</para>

<para>
If <emphasis remap='I'>context</emphasis> does not name a valid RC, a
<function>"RecordContext"</function>
error results.  Duplicate items in the list of <emphasis remap='I'>client-specifiers</emphasis> are
ignored.  If any item in the list is not a valid CLIENTSPEC, a
<function>"Match"</function>
error results.  Otherwise, each item in the <emphasis remap='I'>client-specifiers</emphasis> list is
processed as follows:
</para>

<itemizedlist>
  <listitem>
    <para>
If the item is an XIDBASE identifying a particular client, and the
specified client is currently registered with the <emphasis remap='I'>context</emphasis>, it is
unregistered, and the set of protocol to intercept for the client is
deleted from the <emphasis remap='I'>context</emphasis>.  If the specified client is not registered
with the <emphasis remap='I'>context</emphasis>, the item has no effect.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>CurrentClients ,</function>
all clients currently registered with
the <emphasis remap='I'>context</emphasis> are unregistered from it, and their corresponding sets of
protocol to intercept are deleted from the <emphasis remap='I'>context</emphasis>.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>FutureClients ,</function>
clients that connect to the server after
this request executes will not automatically be registered with the
<emphasis remap='I'>context</emphasis>.  The set of clients that are registered with this context
and their corresponding sets of protocol that will be
intercepted are left intact.
    </para>
  </listitem>
  <listitem>
    <para>
If the item is
<function>AllClients ,</function>
the effect is as if the actions described
for
<function>FutureClients</function>
are performed, followed by the actions for
<function>CurrentClients .</function>
    </para>
  </listitem>
</itemizedlist>

<para>
A client is unregistered automatically when it disconnects.
</para>

<para>
<function>RecordGetContext</function>
</para>

<informaltable frame="none">
  <tgroup cols='1' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>context</emphasis>: RC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
-&gt;
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>enabled</emphasis>: BOOL
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>element-header</emphasis>: ELEMENT_HEADER
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>intercepted-clients</emphasis>: LISTofCLIENT_INFO
      </entry>
    </row>
    <row rowsep="0">
      <entry>
Errors:
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<function>RecordContext</function>
      </entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
This request queries the current state of the specified <emphasis remap='I'>context</emphasis>
and is typically used by a recording client over the control connection.
The <emphasis remap='I'>enabled</emphasis> field
specifies the state of data transfer between the extension and the
recording client, and is either enabled
<function>( True )</function>
or disabled
<function>( False ).</function>
The initial state is disabled.
When enabled, all core X protocol and
extension protocol received from (requests) or sent to (replies,
errors, events) a particular client, and requested to be intercepted
by the recording client, is reported to the recording client over the
data connection.
The <emphasis remap='I'>element-header</emphasis> specifies the header that precedes each
recorded protocol element.
The
<emphasis remap='I'>intercepted-clients</emphasis> field specifies the list of clients currently
being recorded and the protocol associated with each client.
If future clients will be automatically registered with the context,
one of the returned CLIENT_INFO structures has a <emphasis remap='I'>client-resource</emphasis> value
of FutureClients and an <emphasis remap='I'>intercepted-protocol</emphasis> giving the protocol to
intercept for future clients.
Protocol ranges may be decomposed, coalesced, or otherwise modified
by the server from how they were specified by the client.
All CLIENTSPECs registered with the server are returned, even if the
RECORDRANGE(s) associated with them specify no protocol to record.
</para>

<para>
When the <emphasis remap='I'>context</emphasis> argument is not valid, a
<function>RecordContext</function>
error results.
</para>

<para>
<function>RecordEnableContext</function>
</para>

<informaltable frame="none">
  <tgroup cols='1' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>context</emphasis>: RC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
-&gt;+
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>category</emphasis>:
{<function>FromServer</function>, <function>FromClient</function>,
<function>ClientStarted</function>, <function>ClientDied</function>,
<function>StartOfData</function>,
<function>EndOfData</function>}
      </entry>
    </row>

    <row rowsep="0">
      <entry>
<emphasis remap='I'>element-header</emphasis>: ELEMENT_HEADER
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>client-swapped</emphasis>: BOOL
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>id-base</emphasis>: XIDBASE
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>server-time</emphasis>: TIMESTAMP
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>recorded-sequence-number</emphasis>: CARD32
      </entry>
    </row>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>data</emphasis>: LISTofBYTE
      </entry>
    </row>
    <row rowsep="0">
      <entry>
Errors:
<function>Match</function>,
<function>RecordContext</function>
      </entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
This request enables data transfer between the recording client
and the extension and returns the protocol data the recording client
has previously expressed interest in.  Typically, this request is
executed by the recording client over the data connection.
</para>

<para>
If the client is registered on the <emphasis remap='I'>context</emphasis>, it is unregistered
before any recording begins.
</para>
<para>
<!-- .LP -->
Once the server receives this request, it begins intercepting
and reporting to the recording client all core and extension protocol
received from or sent to clients registered with the RC that the
recording client has expressed interest in.  All intercepted protocol data
is returned in the byte-order of the recorded client.  Therefore,
recording clients are responsible for all byte swapping, if required.
More than one recording client cannot enable data transfer on the
same RC at the same time.  Multiple intercepted requests, replies,
events and errors might be packaged into a single reply before
being returned to the recording clients.
</para>
<para>
<!-- .LP -->
The
<emphasis remap='I'>category</emphasis> field determines the possible
types of the data.
When a context is enabled, the server will immediately send a reply of
category
<function>StartOfData</function>
to notify the client that recording is enabled.
A category of
<function>FromClient</function>
means the data are from the client
(requests);
<function>FromServer</function>
means data are from the server (replies,
errors, events, or device events).
For a new client, the category is
<function>ClientStarted</function>
and the data are the connection setup reply.
When
the recorded client connection is closed, <emphasis remap='I'>category</emphasis> is
set to the value
<function>ClientDied</function>
and no protocol is included in this reply.
When the disable request is made over the control connection,
a final reply is sent over the data connection with category
<function>EndOfData</function>
and no protocol.
</para>
<para>
<!-- .LP -->
The <emphasis remap='I'>element-header</emphasis> field returns the value currently set for the
context, which tells what header information precedes each recorded
protocol element in this reply.
</para>
<para>
<!-- .LP -->
The <emphasis remap='I'>client-swapped</emphasis> field is
<function>True</function>
if the byte order of
the protocol being recorded
is swapped
relative to the recording client;
otherwise, <emphasis remap='I'>client-swapped</emphasis> is
<function>False .</function>
The recorded protocol
is in the byte order of the client being
recorded; device events are in the byte order of the
recording client.
For replies of category
<function>StartOfData</function>
and
<function>EndOfData</function>
the
<emphasis remap='I'>client-swapped</emphasis> bit is set
according
to the byte order of the server relative to the recording client.
The <emphasis remap='I'>id-base</emphasis> field is the resource identifier base
sent to the client from the server in the
connection setup reply, and hence, identifies the client being
recorded.  The <emphasis remap='I'>id-base</emphasis> field is 0 (zero) when the protocol
data being
returned are device events.
The <emphasis remap='I'>server-time</emphasis> field is set to the time of the
server when the first protocol element in this reply was intercepted.
The <emphasis remap='I'>server-time</emphasis>
of reply N+1 is greater than or equal to the <emphasis remap='I'>server-time</emphasis> of reply N,
and is greater than or equal to the time of the last protocol
element in reply N.
</para>
<para>
<!-- .LP -->
The <emphasis remap='I'>recorded-sequence-number</emphasis> field is set to the sequence number
of the recorded client's most recent request processed by the server.
</para>
<para>
<!-- .LP -->
The <emphasis remap='I'>data</emphasis> field
contains the raw protocol data being returned to the recording client.
If requested by the <emphasis remap='I'>element-header</emphasis> of this record context, each
protocol element may be preceded by a 32-bit timestamp and/or
a 32-bit sequence number.
If present, both the timestamp and sequence number are always in the
byte order of the recording client.
</para>
<para>
<!-- .LP -->
For the core X events
<function>KeyPress ,</function>
<function>KeyRelease ,</function>
<function>ButtonPress ,</function>
and
<function>ButtonRelease ,</function>
the fields of a device event that contain
valid information are <emphasis remap='I'>time</emphasis> and <emphasis remap='I'>detail</emphasis>.
For the core X event
<function>MotionNotify ,</function>
the fields of a device event that contain
valid information are <emphasis remap='I'>time</emphasis>, <emphasis remap='I'>root</emphasis>,
<emphasis remap='I'>root-x</emphasis> and <emphasis remap='I'>root-y</emphasis>.
The <emphasis remap='I'>time</emphasis> field refers to the time the event was generated by the
device.
</para>
<para>
<!-- .LP -->
For the extension input device events
<function>DeviceKeyPress ,</function>
<function>DeviceKeyRelease ,</function>
<function>DeviceButtonPress ,</function>
and
<function>DeviceButtonRelease ,</function>
the fields of a device event that contain valid information are
<emphasis remap='I'>device</emphasis>, <emphasis remap='I'>time</emphasis> and <emphasis remap='I'>detail</emphasis>.
For
<function>DeviceMotionNotify ,</function>
the valid device event fields are
<emphasis remap='I'>device</emphasis> and <emphasis remap='I'>time</emphasis>.
For the extension input device events
<function>ProximityIn</function>
and
<function>ProximityOut ,</function>
the fields of a device event that contain valid
information are <emphasis remap='I'>device</emphasis> and <emphasis remap='I'>time</emphasis>.
For the extension input device event
<function>DeviceValuator ,</function>
the fields of a device event that contain valid information are
<emphasis remap='I'>device</emphasis>,
<emphasis remap='I'>num_valuators</emphasis>, <emphasis remap='I'>first_valuator</emphasis>, and <emphasis remap='I'>valuators</emphasis>.
The <emphasis remap='I'>time</emphasis> field refers to the time the event was generated by the
device.
</para>
<para>
<!-- .LP -->
The error
<function>"Match"</function>
is returned when data transfer is already enabled.
When the <emphasis remap='I'>context</emphasis> argument is not valid, a
<function>RecordContext</function>
error results.
</para>

<para>
<function>RecordDisableContext</function>
</para>

<informaltable frame="none">
  <tgroup cols='1' align='left'>
  <colspec colname='c1' colsep="0" colwidth="1*"/>
  <tbody>
    <row rowsep="0">
      <entry>
<emphasis remap='I'>context</emphasis>: RC
      </entry>
    </row>
    <row rowsep="0">
      <entry>
Errors:
<function>RecordContext</function>
      </entry>
    </row>
  </tbody>
  </tgroup>
</informaltable>

<para>
This request is typically executed by the recording client over the
control connection.  This request directs the extension to immediately
send any complete protocol elements currently buffered,
to send a final reply with category
<function>EndOfData ,</function>
and to discontinue
data transfer between the extension and the recording client.
Protocol reporting is disabled
on the data connection that is currently enabled for the given
<emphasis remap='I'>context</emphasis>.  Once the extension completes
processing this request, no additional recorded protocol will
be reported to the recording client.  If a data connection is not
currently enabled when this request is executed, then this request has
no affect on the state of data transfer.
An RC is disabled automatically when the connection to the enabling
client is closed down.
</para>

<para>
When the <emphasis remap='I'>context</emphasis> argument is not valid, a
<function>RecordContext</function>
error results.
</para>

<para>
<function>RecordFreeContext</function>
</para>

<itemizedlist>
  <listitem>
    <para>
<emphasis remap='I'>context</emphasis> RC
<!-- .br -->
    </para>
  </listitem>
  <listitem>
    <para>
Errors:
<function>RecordContext</function>
    </para>
  </listitem>
</itemizedlist>

<para>
This request deletes the association between the resource ID and the
RC and destroys the RC.
If a client has enabled data transfer on this <emphasis remap='I'>context</emphasis>, the actions
described in
<function>RecordDisableContext</function>
are performed before the <emphasis remap='I'>context</emphasis>
is freed.
</para>

<para>
An RC is destroyed automatically when the connection to the creating client
is closed down and the close-down mode is <function>DestroyAll</function>.  When the
<emphasis remap='I'>context</emphasis> argument is not valid, a
<function>RecordContext</function>
error results.
</para>
</chapter>

<chapter id="Encoding">
<title>Encoding</title>
<para>
Please refer to the X11 Protocol Encoding document as this document uses
conventions established there.
</para>

<para>
The name of this extension is "RECORD".
</para>

<sect1 id="Types_2">
<title>Types</title>
<para>
RC: CARD32
</para>

<literallayout class="monospaced">
RANGE8
     1     CARD8          first
     1     CARD8          last
</literallayout>

<literallayout class="monospaced">
RANGE16
     2     CARD16          first
     2     CARD16          last
</literallayout>

<literallayout class="monospaced">
EXTRANGE
     2     RANGE8          major
     4     RANGE16         minor
</literallayout>

<literallayout class="monospaced">
RECORDRANGE
     2     RANGE8          core-requests
     2     RANGE8          core-replies
     6     EXTRANGE        ext-requests
     6     EXTRANGE        ext-replies
     2     RANGE8          delivered-events
     2     RANGE8          device-events
     2     RANGE8          errors
     1     BOOL            client-started
     1     BOOL            client-died
</literallayout>

<literallayout class="monospaced">
ELEMENT_HEADER
     1     CARD8
          0x01     from-server-time
          0x02     from-client-time
          0x04     from-client-sequence
</literallayout>

<para>
XIDBASE: CARD32
</para>

<literallayout class="monospaced">
CLIENTSPEC
     4    XIDBASE  client-id-base
          1        CurrentClients
          2        FutureClients
          3        AllClients
</literallayout>

<literallayout class="monospaced">
CLIENT_INFO
     4    CLIENTSPEC          client-resource
     4    CARD32              n, number of record ranges in
                                 intercepted-protocol
     24n  LISTofRECORDRANGE   intercepted-protocol
</literallayout>

</sect1>
<sect1 id="Errors_2">
<title>Errors</title>

<literallayout class="monospaced">
<function>RecordContext</function>
     1     0                  Error
     1     CARD8              extension's base error code + 0
     2     CARD16             sequence number
     4     CARD32             invalid record context
     24                       unused
</literallayout>
</sect1>

<sect1 id="Requests">
<title>Requests</title>

<literallayout class="monospaced">
<function>RecordQueryVersion</function>
     1     CARD8      major opcode
     1     0          minor opcode
     2     2          request length
     2     CARD16     major version
     2     CARD16     minor version
 =&gt;
     1     1          Reply
     1                unused
     2     CARD16     sequence number
     4     0          reply length
     2     CARD16     major version
     2     CARD16     minor version
     20               unused
</literallayout>

<literallayout class="monospaced">
<function>RecordCreateContext</function>
     1     CARD8                 major opcode
     1     1                     minor opcode
     2     5+m+6n                request length
     4     RC                    context
     1     ELEMENT_HEADER        element-header
     3                           unused
     4     CARD32                m, number of client-specifiers
     4     CARD32                n, number of ranges
     4m    LISTofCLIENTSPEC      client-specifiers
     24n   LISTofRECORDRANGE     ranges
</literallayout>

<literallayout class="monospaced">
<function>RecordRegisterClients</function>
     1     CARD8                 major opcode
     1     2                     minor opcode
     2     5+m+6n                request length
     4     RC                    context
     1     ELEMENT_HEADER        element-header
     3                           unused
     4     CARD32                m, number of client-specifiers
     4     CARD32                n, number of ranges
     4m    LISTofCLIENTSPEC      client-specifiers
     24n   LISTofRECORDRANGE     ranges
</literallayout>

<literallayout class="monospaced">
<function>RecordUnregisterClients</function>
     1     CARD8                 major opcode
     1     3                     minor opcode
     2     3+m                   request length
     4     RC                    context
     4     CARD32                m, number of client-specifiers
     4m    LISTofCLIENTSPEC      client-specifiers
</literallayout>

<literallayout class="monospaced">
<function>RecordGetContext</function>
     1     CARD8                 major opcode
     1     4                     minor opcode
     2     2                     request length
     4     RC                    context
 =&gt;
     1     1                     Reply
     1     BOOL                  enabled
     2     CARD16                sequence number
     4     j                     reply length
     1     ELEMENT_HEADER        element-header
     3                           unused
     4     CARD32                n, number of intercepted-clients
     16                          unused
     4j    LISTofCLIENT_INFO     intercepted-clients
</literallayout>

<literallayout class="monospaced">
<function>RecordEnableContext</function>
     1     CARD8                 major opcode
     1     5                     minor opcode
     2     2                     request length
     4     RC                    context
 =&gt;+
     1     1                     Reply
     1                           category
           0     FromServer
           1     FromClient
           2     ClientStarted
           3     ClientDied
           4     StartOfData
           5     EndOfData
     2     CARD16                sequence number
     4     n                     reply length
     1     ELEMENT_HEADER        element-header
     1     BOOL                  client-swapped
     2                           unused
     4     XIDBASE               id-base
     4     TIMESTAMP             server-time
     4     CARD32                recorded-sequence-number
     8                           unused
     4n    BYTE                  data
</literallayout>

<literallayout class="monospaced">
<function>RecordDisableContext</function>
     1     CARD8                 major opcode
     1     6                     minor opcode
     2     2                     request length
     4     RC                    context
</literallayout>

<literallayout class="monospaced">
<function>RecordFreeContext</function>
     1     CARD8                 major opcode
     1     7                     minor opcode
     2     2                     request length
     4     RC                    context
</literallayout>

</sect1>
</chapter>
</book>