TortoiseGitMerge: Updated libsvn stuff
[TortoiseGit.git] / src / TortoiseMerge / svninclude / svn_config.h
blobf5bed7bf64a760911ad23112e0bf509ccc8a4659
1 /**
2 * @copyright
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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 * @endcopyright
23 * @file svn_config.h
24 * @brief Accessing SVN configuration files.
29 #ifndef SVN_CONFIG_H
30 #define SVN_CONFIG_H
32 #include <apr.h> /* for apr_int64_t */
33 #include <apr_pools.h> /* for apr_pool_t */
34 #include <apr_hash.h> /* for apr_hash_t */
36 #include "svn_types.h"
37 #include "svn_io.h"
39 #ifdef __cplusplus
40 extern "C" {
41 #endif /* __cplusplus */
44 /**************************************************************************
45 *** ***
46 *** For a description of the SVN configuration file syntax, see ***
47 *** your ~/.subversion/README, which is written out automatically by ***
48 *** svn_config_ensure(). ***
49 *** ***
50 **************************************************************************/
53 /** Opaque structure describing a set of configuration options. */
54 typedef struct svn_config_t svn_config_t;
57 /*** Configuration Defines ***/
59 /**
60 * @name Client configuration files strings
61 * Strings for the names of files, sections, and options in the
62 * client configuration files.
63 * @{
66 /* This list of #defines is intentionally presented as a nested list
67 that matches the in-config hierarchy. */
69 #define SVN_CONFIG_CATEGORY_SERVERS "servers"
70 #define SVN_CONFIG_SECTION_GROUPS "groups"
71 #define SVN_CONFIG_SECTION_GLOBAL "global"
72 #define SVN_CONFIG_OPTION_HTTP_PROXY_HOST "http-proxy-host"
73 #define SVN_CONFIG_OPTION_HTTP_PROXY_PORT "http-proxy-port"
74 #define SVN_CONFIG_OPTION_HTTP_PROXY_USERNAME "http-proxy-username"
75 #define SVN_CONFIG_OPTION_HTTP_PROXY_PASSWORD "http-proxy-password"
76 #define SVN_CONFIG_OPTION_HTTP_PROXY_EXCEPTIONS "http-proxy-exceptions"
77 #define SVN_CONFIG_OPTION_HTTP_TIMEOUT "http-timeout"
78 #define SVN_CONFIG_OPTION_HTTP_COMPRESSION "http-compression"
79 #define SVN_CONFIG_OPTION_NEON_DEBUG_MASK "neon-debug-mask"
80 #define SVN_CONFIG_OPTION_HTTP_AUTH_TYPES "http-auth-types"
81 #define SVN_CONFIG_OPTION_SSL_AUTHORITY_FILES "ssl-authority-files"
82 #define SVN_CONFIG_OPTION_SSL_TRUST_DEFAULT_CA "ssl-trust-default-ca"
83 #define SVN_CONFIG_OPTION_SSL_CLIENT_CERT_FILE "ssl-client-cert-file"
84 #define SVN_CONFIG_OPTION_SSL_CLIENT_CERT_PASSWORD "ssl-client-cert-password"
85 #define SVN_CONFIG_OPTION_SSL_PKCS11_PROVIDER "ssl-pkcs11-provider"
86 #define SVN_CONFIG_OPTION_HTTP_LIBRARY "http-library"
87 #define SVN_CONFIG_OPTION_STORE_PASSWORDS "store-passwords"
88 #define SVN_CONFIG_OPTION_STORE_PLAINTEXT_PASSWORDS "store-plaintext-passwords"
89 #define SVN_CONFIG_OPTION_STORE_AUTH_CREDS "store-auth-creds"
90 #define SVN_CONFIG_OPTION_STORE_SSL_CLIENT_CERT_PP "store-ssl-client-cert-pp"
91 #define SVN_CONFIG_OPTION_STORE_SSL_CLIENT_CERT_PP_PLAINTEXT \
92 "store-ssl-client-cert-pp-plaintext"
93 #define SVN_CONFIG_OPTION_USERNAME "username"
94 /** @since New in 1.8. */
95 #define SVN_CONFIG_OPTION_HTTP_BULK_UPDATES "http-bulk-updates"
96 /** @since New in 1.8. */
97 #define SVN_CONFIG_OPTION_HTTP_MAX_CONNECTIONS "http-max-connections"
99 #define SVN_CONFIG_CATEGORY_CONFIG "config"
100 #define SVN_CONFIG_SECTION_AUTH "auth"
101 #define SVN_CONFIG_OPTION_PASSWORD_STORES "password-stores"
102 #define SVN_CONFIG_OPTION_KWALLET_WALLET "kwallet-wallet"
103 #define SVN_CONFIG_OPTION_KWALLET_SVN_APPLICATION_NAME_WITH_PID "kwallet-svn-application-name-with-pid"
104 /** @since New in 1.8. */
105 #define SVN_CONFIG_OPTION_SSL_CLIENT_CERT_FILE_PROMPT "ssl-client-cert-file-prompt"
106 /* The majority of options of the "auth" section
107 * has been moved to SVN_CONFIG_CATEGORY_SERVERS. */
108 #define SVN_CONFIG_SECTION_HELPERS "helpers"
109 #define SVN_CONFIG_OPTION_EDITOR_CMD "editor-cmd"
110 #define SVN_CONFIG_OPTION_DIFF_CMD "diff-cmd"
111 /** @since New in 1.7. */
112 #define SVN_CONFIG_OPTION_DIFF_EXTENSIONS "diff-extensions"
113 #define SVN_CONFIG_OPTION_DIFF3_CMD "diff3-cmd"
114 #define SVN_CONFIG_OPTION_DIFF3_HAS_PROGRAM_ARG "diff3-has-program-arg"
115 #define SVN_CONFIG_OPTION_MERGE_TOOL_CMD "merge-tool-cmd"
116 #define SVN_CONFIG_SECTION_MISCELLANY "miscellany"
117 #define SVN_CONFIG_OPTION_GLOBAL_IGNORES "global-ignores"
118 #define SVN_CONFIG_OPTION_LOG_ENCODING "log-encoding"
119 #define SVN_CONFIG_OPTION_USE_COMMIT_TIMES "use-commit-times"
120 /** @deprecated Not used by Subversion since 2003/r847039 (well before 1.0) */
121 #define SVN_CONFIG_OPTION_TEMPLATE_ROOT "template-root"
122 #define SVN_CONFIG_OPTION_ENABLE_AUTO_PROPS "enable-auto-props"
123 #define SVN_CONFIG_OPTION_NO_UNLOCK "no-unlock"
124 #define SVN_CONFIG_OPTION_MIMETYPES_FILE "mime-types-file"
125 #define SVN_CONFIG_OPTION_PRESERVED_CF_EXTS "preserved-conflict-file-exts"
126 #define SVN_CONFIG_OPTION_INTERACTIVE_CONFLICTS "interactive-conflicts"
127 #define SVN_CONFIG_OPTION_MEMORY_CACHE_SIZE "memory-cache-size"
128 #define SVN_CONFIG_SECTION_TUNNELS "tunnels"
129 #define SVN_CONFIG_SECTION_AUTO_PROPS "auto-props"
130 /** @since New in 1.8. */
131 #define SVN_CONFIG_SECTION_WORKING_COPY "working-copy"
132 /** @since New in 1.8. */
133 #define SVN_CONFIG_OPTION_SQLITE_EXCLUSIVE "exclusive-locking"
134 /** @since New in 1.8. */
135 #define SVN_CONFIG_OPTION_SQLITE_EXCLUSIVE_CLIENTS "exclusive-locking-clients"
136 /** @} */
138 /** @name Repository conf directory configuration files strings
139 * Strings for the names of sections and options in the
140 * repository conf directory configuration files.
141 * @{
143 /* For repository svnserve.conf files */
144 #define SVN_CONFIG_SECTION_GENERAL "general"
145 #define SVN_CONFIG_OPTION_ANON_ACCESS "anon-access"
146 #define SVN_CONFIG_OPTION_AUTH_ACCESS "auth-access"
147 #define SVN_CONFIG_OPTION_PASSWORD_DB "password-db"
148 #define SVN_CONFIG_OPTION_REALM "realm"
149 #define SVN_CONFIG_OPTION_AUTHZ_DB "authz-db"
150 /** @since New in 1.8. */
151 #define SVN_CONFIG_OPTION_GROUPS_DB "groups-db"
152 /** @since New in 1.7. */
153 #define SVN_CONFIG_OPTION_FORCE_USERNAME_CASE "force-username-case"
154 /** @since New in 1.8. */
155 #define SVN_CONFIG_OPTION_HOOKS_ENV "hooks-env"
156 #define SVN_CONFIG_SECTION_SASL "sasl"
157 #define SVN_CONFIG_OPTION_USE_SASL "use-sasl"
158 #define SVN_CONFIG_OPTION_MIN_SSF "min-encryption"
159 #define SVN_CONFIG_OPTION_MAX_SSF "max-encryption"
161 /* For repository password database */
162 #define SVN_CONFIG_SECTION_USERS "users"
163 /** @} */
165 /*** Configuration Default Values ***/
167 /* '*' matches leading dots, e.g. '*.rej' matches '.foo.rej'. */
168 /* We want this to be printed on two lines in the generated config file,
169 * but we don't want the # character to end up in the variable.
171 #define SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_1 \
172 "*.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo __pycache__"
173 #define SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_2 \
174 "*.rej *~ #*# .#* .*.swp .DS_Store"
176 #define SVN_CONFIG_DEFAULT_GLOBAL_IGNORES \
177 SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_1 " " \
178 SVN_CONFIG__DEFAULT_GLOBAL_IGNORES_LINE_2
180 #define SVN_CONFIG_TRUE "TRUE"
181 #define SVN_CONFIG_FALSE "FALSE"
182 #define SVN_CONFIG_ASK "ASK"
184 /* Default values for some options. Should be passed as default values
185 * to svn_config_get and friends, instead of hard-coding the defaults in
186 * multiple places. */
187 #define SVN_CONFIG_DEFAULT_OPTION_STORE_PASSWORDS TRUE
188 #define SVN_CONFIG_DEFAULT_OPTION_STORE_PLAINTEXT_PASSWORDS SVN_CONFIG_ASK
189 #define SVN_CONFIG_DEFAULT_OPTION_STORE_AUTH_CREDS TRUE
190 #define SVN_CONFIG_DEFAULT_OPTION_STORE_SSL_CLIENT_CERT_PP TRUE
191 #define SVN_CONFIG_DEFAULT_OPTION_STORE_SSL_CLIENT_CERT_PP_PLAINTEXT \
192 SVN_CONFIG_ASK
193 #define SVN_CONFIG_DEFAULT_OPTION_HTTP_MAX_CONNECTIONS 4
195 /** Read configuration information from the standard sources and merge it
196 * into the hash @a *cfg_hash. If @a config_dir is not NULL it specifies a
197 * directory from which to read the configuration files, overriding all
198 * other sources. Otherwise, first read any system-wide configurations
199 * (from a file or from the registry), then merge in personal
200 * configurations (again from file or registry). The hash and all its data
201 * are allocated in @a pool.
203 * @a *cfg_hash is a hash whose keys are @c const char * configuration
204 * categories (@c SVN_CONFIG_CATEGORY_SERVERS,
205 * @c SVN_CONFIG_CATEGORY_CONFIG, etc.) and whose values are the @c
206 * svn_config_t * items representing the configuration values for that
207 * category.
209 svn_error_t *
210 svn_config_get_config(apr_hash_t **cfg_hash,
211 const char *config_dir,
212 apr_pool_t *pool);
215 /** Set @a *cfgp to an empty @c svn_config_t structure,
216 * allocated in @a result_pool.
218 * Pass TRUE to @a section_names_case_sensitive if
219 * section names are to be populated case sensitively.
221 * @since New in 1.7.
223 svn_error_t *
224 svn_config_create(svn_config_t **cfgp,
225 svn_boolean_t section_names_case_sensitive,
226 apr_pool_t *result_pool);
228 /** Read configuration data from @a file (a file or registry path) into
229 * @a *cfgp, allocated in @a pool.
231 * If @a file does not exist, then if @a must_exist, return an error,
232 * otherwise return an empty @c svn_config_t.
234 * If @a section_names_case_sensitive is @c TRUE, populate section name hashes
235 * case sensitively, except for the default #SVN_CONFIG__DEFAULT_SECTION.
237 * @since New in 1.7.
240 svn_error_t *
241 svn_config_read2(svn_config_t **cfgp,
242 const char *file,
243 svn_boolean_t must_exist,
244 svn_boolean_t section_names_case_sensitive,
245 apr_pool_t *pool);
247 /** Similar to svn_config_read2, but always passes @c FALSE to
248 * section_names_case_sensitive.
250 * @deprecated Provided for backward compatibility with 1.6 API.
252 SVN_DEPRECATED
253 svn_error_t *
254 svn_config_read(svn_config_t **cfgp,
255 const char *file,
256 svn_boolean_t must_exist,
257 apr_pool_t *pool);
259 /** Read configuration data from @a stream into @a *cfgp, allocated in
260 * @a result_pool.
262 * If @a section_names_case_sensitive is @c TRUE, populate section name hashes
263 * case sensitively, except for the default #SVN_CONFIG__DEFAULT_SECTION.
265 * @since New in 1.8.
268 svn_error_t *
269 svn_config_parse(svn_config_t **cfgp,
270 svn_stream_t *stream,
271 svn_boolean_t section_names_case_sensitive,
272 apr_pool_t *result_pool);
274 /** Like svn_config_read(), but merges the configuration data from @a file
275 * (a file or registry path) into @a *cfg, which was previously returned
276 * from svn_config_read(). This function invalidates all value
277 * expansions in @a cfg, so that the next svn_config_get() takes the
278 * modifications into account.
280 svn_error_t *
281 svn_config_merge(svn_config_t *cfg,
282 const char *file,
283 svn_boolean_t must_exist);
286 /** Find the value of a (@a section, @a option) pair in @a cfg, set @a
287 * *valuep to the value.
289 * If @a cfg is @c NULL, just sets @a *valuep to @a default_value. If
290 * the value does not exist, expand and return @a default_value. @a
291 * default_value can be NULL.
293 * The returned value will be valid at least until the next call to
294 * svn_config_get(), or for the lifetime of @a default_value. It is
295 * safest to consume the returned value immediately.
297 * This function may change @a cfg by expanding option values.
299 void
300 svn_config_get(svn_config_t *cfg,
301 const char **valuep,
302 const char *section,
303 const char *option,
304 const char *default_value);
306 /** Add or replace the value of a (@a section, @a option) pair in @a cfg with
307 * @a value.
309 * This function invalidates all value expansions in @a cfg.
311 * To remove an option, pass NULL for the @a value.
313 void
314 svn_config_set(svn_config_t *cfg,
315 const char *section,
316 const char *option,
317 const char *value);
319 /** Like svn_config_get(), but for boolean values.
321 * Parses the option as a boolean value. The recognized representations
322 * are 'TRUE'/'FALSE', 'yes'/'no', 'on'/'off', '1'/'0'; case does not
323 * matter. Returns an error if the option doesn't contain a known string.
325 svn_error_t *
326 svn_config_get_bool(svn_config_t *cfg,
327 svn_boolean_t *valuep,
328 const char *section,
329 const char *option,
330 svn_boolean_t default_value);
332 /** Like svn_config_set(), but for boolean values.
334 * Sets the option to 'TRUE'/'FALSE', depending on @a value.
336 void
337 svn_config_set_bool(svn_config_t *cfg,
338 const char *section,
339 const char *option,
340 svn_boolean_t value);
342 /** Like svn_config_get(), but for 64-bit signed integers.
344 * Parses the @a option in @a section of @a cfg as an integer value,
345 * setting @a *valuep to the result. If the option is not found, sets
346 * @a *valuep to @a default_value. If the option is found but cannot
347 * be converted to an integer, returns an error.
349 * @since New in 1.8.
351 svn_error_t *
352 svn_config_get_int64(svn_config_t *cfg,
353 apr_int64_t *valuep,
354 const char *section,
355 const char *option,
356 apr_int64_t default_value);
358 /** Like svn_config_set(), but for 64-bit signed integers.
360 * Sets the value of @a option in @a section of @a cfg to the signed
361 * decimal @a value.
363 * @since New in 1.8.
365 void
366 svn_config_set_int64(svn_config_t *cfg,
367 const char *section,
368 const char *option,
369 apr_int64_t value);
371 /** Like svn_config_get(), but only for yes/no/ask values.
373 * Parse @a option in @a section and set @a *valuep to one of
374 * SVN_CONFIG_TRUE, SVN_CONFIG_FALSE, or SVN_CONFIG_ASK. If there is
375 * no setting for @a option, then parse @a default_value and set
376 * @a *valuep accordingly. If @a default_value is NULL, the result is
377 * undefined, and may be an error; we recommend that you pass one of
378 * SVN_CONFIG_TRUE, SVN_CONFIG_FALSE, or SVN_CONFIG_ASK for @a default value.
380 * Valid representations are (at least) "true"/"false", "yes"/"no",
381 * "on"/"off", "1"/"0", and "ask"; they are case-insensitive. Return
382 * an SVN_ERR_BAD_CONFIG_VALUE error if either @a default_value or
383 * @a option's value is not a valid representation.
385 * @since New in 1.6.
387 svn_error_t *
388 svn_config_get_yes_no_ask(svn_config_t *cfg,
389 const char **valuep,
390 const char *section,
391 const char *option,
392 const char* default_value);
394 /** Like svn_config_get_bool(), but for tristate values.
396 * Set @a *valuep to #svn_tristate_true, #svn_tristate_false, or
397 * #svn_tristate_unknown, depending on the value of @a option in @a
398 * section of @a cfg. True and false values are the same as for
399 * svn_config_get_bool(); @a unknown_value specifies the option value
400 * allowed for third state (#svn_tristate_unknown).
402 * Use @a default_value as the default value if @a option cannot be
403 * found.
405 * @since New in 1.8.
407 svn_error_t *
408 svn_config_get_tristate(svn_config_t *cfg,
409 svn_tristate_t *valuep,
410 const char *section,
411 const char *option,
412 const char *unknown_value,
413 svn_tristate_t default_value);
415 /** Similar to @c svn_config_section_enumerator2_t, but is not
416 * provided with a memory pool argument.
418 * See svn_config_enumerate_sections() for the details of this type.
420 * @deprecated Provided for backwards compatibility with the 1.2 API.
422 typedef svn_boolean_t (*svn_config_section_enumerator_t)(const char *name,
423 void *baton);
425 /** Similar to svn_config_enumerate_sections2(), but uses a memory pool of
426 * @a cfg instead of one that is explicitly provided.
428 * @deprecated Provided for backwards compatibility with the 1.2 API.
430 SVN_DEPRECATED
432 svn_config_enumerate_sections(svn_config_t *cfg,
433 svn_config_section_enumerator_t callback,
434 void *baton);
436 /** A callback function used in enumerating config sections.
438 * See svn_config_enumerate_sections2() for the details of this type.
440 * @since New in 1.3.
442 typedef svn_boolean_t (*svn_config_section_enumerator2_t)(const char *name,
443 void *baton,
444 apr_pool_t *pool);
446 /** Enumerate the sections, passing @a baton and the current section's name
447 * to @a callback. Continue the enumeration if @a callback returns @c TRUE.
448 * Return the number of times @a callback was called.
450 * ### See kff's comment to svn_config_enumerate2(). It applies to this
451 * function, too. ###
453 * @a callback's @a name parameter is only valid for the duration of the call.
455 * @since New in 1.3.
458 svn_config_enumerate_sections2(svn_config_t *cfg,
459 svn_config_section_enumerator2_t callback,
460 void *baton, apr_pool_t *pool);
462 /** Similar to @c svn_config_enumerator2_t, but is not
463 * provided with a memory pool argument.
464 * See svn_config_enumerate() for the details of this type.
466 * @deprecated Provided for backwards compatibility with the 1.2 API.
468 typedef svn_boolean_t (*svn_config_enumerator_t)(const char *name,
469 const char *value,
470 void *baton);
472 /** Similar to svn_config_enumerate2(), but uses a memory pool of
473 * @a cfg instead of one that is explicitly provided.
475 * @deprecated Provided for backwards compatibility with the 1.2 API.
477 SVN_DEPRECATED
479 svn_config_enumerate(svn_config_t *cfg,
480 const char *section,
481 svn_config_enumerator_t callback,
482 void *baton);
485 /** A callback function used in enumerating config options.
487 * See svn_config_enumerate2() for the details of this type.
489 * @since New in 1.3.
491 typedef svn_boolean_t (*svn_config_enumerator2_t)(const char *name,
492 const char *value,
493 void *baton,
494 apr_pool_t *pool);
496 /** Enumerate the options in @a section, passing @a baton and the current
497 * option's name and value to @a callback. Continue the enumeration if
498 * @a callback returns @c TRUE. Return the number of times @a callback
499 * was called.
501 * ### kff asks: A more usual interface is to continue enumerating
502 * while @a callback does not return error, and if @a callback does
503 * return error, to return the same error (or a wrapping of it)
504 * from svn_config_enumerate(). What's the use case for
505 * svn_config_enumerate()? Is it more likely to need to break out
506 * of an enumeration early, with no error, than an invocation of
507 * @a callback is likely to need to return an error? ###
509 * @a callback's @a name and @a value parameters are only valid for the
510 * duration of the call.
512 * @since New in 1.3.
515 svn_config_enumerate2(svn_config_t *cfg,
516 const char *section,
517 svn_config_enumerator2_t callback,
518 void *baton,
519 apr_pool_t *pool);
522 * Return @c TRUE if @a section exists in @a cfg, @c FALSE otherwise.
524 * @since New in 1.4.
526 svn_boolean_t
527 svn_config_has_section(svn_config_t *cfg,
528 const char *section);
530 /** Enumerate the group @a master_section in @a cfg. Each variable
531 * value is interpreted as a list of glob patterns (separated by comma
532 * and optional whitespace). Return the name of the first variable
533 * whose value matches @a key, or @c NULL if no variable matches.
535 const char *
536 svn_config_find_group(svn_config_t *cfg,
537 const char *key,
538 const char *master_section,
539 apr_pool_t *pool);
541 /** Retrieve value corresponding to @a option_name in @a cfg, or
542 * return @a default_value if none is found.
544 * The config will first be checked for a default.
545 * If @a server_group is not @c NULL, the config will also be checked
546 * for an override in a server group,
549 const char *
550 svn_config_get_server_setting(svn_config_t *cfg,
551 const char* server_group,
552 const char* option_name,
553 const char* default_value);
555 /** Retrieve value into @a result_value corresponding to @a option_name for a
556 * given @a server_group in @a cfg, or return @a default_value if none is
557 * found.
559 * The config will first be checked for a default, then will be checked for
560 * an override in a server group. If the value found is not a valid integer,
561 * a @c svn_error_t* will be returned.
563 svn_error_t *
564 svn_config_get_server_setting_int(svn_config_t *cfg,
565 const char *server_group,
566 const char *option_name,
567 apr_int64_t default_value,
568 apr_int64_t *result_value,
569 apr_pool_t *pool);
572 /** Set @a *valuep according to @a option_name for a given
573 * @a server_group in @a cfg, or set to @a default_value if no value is
574 * specified.
576 * Check first a default, then for an override in a server group. If
577 * a value is found but is not a valid boolean, return an
578 * SVN_ERR_BAD_CONFIG_VALUE error.
580 * @since New in 1.6.
582 svn_error_t *
583 svn_config_get_server_setting_bool(svn_config_t *cfg,
584 svn_boolean_t *valuep,
585 const char *server_group,
586 const char *option_name,
587 svn_boolean_t default_value);
591 /** Try to ensure that the user's ~/.subversion/ area exists, and create
592 * no-op template files for any absent config files. Use @a pool for any
593 * temporary allocation. If @a config_dir is not @c NULL it specifies a
594 * directory from which to read the config overriding all other sources.
596 * Don't error if something exists but is the wrong kind (for example,
597 * ~/.subversion exists but is a file, or ~/.subversion/servers exists
598 * but is a directory).
600 * Also don't error if trying to create something and failing -- it's
601 * okay for the config area or its contents not to be created.
602 * However, if creating a config template file succeeds, return an
603 * error if unable to initialize its contents.
605 svn_error_t *
606 svn_config_ensure(const char *config_dir,
607 apr_pool_t *pool);
612 /** Accessing cached authentication data in the user config area.
614 * @defgroup cached_authentication_data Cached authentication data
615 * @{
619 /** A hash-key pointing to a realmstring. Every file containing
620 * authentication data should have this key.
622 #define SVN_CONFIG_REALMSTRING_KEY "svn:realmstring"
624 /** Use @a cred_kind and @a realmstring to locate a file within the
625 * ~/.subversion/auth/ area. If the file exists, initialize @a *hash
626 * and load the file contents into the hash, using @a pool. If the
627 * file doesn't exist, set @a *hash to NULL.
629 * If @a config_dir is not NULL it specifies a directory from which to
630 * read the config overriding all other sources.
632 * Besides containing the original credential fields, the hash will
633 * also contain @c SVN_CONFIG_REALMSTRING_KEY. The caller can examine
634 * this value as a sanity-check that the correct file was loaded.
636 * The hashtable will contain <tt>const char *</tt> keys and
637 * <tt>svn_string_t *</tt> values.
639 svn_error_t *
640 svn_config_read_auth_data(apr_hash_t **hash,
641 const char *cred_kind,
642 const char *realmstring,
643 const char *config_dir,
644 apr_pool_t *pool);
646 /** Use @a cred_kind and @a realmstring to create or overwrite a file
647 * within the ~/.subversion/auth/ area. Write the contents of @a hash into
648 * the file. If @a config_dir is not NULL it specifies a directory to read
649 * the config overriding all other sources.
651 * Also, add @a realmstring to the file, with key @c
652 * SVN_CONFIG_REALMSTRING_KEY. This allows programs (or users) to
653 * verify exactly which set credentials live within the file.
655 * The hashtable must contain <tt>const char *</tt> keys and
656 * <tt>svn_string_t *</tt> values.
658 svn_error_t *
659 svn_config_write_auth_data(apr_hash_t *hash,
660 const char *cred_kind,
661 const char *realmstring,
662 const char *config_dir,
663 apr_pool_t *pool);
666 /** Callback for svn_config_walk_auth_data().
668 * Called for each credential walked by that function (and able to be
669 * fully purged) to allow perusal and selective removal of credentials.
671 * @a cred_kind and @a realmstring specify the key of the credential.
672 * @a hash contains the hash data associated with the record.
674 * Before returning set @a *delete_cred to TRUE to remove the credential from
675 * the cache; leave @a *delete_cred unchanged or set it to FALSE to keep the
676 * credential.
678 * Implementations may return #SVN_ERR_CEASE_INVOCATION to indicate
679 * that the callback should not be called again. Note that when that
680 * error is returned, the value of @a delete_cred will still be
681 * honored and action taken if necessary. (For other returned errors,
682 * @a delete_cred is ignored by svn_config_walk_auth_data().)
684 * @since New in 1.8.
686 typedef svn_error_t *
687 (*svn_config_auth_walk_func_t)(svn_boolean_t *delete_cred,
688 void *cleanup_baton,
689 const char *cred_kind,
690 const char *realmstring,
691 apr_hash_t *hash,
692 apr_pool_t *scratch_pool);
694 /** Call @a walk_func with @a walk_baton and information describing
695 * each credential cached within the Subversion auth store located
696 * under @a config_dir. If the callback sets its delete_cred return
697 * flag, delete the associated credential.
699 * @note Removing credentials from the config-based disk store will
700 * not purge them from any open svn_auth_baton_t instance. Consider
701 * using svn_auth_forget_credentials() -- from the @a cleanup_func,
702 * even -- for this purpose.
704 * @note Removing credentials from the config-based disk store will
705 * not also remove any related credentials from third-party password
706 * stores. (Implementations of @a walk_func which delete credentials
707 * may wish to consult the "passtype" element of @a hash, if any, to
708 * see if a third-party store -- such as "gnome-keyring" or "kwallet"
709 * is being used to hold the most sensitive portion of the credentials
710 * for this @a cred_kind and @a realmstring.)
712 * @see svn_auth_forget_credentials()
714 * @since New in 1.8.
716 svn_error_t *
717 svn_config_walk_auth_data(const char *config_dir,
718 svn_config_auth_walk_func_t walk_func,
719 void *walk_baton,
720 apr_pool_t *scratch_pool);
722 /** Put the absolute path to the user's configuration directory,
723 * or to a file within that directory, into @a *path.
725 * If @a config_dir is not NULL, it must point to an alternative
726 * config directory location. If it is NULL, the default location
727 * is used. If @a fname is not NULL, it must specify the last
728 * component of the path to be returned. This can be used to create
729 * a path to any file in the configuration directory.
731 * Do all allocations in @a pool.
733 * Hint:
734 * To get the user configuration file, pass @c SVN_CONFIG_CATEGORY_CONFIG
735 * for @a fname. To get the servers configuration file, pass
736 * @c SVN_CONFIG_CATEGORY_SERVERS for @a fname.
738 * @since New in 1.6.
740 svn_error_t *
741 svn_config_get_user_config_path(const char **path,
742 const char *config_dir,
743 const char *fname,
744 apr_pool_t *pool);
746 /** Create a deep copy of the config object @a src and return
747 * it in @a cfgp, allocating the memory in @a pool.
749 * @since New in 1.8.
751 svn_error_t *
752 svn_config_dup(svn_config_t **cfgp,
753 svn_config_t *src,
754 apr_pool_t *pool);
756 /** Create a deep copy of the config hash @a src_hash and return
757 * it in @a cfg_hash, allocating the memory in @a pool.
759 * @since New in 1.8.
761 svn_error_t *
762 svn_config_copy_config(apr_hash_t **cfg_hash,
763 apr_hash_t *src_hash,
764 apr_pool_t *pool);
766 /** @} */
768 #ifdef __cplusplus
770 #endif /* __cplusplus */
772 #endif /* SVN_CONFIG_H */