My favorites | Sign in
Logo
          
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
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="svn.developer">

<!-- @ENGLISH {{{
<title>Developer Information</title>
@ENGLISH }}} -->
<title>Информация для разработчиков</title>
<!-- See also svn.preface.organization -->

<para>Subversion has a modular design, implemented as a collection
of C libraries. Each library has a well-defined purpose and
interface, and those interfaces are available not only for
Subversion itself to use, but for any software that wishes to
embed or otherwise programmatically control Subversion. Most of
those interfaces are available not only in C, but also in
higher-level languages such as Python or Java.</para>

<para>This chapter is for those who wish to interact with
Subversion through its public Application Programming Interface
(API) or various language bindings. If you wish to write robust
wrapper scripts around Subversion functionality to simplify your
own life, are trying to develop more complex integrations
between Subversion and other pieces of software, or just have an
interest in Subversion's various library modules and what they
offer, this chapter is for you. If, however, you don't foresee
yourself participating with Subversion at such a level, feel
free to skip this chapter with the confidence that your
experience as a Subversion user will not be affected.</para>


<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.developer.layerlib">
<title>Layered Library Design</title>

<para>Each of Subversion's core libraries can be said to exist in
one of three main layers&mdash;the Repository Layer, the
Repository Access (RA) Layer, or the Client Layer. We will
examine these layers shortly, but first, see our brief inventory
of Subversion's libraries in <xref
linkend="svn.developer.layerlib.tbl-1"/>. For the sake of
consistency, we will refer to the libraries by their
extensionless Unix library names (e.g.: libsvn_fs, libsvn_wc,
mod_dav_svn).</para>

<table id="svn.developer.layerlib.tbl-1">
<title>A Brief Inventory of the Subversion Libraries</title>
<tgroup cols="2">
<thead>
<row>
<entry>Library</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>libsvn_client</entry>
<entry>Primary interface for client programs</entry>
</row>
<row>
<entry>libsvn_delta</entry>
<entry>Tree and byte-stream differencing routines</entry>
</row>
<row>
<entry>libsvn_diff</entry>
<entry>Contextual differencing and merging routines</entry>
</row>
<row>
<entry>libsvn_fs</entry>
<entry>Filesystem commons and module loader</entry>
</row>
<row>
<entry>libsvn_fs_base</entry>
<entry>The Berkeley DB filesystem back-end</entry>
</row>
<row>
<entry>libsvn_fs_fs</entry>
<entry>The native filesystem (FSFS) back-end</entry>
</row>
<row>
<entry>libsvn_ra</entry>
<entry>Repository Access commons and module loader</entry>
</row>
<row>
<entry>libsvn_ra_dav</entry>
<entry>The WebDAV Repository Access module</entry>
</row>
<row>
<entry>libsvn_ra_local</entry>
<entry>The local Repository Access module</entry>
</row>
<row>
<entry>libsvn_ra_svn</entry>
<entry>The custom protocol Repository Access module</entry>
</row>
<row>
<entry>libsvn_repos</entry>
<entry>Repository interface</entry>
</row>
<row>
<entry>libsvn_subr</entry>
<entry>Miscellaneous helpful subroutines</entry>
</row>
<row>
<entry>libsvn_wc</entry>
<entry>The working copy management library</entry>
</row>
<row>
<entry>mod_authz_svn</entry>
<entry>Apache authorization module for Subversion
repositories access via WebDAV</entry>
</row>
<row>
<entry>mod_dav_svn</entry>
<entry>Apache module for mapping WebDAV operations to
Subversion ones</entry>
</row>
</tbody>
</tgroup>
</table>

<para>The fact that the word <quote>miscellaneous</quote> only
appears once in <xref linkend="svn.developer.layerlib.tbl-1"/> is a good
sign. The Subversion development team is serious about making
sure that functionality lives in the right layer and libraries.
Perhaps the greatest advantage of the modular design is its lack
of complexity from a developer's point of view. As a developer,
you can quickly formulate that kind of <quote>big
picture</quote> that allows you to pinpoint the location of
certain pieces of functionality with relative ease.</para>

<para>Another benefit of modularity is the ability to replace a
given module with a whole new library that implements the same
API without affecting the rest of the code base. In some sense,
this happens within Subversion already. The libsvn_ra_dav,
libsvn_ra_local, and libsvn_ra_svn all implement the same
interface. And all three communicate with the Repository
Layer&mdash;libsvn_ra_dav and libsvn_ra_svn do so across a
network, and libsvn_ra_local connects to it directly. The
libsvn_fs_base and libsvn_fs_fs libraries are another example of
this.</para>

<para>The client itself also highlights modularity in the
Subversion design. While Subversion itself comes with only a
command-line client program, there are several third party
programs which provide various forms of client GUI. These GUIs
use the same APIs that the stock command-line client does.
Subversion's libsvn_client library is the one-stop shop for most
of the functionality necessary for designing a working
Subversion client (see <xref
linkend="svn.developer.layerlib.client"/>).</para>

<!-- =============================================================== -->
<sect2 id="svn.developer.layerlib.repos">
<title>Repository Layer</title>

<para>When referring to Subversion's Repository Layer, we're
generally talking about two libraries&mdash;the repository
library, and the filesystem library. These libraries provide
the storage and reporting mechanisms for the various revisions
of your version-controlled data. This layer is connected to
the Client Layer via the Repository Access Layer, and is, from
the perspective of the Subversion user, the stuff at the
<quote>other end of the line.</quote></para>

<para>The Subversion Filesystem is accessed via the libsvn_fs
API, and is not a kernel-level filesystem that one would
install in an operating system (like the Linux ext2 or NTFS),
but a virtual filesystem. Rather than storing
<quote>files</quote> and <quote>directories</quote> as real
files and directories (as in, the kind you can navigate
through using your favorite shell program), it uses one of two
available abstract storage backends&mdash;either a Berkeley DB
database environment, or a flat-file representation. (To
learn more about the two repository back-ends, see <xref
linkend="svn.reposadmin.basics.backends"/>.) However, there has been
considerable interest by the development community in giving
future releases of Subversion the ability to use other
back-end database systems, perhaps through a mechanism such as
Open Database Connectivity (ODBC).</para>

<para>The filesystem API exported by libsvn_fs contains the
kinds of functionality you would expect from any other
filesystem API: you can create and remove files and
directories, copy and move them around, modify file contents,
and so on. It also has features that are not quite as common,
such as the ability to add, modify, and remove metadata
(<quote>properties</quote>) on each file or directory.
Furthermore, the Subversion Filesystem is a versioning
filesystem, which means that as you make changes to your
directory tree, Subversion remembers what your tree looked
like before those changes. And before the previous changes.
And the previous ones. And so on, all the way back through
versioning time to (and just beyond) the moment you first
started adding things to the filesystem.</para>

