/* * entries.h : manipulating entries * * ==================================================================== * Copyright (c) 2000-2008 CollabNet. All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://subversion.tigris.org/license-1.html. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * * This software consists of voluntary contributions made by many * individuals. For exact contribution history, see the revision * history and logs, available at http://subversion.tigris.org/. * ==================================================================== */ #ifndef SVN_LIBSVN_WC_ENTRIES_H #define SVN_LIBSVN_WC_ENTRIES_H #include #include "svn_types.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define SVN_WC__ENTRIES_TOPLEVEL "wc-entries" #define SVN_WC__ENTRIES_ENTRY "entry" /* String representations for svn_node_kind. This maybe should be abstracted farther out? */ #define SVN_WC__ENTRIES_ATTR_FILE_STR "file" #define SVN_WC__ENTRIES_ATTR_DIR_STR "dir" /* The names of the fields used for storing entries' information. Used for the names of the XML attributes in XML entries files (format 6 and below), for the names of attributes in wc logs, and for error reporting when reading a non-XML entries file. ### If you add or remove items here, you probably want to make sure to do the same for the SVN_WC__ENTRY_MODIFY_* #defines as well. */ #define SVN_WC__ENTRY_ATTR_NAME "name" #define SVN_WC__ENTRY_ATTR_REVISION "revision" #define SVN_WC__ENTRY_ATTR_URL "url" #define SVN_WC__ENTRY_ATTR_REPOS "repos" #define SVN_WC__ENTRY_ATTR_KIND "kind" #define SVN_WC__ENTRY_ATTR_TEXT_TIME "text-time" #define SVN_WC__ENTRY_ATTR_PROP_TIME "prop-time" #define SVN_WC__ENTRY_ATTR_CHECKSUM "checksum" #define SVN_WC__ENTRY_ATTR_SCHEDULE "schedule" #define SVN_WC__ENTRY_ATTR_COPIED "copied" #define SVN_WC__ENTRY_ATTR_DELETED "deleted" #define SVN_WC__ENTRY_ATTR_ABSENT "absent" #define SVN_WC__ENTRY_ATTR_COPYFROM_URL "copyfrom-url" #define SVN_WC__ENTRY_ATTR_COPYFROM_REV "copyfrom-rev" #define SVN_WC__ENTRY_ATTR_CONFLICT_OLD "conflict-old" /* saved old file */ #define SVN_WC__ENTRY_ATTR_CONFLICT_NEW "conflict-new" /* saved new file */ #define SVN_WC__ENTRY_ATTR_CONFLICT_WRK "conflict-wrk" /* saved wrk file */ #define SVN_WC__ENTRY_ATTR_PREJFILE "prop-reject-file" #define SVN_WC__ENTRY_ATTR_CMT_REV "committed-rev" #define SVN_WC__ENTRY_ATTR_CMT_DATE "committed-date" #define SVN_WC__ENTRY_ATTR_CMT_AUTHOR "last-author" #define SVN_WC__ENTRY_ATTR_UUID "uuid" #define SVN_WC__ENTRY_ATTR_INCOMPLETE "incomplete" #define SVN_WC__ENTRY_ATTR_LOCK_TOKEN "lock-token" #define SVN_WC__ENTRY_ATTR_LOCK_OWNER "lock-owner" #define SVN_WC__ENTRY_ATTR_LOCK_COMMENT "lock-comment" #define SVN_WC__ENTRY_ATTR_LOCK_CREATION_DATE "lock-creation-date" #define SVN_WC__ENTRY_ATTR_HAS_PROPS "has-props" #define SVN_WC__ENTRY_ATTR_HAS_PROP_MODS "has-prop-mods" #define SVN_WC__ENTRY_ATTR_CACHABLE_PROPS "cachable-props" #define SVN_WC__ENTRY_ATTR_PRESENT_PROPS "present-props" #define SVN_WC__ENTRY_ATTR_CHANGELIST "changelist" #define SVN_WC__ENTRY_ATTR_KEEP_LOCAL "keep-local" #define SVN_WC__ENTRY_ATTR_WORKING_SIZE "working-size" #define SVN_WC__ENTRY_ATTR_TREE_CONFLICT_DATA "tree-conflicts" #define SVN_WC__ENTRY_ATTR_FILE_EXTERNAL "file-external" /* Attribute values for 'schedule' */ #define SVN_WC__ENTRY_VALUE_ADD "add" #define SVN_WC__ENTRY_VALUE_DELETE "delete" #define SVN_WC__ENTRY_VALUE_REPLACE "replace" /* Initialize an entries file based on URL at INITIAL_REV, in the adm area for PATH. The adm area must not already have an entries file. UUID is the repository UUID, and may be NULL. REPOS is the repository root URL and, if not NULL, must be a prefix of URL. DEPTH is the initial depth of the working copy, it must be a definite depth, not svn_depth_unknown. If initial rev is valid and non-zero, then mark the 'this_dir' entry as being incomplete. */ svn_error_t *svn_wc__entries_init(const char *path, const char *uuid, const char *url, const char *repos, svn_revnum_t initial_rev, svn_depth_t depth, apr_pool_t *pool); /* Create or overwrite an `entries' file for ADM_ACCESS using the contents of ENTRIES. See also svn_wc_entries_read() in the public api. */ svn_error_t *svn_wc__entries_write(apr_hash_t *entries, svn_wc_adm_access_t *adm_access, apr_pool_t *pool); /* Set *NEW_ENTRY to a new entry, taking attributes from ATTS, whose keys and values are both char *. Allocate the entry and copy attributes into POOL as needed. Set MODIFY_FLAGS to reflect the fields that were present in ATTS. */ svn_error_t *svn_wc__atts_to_entry(svn_wc_entry_t **new_entry, apr_uint64_t *modify_flags, apr_hash_t *atts, apr_pool_t *pool); /* The MODIFY_FLAGS that tell svn_wc__entry_modify which parameters to pay attention to. ### These should track the changes made to the SVN_WC__ENTRY_ATTR_* #defines! */ /* Note: we use APR_INT64_C because APR 0.9 lacks APR_UINT64_C */ #define SVN_WC__ENTRY_MODIFY_REVISION APR_INT64_C(0x0000000000000001) #define SVN_WC__ENTRY_MODIFY_URL APR_INT64_C(0x0000000000000002) #define SVN_WC__ENTRY_MODIFY_REPOS APR_INT64_C(0x0000000000000004) #define SVN_WC__ENTRY_MODIFY_KIND APR_INT64_C(0x0000000000000008) #define SVN_WC__ENTRY_MODIFY_TEXT_TIME APR_INT64_C(0x0000000000000010) #define SVN_WC__ENTRY_MODIFY_PROP_TIME APR_INT64_C(0x0000000000000020) #define SVN_WC__ENTRY_MODIFY_CHECKSUM APR_INT64_C(0x0000000000000040) #define SVN_WC__ENTRY_MODIFY_SCHEDULE APR_INT64_C(0x0000000000000080) #define SVN_WC__ENTRY_MODIFY_COPIED APR_INT64_C(0x0000000000000100) #define SVN_WC__ENTRY_MODIFY_DELETED APR_INT64_C(0x0000000000000200) #define SVN_WC__ENTRY_MODIFY_COPYFROM_URL APR_INT64_C(0x0000000000000400) #define SVN_WC__ENTRY_MODIFY_COPYFROM_REV APR_INT64_C(0x0000000000000800) #define SVN_WC__ENTRY_MODIFY_CONFLICT_OLD APR_INT64_C(0x0000000000001000) #define SVN_WC__ENTRY_MODIFY_CONFLICT_NEW APR_INT64_C(0x0000000000002000) #define SVN_WC__ENTRY_MODIFY_CONFLICT_WRK APR_INT64_C(0x0000000000004000) #define SVN_WC__ENTRY_MODIFY_PREJFILE APR_INT64_C(0x0000000000008000) #define SVN_WC__ENTRY_MODIFY_CMT_REV APR_INT64_C(0x0000000000010000) #define SVN_WC__ENTRY_MODIFY_CMT_DATE APR_INT64_C(0x0000000000020000) #define SVN_WC__ENTRY_MODIFY_CMT_AUTHOR APR_INT64_C(0x0000000000040000) #define SVN_WC__ENTRY_MODIFY_UUID APR_INT64_C(0x0000000000080000) #define SVN_WC__ENTRY_MODIFY_INCOMPLETE APR_INT64_C(0x0000000000100000) #define SVN_WC__ENTRY_MODIFY_ABSENT APR_INT64_C(0x0000000000200000) #define SVN_WC__ENTRY_MODIFY_LOCK_TOKEN APR_INT64_C(0x0000000000400000) #define SVN_WC__ENTRY_MODIFY_LOCK_OWNER APR_INT64_C(0x0000000000800000) #define SVN_WC__ENTRY_MODIFY_LOCK_COMMENT APR_INT64_C(0x0000000001000000) #define SVN_WC__ENTRY_MODIFY_LOCK_CREATION_DATE APR_INT64_C(0x0000000002000000) #define SVN_WC__ENTRY_MODIFY_HAS_PROPS APR_INT64_C(0x0000000004000000) #define SVN_WC__ENTRY_MODIFY_HAS_PROP_MODS APR_INT64_C(0x0000000008000000) #define SVN_WC__ENTRY_MODIFY_CACHABLE_PROPS APR_INT64_C(0x0000000010000000) #define SVN_WC__ENTRY_MODIFY_PRESENT_PROPS APR_INT64_C(0x0000000020000000) #define SVN_WC__ENTRY_MODIFY_CHANGELIST APR_INT64_C(0x0000000040000000) #define SVN_WC__ENTRY_MODIFY_KEEP_LOCAL APR_INT64_C(0x0000000080000000) #define SVN_WC__ENTRY_MODIFY_WORKING_SIZE APR_INT64_C(0x0000000100000000) #define SVN_WC__ENTRY_MODIFY_TREE_CONFLICT_DATA APR_INT64_C(0x0000000200000000) #define SVN_WC__ENTRY_MODIFY_FILE_EXTERNAL APR_INT64_C(0x0000000400000000) /* No #define for DEPTH, because it's only meaningful on this-dir anyway. */ /* ...ORed together with this to mean "I really mean this, don't be trying to protect me from myself on this one." */ #define SVN_WC__ENTRY_MODIFY_FORCE APR_INT64_C(0x4000000000000000) /* Modify an entry for NAME in access baton ADM_ACCESS by folding in ("merging") changes, and sync those changes to disk. New values for the entry are pulled from their respective fields in ENTRY, and MODIFY_FLAGS is a bitmask to specify which of those field to pay attention to. ADM_ACCESS must hold a write lock. NAME can be NULL to specify that the caller wishes to modify the "this dir" entry in ADM_ACCESS. If DO_SYNC is FALSE then the modification will be entirely local to the access baton, if DO_SYNC is TRUE the modification will be written to the entries file. Be careful when setting DO_SYNC to FALSE: if there is no subsequent svn_wc__entries_write call the modifications will be lost when the access baton is closed. Perform all allocations in POOL. NOTE: when you call this function, the entries file will be read, tweaked and finally, if DO_SYNC is TRUE, written back out. */ svn_error_t *svn_wc__entry_modify(svn_wc_adm_access_t *adm_access, const char *name, svn_wc_entry_t *entry, apr_uint64_t modify_flags, svn_boolean_t do_sync, apr_pool_t *pool); /* Remove entry NAME from ENTRIES, unconditionally. */ void svn_wc__entry_remove(apr_hash_t *entries, const char *name); /* Tweak the entry NAME within hash ENTRIES. If NEW_URL is non-null, * make this the entry's new url. If NEW_REV is valid, make this the * entry's working revision. (This is purely an in-memory operation.) * If REPOS is non-NULL, set the repository root on the entry to REPOS, * provided it is a prefix of the entry's URL (and if it is the THIS_DIR * entry, all child URLs also match.) * If ALLOW_REMOVAL is TRUE the tweaks might cause the entry NAME to * be removed from the hash, if ALLOW_REMOVAL is FALSE this will not * happen. * * *WRITE_REQUIRED will be set to TRUE if the tweaks make changes that * require the entries to be written to disk, otherwise *WRITE_REQUIRED * will not be altered. * * (Intended as a helper to svn_wc__do_update_cleanup, which see.) */ svn_error_t * svn_wc__tweak_entry(apr_hash_t *entries, const char *name, const char *new_url, const char *repos, svn_revnum_t new_rev, svn_boolean_t allow_removal, svn_boolean_t *write_required, apr_pool_t *pool); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_LIBSVN_WC_ENTRIES_H */