]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/subversion/subversion/libsvn_fs_fs/revprops.h
MFC r275385 (by bapt):
[FreeBSD/stable/10.git] / contrib / subversion / subversion / libsvn_fs_fs / revprops.h
1 /* revprops.h --- everything needed to handle revprops in FSFS
2  *
3  * ====================================================================
4  *    Licensed to the Apache Software Foundation (ASF) under one
5  *    or more contributor license agreements.  See the NOTICE file
6  *    distributed with this work for additional information
7  *    regarding copyright ownership.  The ASF licenses this file
8  *    to you under the Apache License, Version 2.0 (the
9  *    "License"); you may not use this file except in compliance
10  *    with the License.  You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *    Unless required by applicable law or agreed to in writing,
15  *    software distributed under the License is distributed on an
16  *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  *    KIND, either express or implied.  See the License for the
18  *    specific language governing permissions and limitations
19  *    under the License.
20  * ====================================================================
21  */
22
23 #include "svn_fs.h"
24
25 /* In the filesystem FS, pack all revprop shards up to min_unpacked_rev.
26  *
27  * NOTE: Keep the old non-packed shards around until after the format bump.
28  * Otherwise, re-running upgrade will drop the packed revprop shard but
29  * have no unpacked data anymore.  Call upgrade_cleanup_pack_revprops after
30  * the bump.
31  *
32  * NOTIFY_FUNC and NOTIFY_BATON as well as CANCEL_FUNC and CANCEL_BATON are
33  * used in the usual way.  Temporary allocations are done in SCRATCH_POOL.
34  */
35 svn_error_t *
36 svn_fs_fs__upgrade_pack_revprops(svn_fs_t *fs,
37                                  svn_fs_upgrade_notify_t notify_func,
38                                  void *notify_baton,
39                                  svn_cancel_func_t cancel_func,
40                                  void *cancel_baton,
41                                  apr_pool_t *scratch_pool);
42
43 /* In the filesystem FS, remove all non-packed revprop shards up to
44  * min_unpacked_rev.  Temporary allocations are done in SCRATCH_POOL.
45  *
46  * NOTIFY_FUNC and NOTIFY_BATON as well as CANCEL_FUNC and CANCEL_BATON are
47  * used in the usual way.  Cancellation is supported in the sense that we
48  * will cleanly abort the operation.  However, there will be remnant shards
49  * that must be removed manually.
50  *
51  * See upgrade_pack_revprops for more info.
52  */
53 svn_error_t *
54 svn_fs_fs__upgrade_cleanup_pack_revprops(svn_fs_t *fs,
55                                          svn_fs_upgrade_notify_t notify_func,
56                                          void *notify_baton,
57                                          svn_cancel_func_t cancel_func,
58                                          void *cancel_baton,
59                                          apr_pool_t *scratch_pool);
60
61 /* Read the revprops for revision REV in FS and return them in *PROPERTIES_P.
62  *
63  * Allocations will be done in POOL.
64  */
65 svn_error_t *
66 svn_fs_fs__get_revision_proplist(apr_hash_t **proplist_p,
67                                  svn_fs_t *fs,
68                                  svn_revnum_t rev,
69                                  apr_pool_t *pool);
70
71 /* Set the revision property list of revision REV in filesystem FS to
72    PROPLIST.  Use POOL for temporary allocations. */
73 svn_error_t *
74 svn_fs_fs__set_revision_proplist(svn_fs_t *fs,
75                                  svn_revnum_t rev,
76                                  apr_hash_t *proplist,
77                                  apr_pool_t *pool);
78
79
80 /* Return TRUE, if for REVISION in FS, we can find the revprop pack file.
81  * Use POOL for temporary allocations.
82  * Set *MISSING, if the reason is a missing manifest or pack file.
83  */
84 svn_boolean_t
85 svn_fs_fs__packed_revprop_available(svn_boolean_t *missing,
86                                     svn_fs_t *fs,
87                                     svn_revnum_t revision,
88                                     apr_pool_t *pool);
89
90 \f
91 /****** Packing FSFS shards *********/
92
93 /* Copy revprop files for revisions [START_REV, END_REV) from SHARD_PATH
94  * to the pack file at PACK_FILE_NAME in PACK_FILE_DIR.
95  *
96  * The file sizes have already been determined and written to SIZES.
97  * Please note that this function will be executed while the filesystem
98  * has been locked and that revprops files will therefore not be modified
99  * while the pack is in progress.
100  *
101  * COMPRESSION_LEVEL defines how well the resulting pack file shall be
102  * compressed or whether is shall be compressed at all.  TOTAL_SIZE is
103  * a hint on which initial buffer size we should use to hold the pack file
104  * content.
105  *
106  * CANCEL_FUNC and CANCEL_BATON are used as usual. Temporary allocations
107  * are done in SCRATCH_POOL.
108  */
109 svn_error_t *
110 svn_fs_fs__copy_revprops(const char *pack_file_dir,
111                          const char *pack_filename,
112                          const char *shard_path,
113                          svn_revnum_t start_rev,
114                          svn_revnum_t end_rev,
115                          apr_array_header_t *sizes,
116                          apr_size_t total_size,
117                          int compression_level,
118                          svn_cancel_func_t cancel_func,
119                          void *cancel_baton,
120                          apr_pool_t *scratch_pool);
121
122 /* In the filesystem FS, pack all revprop shards up to min_unpacked_rev.
123  *
124  * NOTE: Keep the old non-packed shards around until after the format bump.
125  * Otherwise, re-running upgrade will drop the packed revprop shard but
126  * have no unpacked data anymore.  Call upgrade_cleanup_pack_revprops after
127  * the bump.
128  *
129  * NOTIFY_FUNC and NOTIFY_BATON as well as CANCEL_FUNC and CANCEL_BATON are
130  * used in the usual way.  Temporary allocations are done in SCRATCH_POOL.
131  */
132 svn_error_t *
133 svn_fs_fs__pack_revprops_shard(const char *pack_file_dir,
134                                const char *shard_path,
135                                apr_int64_t shard,
136                                int max_files_per_dir,
137                                apr_off_t max_pack_size,
138                                int compression_level,
139                                svn_cancel_func_t cancel_func,
140                                void *cancel_baton,
141                                apr_pool_t *scratch_pool);
142
143 /* In the filesystem FS, remove all non-packed revprop shards up to
144  * min_unpacked_rev.  Temporary allocations are done in SCRATCH_POOL.
145  *
146  * NOTIFY_FUNC and NOTIFY_BATON as well as CANCEL_FUNC and CANCEL_BATON are
147  * used in the usual way.  Cancellation is supported in the sense that we
148  * will cleanly abort the operation.  However, there will be remnant shards
149  * that must be removed manually.
150  *
151  * See upgrade_pack_revprops for more info.
152  */
153 svn_error_t *
154 svn_fs_fs__delete_revprops_shard(const char *shard_path,
155                                  apr_int64_t shard,
156                                  int max_files_per_dir,
157                                  svn_cancel_func_t cancel_func,
158                                  void *cancel_baton,
159                                  apr_pool_t *scratch_pool);