<para>All the modifications you make to your tree are done
within the context of a Subversion transaction. The following
is a simplified general routine for modifying your
filesystem:</para>

<orderedlist>
<listitem>
<para>Begin a Subversion transaction.</para>
</listitem>
<listitem>
<para>Make your changes (adds, deletes, property
modifications, etc.).</para>
</listitem>
<listitem>
<para>Commit your transaction.</para>
</listitem>
</orderedlist>

<para>Once you have committed your transaction, your filesystem
modifications are permanently stored as historical artifacts.
Each of these cycles generates a single new revision of your
tree, and each revision is forever accessible as an immutable
snapshot of <quote>the way things were.</quote></para>

<sidebar>
<title>The Transaction Distraction</title>

<para>The notion of a Subversion transaction, especially given
its close proximity to the database code in libsvn_fs, can
become easily confused with the transaction support provided
by the underlying database itself. Both types of
transaction exist to provide atomicity and isolation. In
other words, transactions give you the ability to perform a
set of actions in an <quote>all or nothing</quote>
fashion&mdash;either all the actions in the set complete
with success, or they all get treated as if
<emphasis>none</emphasis> of them ever happened&mdash;and in
a way that does not interfere with other processes acting on
the data.</para>

<para>Database transactions generally encompass small
operations related specifically to the modification of data
in the database itself (such as changing the contents of a
table row). Subversion transactions are larger in scope,
encompassing higher-level operations like making
modifications to a set of files and directories which are
intended to be stored as the next revision of the filesystem
tree. If that isn't confusing enough, consider this:
Subversion uses a database transaction during the creation
of a Subversion transaction (so that if the creation of
Subversion transaction fails, the database will look as if
we had never attempted that creation in the first
place)!</para>

<para>Fortunately for users of the filesystem API, the
transaction support provided by the database system itself
is hidden almost entirely from view (as should be expected
from a properly modularized library scheme). It is only
when you start digging into the implementation of the
filesystem itself that such things become visible (or
interesting).</para>

</sidebar>

<para>Most of the functionality provided by the filesystem
interface comes as an action that occurs on a filesystem path.
That is, from outside of the filesystem, the primary mechanism
for describing and accessing the individual revisions of files
and directories comes through the use of path strings like
<filename>/foo/bar</filename>, just as if you were addressing
files and directories through your favorite shell program.
You add new files and directories by passing their paths-to-be
to the right API functions. You query for information about
them by the same mechanism.</para>

<para>Unlike most filesystems, though, a path alone is not
enough information to identify a file or directory in
Subversion. Think of a directory tree as a two-dimensional
system, where a node's siblings represent a sort of
left-and-right motion, and descending into subdirectories a
downward motion. <xref linkend="svn.developer.layerlib.repos.dia-1"/> shows
a typical representation of a tree as exactly that.</para>

<figure id="svn.developer.layerlib.repos.dia-1">
<title>Files and directories in two dimensions</title>
<graphic fileref="images/ch08dia1.png"/>
</figure>

<para>Of course, the Subversion filesystem has a nifty third
dimension that most filesystems do not have&mdash;Time!
<footnote>
<para>We understand that this may come as a shock to sci-fi
fans who have long been under the impression that Time was
actually the <emphasis>fourth</emphasis> dimension, and we
apologize for any emotional trauma induced by our
assertion of a different theory.</para>
</footnote>
In the filesystem interface, nearly every function that has a
<parameter>path</parameter> argument also expects a
<parameter>root</parameter> argument. This
<structname>svn_fs_root_t</structname> argument describes
either a revision or a Subversion transaction (which is
usually just a revision-to-be), and provides that
third-dimensional context needed to understand the difference
between <filename>/foo/bar</filename> in revision 32, and the
same path as it exists in revision 98. <xref
linkend="svn.developer.layerlib.repos.dia-2"/> shows revision history as an
added dimension to the Subversion filesystem universe.</para>

<figure id="svn.developer.layerlib.repos.dia-2">
<title>Versioning time&mdash;the third dimension!</title>
<graphic fileref="images/ch08dia2.png"/>
</figure>

<!-- Perhaps dig into the DAG/tree layers a bit here, talking
about the hard-link design and how that affords such
pleasures as cheap copies. If "bubble-up" isn't covered
twelve other times in the book, maybe give it a go here. -->

<para>As we mentioned earlier, the libsvn_fs API looks and feels
like any other filesystem, except that it has this wonderful
versioning capability. It was designed to be usable by any
program interested in a versioning filesystem. Not
coincidentally, Subversion itself is interested in that
functionality. But while the filesystem API should be
sufficient for basic file and directory versioning support,
Subversion wants more&mdash;and that is where libsvn_repos
comes in.</para>

<para>The Subversion repository library (libsvn_repos) is
basically a wrapper library around the filesystem
functionality. This library is responsible for creating the
repository layout, making sure that the underlying filesystem
is initialized, and so on. Libsvn_repos also implements a set
of hooks&mdash;scripts that are executed by the repository
code when certain actions take place. These scripts are
useful for notification, authorization, or whatever purposes
the repository administrator desires. This type of
functionality, and other utilities provided by the repository
library, are not strictly related to implementing a versioning
filesystem, which is why it was placed into its own
library.</para>

<para>Developers who wish to use the libsvn_repos API will find
that it is not a complete wrapper around the filesystem
interface. That is, only certain major events in the general
cycle of filesystem activity are wrapped by the repository
interface. Some of these include the creation and commit of
Subversion transactions, and the modification of revision
properties. These particular events are wrapped by the
repository layer because they have hooks associated with them.
In the future, other events may be wrapped by the repository
API. All of the remaining filesystem interaction will
continue to occur directly via the libsvn_fs API, though.</para>

<para>For example, here is a code segment that illustrates the
use of both the repository and filesystem interfaces to create
a new revision of the filesystem in which a directory is
added. Note that in this example, the
<function>SVN_ERR()</function> macro simply checks for a
non-successful error return from the function it wraps, and
returns that error if it exists.</para>

<example id="svn.developer.layerlib.repos.ex-1">
<title>Using the Repository Layer</title>

