Alien-SVN
view release on metacpan or search on metacpan
src/subversion/subversion/include/private/svn_wc_private.h view on Meta::CPAN
* @a repos_uuid to the original (if a copy) or their current values.
*
* If @a copy_root_abspath is not NULL, and @a *is_copy indicates that the
* node was copied, set @a *copy_root_abspath to the local absolute path of
* the root of the copied subtree containing the node. If the copied node is
* a root by itself, @a *copy_root_abspath will match @a local_abspath (but
* won't necessarily point to the same string in memory).
*
* If @a scan_deleted is TRUE, determine the origin of the deleted node. If
* @a scan_deleted is FALSE, return NULL, SVN_INVALID_REVNUM or FALSE for
* deleted nodes.
*
* Allocate the result in @a result_pool. Perform temporary allocations in
* @a scratch_pool */
svn_error_t *
svn_wc__node_get_origin(svn_boolean_t *is_copy,
svn_revnum_t *revision,
const char **repos_relpath,
const char **repos_root_url,
const char **repos_uuid,
const char **copy_root_abspath,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
svn_boolean_t scan_deleted,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/**
* Set @a *is_deleted to TRUE if @a local_abspath is deleted, using
* @a wc_ctx. If @a local_abspath is not in the working copy, return
* @c SVN_ERR_WC_PATH_NOT_FOUND. Use @a scratch_pool for all temporary
* allocations.
*/
svn_error_t *
svn_wc__node_is_status_deleted(svn_boolean_t *is_deleted,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
apr_pool_t *scratch_pool);
/**
* Set @a *deleted_ancestor_abspath to the root of the delete operation
* that deleted @a local_abspath. If @a local_abspath itself was deleted
* and has no deleted ancestor, @a *deleted_ancestor_abspath will equal
* @a local_abspath. If @a local_abspath was not deleted,
* set @a *deleted_ancestor_abspath to @c NULL.
*
* A node is considered 'deleted' if it is deleted or moved-away, and is
* not replaced.
*
* @a *deleted_ancestor_abspath is allocated in @a result_pool.
* Use @a scratch_pool for all temporary allocations.
*/
svn_error_t *
svn_wc__node_get_deleted_ancestor(const char **deleted_ancestor_abspath,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/**
* Set @a *not_present to TRUE when @a local_abspath has status
* svn_wc__db_status_not_present. Set @a *user_excluded to TRUE when
* @a local_abspath has status svn_wc__db_status_excluded. Set
* @a *server_excluded to TRUE when @a local_abspath has status
* svn_wc__db_status_server_excluded. Otherwise set these values to FALSE.
* If @a base_only is TRUE then only the base node will be examined,
* otherwise the current base or working node will be examined.
*
* If a value is not interesting you can pass #NULL.
*
* If @a local_abspath is not in the working copy, return
* @c SVN_ERR_WC_PATH_NOT_FOUND. Use @a scratch_pool for all temporary
* allocations.
*/
svn_error_t *
svn_wc__node_is_not_present(svn_boolean_t *not_present,
svn_boolean_t *user_excluded,
svn_boolean_t *server_excluded,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
svn_boolean_t base_only,
apr_pool_t *scratch_pool);
/**
* Set @a *is_added to whether @a local_abspath is added, using
* @a wc_ctx. If @a local_abspath is not in the working copy, return
* @c SVN_ERR_WC_PATH_NOT_FOUND. Use @a scratch_pool for all temporary
* allocations.
*
* NOTE: "added" in this sense, means it was added, copied-here, or
* moved-here. This function provides NO information on whether this
* addition has replaced another node.
*
* To be clear, this does NOT correspond to svn_wc_schedule_add.
*/
svn_error_t *
svn_wc__node_is_added(svn_boolean_t *is_added,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
apr_pool_t *scratch_pool);
/**
* Set @a *has_working to whether @a local_abspath has a working node (which
* might shadow BASE nodes)
*
* This is a check similar to status = added or status = deleted.
*/
svn_error_t *
svn_wc__node_has_working(svn_boolean_t *has_working,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
apr_pool_t *scratch_pool);
/**
* Get the repository location of the base node at @a local_abspath.
*
* Set *REVISION, *REPOS_RELPATH, *REPOS_ROOT_URL *REPOS_UUID and *LOCK_TOKEN
* to the location that this node was checked out at or last updated/switched
* to, regardless of any uncommitted changes (delete, replace and/or copy-here/
* move-here).
*
* If there is no BASE node at @a local_abspath or if @a show_hidden is FALSE,
* no status 'normal' or 'incomplete' BASE node report
* SVN_ERR_WC_PATH_NOT_FOUND, or if @a ignore_enoent is TRUE, @a kind
* svn_node_unknown, @a revision SVN_INVALID_REVNUM and all other values NULL.
*
* All output arguments may be NULL.
*
* Allocate the results in @a result_pool. Perform temporary allocations in
* @a scratch_pool.
*/
svn_error_t *
svn_wc__node_get_base(svn_node_kind_t *kind,
svn_revnum_t *revision,
const char **repos_relpath,
src/subversion/subversion/include/private/svn_wc_private.h view on Meta::CPAN
/* Set *TMPDIR_ABSPATH to a directory that is suitable for temporary
files which may need to be moved (atomically and same-device) into
the working copy indicated by WRI_ABSPATH. */
svn_error_t *
svn_wc__get_tmpdir(const char **tmpdir_abspath,
svn_wc_context_t *wc_ctx,
const char *wri_abspath,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/* Gets information needed by the commit harvester.
*
* ### Currently this API is work in progress and is designed for just this
* ### caller. It is certainly possible (and likely) that this function and
* ### it's caller will eventually move into a wc and maybe wc_db api.
*/
svn_error_t *
svn_wc__node_get_commit_status(svn_boolean_t *added,
svn_boolean_t *deleted,
svn_boolean_t *is_replace_root,
svn_boolean_t *is_op_root,
svn_revnum_t *revision,
svn_revnum_t *original_revision,
const char **original_repos_relpath,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/* Gets the md5 checksum for the pristine file identified by a sha1_checksum in the
working copy identified by wri_abspath.
Wraps svn_wc__db_pristine_get_md5().
*/
svn_error_t *
svn_wc__node_get_md5_from_sha1(const svn_checksum_t **md5_checksum,
svn_wc_context_t *wc_ctx,
const char *wri_abspath,
const svn_checksum_t *sha1_checksum,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/* Like svn_wc_get_pristine_contents2(), but keyed on the CHECKSUM
rather than on the local absolute path of the working file.
WRI_ABSPATH is any versioned path of the working copy in whose
pristine database we'll be looking for these contents. */
svn_error_t *
svn_wc__get_pristine_contents_by_checksum(svn_stream_t **contents,
svn_wc_context_t *wc_ctx,
const char *wri_abspath,
const svn_checksum_t *checksum,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/* Gets an array of const char *repos_relpaths of descendants of LOCAL_ABSPATH,
* which must be the op root of an addition, copy or move. The descendants
* returned are at the same op_depth, but are to be deleted by the commit
* processing because they are not present in the local copy.
*/
svn_error_t *
svn_wc__get_not_present_descendants(const apr_array_header_t **descendants,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
apr_pool_t *result_pool,
apr_pool_t *scratch_pool);
/* Checks a node LOCAL_ABSPATH in WC_CTX for several kinds of obstructions
* for tasks like merge processing.
*
* If a node is not obstructed it sets *OBSTRUCTION_STATE to
* svn_wc_notify_state_inapplicable. If a node is obstructed or when its
* direct parent does not exist or is deleted return _state_obstructed. When
* a node doesn't exist but should exist return svn_wc_notify_state_missing.
*
* A node is also obstructed if it is marked excluded or server-excluded or when
* an unversioned file or directory exists. And if NO_WCROOT_CHECK is FALSE,
* the root of a working copy is also obstructed; this to allow detecting
* obstructing working copies.
*
* If KIND is not NULL, set *KIND to the kind of node registered in the working
* copy, or SVN_NODE_NONE if the node doesn't
*
* If DELETED is not NULL, set *DELETED to TRUE if the node is marked as
* deleted in the working copy.
*
* If EXCLUDED is not NULL, set *EXCLUDED to TRUE if the node is marked as
* user or server excluded.
*
* If PARENT_DEPTH is not NULL, set *PARENT_DEPTH to the depth stored on the
* parent. (Set to svn_depth_unknown if LOCAL_ABSPATH itself exists as node)
*
* All output arguments except OBSTRUCTION_STATE can be NULL to ommit the
* result.
*
* This function performs temporary allocations in SCRATCH_POOL.
*/
svn_error_t *
svn_wc__check_for_obstructions(svn_wc_notify_state_t *obstruction_state,
svn_node_kind_t *kind,
svn_boolean_t *deleted,
svn_boolean_t *excluded,
svn_depth_t *parent_depth,
svn_wc_context_t *wc_ctx,
const char *local_abspath,
svn_boolean_t no_wcroot_check,
apr_pool_t *scratch_pool);
/**
* A structure which describes various system-generated metadata about
* a working-copy path or URL.
*
* @note Fields may be added to the end of this structure in future
* versions. Therefore, users shouldn't allocate structures of this
* type, to preserve binary compatibility.
*
* @since New in 1.7.
*/
typedef struct svn_wc__info2_t
{
( run in 0.499 second using v1.01-cache-2.11-cpan-524268b4103 )