/** * @copyright * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== * @endcopyright * * @file svn_ra_private.h * @brief The Subversion repository access library - Internal routines */ #ifndef SVN_RA_PRIVATE_H #define SVN_RA_PRIVATE_H #include #include "svn_error.h" #include "svn_ra.h" #include "svn_delta.h" #include "svn_editor.h" #include "svn_io.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* Equivalent to svn_ra__assert_capable_server() for SVN_RA_CAPABILITY_MERGEINFO. */ svn_error_t * svn_ra__assert_mergeinfo_capable_server(svn_ra_session_t *ra_session, const char *path_or_url, apr_pool_t *pool); /* Return an error with code SVN_ERR_UNSUPPORTED_FEATURE, and an error message referencing PATH_OR_URL, if the "server" pointed to by RA_SESSION doesn't support CAPABILITY (an SVN_RA_CAPABILITY_* constant). Perform temporary allocations in POOL. */ svn_error_t * svn_ra__assert_capable_server(svn_ra_session_t *ra_session, const char *capability, const char *path_or_url, apr_pool_t *pool); /*** Operational Locks ***/ /** This is a function type which allows svn_ra__get_operational_lock() * to report lock attempt failures. If non-NULL, @a locktoken is the * preexisting lock which prevented lock acquisition. * * @since New in 1.7. */ typedef svn_error_t *(*svn_ra__lock_retry_func_t)(void *baton, const svn_string_t *locktoken, apr_pool_t *pool); /** Acquire a lock (of sorts) on the repository associated with the * given RA @a session, retrying as necessary up to @a num_retries * times, and set @a *lock_string_p to the value of the acquired lock * token. Allocate the returned token from @a pool. (See this * function's counterpart svn_ra__release_operational_lock() for your * lock removal needs.) * * @a lock_revprop_name is the name of the revision-0 property used to * store the lock. * * If @a steal_lock is set, then replace any pre-existing lock on the * repository with our own. Iff such a theft occurs and * @a stolen_lock_p is non-NULL, set @a *stolen_lock_p to the token of * the lock we stole. * * Call @a retry_func with @a retry_baton each time the retry loop * fails to acquire a lock. * * Use @a cancel_func and @a cancel_baton to check for early * cancellation. * * @note If the server does not support #SVN_RA_CAPABILITY_ATOMIC_REVPROPS * (i.e., is a pre-1.7 server), then this function makes a "best effort" * attempt to obtain the lock, but is susceptible to a race condition; see * issue #3546. * * @since New in 1.7. */ svn_error_t * svn_ra__get_operational_lock(const svn_string_t **lock_string_p, const svn_string_t **stolen_lock_p, svn_ra_session_t *session, const char *lock_revprop_name, svn_boolean_t steal_lock, int num_retries, svn_ra__lock_retry_func_t retry_func, void *retry_baton, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *pool); /** Release an operational lock (whose value is @a mylocktoken) on the * repository associated with RA @a session. (This is the counterpart * to svn_ra__get_operational_lock().) * * @a lock_revprop_name is the name of the revision-0 property used to * store the lock. * * Use @a scratch_pool for temporary allocations. * * @since New in 1.7. */ svn_error_t * svn_ra__release_operational_lock(svn_ra_session_t *session, const char *lock_revprop_name, const svn_string_t *mylocktoken, apr_pool_t *scratch_pool); /** Register CALLBACKS to be used with the Ev2 shims in RA_SESSION. */ svn_error_t * svn_ra__register_editor_shim_callbacks(svn_ra_session_t *ra_session, svn_delta_shim_callbacks_t *callbacks); /* Using information from BATON, provide the (file's) pristine contents for REPOS_RELPATH. They are returned in *CONTENTS, and correspond to *REVISION. If a pristine is not available (ie. a locally-added node), then set *CONTENTS to NULL; *REVISION will not be examined in this case. These are allocated in RESULT_POOL. SCRATCH_POOL can be used for temporary allocations. */ typedef svn_error_t *(*svn_ra__provide_base_cb_t)( svn_stream_t **contents, svn_revnum_t *revision, void *baton, const char *repos_relpath, apr_pool_t *result_pool, apr_pool_t *scratch_pool); /* Using information from BATON, provide the pristine properties for REPOS_RELPATH. They are returned in *PROPS, and correspond to *REVISION. If properties are not available (ie. a locally-added node), then set *PROPS to NULL; *REVISION will not be examined in this case. The properties are allocated in RESULT_POOL. SCRATCH_POOL can be used for temporary allocations. */ typedef svn_error_t *(*svn_ra__provide_props_cb_t)( apr_hash_t **props, svn_revnum_t *revision, void *baton, const char *repos_relpath, apr_pool_t *result_pool, apr_pool_t *scratch_pool); /* Using information from BATON, fetch the kind of REPOS_RELPATH at revision SRC_REVISION, returning it in *KIND. If the kind cannot be determined, then set *KIND to svn_node_unknown. Temporary allocations can be made in SCRATCH_POOL. */ typedef svn_error_t *(*svn_ra__get_copysrc_kind_cb_t)( svn_node_kind_t *kind, void *baton, const char *repos_relpath, svn_revnum_t src_revision, apr_pool_t *scratch_pool); /* Return an Ev2-based editor for performing commits. The editor is associated with the given SESSION, and its implied target repository. REVPROPS contains all the revision properties that should be stored onto the newly-committed revision. SVN_PROP_REVISION_AUTHOR will be set to the username as determined by the session; overwriting any prior value that may be present in REVPROPS. COMMIT_CB/BATON contain the callback to receive post-commit information. LOCK_TOKENS should contain all lock tokens necessary to modify paths within the commit. If KEEP_LOCKS is FALSE, then the paths associated with these tokens will be unlocked. ### today, LOCK_TOKENS is session_relpath:token_value. in the future, ### it should be repos_relpath:token_value. PROVIDE_BASE_CB is a callback to fetch pristine contents, used to send an svndiff over the wire to the server. This may be NULL, indicating pristine contents are not available (eg. URL-based operations or import). PROVIDE_PROPS_CB is a callback to fetch pristine properties, used to send property deltas over the wire to the server. This may be NULL, indicating pristine properties are not available (eg. URL-based operations or an import). GET_COPYSRC_KIND_CB is a callback to determine the kind of a copy-source. This is necessary when an Ev2/Ev1 shim is required by the RA provider, in order to determine whether to use delta->add_directory() or the delta->add_file() vtable entry to perform the copy. ### unclear on impact if this is NULL. ### this callback will disappear when "everything" is running Ev2 CB_BATON is the baton used/shared by the above three callbacks. Cancellation is handled through the callbacks provided when SESSION is initially opened. *EDITOR will be allocated in RESULT_POOL, and all temporary allocations will be performed in SCRATCH_POOL. */ svn_error_t * svn_ra__get_commit_ev2(svn_editor_t **editor, svn_ra_session_t *session, apr_hash_t *revprops, svn_commit_callback2_t commit_cb, void *commit_baton, apr_hash_t *lock_tokens, svn_boolean_t keep_locks, svn_ra__provide_base_cb_t provide_base_cb, svn_ra__provide_props_cb_t provide_props_cb, svn_ra__get_copysrc_kind_cb_t get_copysrc_kind_cb, void *cb_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool); /* Similar to #svn_ra_replay_revstart_callback_t, but with an Ev2 editor. */ typedef svn_error_t *(*svn_ra__replay_revstart_ev2_callback_t)( svn_revnum_t revision, void *replay_baton, svn_editor_t **editor, apr_hash_t *rev_props, apr_pool_t *pool); /* Similar to #svn_ra_replay_revfinish_callback_t, but with an Ev2 editor. */ typedef svn_error_t *(*svn_ra__replay_revfinish_ev2_callback_t)( svn_revnum_t revision, void *replay_baton, svn_editor_t *editor, apr_hash_t *rev_props, apr_pool_t *pool); /* Similar to svn_ra_replay_range(), but uses Ev2 versions of the callback functions. */ svn_error_t * svn_ra__replay_range_ev2(svn_ra_session_t *session, svn_revnum_t start_revision, svn_revnum_t end_revision, svn_revnum_t low_water_mark, svn_boolean_t send_deltas, svn_ra__replay_revstart_ev2_callback_t revstart_func, svn_ra__replay_revfinish_ev2_callback_t revfinish_func, void *replay_baton, svn_ra__provide_base_cb_t provide_base_cb, svn_ra__provide_props_cb_t provide_props_cb, svn_ra__get_copysrc_kind_cb_t get_copysrc_kind_cb, void *cb_baton, apr_pool_t *scratch_pool); /* Similar to svn_ra_replay(), but with an Ev2 editor. */ svn_error_t * svn_ra__replay_ev2(svn_ra_session_t *session, svn_revnum_t revision, svn_revnum_t low_water_mark, svn_boolean_t send_deltas, svn_editor_t *editor, apr_pool_t *scratch_pool); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_RA_PRIVATE_H */