<programlisting>
/* Create a new directory at the path NEW_DIRECTORY in the Subversion
repository located at REPOS_PATH. Perform all memory allocation in
POOL. This function will create a new revision for the addition of
NEW_DIRECTORY. */
static svn_error_t *
make_new_directory (const char *repos_path,
const char *new_directory,
apr_pool_t *pool)
{
svn_error_t *err;
svn_repos_t *repos;
svn_fs_t *fs;
svn_revnum_t youngest_rev;
svn_fs_txn_t *txn;
svn_fs_root_t *txn_root;
const char *conflict_str;

/* Open the repository located at REPOS_PATH. */
SVN_ERR (svn_repos_open (&amp;repos, repos_path, pool));

/* Get a pointer to the filesystem object that is stored in
REPOS. */
fs = svn_repos_fs (repos);

/* Ask the filesystem to tell us the youngest revision that
currently exists. */
SVN_ERR (svn_fs_youngest_rev (&amp;youngest_rev, fs, pool));

/* Begin a new transaction that is based on YOUNGEST_REV. We are
less likely to have our later commit rejected as conflicting if we
always try to make our changes against a copy of the latest snapshot
of the filesystem tree. */
SVN_ERR (svn_fs_begin_txn (&amp;txn, fs, youngest_rev, pool));

/* Now that we have started a new Subversion transaction, get a root
object that represents that transaction. */
SVN_ERR (svn_fs_txn_root (&amp;txn_root, txn, pool));

/* Create our new directory under the transaction root, at the path
NEW_DIRECTORY. */
SVN_ERR (svn_fs_make_dir (txn_root, new_directory, pool));

/* Commit the transaction, creating a new revision of the filesystem
which includes our added directory path. */
err = svn_repos_fs_commit_txn (&amp;conflict_str, repos,
&amp;youngest_rev, txn, pool);
if (! err)
{
/* No error? Excellent! Print a brief report of our success. */
printf ("Directory '%s' was successfully added as new revision "
"'%ld'.\n", new_directory, youngest_rev);
}
else if (err-&gt;apr_err == SVN_ERR_FS_CONFLICT)
{
/* Uh-oh. Our commit failed as the result of a conflict
(someone else seems to have made changes to the same area
of the filesystem that we tried to modify). Print an error
message. */
printf ("A conflict occurred at path '%s' while attempting "
"to add directory '%s' to the repository at '%s'.\n",
conflict_str, new_directory, repos_path);
}
else
{
/* Some other error has occurred. Print an error message. */
printf ("An error occurred while attempting to add directory '%s' "
"to the repository at '%s'.\n",
new_directory, repos_path);
}

/* Return the result of the attempted commit to our caller. */
return err;
}
</programlisting>
</example>

<para>In the previous code segment, calls were made to both the
repository and filesystem interfaces. We could just as easily
have committed the transaction using
<function>svn_fs_commit_txn()</function>. But the filesystem
API knows nothing about the repository library's hook
mechanism. If you want your Subversion repository to
automatically perform some set of non-Subversion tasks every
time you commit a transaction (like, for example, sending an
email that describes all the changes made in that transaction
to your developer mailing list), you need to use the
libsvn_repos-wrapped version of that
function&mdash;<function>svn_repos_fs_commit_txn()</function>.
This function will actually first run the
<literal>pre-commit</literal> hook script if one exists, then
commit the transaction, and finally will run a
<literal>post-commit</literal> hook script. The hooks provide
a special kind of reporting mechanism that does not really
belong in the core filesystem library itself. (For more
information regarding Subversion's repository hooks, see <xref
linkend="svn.reposadmin.create.hooks" />.)</para>

<para>The hook mechanism requirement is but one of the reasons
for the abstraction of a separate repository library from the
rest of the filesystem code. The libsvn_repos API provides
several other important utilities to Subversion. These
include the abilities to:</para>

<orderedlist>
<listitem>
<para>create, open, destroy, and perform recovery steps on a
Subversion repository and the filesystem included in that
repository.</para>
</listitem>
<listitem>
<para>describe the differences between two filesystem
trees.</para>
</listitem>
<listitem>
<para>query for the commit log messages
associated with all (or some) of the revisions in which a
set of files was modified in the filesystem.</para>
</listitem>
<listitem>
<para>generate a human-readable <quote>dump</quote> of the
filesystem, a complete representation of the revisions in
the filesystem.</para>
</listitem>
<listitem>
<para>parse that dump format, loading the dumped revisions
into a different Subversion repository.</para>
</listitem>
</orderedlist>

<para>As Subversion continues to evolve, the repository library
will grow with the filesystem library to offer increased
functionality and configurable option support.</para>

</sect2>

<!-- =============================================================== -->
<sect2 id="svn.developer.layerlib.ra">
<title>Repository Access Layer</title>

<para>If the Subversion Repository Layer is at <quote>the other
end of the line</quote>, the Repository Access Layer is the
line itself. Charged with marshalling data between the client
libraries and the repository, this layer includes the
libsvn_ra module loader library, the RA modules themselves
(which currently includes libsvn_ra_dav, libsvn_ra_local, and
libsvn_ra_svn), and any additional libraries needed by one or
more of those RA modules, such as the mod_dav_svn Apache
module with which libsvn_ra_dav communicates or
libsvn_ra_svn's server, <command>svnserve</command>.</para>

<para>Since Subversion uses URLs to identify its repository
resources, the protocol portion of the URL schema (usually
<literal>file:</literal>, <literal>http:</literal>,
<literal>https:</literal>, or <literal>svn:</literal>) is used
to determine which RA module will handle the communications.
Each module registers a list of the protocols it knows how to
<quote>speak</quote> so that the RA loader can, at runtime,
determine which module to use for the task at hand. You can
determine which RA modules are available to the Subversion
command-line client, and what protocols they claim to support,
by running <command>svn --version</command>:</para>

<screen>
$ svn --version
svn, version 1.2.3 (r15833)
compiled Sep 13 2005, 22:45:22

Copyright (C) 2000-2005 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
- handles 'http' scheme
- handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme

</screen>

<sect3 id="svn.developer.layerlib.ra.dav">
<title>RA-DAV (Repository Access Using HTTP/DAV)</title>

<para>The libsvn_ra_dav library is designed for use by clients
that are being run on different machines than the servers
with which they communicating, specifically servers reached
using URLs that contain the <literal>http:</literal> or
<literal>https:</literal> protocol portions. To understand
how this module works, we should first mention a couple of
other key components in this particular configuration of the
Repository Access Layer&mdash;the powerful Apache HTTP
Server, and the Neon HTTP/WebDAV client library.</para>

<para>Subversion's primary network server is the Apache HTTP
Server. Apache is a time-tested, extensible open-source
server process that is ready for serious use. It can
sustain a high network load and runs on many platforms. The
Apache server supports a number of different standard
authentication protocols, and can be extended through the
use of modules to support many others. It also supports
optimizations like network pipelining and caching. By using
Apache as a server, Subversion gets all of these features
for free. And since most firewalls already allow HTTP
traffic to pass through, system administrators typically
don't even have to change their firewall configurations to
allow Subversion to work.</para>

<para>Subversion uses HTTP and WebDAV (with DeltaV) to
communicate with an Apache server. You can read more about
this in the WebDAV section of this chapter, but in short,
WebDAV and DeltaV are extensions to the standard HTTP 1.1
protocol that enable sharing and versioning of files over
the web. Apache 2.0 and later versions come with mod_dav,
an Apache module that understands the DAV extensions to
HTTP. Subversion itself supplies mod_dav_svn, though, which
is another Apache module that works in conjunction with
(really, as a back-end to) mod_dav to provide Subversion's
specific implementations of WebDAV and DeltaV.</para>

<para>When communicating with a repository over HTTP, the RA
loader library chooses libsvn_ra_dav as the proper access
module. The Subversion client makes calls into the generic
RA interface, and libsvn_ra_dav maps those calls (which
embody rather large-scale Subversion actions) to a set of
HTTP/WebDAV requests. Using the Neon library, libsvn_ra_dav
transmits those requests to the Apache server. Apache
receives these requests (exactly as it does generic HTTP
requests that your web browser might make), notices that the
requests are directed at a URL that is configured as a DAV
location (using the <literal>&lt;Location&gt;</literal>
directive in <filename>httpd.conf</filename>), and hands the
request off to its own mod_dav module. When properly
configured, mod_dav knows to use Subversion's mod_dav_svn for
any filesystem-related needs, as opposed to the generic
mod_dav_fs that comes with Apache. So ultimately, the client
is communicating with mod_dav_svn, which binds directly to the
Subversion Repository Layer.</para>

<para>That was a simplified description of the actual
exchanges taking place, though. For example, the Subversion
repository might be protected by Apache's authorization
directives. This could result in initial attempts to
communicate with the repository being rejected by Apache on
authorization grounds. At this point, libsvn_ra_dav gets
back the notice from Apache that insufficient identification
was supplied, and calls back into the Client Layer to get
some updated authentication data. If the data is supplied
correctly, and the user has the permissions that Apache
seeks, libsvn_ra_dav's next automatic attempt at performing
the original operation will be granted, and all will be
well. If sufficient authentication information cannot be
supplied, the request will ultimately fail, and the client
will report the failure to the user.</para>

<!-- A diagram here? -->

<para>By using Neon and Apache, Subversion gets free
functionality in several other complex areas, too. For
example, if Neon finds the OpenSSL libraries, it allows the
Subversion client to attempt to use SSL-encrypted
communications with the Apache server (whose own mod_ssl can
<quote>speak the language</quote>). Also, both Neon itself
and Apache's mod_deflate can understand the
<quote>deflate</quote> algorithm (the same one used by the
PKZIP and gzip programs), so requests can be sent in smaller,
compressed chunks across the wire. Other complex features
that Subversion hopes to support in the future include the
ability to automatically handle server-specified redirects
(for example, when a repository has been moved to a new
canonical URL) and taking advantage of HTTP
pipelining.</para>

<!-- Talk about another difference between CVS and Subversion.
CVS users had to specify which auth mechanism to use
(with :ext: vs. :pserver:) and whether or not to use
compressed communications (with the -z option). In
Subversion, Apache takes some of that responsibility.
The server will tell the client whether it can understand
compression, and ... hmm. Is this really true? -->

</sect3>

<sect3 id="svn.developer.layerlib.ra.svn">
<title>RA-SVN (Custom Protocol Repository Access)</title>

<para>In addition to the standard HTTP/WebDAV protocol,
Subversion also provides an RA implementation that uses a
custom protocol. The libsvn_ra_svn module implements
its own network socket connectivity, and communicates with a
stand-alone server&mdash;the <filename>svnserve</filename>
program&mdash;on the machine that hosts the
repository. Clients access the repository using the
<literal>svn://</literal> schema.</para>

<para>This RA implementation lacks most of the advantages of
Apache mentioned in the previous section; however, it may be
appealing to some system administrators nonetheless. It is
dramatically easier to configure and run; setting up an
<filename>svnserve</filename> process is nearly
instantaneous. It is also much smaller (in terms of lines
of code) than Apache, making it much easier to audit, for
security reasons or otherwise. Furthermore, some system
administrators may already have an SSH security
infrastructure in place, and want Subversion to use it.
Clients using ra_svn can easily tunnel the protocol over
SSH.</para>

</sect3>

<sect3 id="svn.developer.layerlib.ra.local">
<title>RA-Local (Direct Repository Access)</title>

<para>Not all communications with a Subversion repository
require a powerhouse server process and a network layer.
For users who simply wish to access the repositories on
their local disk, they may do so using
<literal>file:</literal> URLs and the functionality provided
by libsvn_ra_local. This RA module binds directly with the
repository and filesystem libraries, so no network
communication is required at all.</para>

<para>Subversion requires that the server name included as part
of the <literal>file:</literal> URL be either
<literal>localhost</literal> or empty, and that there be no
port specification. In other words, your URLs should look
like either
<literal>file://localhost/path/to/repos</literal> or
<literal>file:///path/to/repos</literal>.</para>

<para>Also, be aware that Subversion's
<literal>file:</literal> URLs cannot be used in a regular
web browser the way typical <literal>file:</literal> URLs
can. When you attempt to view a <literal>file:</literal>
URL in a regular web browser, it reads and displays the
contents of the file at that location by examining the
filesystem directly. However, Subversion's resources exist
in a virtual filesystem (see <xref
linkend="svn.developer.layerlib.repos" />), and your browser will not
understand how to read that filesystem.</para>

</sect3>

<sect3 id="svn.developer.layerlib.ra.yours">
<title>Your RA Library Here</title>

<para>For those who wish to access a Subversion repository
using still another protocol, that is precisely why the
Repository Access Layer is modularized! Developers can
simply write a new library that implements the RA interface
on one side and communicates with the repository on the
other. Your new library can use existing network protocols,
or you can invent your own. You could use inter-process
communication (IPC) calls, or&mdash;let's get crazy, shall
we?&mdash;you could even implement an email-based protocol.
Subversion supplies the APIs; you supply the creativity.</para>

</sect3>
</sect2>

<!-- =============================================================== -->
<sect2 id="svn.developer.layerlib.client">
<title>Client Layer</title>

<para>On the client side, the Subversion working copy is where
all the action takes place. The bulk of functionality
implemented by the client-side libraries exists for the sole
purpose of managing working copies&mdash;directories full of
files and other subdirectories which serve as a sort of local,
editable <quote>reflection</quote> of one or more repository
locations&mdash;and propagating changes to and from the
Repository Access layer.</para>

<para>Subversion's working copy library, libsvn_wc, is directly
responsible for managing the data in the working copies. To
accomplish this, the library stores administrative information
about each working copy directory within a special
subdirectory. This subdirectory, named
<filename>.svn</filename>, is present in each working copy
directory and contains various other files and directories
which record state and provide a private workspace for
administrative action. For those familiar with CVS, this
<filename>.svn</filename> subdirectory is similar in purpose
to the <filename>CVS</filename> administrative directories
found in CVS working copies. For more information about the
<filename>.svn</filename> administrative area, see <xref
linkend="svn.developer.insidewc"/>in this chapter.</para>

<para>The Subversion client library, libsvn_client, has the
broadest responsibility; its job is to mingle the
functionality of the working copy library with that of the
Repository Access Layer, and then to provide the highest-level
API to any application that wishes to perform general revision
control actions. For example, the function
<function>svn_client_checkout()</function> takes a URL as an
argument. It passes this URL to the RA layer and opens an
authenticated session with a particular repository. It then
asks the repository for a certain tree, and sends this tree
into the working copy library, which then writes a full
working copy to disk (<filename>.svn</filename> directories
and all).</para>

<para>The client library is designed to be used by any
application. While the Subversion source code includes a
standard command-line client, it should be very easy to write
any number of GUI clients on top of the client library. New
GUIs (or any new client, really) for Subversion need not be
clunky wrappers around the included command-line
client&mdash;they have full access via the libsvn_client API
to same functionality, data, and callback mechanisms that the
command-line client uses.</para>

<sidebar>
<title>Binding Directly&mdash;A Word About Correctness</title>

<para>Why should your GUI program bind directly with a
libsvn_client instead of acting as a wrapper around a
command-line program? Besides simply being more efficient,
this can address potential correctness issues as well. A
command-line program (like the one supplied with Subversion)
that binds to the client library needs to effectively
translate feedback and requested data bits from C types to
some form of human-readable output. This type of
translation can be lossy. That is, the program may not
display all of the information harvested from the API, or
may combine bits of information for compact representation.</para>

<para>If you wrap such a command-line program with yet another
program, the second program has access only to
already-interpreted (and as we mentioned, likely incomplete)
information, which it must <emphasis>again</emphasis>
translate into <emphasis>its</emphasis> representation
format. With each layer of wrapping, the integrity of the
original data is potentially tainted more and more, much
like the result of making a copy of a copy (of a copy &hellip;)
of a favorite audio or video cassette.</para>

</sidebar>

</sect2>
</sect1>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.developer.usingapi">
<title>Using the APIs</title>

<para>Developing applications against the Subversion library APIs
is fairly straightforward. All of the public header files live
in the <filename>subversion/include</filename> directory of the
source tree. These headers are copied into your system
locations when you build and install Subversion itself from
source. These headers represent the entirety of the functions
and types meant to be accessible by users of the Subversion
libraries.</para>

<para>The first thing you might notice is that Subversion's
datatypes and functions are namespace protected. Every public
Subversion symbol name begins with <literal>svn_</literal>,
followed by a short code for the library in which the symbol is
defined (such as <literal>wc</literal>,
<literal>client</literal>, <literal>fs</literal>, etc.),
followed by a single underscore (<literal>_</literal>) and
then the rest of the symbol name. Semi-public functions (used
among source files of a given library but not by code outside
that library, and found inside the library directories
themselves) differ from this naming scheme in that instead of a
single underscore after the library code, they use a double
underscore (<literal>__</literal>). Functions that are private
to a given source file have no special prefixing, and are declared
<literal>static</literal>. Of course, a compiler isn't
interested in these naming conventions, but they help to clarify
the scope of a given function or datatype.</para>

<!-- =============================================================== -->
<sect2 id="svn.developer.usingapi.apr">
<title>The Apache Portable Runtime Library</title>

<para>Along with Subversion's own datatypes, you will see many
references to datatypes that begin with
<literal>apr_</literal>&mdash;symbols from the Apache
Portable Runtime (APR) library. APR is Apache's portability
library, originally carved out of its server code as an
attempt to separate the OS-specific bits from the
OS-independent portions of the code. The result was a library
that provides a generic API for performing operations that
differ mildly&mdash;or wildly&mdash;from OS to OS. While the
Apache HTTP Server was obviously the first user of the APR
library, the Subversion developers immediately recognized the
value of using APR as well. This means that there are
practically no OS-specific code portions in Subversion itself.
Also, it means that the Subversion client compiles and runs
anywhere that the server does. Currently this list includes
all flavors of Unix, Win32, BeOS, OS/2, and Mac OS X.</para>

<para>In addition to providing consistent implementations of
system calls that differ across operating systems,
<footnote>
<para>Subversion uses ANSI system calls and datatypes as much
as possible.</para>
</footnote>
APR gives Subversion immediate access to many custom
datatypes, such as dynamic arrays and hash tables. Subversion
uses these types extensively throughout the codebase. But
perhaps the most pervasive APR datatype, found in nearly every
Subversion API prototype, is the
<structname>apr_pool_t</structname>&mdash;the APR memory pool.
Subversion uses pools internally for all its memory allocation
needs (unless an external library requires a different memory
management schema for data passed through its API),
<footnote>
<para>Neon and Berkeley DB are examples of such libraries.</para>
</footnote>
and while a person coding against the Subversion APIs is
not required to do the same, they are required to provide
pools to the API functions that need them. This means that
users of the Subversion API must also link against APR, must
call <function>apr_initialize()</function> to initialize the
APR subsystem, and then must create and manage pools for use with
Subversion API calls, typically by using
<function>svn_pool_create()</function>,
<function>svn_pool_clear()</function>, and
<function>svn_pool_destroy()</function>.</para>

</sect2>

<!-- =============================================================== -->
<sect2 id="svn.developer.usingapi.urlpath">
<title>URL and Path Requirements</title>

<para>With remote version control operation as the whole point
of Subversion's existence, it makes sense that some attention
has been paid to internationalization (i18n) support. After
all, while <quote>remote</quote> might mean <quote>across the
office</quote>, it could just as well mean <quote>across the
globe.</quote> To facilitate this, all of Subversion's public
interfaces that accept path arguments expect those paths to be
canonicalized, and encoded in UTF-8. This means, for example,
that any new client binary that drives the libsvn_client
interface needs to first convert paths from the
locale-specific encoding to UTF-8 before passing those paths
to the Subversion libraries, and then re-convert any resultant
output paths from Subversion back into the locale's encoding
before using those paths for non-Subversion purposes.
Fortunately, Subversion provides a suite of functions (see
<filename>subversion/include/svn_utf.h</filename>) that can be
used by any program to do these conversions.</para>

<para>Also, Subversion APIs require all URL parameters to be
properly URI-encoded. So, instead of passing
<uri>file:///home/username/My File.txt</uri> as the URL of a
file named <literal>My File.txt</literal>, you need to pass
<uri>file:///home/username/My%20File.txt</uri>. Again,
Subversion supplies helper functions that your application can
use&mdash;<function>svn_path_uri_encode()</function> and
<function>svn_path_uri_decode()</function>, for URI encoding
and decoding, respectively.</para> </sect2>

<!-- =============================================================== -->
<sect2 id="svn.developer.usingapi.otherlangs">
<title>Using Languages Other than C and C++</title>

<para>If you are interested in using the Subversion libraries in
conjunction with something other than a C program&mdash;say a
Python or Perl script&mdash;Subversion has some support for this
via the Simplified Wrapper and Interface Generator (SWIG). The
SWIG bindings for Subversion are located in
<filename>subversion/bindings/swig</filename> and whilst still
maturing, they are in a usable state. These bindings allow you
to call Subversion API functions indirectly, using wrappers that
translate the datatypes native to your scripting language into
the datatypes needed by Subversion's C libraries.</para>

<para>There is an obvious benefit to accessing the Subversion
APIs via a language binding&mdash;simplicity. Generally
speaking, languages such as Python and Perl are much more
flexible and easy to use than C or C++. The sort of
high-level datatypes and context-driven type checking provided
by these languages are often better at handling information
that comes from users. As you know, humans are proficient at
botching up input to a program, and scripting languages tend
to handle that misinformation more gracefully. Of course,
often that flexibility comes at the cost of performance. That
is why using a tightly-optimized, C-based interface and
library suite, combined with a powerful, flexible binding
language, is so appealing.</para>

<para>Let's look at a sample program that uses Subversion's
Python SWIG bindings to recursively crawl the youngest
repository revision, and print the various paths reached
during the crawl.</para>

<example id="svn.developer.usingapi.otherlangs.ex-1">
<title>Using the Repository Layer with Python</title>

<programlisting>
#!/usr/bin/python

"""Crawl a repository, printing versioned object path names."""

import sys
import os.path
import svn.fs, svn.core, svn.repos

def crawl_filesystem_dir(root, directory, pool):
"""Recursively crawl DIRECTORY under ROOT in the filesystem, and return
a list of all the paths at or below DIRECTORY. Use POOL for all
allocations."""

# Print the name of this path.
print directory + "/"

# Get the directory entries for DIRECTORY.
entries = svn.fs.svn_fs_dir_entries(root, directory, pool)

# Use an iteration subpool.
subpool = svn.core.svn_pool_create(pool)

# Loop over the entries.
names = entries.keys()
for name in names:
# Clear the iteration subpool.
svn.core.svn_pool_clear(subpool)

# Calculate the entry's full path.
full_path = directory + '/' + name

# If the entry is a directory, recurse. The recursion will return
# a list with the entry and all its children, which we will add to
# our running list of paths.
if svn.fs.svn_fs_is_dir(root, full_path, subpool):
crawl_filesystem_dir(root, full_path, subpool)
else:
# Else it's a file, so print its path here.
print full_path

# Destroy the iteration subpool.
svn.core.svn_pool_destroy(subpool)

def crawl_youngest(pool, repos_path):
"""Open the repository at REPOS_PATH, and recursively crawl its
youngest revision."""

# Open the repository at REPOS_PATH, and get a reference to its
# versioning filesystem.
repos_obj = svn.repos.svn_repos_open(repos_path, pool)
fs_obj = svn.repos.svn_repos_fs(repos_obj)

# Query the current youngest revision.
youngest_rev = svn.fs.svn_fs_youngest_rev(fs_obj, pool)

# Open a root object representing the youngest (HEAD) revision.
root_obj = svn.fs.svn_fs_revision_root(fs_obj, youngest_rev, pool)

# Do the recursive crawl.
crawl_filesystem_dir(root_obj, "", pool)

if __name__ == "__main__":
# Check for sane usage.
if len(sys.argv) != 2:
sys.stderr.write("Usage: %s REPOS_PATH\n"
% (os.path.basename(sys.argv[0])))
sys.exit(1)

# Canonicalize (enough for Subversion, at least) the repository path.
repos_path = os.path.normpath(sys.argv[1])
if repos_path == '.':
repos_path = ''

# Call the app-wrapper, which takes care of APR initialization/shutdown
# and the creation and cleanup of our top-level memory pool.
svn.core.run_app(crawl_youngest, repos_path)
</programlisting>
</example>

<para>This same program in C would need to deal with custom
datatypes (such as those provided by the APR library) for
representing the hash of entries and the list of paths, but
Python has hashes (called <quote>dictionaries</quote>) and
lists as built-in datatypes, and provides a rich collection of
functions for operating on those types. So SWIG (with the
help of some customizations in Subversion's language bindings
layer) takes care of mapping those custom datatypes into the
native datatypes of the target language. This provides a more
intuitive interface for users of that language.</para>

<para>The Subversion Python bindings can be used for working
copy operations, too. In the previous section of this
chapter, we mentioned the <filename>libsvn_client</filename>
interface, and how it exists for the sole purpose of
simplifying the process of writing a Subversion client. The
following is a brief example of how that library can be
accessed via the SWIG bindings to recreate a scaled-down
version of the <command>svn status</command> command.</para>

<example id="svn.developer.usingapi.otherlangs.ex-2">
<title>A Python Status Crawler</title>

<programlisting>
#!/usr/bin/env python

"""Crawl a working copy directory, printing status information."""

import sys
import os.path
import getopt
import svn.core, svn.client, svn.wc

def generate_status_code(status):
"""Translate a status value into a single-character status code,
using the same logic as the Subversion command-line client."""

if status == svn.wc.svn_wc_status_none:
return ' '
if status == svn.wc.svn_wc_status_normal:
return ' '
if status == svn.wc.svn_wc_status_added:
return 'A'
if status == svn.wc.svn_wc_status_missing:
return '!'
if status == svn.wc.svn_wc_status_incomplete:
return '!'
if status == svn.wc.svn_wc_status_deleted:
return 'D'
if status == svn.wc.svn_wc_status_replaced:
return 'R'
if status == svn.wc.svn_wc_status_modified:
return 'M'
if status == svn.wc.svn_wc_status_merged:
return 'G'
if status == svn.wc.svn_wc_status_conflicted:
return 'C'
if status == svn.wc.svn_wc_status_obstructed:
return '~'
if status == svn.wc.svn_wc_status_ignored:
return 'I'
if status == svn.wc.svn_wc_status_external:
return 'X'
if status == svn.wc.svn_wc_status_unversioned:
return '?'
return '?'

def do_status(pool, wc_path, verbose):
# Calculate the length of the input working copy path.
wc_path_len = len(wc_path)

# Build a client context baton.
ctx = svn.client.svn_client_ctx_t()

def _status_callback(path, status, root_path_len=wc_path_len):
"""A callback function for svn_client_status."""

# Print the path, minus the bit that overlaps with the root of
# the status crawl
text_status = generate_status_code(status.text_status)
prop_status = generate_status_code(status.prop_status)
print '%s%s %s' % (text_status, prop_status, path[wc_path_len + 1:])

# Do the status crawl, using _status_callback() as our callback function.
svn.client.svn_client_status(wc_path, None, _status_callback,
1, verbose, 0, 0, ctx, pool)

def usage_and_exit(errorcode):
"""Print usage message, and exit with ERRORCODE."""
stream = errorcode and sys.stderr or sys.stdout
stream.write("""Usage: %s OPTIONS WC-PATH
Options:
--help, -h : Show this usage message
--verbose, -v : Show all statuses, even uninteresting ones
""" % (os.path.basename(sys.argv[0])))
sys.exit(errorcode)

if __name__ == '__main__':
# Parse command-line options.
try:
opts, args = getopt.getopt(sys.argv[1:], "hv", ["help", "verbose"])
except getopt.GetoptError:
usage_and_exit(1)
verbose = 0
for opt, arg in opts:
if opt in ("-h", "--help"):
usage_and_exit(0)
if opt in ("-v", "--verbose"):
verbose = 1
if len(args) != 1:
usage_and_exit(2)

# Canonicalize (enough for Subversion, at least) the working copy path.
wc_path = os.path.normpath(args[0])
if wc_path == '.':
wc_path = ''

# Call the app-wrapper, which takes care of APR initialization/shutdown
# and the creation and cleanup of our top-level memory pool.
svn.core.run_app(do_status, wc_path, verbose)
</programlisting>
</example>

<para>Subversion's language bindings unfortunately tend to lack
the level of attention given to the core Subversion modules.
However, there have been significant efforts towards creating
functional bindings for Python, Perl, and Ruby. To some extent,
the work done preparing the SWIG interface files for these
languages is reusable in efforts to generate bindings for other
languages supported by SWIG (which includes versions of C#,
Guile, Java, MzScheme, OCaml, PHP, Tcl, and others).
However, some extra programming is required to compensate for
complex APIs that SWIG needs some help interfacing with. For
more information on SWIG itself, see the project's website at
<ulink url="http://www.swig.org/"/>.</para>

</sect2>
</sect1>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.developer.insidewc">
<title>Inside the Working Copy Administration Area</title>

<para>As we mentioned earlier, each directory of a Subversion
working copy contains a special subdirectory called
<filename>.svn</filename> which houses administrative data about
that working copy directory. Subversion uses the information in
<filename>.svn</filename> to keep track of things like:</para>

<itemizedlist>
<listitem>
<para>Which repository location(s) are represented by the
files and subdirectories in the working copy
directory.</para>
</listitem>
<listitem>
<para>What revision of each of those files and directories are
currently present in the working copy.</para>
</listitem>
<listitem>
<para>Any user-defined properties that might be attached
to those files and directories.</para>
</listitem>
<listitem>
<para>Pristine (un-edited) copies of the working copy
files.</para>
</listitem>
</itemizedlist>

<para>While there are several other bits of data stored in the
<filename>.svn</filename> directory, we will examine only a
couple of the most important items.</para>

<!-- =============================================================== -->
<sect2 id="svn.developer.insidewc.entries">
<title>The Entries File</title>

<para>Perhaps the single most important file in the
<filename>.svn</filename> directory is the
<filename>entries</filename> file. The entries file is an XML
document which contains the bulk of the administrative
information about a versioned resource in a working copy
directory. It is this one file which tracks the repository
URLs, pristine revision, file checksums, pristine text and
property timestamps, scheduling and conflict state
information, last-known commit information (author, revision,
timestamp), local copy history&mdash;practically everything
that a Subversion client is interested in knowing about a
versioned (or to-be-versioned) resource!</para>

<sidebar>
<title>Comparing the Administrative Areas of Subversion and
CVS</title>

<para>A glance inside the typical <filename>.svn</filename>
directory turns up a bit more than what CVS maintains in its
<filename>CVS</filename> administrative directories. The
<filename>entries</filename> file contains XML which
describes the current state of the working copy directory,
and basically serves the purposes of CVS's
<filename>Entries</filename>, <filename>Root</filename>, and
<filename>Repository</filename> files combined.</para>

</sidebar>

<para>The following is an example of an actual entries
file:</para>

<example id="svn.developer.insidewc.entries.ex-1">
<title>Contents of a Typical <filename>.svn/entries</filename>
File</title>
<programlisting>
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;wc-entries
xmlns="svn:"&gt;
&lt;entry
committed-rev="1"
name=""
committed-date="2005-04-04T13:32:28.526873Z"
url="http://svn.red-bean.com/repos/greek-tree/A/D"
last-author="jrandom"
kind="dir"
uuid="4e820d15-a807-0410-81d5-aa59edf69161"
revision="1"/&gt;
&lt;entry
name="lambda"
copied="true"
kind="file"
copyfrom-rev="1"
schedule="add"
copyfrom-url="http://svn.red-bean.com/repos/greek-tree/A/B/lambda"/&gt;
&lt;entry
committed-rev="1"
name="gamma"
text-time="2005-12-11T16:32:46.000000Z"
committed-date="2005-04-04T13:32:28.526873Z"
checksum="ada10d942b1964d359e048dbacff3460"
last-author="jrandom"
kind="file"
prop-time="2005-12-11T16:32:45.000000Z"/&gt;
&lt;entry
name="zeta"
kind="file"
schedule="add"
revision="0"/&gt;
&lt;entry
name="G"
kind="dir"/&gt;
&lt;entry
name="H"
kind="dir"
schedule="delete"/&gt;
&lt;/wc-entries&gt;
</programlisting>
</example>

<para>As you can see, the entries file is essentially a list of
entries. Each <sgmltag>entry</sgmltag> tag represents one of
three things: the working copy directory itself (called the
<quote>this directory</quote> entry, and noted as having an
empty value for its <structfield>name</structfield>
attribute), a file in that working copy directory (noted by
having its <structfield>kind</structfield> attribute set to
<literal>"file"</literal>), or a subdirectory in that working
copy (<structfield>kind</structfield> here is set to
<literal>"dir"</literal>). The files and subdirectories whose
entries are stored in this file are either already under
version control, or (as in the case of the file named
<filename>zeta</filename> above) are scheduled to be added to
version control when the user next commits this working copy
directory's changes. Each entry has a unique name, and each
entry has a node kind.</para>

<para>Developers should be aware of some special rules that
Subversion uses when reading and writing its
<filename>entries</filename> files. While each entry has a
revision and URL associated with it, note that not every
<sgmltag>entry</sgmltag> tag in the sample file has explicit
<structfield>revision</structfield> or
<structfield>url</structfield> attributes attached to it.
Subversion allows entries to not explicitly store those two
attributes when their values are the same as (in the
<structfield>revision</structfield> case) or trivially
calculable from
<footnote>
<para>That is, the URL for the entry is the same as the
concatenation of the parent directory's URL and the
entry's name.</para>
</footnote>
(in the <structfield>url</structfield> case) the data stored
in the <quote>this directory</quote> entry. Note also that
for subdirectory entries, Subversion stores only the crucial
attributes&mdash;name, kind, url, revision, and schedule. In
an effort to reduce duplicated information, Subversion
dictates that the method for determining the full set of
information about a subdirectory is to traverse down into that
subdirectory, and read the <quote>this directory</quote> entry
from its own <filename>.svn/entries</filename> file. However,
a reference to the subdirectory is kept in its parent's
<filename>entries</filename> file, with enough information to
permit basic versioning operations in the event that the
subdirectory itself is actually missing from disk.</para>

</sect2>

<!-- =============================================================== -->
<sect2 id="svn.developer.insidewc.base-and-props">
<title>Pristine Copies and Property Files</title>

<para>As mentioned before, the <filename>.svn</filename>
directory also holds the pristine <quote>text-base</quote>
versions of files. Those can be found in
<filename>.svn/text-base</filename>. The benefits of these
pristine copies are multiple&mdash;network-free checks for
local modifications and difference reporting, network-free
reversion of modified or missing files, smaller transmission
of changes to the server&mdash;but comes at the cost of having
each versioned file stored at least twice on disk. These
days, this seems to be a negligible penalty for most files.
However, the situation gets uglier as the size of your
versioned files grows. Some attention is being given to
making the presence of the <quote>text-base</quote> an option.
Ironically though, it is as your versioned files' sizes get
larger that the existence of the <quote>text-base</quote>
becomes more crucial&mdash;who wants to transmit a huge file
across a network just because they want to commit a tiny
change to it?</para>

<para>Similar in purpose to the <quote>text-base</quote> files
are the property files and their pristine
<quote>prop-base</quote> copies, located in
<filename>.svn/props</filename> and
<filename>.svn/prop-base</filename> respectively. Since
directories can have properties, too, there are also
<filename>.svn/dir-props</filename> and
<filename>.svn/dir-prop-base</filename> files. Each of these
property files (<quote>working</quote> and <quote>base</quote>
versions) uses a simple <quote>hash-on-disk</quote> file
format for storing the property names and values.</para>

</sect2>
</sect1>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.developer.webdav">
<title>WebDAV</title>

<para>WebDAV (shorthand for <quote>Web-based Distributed Authoring
and Versioning</quote>) is an extension of the standard HTTP
protocol designed to make the web into a read/write medium,
instead of the basically read-only medium that exists today.
The theory is that directories and files can be shared&mdash;as
both readable and writable objects&mdash;over the web. RFCs
2518 and 3253 describe the WebDAV/DeltaV extensions to HTTP, and
are available (along with a lot of other useful information) at
<ulink url="http://www.webdav.org/"/>.</para>

<para>A number of operating system file browsers are already able
to mount networked directories using WebDAV. On Win32, the
Windows Explorer can browse what it calls Web Folders (which are
just WebDAV-ready network locations) as if they were regular
shared folders. Mac OS X also has this capability, as do the
Nautilus and Konqueror browsers (under GNOME and KDE,
respectively).</para>

<para>How does all of this apply to Subversion? The mod_dav_svn
Apache module uses HTTP, extended by WebDAV and DeltaV, as one
of its network protocols. Subversion uses mod_dav_svn to map
between Subversion's versioning concepts and those of RFCs 2518
and 3253.
</para>

<para>For a more thorough discussion of WebDAV, how it works, and
how Subversion uses it, see <xref linkend="svn.webdav"/>. Among
other things, that appendix discusses the degree to which
Subversion adheres to the generic WebDAV specification, and how
that affects interoperability with generic WebDAV
clients.</para>
</sect1>

</chapter>

<!--
local variables:
sgml-parent-document: ("book.xml" "chapter")
end:
vim: tw=78:ft=svnbook
-->
Show details Hide details

Change log

r2662 by dmitriy on Feb 06, 2007   Diff
* src/ru/book/*
  Remove property 'last-sync', and set
this property on 'book' directory,
  globally for all files.

* src/ru/sync.py: move from per-file
syncing to syncing all-files-at-once.

* src/ru/TRANSLATION-STATUS: update status
of translation.
Go to: 

Older revisions

r2649 by dmitriy on Feb 05, 2007   Diff
Book Russian. Merge with changes from
r2580:r2601 of the src/en/book. More
detail in logs for corresponding
revisions.
r2648 by dmitriy on Feb 04, 2007   Diff
Book Russian. Merge with changes from
r2573,r2574,r2576 of the src/en/book.
More detail in log for
r2573,r2574,r2576.
r2644 by dmitriy on Feb 04, 2007   Diff
Book Russian. Sync all parts of the
book with the src/en/book up to r2568.
All revisions of this file

File info

Size: 68267 bytes, 1434 lines

File properties

status
Not translated
svn:mime-type
text/xml
svn:eol-style
native
Hosted by Google Code