| /* tree.c : tree-like filesystem, built on DAG filesystem |
| * |
| * ==================================================================== |
| * 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/. |
| * ==================================================================== |
| */ |
| |
| |
| /* The job of this layer is to take a filesystem with lots of node |
| sharing going on --- the real DAG filesystem as it appears in the |
| database --- and make it look and act like an ordinary tree |
| filesystem, with no sharing. |
| |
| We do just-in-time cloning: you can walk from some unfinished |
| transaction's root down into directories and files shared with |
| committed revisions; as soon as you try to change something, the |
| appropriate nodes get cloned (and parent directory entries updated) |
| invisibly, behind your back. Any other references you have to |
| nodes that have been cloned by other changes, even made by other |
| processes, are automatically updated to point to the right clones. */ |
| |
| |
| #include <stdlib.h> |
| #include <string.h> |
| #include <assert.h> |
| #include <apr_pools.h> |
| #include <apr_hash.h> |
| |
| #include "svn_private_config.h" |
| #include "svn_pools.h" |
| #include "svn_error.h" |
| #include "svn_path.h" |
| #include "svn_md5.h" |
| #include "svn_sha1.h" |
| #include "svn_mergeinfo.h" |
| #include "svn_fs.h" |
| #include "fs.h" |
| #include "err.h" |
| #include "key-gen.h" |
| #include "dag.h" |
| #include "lock.h" |
| #include "tree.h" |
| #include "fs_fs.h" |
| #include "id.h" |
| |
| #include "private/svn_mergeinfo_private.h" |
| #include "private/svn_fs_util.h" |
| #include "../libsvn_fs/fs-loader.h" |
| |
| |
| /* ### I believe this constant will become internal to reps-strings.c. |
| ### see the comment in window_consumer() for more information. */ |
| |
| /* ### the comment also seems to need tweaking: the log file stuff |
| ### is no longer an issue... */ |
| /* Data written to the filesystem through the svn_fs_apply_textdelta() |
| interface is cached in memory until the end of the data stream, or |
| until a size trigger is hit. Define that trigger here (in bytes). |
| Setting the value to 0 will result in no filesystem buffering at |
| all. The value only really matters when dealing with file contents |
| bigger than the value itself. Above that point, large values here |
| allow the filesystem to buffer more data in memory before flushing |
| to the database, which increases memory usage but greatly decreases |
| the amount of disk access (and log-file generation) in database. |
| Smaller values will limit your overall memory consumption, but can |
| drastically hurt throughput by necessitating more write operations |
| to the database (which also generates more log-files). */ |
| #define WRITE_BUFFER_SIZE 512000 |
| |
| |
| |
| /* The root structures. |
| |
| Why do they contain different data? Well, transactions are mutable |
| enough that it isn't safe to cache the DAG node for the root |
| directory or the hash of copyfrom data: somebody else might modify |
| them concurrently on disk! (Why is the DAG node cache safer than |
| the root DAG node? When cloning transaction DAG nodes in and out |
| of the cache, all of the possibly-mutable data from the |
| node_revision_t inside the dag_node_t is dropped.) Additionally, |
| revisions are immutable enough that their DAG node cache can be |
| kept in the FS object and shared among multiple revision root |
| objects. |
| */ |
| typedef struct |
| { |
| /* A dag node for the revision's root directory. */ |
| dag_node_t *root_dir; |
| |
| /* Cache structure for mapping const char * PATH to const char |
| *COPYFROM_STRING, so that paths_changed can remember all the |
| copyfrom information in the changes file. |
| COPYFROM_STRING has the format "REV PATH", or is the empty string if |
| the path was added without history. */ |
| apr_hash_t *copyfrom_cache; |
| |
| } fs_rev_root_data_t; |
| |
| typedef struct |
| { |
| /* Cache of txn DAG nodes (without their nested noderevs, because |
| * it's mutable). */ |
| svn_cache_t *txn_node_cache; |
| } fs_txn_root_data_t; |
| |
| /* Declared here to resolve the circular dependencies. */ |
| static svn_error_t * get_dag(dag_node_t **dag_node_p, svn_fs_root_t *root, |
| const char *path, apr_pool_t *pool); |
| |
| static svn_fs_root_t *make_revision_root(svn_fs_t *fs, svn_revnum_t rev, |
| dag_node_t *root_dir, |
| apr_pool_t *pool); |
| |
| static svn_error_t *make_txn_root(svn_fs_root_t **root_p, |
| svn_fs_t *fs, const char *txn, |
| svn_revnum_t base_rev, apr_uint32_t flags, |
| apr_pool_t *pool); |
| |
| |
| /*** Node Caching ***/ |
| |
| /* Find and return the DAG node cache for ROOT and the key that |
| should be used for PATH. */ |
| static void |
| locate_cache(svn_cache_t **cache, |
| const char **key, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| if (root->is_txn_root) |
| { |
| fs_txn_root_data_t *frd = root->fsap_data; |
| if (cache) *cache = frd->txn_node_cache; |
| if (key && path) *key = path; |
| } |
| else |
| { |
| fs_fs_data_t *ffd = root->fs->fsap_data; |
| if (cache) *cache = ffd->rev_node_cache; |
| if (key && path) *key = apr_psprintf(pool, "%ld%s", |
| root->rev, path); |
| } |
| } |
| |
| /* Return NODE for PATH from ROOT's node cache, or NULL if the node |
| isn't cached; the node is copied into POOL. */ |
| static svn_error_t * |
| dag_node_cache_get(dag_node_t **node_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| svn_boolean_t found; |
| dag_node_t *node; |
| svn_cache_t *cache; |
| const char *key; |
| |
| SVN_ERR_ASSERT(*path == '/'); |
| |
| locate_cache(&cache, &key, root, path, pool); |
| |
| SVN_ERR(svn_cache_get((void **) &node, &found, cache, key, pool)); |
| if (found && node) |
| { |
| /* Patch up the FS, since this might have come from an old FS |
| * object. */ |
| svn_fs_fs__dag_set_fs(node, root->fs); |
| *node_p = node; |
| } |
| else |
| *node_p = NULL; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Add the NODE for PATH to ROOT's node cache. */ |
| static svn_error_t * |
| dag_node_cache_set(svn_fs_root_t *root, |
| const char *path, |
| dag_node_t *node, |
| apr_pool_t *pool) |
| { |
| svn_cache_t *cache; |
| const char *key; |
| |
| SVN_ERR_ASSERT(*path == '/'); |
| |
| locate_cache(&cache, &key, root, path, pool); |
| |
| return svn_cache_set(cache, key, node, pool); |
| } |
| |
| |
| /* Baton for find_descendents_in_cache. */ |
| struct fdic_baton { |
| const char *path; |
| apr_array_header_t *list; |
| apr_pool_t *pool; |
| }; |
| |
| /* If the given item is a descendent of BATON->PATH, push |
| * it onto BATON->LIST (copying into BATON->POOL). Implements |
| * the svn_iter_apr_hash_cb_t prototype. */ |
| static svn_error_t * |
| find_descendents_in_cache(void *baton, |
| const void *key, |
| apr_ssize_t klen, |
| void *val, |
| apr_pool_t *pool) |
| { |
| struct fdic_baton *b = baton; |
| const char *item_path = key; |
| |
| if (svn_path_is_ancestor(b->path, item_path)) |
| APR_ARRAY_PUSH(b->list, const char *) = apr_pstrdup(b->pool, item_path); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| /* Invalidate cache entries for PATH and any of its children. This |
| should *only* be called on a transaction root! */ |
| static svn_error_t * |
| dag_node_cache_invalidate(svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| struct fdic_baton b; |
| svn_cache_t *cache; |
| apr_pool_t *iterpool; |
| int i; |
| |
| b.path = path; |
| b.pool = svn_pool_create(pool); |
| b.list = apr_array_make(b.pool, 1, sizeof(const char *)); |
| |
| SVN_ERR_ASSERT(root->is_txn_root); |
| locate_cache(&cache, NULL, root, NULL, b.pool); |
| |
| |
| SVN_ERR(svn_cache_iter(NULL, cache, find_descendents_in_cache, |
| &b, b.pool)); |
| |
| iterpool = svn_pool_create(b.pool); |
| |
| for (i = 0; i < b.list->nelts; i++) |
| { |
| const char *descendent = APR_ARRAY_IDX(b.list, i, const char *); |
| svn_pool_clear(iterpool); |
| SVN_ERR(svn_cache_set(cache, descendent, NULL, iterpool)); |
| } |
| |
| svn_pool_destroy(iterpool); |
| svn_pool_destroy(b.pool); |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Creating transaction and revision root nodes. */ |
| |
| svn_error_t * |
| svn_fs_fs__txn_root(svn_fs_root_t **root_p, |
| svn_fs_txn_t *txn, |
| apr_pool_t *pool) |
| { |
| apr_uint32_t flags = 0; |
| apr_hash_t *txnprops; |
| |
| /* Look for the temporary txn props representing 'flags'. */ |
| SVN_ERR(svn_fs_fs__txn_proplist(&txnprops, txn, pool)); |
| if (txnprops) |
| { |
| if (apr_hash_get(txnprops, SVN_FS__PROP_TXN_CHECK_OOD, |
| APR_HASH_KEY_STRING)) |
| flags |= SVN_FS_TXN_CHECK_OOD; |
| |
| if (apr_hash_get(txnprops, SVN_FS__PROP_TXN_CHECK_LOCKS, |
| APR_HASH_KEY_STRING)) |
| flags |= SVN_FS_TXN_CHECK_LOCKS; |
| } |
| |
| return make_txn_root(root_p, txn->fs, txn->id, txn->base_rev, flags, pool); |
| } |
| |
| |
| svn_error_t * |
| svn_fs_fs__revision_root(svn_fs_root_t **root_p, |
| svn_fs_t *fs, |
| svn_revnum_t rev, |
| apr_pool_t *pool) |
| { |
| dag_node_t *root_dir; |
| |
| SVN_ERR(svn_fs__check_fs(fs, TRUE)); |
| |
| SVN_ERR(svn_fs_fs__dag_revision_root(&root_dir, fs, rev, pool)); |
| |
| *root_p = make_revision_root(fs, rev, root_dir, pool); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Getting dag nodes for roots. */ |
| |
| |
| /* Set *NODE_P to a freshly opened dag node referring to the root |
| directory of ROOT, allocating from POOL. */ |
| static svn_error_t * |
| root_node(dag_node_t **node_p, |
| svn_fs_root_t *root, |
| apr_pool_t *pool) |
| { |
| if (root->is_txn_root) |
| { |
| /* It's a transaction root. Open a fresh copy. */ |
| return svn_fs_fs__dag_txn_root(node_p, root->fs, root->txn, pool); |
| } |
| else |
| { |
| /* It's a revision root, so we already have its root directory |
| opened. */ |
| fs_rev_root_data_t *frd = root->fsap_data; |
| *node_p = svn_fs_fs__dag_dup(frd->root_dir, pool); |
| return SVN_NO_ERROR; |
| } |
| } |
| |
| |
| /* Set *NODE_P to a mutable root directory for ROOT, cloning if |
| necessary, allocating in POOL. ROOT must be a transaction root. |
| Use ERROR_PATH in error messages. */ |
| static svn_error_t * |
| mutable_root_node(dag_node_t **node_p, |
| svn_fs_root_t *root, |
| const char *error_path, |
| apr_pool_t *pool) |
| { |
| if (root->is_txn_root) |
| return svn_fs_fs__dag_clone_root(node_p, root->fs, root->txn, pool); |
| else |
| /* If it's not a transaction root, we can't change its contents. */ |
| return SVN_FS__ERR_NOT_MUTABLE(root->fs, root->rev, error_path); |
| } |
| |
| |
| |
| /* Traversing directory paths. */ |
| |
| typedef enum copy_id_inherit_t |
| { |
| copy_id_inherit_unknown = 0, |
| copy_id_inherit_self, |
| copy_id_inherit_parent, |
| copy_id_inherit_new |
| |
| } copy_id_inherit_t; |
| |
| /* A linked list representing the path from a node up to a root |
| directory. We use this for cloning, and for operations that need |
| to deal with both a node and its parent directory. For example, a |
| `delete' operation needs to know that the node actually exists, but |
| also needs to change the parent directory. */ |
| typedef struct parent_path_t |
| { |
| |
| /* A node along the path. This could be the final node, one of its |
| parents, or the root. Every parent path ends with an element for |
| the root directory. */ |
| dag_node_t *node; |
| |
| /* The name NODE has in its parent directory. This is zero for the |
| root directory, which (obviously) has no name in its parent. */ |
| char *entry; |
| |
| /* The parent of NODE, or zero if NODE is the root directory. */ |
| struct parent_path_t *parent; |
| |
| /* The copy ID inheritence style. */ |
| copy_id_inherit_t copy_inherit; |
| |
| /* If copy ID inheritence style is copy_id_inherit_new, this is the |
| path which should be implicitly copied; otherwise, this is NULL. */ |
| const char *copy_src_path; |
| |
| } parent_path_t; |
| |
| /* Return a text string describing the absolute path of parent_path |
| PARENT_PATH. It will be allocated in POOL. */ |
| static const char * |
| parent_path_path(parent_path_t *parent_path, |
| apr_pool_t *pool) |
| { |
| const char *path_so_far = "/"; |
| if (parent_path->parent) |
| path_so_far = parent_path_path(parent_path->parent, pool); |
| return parent_path->entry |
| ? svn_path_join(path_so_far, parent_path->entry, pool) |
| : path_so_far; |
| } |
| |
| |
| /* Return the FS path for the parent path chain object CHILD relative |
| to its ANCESTOR in the same chain, allocated in POOL. */ |
| static const char * |
| parent_path_relpath(parent_path_t *child, |
| parent_path_t *ancestor, |
| apr_pool_t *pool) |
| { |
| const char *path_so_far = ""; |
| parent_path_t *this_node = child; |
| while (this_node != ancestor) |
| { |
| assert(this_node != NULL); |
| path_so_far = svn_path_join(this_node->entry, path_so_far, pool); |
| this_node = this_node->parent; |
| } |
| return path_so_far; |
| } |
| |
| |
| |
| /* Choose a copy ID inheritance method *INHERIT_P to be used in the |
| event that immutable node CHILD in FS needs to be made mutable. If |
| the inheritance method is copy_id_inherit_new, also return a |
| *COPY_SRC_PATH on which to base the new copy ID (else return NULL |
| for that path). CHILD must have a parent (it cannot be the root |
| node). TXN_ID is the transaction in which these items might be |
| mutable. Allocations are taken from POOL. */ |
| static svn_error_t * |
| get_copy_inheritance(copy_id_inherit_t *inherit_p, |
| const char **copy_src_path, |
| svn_fs_t *fs, |
| parent_path_t *child, |
| const char *txn_id, |
| apr_pool_t *pool) |
| { |
| const svn_fs_id_t *child_id, *parent_id, *copyroot_id; |
| const char *child_copy_id, *parent_copy_id; |
| const char *id_path = NULL; |
| svn_fs_root_t *copyroot_root; |
| dag_node_t *copyroot_node; |
| svn_revnum_t copyroot_rev; |
| const char *copyroot_path; |
| |
| SVN_ERR_ASSERT(child && child->parent && txn_id); |
| |
| /* Initialize some convenience variables. */ |
| child_id = svn_fs_fs__dag_get_id(child->node); |
| parent_id = svn_fs_fs__dag_get_id(child->parent->node); |
| child_copy_id = svn_fs_fs__id_copy_id(child_id); |
| parent_copy_id = svn_fs_fs__id_copy_id(parent_id); |
| |
| /* If this child is already mutable, we have nothing to do. */ |
| if (svn_fs_fs__id_txn_id(child_id)) |
| { |
| *inherit_p = copy_id_inherit_self; |
| *copy_src_path = NULL; |
| return SVN_NO_ERROR; |
| } |
| |
| /* From this point on, we'll assume that the child will just take |
| its copy ID from its parent. */ |
| *inherit_p = copy_id_inherit_parent; |
| *copy_src_path = NULL; |
| |
| /* Special case: if the child's copy ID is '0', use the parent's |
| copy ID. */ |
| if (strcmp(child_copy_id, "0") == 0) |
| return SVN_NO_ERROR; |
| |
| /* Compare the copy IDs of the child and its parent. If they are |
| the same, then the child is already on the same branch as the |
| parent, and should use the same mutability copy ID that the |
| parent will use. */ |
| if (svn_fs_fs__key_compare(child_copy_id, parent_copy_id) == 0) |
| return SVN_NO_ERROR; |
| |
| /* If the child is on the same branch that the parent is on, the |
| child should just use the same copy ID that the parent would use. |
| Else, the child needs to generate a new copy ID to use should it |
| need to be made mutable. We will claim that child is on the same |
| branch as its parent if the child itself is not a branch point, |
| or if it is a branch point that we are accessing via its original |
| copy destination path. */ |
| SVN_ERR(svn_fs_fs__dag_get_copyroot(©root_rev, ©root_path, |
| child->node,pool)); |
| SVN_ERR(svn_fs_fs__revision_root(©root_root, fs, copyroot_rev, pool)); |
| SVN_ERR(get_dag(©root_node, copyroot_root, copyroot_path, pool)); |
| copyroot_id = svn_fs_fs__dag_get_id(copyroot_node); |
| |
| if (svn_fs_fs__id_compare(copyroot_id, child_id) == -1) |
| return SVN_NO_ERROR; |
| |
| /* Determine if we are looking at the child via its original path or |
| as a subtree item of a copied tree. */ |
| id_path = svn_fs_fs__dag_get_created_path(child->node); |
| if (strcmp(id_path, parent_path_path(child, pool)) == 0) |
| { |
| *inherit_p = copy_id_inherit_self; |
| return SVN_NO_ERROR; |
| } |
| |
| /* We are pretty sure that the child node is an unedited nested |
| branched node. When it needs to be made mutable, it should claim |
| a new copy ID. */ |
| *inherit_p = copy_id_inherit_new; |
| *copy_src_path = id_path; |
| return SVN_NO_ERROR; |
| } |
| |
| /* Allocate a new parent_path_t node from POOL, referring to NODE, |
| ENTRY, PARENT, and COPY_ID. */ |
| static parent_path_t * |
| make_parent_path(dag_node_t *node, |
| char *entry, |
| parent_path_t *parent, |
| apr_pool_t *pool) |
| { |
| parent_path_t *parent_path = apr_pcalloc(pool, sizeof(*parent_path)); |
| parent_path->node = node; |
| parent_path->entry = entry; |
| parent_path->parent = parent; |
| parent_path->copy_inherit = copy_id_inherit_unknown; |
| parent_path->copy_src_path = NULL; |
| return parent_path; |
| } |
| |
| |
| /* Flags for open_path. */ |
| typedef enum open_path_flags_t { |
| |
| /* The last component of the PATH need not exist. (All parent |
| directories must exist, as usual.) If the last component doesn't |
| exist, simply leave the `node' member of the bottom parent_path |
| component zero. */ |
| open_path_last_optional = 1 |
| |
| } open_path_flags_t; |
| |
| |
| /* Open the node identified by PATH in ROOT, allocating in POOL. Set |
| *PARENT_PATH_P to a path from the node up to ROOT. The resulting |
| **PARENT_PATH_P value is guaranteed to contain at least one |
| *element, for the root directory. |
| |
| If resulting *PARENT_PATH_P will eventually be made mutable and |
| modified, or if copy ID inheritance information is otherwise |
| needed, TXN_ID should be the ID of the mutability transaction. If |
| TXN_ID is NULL, no copy ID in heritance information will be |
| calculated for the *PARENT_PATH_P chain. |
| |
| If FLAGS & open_path_last_optional is zero, return the error |
| SVN_ERR_FS_NOT_FOUND if the node PATH refers to does not exist. If |
| non-zero, require all the parent directories to exist as normal, |
| but if the final path component doesn't exist, simply return a path |
| whose bottom `node' member is zero. This option is useful for |
| callers that create new nodes --- we find the parent directory for |
| them, and tell them whether the entry exists already. |
| |
| NOTE: Public interfaces which only *read* from the filesystem |
| should not call this function directly, but should instead use |
| get_dag(). |
| */ |
| static svn_error_t * |
| open_path(parent_path_t **parent_path_p, |
| svn_fs_root_t *root, |
| const char *path, |
| int flags, |
| const char *txn_id, |
| apr_pool_t *pool) |
| { |
| svn_fs_t *fs = root->fs; |
| const svn_fs_id_t *id; |
| dag_node_t *here; /* The directory we're currently looking at. */ |
| parent_path_t *parent_path; /* The path from HERE up to the root. */ |
| const char *rest; /* The portion of PATH we haven't traversed yet. */ |
| const char *canon_path = svn_fs__canonicalize_abspath(path, pool); |
| const char *path_so_far = "/"; |
| |
| /* Make a parent_path item for the root node, using its own current |
| copy id. */ |
| SVN_ERR(root_node(&here, root, pool)); |
| id = svn_fs_fs__dag_get_id(here); |
| parent_path = make_parent_path(here, 0, 0, pool); |
| parent_path->copy_inherit = copy_id_inherit_self; |
| |
| rest = canon_path + 1; /* skip the leading '/', it saves in iteration */ |
| |
| /* Whenever we are at the top of this loop: |
| - HERE is our current directory, |
| - ID is the node revision ID of HERE, |
| - REST is the path we're going to find in HERE, and |
| - PARENT_PATH includes HERE and all its parents. */ |
| for (;;) |
| { |
| const char *next; |
| char *entry; |
| dag_node_t *child; |
| |
| /* Parse out the next entry from the path. */ |
| entry = svn_fs__next_entry_name(&next, rest, pool); |
| |
| /* Calculate the path traversed thus far. */ |
| path_so_far = svn_path_join(path_so_far, entry, pool); |
| |
| if (*entry == '\0') |
| { |
| /* Given the behavior of svn_fs__next_entry_name(), this |
| happens when the path either starts or ends with a slash. |
| In either case, we stay put: the current directory stays |
| the same, and we add nothing to the parent path. */ |
| child = here; |
| } |
| else |
| { |
| copy_id_inherit_t inherit; |
| const char *copy_path = NULL; |
| svn_error_t *err = SVN_NO_ERROR; |
| dag_node_t *cached_node; |
| |
| /* If we found a directory entry, follow it. First, we |
| check our node cache, and, failing that, we hit the DAG |
| layer. */ |
| SVN_ERR(dag_node_cache_get(&cached_node, root, path_so_far, pool)); |
| if (cached_node) |
| child = cached_node; |
| else |
| err = svn_fs_fs__dag_open(&child, here, entry, pool); |
| |
| /* "file not found" requires special handling. */ |
| if (err && err->apr_err == SVN_ERR_FS_NOT_FOUND) |
| { |
| /* If this was the last path component, and the caller |
| said it was optional, then don't return an error; |
| just put a NULL node pointer in the path. */ |
| |
| svn_error_clear(err); |
| |
| if ((flags & open_path_last_optional) |
| && (! next || *next == '\0')) |
| { |
| parent_path = make_parent_path(NULL, entry, parent_path, |
| pool); |
| break; |
| } |
| else |
| { |
| /* Build a better error message than svn_fs_fs__dag_open |
| can provide, giving the root and full path name. */ |
| return SVN_FS__NOT_FOUND(root, path); |
| } |
| } |
| |
| /* Other errors we return normally. */ |
| SVN_ERR(err); |
| |
| /* Now, make a parent_path item for CHILD. */ |
| parent_path = make_parent_path(child, entry, parent_path, pool); |
| if (txn_id) |
| { |
| SVN_ERR(get_copy_inheritance(&inherit, ©_path, |
| fs, parent_path, txn_id, pool)); |
| parent_path->copy_inherit = inherit; |
| parent_path->copy_src_path = apr_pstrdup(pool, copy_path); |
| } |
| |
| /* Cache the node we found (if it wasn't already cached). */ |
| if (! cached_node) |
| SVN_ERR(dag_node_cache_set(root, path_so_far, child, pool)); |
| } |
| |
| /* Are we finished traversing the path? */ |
| if (! next) |
| break; |
| |
| /* The path isn't finished yet; we'd better be in a directory. */ |
| if (svn_fs_fs__dag_node_kind(child) != svn_node_dir) |
| SVN_ERR_W(SVN_FS__ERR_NOT_DIRECTORY(fs, path_so_far), |
| apr_psprintf(pool, _("Failure opening '%s'"), path)); |
| |
| rest = next; |
| here = child; |
| } |
| |
| *parent_path_p = parent_path; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Make the node referred to by PARENT_PATH mutable, if it isn't |
| already, allocating from POOL. ROOT must be the root from which |
| PARENT_PATH descends. Clone any parent directories as needed. |
| Adjust the dag nodes in PARENT_PATH to refer to the clones. Use |
| ERROR_PATH in error messages. */ |
| static svn_error_t * |
| make_path_mutable(svn_fs_root_t *root, |
| parent_path_t *parent_path, |
| const char *error_path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *clone; |
| const char *txn_id = root->txn; |
| |
| /* Is the node mutable already? */ |
| if (svn_fs_fs__dag_check_mutable(parent_path->node)) |
| return SVN_NO_ERROR; |
| |
| /* Are we trying to clone the root, or somebody's child node? */ |
| if (parent_path->parent) |
| { |
| const svn_fs_id_t *parent_id, *child_id, *copyroot_id; |
| const char *copy_id = NULL; |
| copy_id_inherit_t inherit = parent_path->copy_inherit; |
| const char *clone_path, *copyroot_path; |
| svn_revnum_t copyroot_rev; |
| svn_boolean_t is_parent_copyroot = FALSE; |
| svn_fs_root_t *copyroot_root; |
| dag_node_t *copyroot_node; |
| |
| /* We're trying to clone somebody's child. Make sure our parent |
| is mutable. */ |
| SVN_ERR(make_path_mutable(root, parent_path->parent, |
| error_path, pool)); |
| |
| switch (inherit) |
| { |
| case copy_id_inherit_parent: |
| parent_id = svn_fs_fs__dag_get_id(parent_path->parent->node); |
| copy_id = svn_fs_fs__id_copy_id(parent_id); |
| break; |
| |
| case copy_id_inherit_new: |
| SVN_ERR(svn_fs_fs__reserve_copy_id(©_id, root->fs, txn_id, |
| pool)); |
| break; |
| |
| case copy_id_inherit_self: |
| copy_id = NULL; |
| break; |
| |
| case copy_id_inherit_unknown: |
| default: |
| SVN_ERR_MALFUNCTION(); /* uh-oh -- somebody didn't calculate copy-ID |
| inheritance data. */ |
| } |
| |
| /* Determine what copyroot our new child node should use. */ |
| SVN_ERR(svn_fs_fs__dag_get_copyroot(©root_rev, ©root_path, |
| parent_path->node, pool)); |
| SVN_ERR(svn_fs_fs__revision_root(©root_root, root->fs, |
| copyroot_rev, pool)); |
| SVN_ERR(get_dag(©root_node, copyroot_root, copyroot_path, pool)); |
| |
| child_id = svn_fs_fs__dag_get_id(parent_path->node); |
| copyroot_id = svn_fs_fs__dag_get_id(copyroot_node); |
| if (strcmp(svn_fs_fs__id_node_id(child_id), |
| svn_fs_fs__id_node_id(copyroot_id)) != 0) |
| is_parent_copyroot = TRUE; |
| |
| /* Now make this node mutable. */ |
| clone_path = parent_path_path(parent_path->parent, pool); |
| SVN_ERR(svn_fs_fs__dag_clone_child(&clone, |
| parent_path->parent->node, |
| clone_path, |
| parent_path->entry, |
| copy_id, txn_id, |
| is_parent_copyroot, |
| pool)); |
| |
| /* Update the path cache. */ |
| SVN_ERR(dag_node_cache_set(root, parent_path_path(parent_path, pool), |
| clone, pool)); |
| } |
| else |
| { |
| /* We're trying to clone the root directory. */ |
| SVN_ERR(mutable_root_node(&clone, root, error_path, pool)); |
| } |
| |
| /* Update the PARENT_PATH link to refer to the clone. */ |
| parent_path->node = clone; |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Open the node identified by PATH in ROOT. Set DAG_NODE_P to the |
| *node we find, allocated in POOL. Return the error |
| *SVN_ERR_FS_NOT_FOUND if this node doesn't exist. */ |
| static svn_error_t * |
| get_dag(dag_node_t **dag_node_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| parent_path_t *parent_path; |
| dag_node_t *node; |
| |
| /* Canonicalize the input PATH. */ |
| path = svn_fs__canonicalize_abspath(path, pool); |
| |
| /* First we look for the DAG in our cache. */ |
| SVN_ERR(dag_node_cache_get(&node, root, path, pool)); |
| if (! node) |
| { |
| /* Call open_path with no flags, as we want this to return an error |
| if the node for which we are searching doesn't exist. */ |
| SVN_ERR(open_path(&parent_path, root, path, 0, NULL, pool)); |
| node = parent_path->node; |
| |
| /* No need to cache our find -- open_path() will do that for us. */ |
| } |
| |
| *dag_node_p = node; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Populating the `changes' table. */ |
| |
| /* Add a change to the changes table in FS, keyed on transaction id |
| TXN_ID, and indicated that a change of kind CHANGE_KIND occurred on |
| PATH (whose node revision id is--or was, in the case of a |
| deletion--NODEREV_ID), and optionally that TEXT_MODs or PROP_MODs |
| occurred. If the change resulted from a copy, COPYFROM_REV and |
| COPYFROM_PATH specify under which revision and path the node was |
| copied from. If this was not part of a copy, COPYFROM_REV should |
| be SVN_INVALID_REVNUM. Do all this as part of POOL. */ |
| static svn_error_t * |
| add_change(svn_fs_t *fs, |
| const char *txn_id, |
| const char *path, |
| const svn_fs_id_t *noderev_id, |
| svn_fs_path_change_kind_t change_kind, |
| svn_boolean_t text_mod, |
| svn_boolean_t prop_mod, |
| svn_revnum_t copyfrom_rev, |
| const char *copyfrom_path, |
| apr_pool_t *pool) |
| { |
| SVN_ERR(svn_fs_fs__add_change(fs, txn_id, |
| svn_fs__canonicalize_abspath(path, pool), |
| noderev_id, change_kind, text_mod, prop_mod, |
| copyfrom_rev, copyfrom_path, |
| pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Generic node operations. */ |
| |
| /* Get the id of a node referenced by path PATH in ROOT. Return the |
| id in *ID_P allocated in POOL. */ |
| static svn_error_t * |
| fs_node_id(const svn_fs_id_t **id_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| if ((! root->is_txn_root) |
| && (path[0] == '\0' || ((path[0] == '/') && (path[1] == '\0')))) |
| { |
| /* Optimize the case where we don't need any db access at all. |
| The root directory ("" or "/") node is stored in the |
| svn_fs_root_t object, and never changes when it's a revision |
| root, so we can just reach in and grab it directly. */ |
| fs_rev_root_data_t *frd = root->fsap_data; |
| *id_p = svn_fs_fs__id_copy(svn_fs_fs__dag_get_id(frd->root_dir), pool); |
| } |
| else |
| { |
| dag_node_t *node; |
| |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| *id_p = svn_fs_fs__id_copy(svn_fs_fs__dag_get_id(node), pool); |
| } |
| return SVN_NO_ERROR; |
| } |
| |
| |
| svn_error_t * |
| svn_fs_fs__node_created_rev(svn_revnum_t *revision, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node; |
| |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_revision(revision, node, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *CREATED_PATH to the path at which PATH under ROOT was created. |
| Return a string allocated in POOL. */ |
| static svn_error_t * |
| fs_node_created_path(const char **created_path, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node; |
| |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| *created_path = svn_fs_fs__dag_get_created_path(node); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *KIND_P to the type of node located at PATH under ROOT. |
| Perform temporary allocations in POOL. */ |
| static svn_error_t * |
| node_kind(svn_node_kind_t *kind_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| const svn_fs_id_t *node_id; |
| dag_node_t *node; |
| |
| /* Get the node id. */ |
| SVN_ERR(fs_node_id(&node_id, root, path, pool)); |
| |
| /* Use the node id to get the real kind. */ |
| SVN_ERR(svn_fs_fs__dag_get_node(&node, root->fs, node_id, pool)); |
| *kind_p = svn_fs_fs__dag_node_kind(node); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *KIND_P to the type of node present at PATH under ROOT. If |
| PATH does not exist under ROOT, set *KIND_P to svn_node_none. Use |
| POOL for temporary allocation. */ |
| svn_error_t * |
| svn_fs_fs__check_path(svn_node_kind_t *kind_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| svn_error_t *err = node_kind(kind_p, root, path, pool); |
| if (err && |
| ((err->apr_err == SVN_ERR_FS_NOT_FOUND) |
| || (err->apr_err == SVN_ERR_FS_NOT_DIRECTORY))) |
| { |
| svn_error_clear(err); |
| *kind_p = svn_node_none; |
| } |
| else if (err) |
| { |
| return err; |
| } |
| return SVN_NO_ERROR; |
| } |
| |
| /* Set *VALUE_P to the value of the property named PROPNAME of PATH in |
| ROOT. If the node has no property by that name, set *VALUE_P to |
| zero. Allocate the result in POOL. */ |
| static svn_error_t * |
| fs_node_prop(svn_string_t **value_p, |
| svn_fs_root_t *root, |
| const char *path, |
| const char *propname, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node; |
| apr_hash_t *proplist; |
| |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, node, pool)); |
| *value_p = NULL; |
| if (proplist) |
| *value_p = apr_hash_get(proplist, propname, APR_HASH_KEY_STRING); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *TABLE_P to the entire property list of PATH under ROOT, as an |
| APR hash table allocated in POOL. The resulting property table |
| maps property names to pointers to svn_string_t objects containing |
| the property value. */ |
| static svn_error_t * |
| fs_node_proplist(apr_hash_t **table_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| apr_hash_t *table; |
| dag_node_t *node; |
| |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_proplist(&table, node, pool)); |
| *table_p = table ? table : apr_hash_make(pool); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| static svn_error_t * |
| increment_mergeinfo_up_tree(parent_path_t *pp, |
| apr_int64_t increment, |
| apr_pool_t *pool) |
| { |
| for (; pp; pp = pp->parent) |
| SVN_ERR(svn_fs_fs__dag_increment_mergeinfo_count(pp->node, |
| increment, |
| pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| /* Change, add, or delete a node's property value. The affected node |
| is PATH under ROOT, the property value to modify is NAME, and VALUE |
| points to either a string value to set the new contents to, or NULL |
| if the property should be deleted. Perform temporary allocations |
| in POOL. */ |
| static svn_error_t * |
| fs_change_node_prop(svn_fs_root_t *root, |
| const char *path, |
| const char *name, |
| const svn_string_t *value, |
| apr_pool_t *pool) |
| { |
| parent_path_t *parent_path; |
| apr_hash_t *proplist; |
| const char *txn_id; |
| |
| if (! root->is_txn_root) |
| return SVN_FS__NOT_TXN(root); |
| txn_id = root->txn; |
| |
| SVN_ERR(open_path(&parent_path, root, path, 0, txn_id, pool)); |
| |
| /* Check (non-recursively) to see if path is locked; if so, check |
| that we can use it. */ |
| if (root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(path, root->fs, FALSE, FALSE, |
| pool)); |
| |
| SVN_ERR(make_path_mutable(root, parent_path, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, parent_path->node, pool)); |
| |
| /* If there's no proplist, but we're just deleting a property, exit now. */ |
| if ((! proplist) && (! value)) |
| return SVN_NO_ERROR; |
| |
| /* Now, if there's no proplist, we know we need to make one. */ |
| if (! proplist) |
| proplist = apr_hash_make(pool); |
| |
| if (svn_fs_fs__fs_supports_mergeinfo(root->fs) |
| && strcmp (name, SVN_PROP_MERGEINFO) == 0) |
| { |
| apr_int64_t increment = 0; |
| svn_boolean_t had_mergeinfo; |
| SVN_ERR(svn_fs_fs__dag_has_mergeinfo(&had_mergeinfo, parent_path->node, |
| pool)); |
| |
| if (value && !had_mergeinfo) |
| increment = 1; |
| else if (!value && had_mergeinfo) |
| increment = -1; |
| |
| if (increment != 0) |
| { |
| SVN_ERR(increment_mergeinfo_up_tree(parent_path, increment, pool)); |
| SVN_ERR(svn_fs_fs__dag_set_has_mergeinfo(parent_path->node, |
| (value != NULL), pool)); |
| } |
| } |
| |
| /* Set the property. */ |
| apr_hash_set(proplist, name, APR_HASH_KEY_STRING, value); |
| |
| /* Overwrite the node's proplist. */ |
| SVN_ERR(svn_fs_fs__dag_set_proplist(parent_path->node, proplist, |
| pool)); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(add_change(root->fs, txn_id, path, |
| svn_fs_fs__dag_get_id(parent_path->node), |
| svn_fs_path_change_modify, FALSE, TRUE, SVN_INVALID_REVNUM, |
| NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Determine if the properties of two path/root combinations are |
| different. Set *CHANGED_P to TRUE if the properties at PATH1 under |
| ROOT1 differ from those at PATH2 under ROOT2, or FALSE otherwise. |
| Both roots must be in the same filesystem. */ |
| static svn_error_t * |
| fs_props_changed(svn_boolean_t *changed_p, |
| svn_fs_root_t *root1, |
| const char *path1, |
| svn_fs_root_t *root2, |
| const char *path2, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node1, *node2; |
| |
| /* Check that roots are in the same fs. */ |
| if (root1->fs != root2->fs) |
| return svn_error_create |
| (SVN_ERR_FS_GENERAL, NULL, |
| _("Cannot compare property value between two different filesystems")); |
| |
| SVN_ERR(get_dag(&node1, root1, path1, pool)); |
| SVN_ERR(get_dag(&node2, root2, path2, pool)); |
| SVN_ERR(svn_fs_fs__dag_things_different(changed_p, NULL, |
| node1, node2, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Merges and commits. */ |
| |
| /* Set ARGS->node to the root node of ARGS->root. */ |
| static svn_error_t * |
| get_root(dag_node_t **node, svn_fs_root_t *root, apr_pool_t *pool) |
| { |
| SVN_ERR(get_dag(node, root, "", pool)); |
| return SVN_NO_ERROR; |
| } |
| |
| |
| static svn_error_t * |
| update_ancestry(svn_fs_t *fs, |
| const svn_fs_id_t *source_id, |
| const svn_fs_id_t *target_id, |
| const char *target_path, |
| int source_pred_count, |
| apr_pool_t *pool) |
| { |
| node_revision_t *noderev; |
| |
| if (svn_fs_fs__id_txn_id(target_id) == NULL) |
| return svn_error_createf |
| (SVN_ERR_FS_NOT_MUTABLE, NULL, |
| _("Unexpected immutable node at '%s'"), target_path); |
| |
| SVN_ERR(svn_fs_fs__get_node_revision(&noderev, fs, target_id, pool)); |
| noderev->predecessor_id = source_id; |
| noderev->predecessor_count = source_pred_count; |
| if (noderev->predecessor_count != -1) |
| noderev->predecessor_count++; |
| SVN_ERR(svn_fs_fs__put_node_revision(fs, target_id, noderev, FALSE, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set the contents of CONFLICT_PATH to PATH, and return an |
| SVN_ERR_FS_CONFLICT error that indicates that there was a conflict |
| at PATH. Perform all allocations in POOL (except the allocation of |
| CONFLICT_PATH, which should be handled outside this function). */ |
| static svn_error_t * |
| conflict_err(svn_stringbuf_t *conflict_path, |
| const char *path) |
| { |
| svn_stringbuf_set(conflict_path, path); |
| return svn_error_createf(SVN_ERR_FS_CONFLICT, NULL, |
| _("Conflict at '%s'"), path); |
| } |
| |
| |
| /* Merge changes between ANCESTOR and SOURCE into TARGET. ANCESTOR |
| * and TARGET must be distinct node revisions. TARGET_PATH should |
| * correspond to TARGET's full path in its filesystem, and is used for |
| * reporting conflict location. |
| * |
| * SOURCE, TARGET, and ANCESTOR are generally directories; this |
| * function recursively merges the directories' contents. If any are |
| * files, this function simply returns an error whenever SOURCE, |
| * TARGET, and ANCESTOR are all distinct node revisions. |
| * |
| * If there are differences between ANCESTOR and SOURCE that conflict |
| * with changes between ANCESTOR and TARGET, this function returns an |
| * SVN_ERR_FS_CONFLICT error, and updates CONFLICT_P to the name of the |
| * conflicting node in TARGET, with TARGET_PATH prepended as a path. |
| * |
| * If there are no conflicting differences, CONFLICT_P is updated to |
| * the empty string. |
| * |
| * CONFLICT_P must point to a valid svn_stringbuf_t. |
| * |
| * Do any necessary temporary allocation in POOL. |
| */ |
| static svn_error_t * |
| merge(svn_stringbuf_t *conflict_p, |
| const char *target_path, |
| dag_node_t *target, |
| dag_node_t *source, |
| dag_node_t *ancestor, |
| const char *txn_id, |
| apr_int64_t *mergeinfo_increment_out, |
| apr_pool_t *pool) |
| { |
| const svn_fs_id_t *source_id, *target_id, *ancestor_id; |
| apr_hash_t *s_entries, *t_entries, *a_entries; |
| apr_hash_index_t *hi; |
| svn_fs_t *fs; |
| apr_pool_t *iterpool; |
| int pred_count; |
| apr_int64_t mergeinfo_increment = 0; |
| |
| /* Make sure everyone comes from the same filesystem. */ |
| fs = svn_fs_fs__dag_get_fs(ancestor); |
| if ((fs != svn_fs_fs__dag_get_fs(source)) |
| || (fs != svn_fs_fs__dag_get_fs(target))) |
| { |
| return svn_error_create |
| (SVN_ERR_FS_CORRUPT, NULL, |
| _("Bad merge; ancestor, source, and target not all in same fs")); |
| } |
| |
| /* We have the same fs, now check it. */ |
| SVN_ERR(svn_fs__check_fs(fs, TRUE)); |
| |
| source_id = svn_fs_fs__dag_get_id(source); |
| target_id = svn_fs_fs__dag_get_id(target); |
| ancestor_id = svn_fs_fs__dag_get_id(ancestor); |
| |
| /* It's improper to call this function with ancestor == target. */ |
| if (svn_fs_fs__id_eq(ancestor_id, target_id)) |
| { |
| svn_string_t *id_str = svn_fs_fs__id_unparse(target_id, pool); |
| return svn_error_createf |
| (SVN_ERR_FS_GENERAL, NULL, |
| _("Bad merge; target '%s' has id '%s', same as ancestor"), |
| target_path, id_str->data); |
| } |
| |
| svn_stringbuf_setempty(conflict_p); |
| |
| /* Base cases: |
| * Either no change made in source, or same change as made in target. |
| * Both mean nothing to merge here. |
| */ |
| if (svn_fs_fs__id_eq(ancestor_id, source_id) |
| || (svn_fs_fs__id_eq(source_id, target_id))) |
| return SVN_NO_ERROR; |
| |
| /* Else proceed, knowing all three are distinct node revisions. |
| * |
| * How to merge from this point: |
| * |
| * if (not all 3 are directories) |
| * { |
| * early exit with conflict; |
| * } |
| * |
| * // Property changes may only be made to up-to-date |
| * // directories, because once the client commits the prop |
| * // change, it bumps the directory's revision, and therefore |
| * // must be able to depend on there being no other changes to |
| * // that directory in the repository. |
| * if (target's property list differs from ancestor's) |
| * conflict; |
| * |
| * For each entry NAME in the directory ANCESTOR: |
| * |
| * Let ANCESTOR-ENTRY, SOURCE-ENTRY, and TARGET-ENTRY be the IDs of |
| * the name within ANCESTOR, SOURCE, and TARGET respectively. |
| * (Possibly null if NAME does not exist in SOURCE or TARGET.) |
| * |
| * If ANCESTOR-ENTRY == SOURCE-ENTRY, then: |
| * No changes were made to this entry while the transaction was in |
| * progress, so do nothing to the target. |
| * |
| * Else if ANCESTOR-ENTRY == TARGET-ENTRY, then: |
| * A change was made to this entry while the transaction was in |
| * process, but the transaction did not touch this entry. Replace |
| * TARGET-ENTRY with SOURCE-ENTRY. |
| * |
| * Else: |
| * Changes were made to this entry both within the transaction and |
| * to the repository while the transaction was in progress. They |
| * must be merged or declared to be in conflict. |
| * |
| * If SOURCE-ENTRY and TARGET-ENTRY are both null, that's a |
| * double delete; flag a conflict. |
| * |
| * If any of the three entries is of type file, declare a conflict. |
| * |
| * If either SOURCE-ENTRY or TARGET-ENTRY is not a direct |
| * modification of ANCESTOR-ENTRY (determine by comparing the |
| * node-id fields), declare a conflict. A replacement is |
| * incompatible with a modification or other replacement--even |
| * an identical replacement. |
| * |
| * Direct modifications were made to the directory ANCESTOR-ENTRY |
| * in both SOURCE and TARGET. Recursively merge these |
| * modifications. |
| * |
| * For each leftover entry NAME in the directory SOURCE: |
| * |
| * If NAME exists in TARGET, declare a conflict. Even if SOURCE and |
| * TARGET are adding exactly the same thing, two additions are not |
| * auto-mergeable with each other. |
| * |
| * Add NAME to TARGET with the entry from SOURCE. |
| * |
| * Now that we are done merging the changes from SOURCE into the |
| * directory TARGET, update TARGET's predecessor to be SOURCE. |
| */ |
| |
| if ((svn_fs_fs__dag_node_kind(source) != svn_node_dir) |
| || (svn_fs_fs__dag_node_kind(target) != svn_node_dir) |
| || (svn_fs_fs__dag_node_kind(ancestor) != svn_node_dir)) |
| { |
| return conflict_err(conflict_p, target_path); |
| } |
| |
| |
| /* Possible early merge failure: if target and ancestor have |
| different property lists, then the merge should fail. |
| Propchanges can *only* be committed on an up-to-date directory. |
| ### TODO: see issue #418 about the inelegance of this. |
| |
| Another possible, similar, early merge failure: if source and |
| ancestor have different property lists (meaning someone else |
| changed directory properties while our commit transaction was |
| happening), the merge should fail. See issue #2751. |
| */ |
| { |
| node_revision_t *tgt_nr, *anc_nr, *src_nr; |
| |
| /* Get node revisions for our id's. */ |
| SVN_ERR(svn_fs_fs__get_node_revision(&tgt_nr, fs, target_id, pool)); |
| SVN_ERR(svn_fs_fs__get_node_revision(&anc_nr, fs, ancestor_id, pool)); |
| SVN_ERR(svn_fs_fs__get_node_revision(&src_nr, fs, source_id, pool)); |
| |
| /* Now compare the prop-keys of the skels. Note that just because |
| the keys are different -doesn't- mean the proplists have |
| different contents. But merge() isn't concerned with contents; |
| it doesn't do a brute-force comparison on textual contents, so |
| it won't do that here either. Checking to see if the propkey |
| atoms are `equal' is enough. */ |
| if (! svn_fs_fs__noderev_same_rep_key(tgt_nr->prop_rep, anc_nr->prop_rep)) |
| return conflict_err(conflict_p, target_path); |
| if (! svn_fs_fs__noderev_same_rep_key(src_nr->prop_rep, anc_nr->prop_rep)) |
| return conflict_err(conflict_p, target_path); |
| } |
| |
| /* ### todo: it would be more efficient to simply check for a NULL |
| entries hash where necessary below than to allocate an empty hash |
| here, but another day, another day... */ |
| SVN_ERR(svn_fs_fs__dag_dir_entries(&s_entries, source, pool, pool)); |
| SVN_ERR(svn_fs_fs__dag_dir_entries(&t_entries, target, pool, pool)); |
| SVN_ERR(svn_fs_fs__dag_dir_entries(&a_entries, ancestor, pool, pool)); |
| |
| /* for each entry E in a_entries... */ |
| iterpool = svn_pool_create(pool); |
| for (hi = apr_hash_first(pool, a_entries); |
| hi; |
| hi = apr_hash_next(hi)) |
| { |
| svn_fs_dirent_t *s_entry, *t_entry, *a_entry; |
| |
| const void *key; |
| void *val; |
| apr_ssize_t klen; |
| |
| svn_pool_clear(iterpool); |
| |
| /* KEY will be the entry name in ancestor, VAL the dirent */ |
| apr_hash_this(hi, &key, &klen, &val); |
| a_entry = val; |
| |
| s_entry = apr_hash_get(s_entries, key, klen); |
| t_entry = apr_hash_get(t_entries, key, klen); |
| |
| /* No changes were made to this entry while the transaction was |
| in progress, so do nothing to the target. */ |
| if (s_entry && svn_fs_fs__id_eq(a_entry->id, s_entry->id)) |
| goto end; |
| |
| /* A change was made to this entry while the transaction was in |
| process, but the transaction did not touch this entry. */ |
| else if (t_entry && svn_fs_fs__id_eq(a_entry->id, t_entry->id)) |
| { |
| dag_node_t *t_ent_node; |
| SVN_ERR(svn_fs_fs__dag_get_node(&t_ent_node, fs, |
| t_entry->id, iterpool)); |
| if (svn_fs_fs__fs_supports_mergeinfo(fs)) |
| { |
| apr_int64_t mergeinfo_start; |
| SVN_ERR(svn_fs_fs__dag_get_mergeinfo_count(&mergeinfo_start, |
| t_ent_node, |
| iterpool)); |
| mergeinfo_increment -= mergeinfo_start; |
| } |
| |
| if (s_entry) |
| { |
| dag_node_t *s_ent_node; |
| SVN_ERR(svn_fs_fs__dag_get_node(&s_ent_node, fs, |
| s_entry->id, iterpool)); |
| |
| if (svn_fs_fs__fs_supports_mergeinfo(fs)) |
| { |
| apr_int64_t mergeinfo_end; |
| SVN_ERR(svn_fs_fs__dag_get_mergeinfo_count(&mergeinfo_end, |
| s_ent_node, |
| iterpool)); |
| mergeinfo_increment += mergeinfo_end; |
| } |
| |
| SVN_ERR(svn_fs_fs__dag_set_entry(target, key, |
| s_entry->id, |
| s_entry->kind, |
| txn_id, |
| iterpool)); |
| } |
| else |
| { |
| SVN_ERR(svn_fs_fs__dag_delete(target, key, txn_id, iterpool)); |
| } |
| } |
| |
| /* Changes were made to this entry both within the transaction |
| and to the repository while the transaction was in progress. |
| They must be merged or declared to be in conflict. */ |
| else |
| { |
| dag_node_t *s_ent_node, *t_ent_node, *a_ent_node; |
| const char *new_tpath; |
| apr_int64_t sub_mergeinfo_increment; |
| |
| /* If SOURCE-ENTRY and TARGET-ENTRY are both null, that's a |
| double delete; if one of them is null, that's a delete versus |
| a modification. In any of these cases, flag a conflict. */ |
| if (s_entry == NULL || t_entry == NULL) |
| return conflict_err(conflict_p, |
| svn_path_join(target_path, |
| a_entry->name, |
| iterpool)); |
| |
| /* If any of the three entries is of type file, flag a conflict. */ |
| if (s_entry->kind == svn_node_file |
| || t_entry->kind == svn_node_file |
| || a_entry->kind == svn_node_file) |
| return conflict_err(conflict_p, |
| svn_path_join(target_path, |
| a_entry->name, |
| iterpool)); |
| |
| /* If either SOURCE-ENTRY or TARGET-ENTRY is not a direct |
| modification of ANCESTOR-ENTRY, declare a conflict. */ |
| if (strcmp(svn_fs_fs__id_node_id(s_entry->id), |
| svn_fs_fs__id_node_id(a_entry->id)) != 0 |
| || strcmp(svn_fs_fs__id_copy_id(s_entry->id), |
| svn_fs_fs__id_copy_id(a_entry->id)) != 0 |
| || strcmp(svn_fs_fs__id_node_id(t_entry->id), |
| svn_fs_fs__id_node_id(a_entry->id)) != 0 |
| || strcmp(svn_fs_fs__id_copy_id(t_entry->id), |
| svn_fs_fs__id_copy_id(a_entry->id)) != 0) |
| return conflict_err(conflict_p, |
| svn_path_join(target_path, |
| a_entry->name, |
| iterpool)); |
| |
| /* Direct modifications were made to the directory |
| ANCESTOR-ENTRY in both SOURCE and TARGET. Recursively |
| merge these modifications. */ |
| SVN_ERR(svn_fs_fs__dag_get_node(&s_ent_node, fs, |
| s_entry->id, iterpool)); |
| SVN_ERR(svn_fs_fs__dag_get_node(&t_ent_node, fs, |
| t_entry->id, iterpool)); |
| SVN_ERR(svn_fs_fs__dag_get_node(&a_ent_node, fs, |
| a_entry->id, iterpool)); |
| new_tpath = svn_path_join(target_path, t_entry->name, iterpool); |
| SVN_ERR(merge(conflict_p, new_tpath, |
| t_ent_node, s_ent_node, a_ent_node, |
| txn_id, |
| &sub_mergeinfo_increment, |
| iterpool)); |
| if (svn_fs_fs__fs_supports_mergeinfo(fs)) |
| mergeinfo_increment += sub_mergeinfo_increment; |
| } |
| |
| /* We've taken care of any possible implications E could have. |
| Remove it from source_entries, so it's easy later to loop |
| over all the source entries that didn't exist in |
| ancestor_entries. */ |
| end: |
| apr_hash_set(s_entries, key, klen, NULL); |
| } |
| |
| /* For each entry E in source but not in ancestor */ |
| for (hi = apr_hash_first(pool, s_entries); |
| hi; |
| hi = apr_hash_next(hi)) |
| { |
| svn_fs_dirent_t *s_entry, *t_entry; |
| const void *key; |
| void *val; |
| apr_ssize_t klen; |
| dag_node_t *s_ent_node; |
| |
| svn_pool_clear(iterpool); |
| |
| apr_hash_this(hi, &key, &klen, &val); |
| s_entry = val; |
| t_entry = apr_hash_get(t_entries, key, klen); |
| |
| /* If NAME exists in TARGET, declare a conflict. */ |
| if (t_entry) |
| return conflict_err(conflict_p, |
| svn_path_join(target_path, |
| t_entry->name, |
| iterpool)); |
| |
| SVN_ERR(svn_fs_fs__dag_get_node(&s_ent_node, fs, |
| s_entry->id, iterpool)); |
| if (svn_fs_fs__fs_supports_mergeinfo(fs)) |
| { |
| apr_int64_t mergeinfo_s; |
| SVN_ERR(svn_fs_fs__dag_get_mergeinfo_count(&mergeinfo_s, |
| s_ent_node, |
| iterpool)); |
| mergeinfo_increment += mergeinfo_s; |
| } |
| |
| SVN_ERR(svn_fs_fs__dag_set_entry |
| (target, s_entry->name, s_entry->id, s_entry->kind, |
| txn_id, iterpool)); |
| } |
| svn_pool_destroy(iterpool); |
| |
| SVN_ERR(svn_fs_fs__dag_get_predecessor_count(&pred_count, source, pool)); |
| SVN_ERR(update_ancestry(fs, source_id, target_id, target_path, |
| pred_count, pool)); |
| |
| if (svn_fs_fs__fs_supports_mergeinfo(fs)) |
| SVN_ERR(svn_fs_fs__dag_increment_mergeinfo_count(target, |
| mergeinfo_increment, |
| pool)); |
| |
| if (mergeinfo_increment_out) |
| *mergeinfo_increment_out = mergeinfo_increment; |
| |
| return SVN_NO_ERROR; |
| } |
| |
| /* Merge changes between an ancestor and BATON->source_node into |
| BATON->txn. The ancestor is either BATON->ancestor_node, or if |
| that is null, BATON->txn's base node. |
| |
| If the merge is successful, BATON->txn's base will become |
| BATON->source_node, and its root node will have a new ID, a |
| successor of BATON->source_node. */ |
| static svn_error_t * |
| merge_changes(dag_node_t *ancestor_node, |
| dag_node_t *source_node, |
| svn_fs_txn_t *txn, |
| svn_stringbuf_t *conflict, |
| apr_pool_t *pool) |
| { |
| dag_node_t *txn_root_node; |
| const svn_fs_id_t *source_id; |
| svn_fs_t *fs = txn->fs; |
| const char *txn_id = txn->id; |
| |
| source_id = svn_fs_fs__dag_get_id(source_node); |
| |
| SVN_ERR(svn_fs_fs__dag_txn_root(&txn_root_node, fs, txn_id, pool)); |
| |
| if (ancestor_node == NULL) |
| { |
| SVN_ERR(svn_fs_fs__dag_txn_base_root(&ancestor_node, fs, |
| txn_id, pool)); |
| } |
| |
| if (svn_fs_fs__id_eq(svn_fs_fs__dag_get_id(ancestor_node), |
| svn_fs_fs__dag_get_id(txn_root_node))) |
| { |
| /* If no changes have been made in TXN since its current base, |
| then it can't conflict with any changes since that base. So |
| we just set *both* its base and root to source, making TXN |
| in effect a repeat of source. */ |
| |
| /* ### kff todo: this would, of course, be a mighty silly thing |
| for the caller to do, and we might want to consider whether |
| this response is really appropriate. */ |
| SVN_ERR_MALFUNCTION(); |
| } |
| else |
| SVN_ERR(merge(conflict, "/", txn_root_node, |
| source_node, ancestor_node, txn_id, NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| svn_error_t * |
| svn_fs_fs__commit_txn(const char **conflict_p, |
| svn_revnum_t *new_rev_p, |
| svn_fs_txn_t *txn, |
| apr_pool_t *pool) |
| { |
| /* How do commits work in Subversion? |
| * |
| * When you're ready to commit, here's what you have: |
| * |
| * 1. A transaction, with a mutable tree hanging off it. |
| * 2. A base revision, against which TXN_TREE was made. |
| * 3. A latest revision, which may be newer than the base rev. |
| * |
| * The problem is that if latest != base, then one can't simply |
| * attach the txn root as the root of the new revision, because that |
| * would lose all the changes between base and latest. It is also |
| * not acceptable to insist that base == latest; in a busy |
| * repository, commits happen too fast to insist that everyone keep |
| * their entire tree up-to-date at all times. Non-overlapping |
| * changes should not interfere with each other. |
| * |
| * The solution is to merge the changes between base and latest into |
| * the txn tree [see the function merge()]. The txn tree is the |
| * only one of the three trees that is mutable, so it has to be the |
| * one to adjust. |
| * |
| * You might have to adjust it more than once, if a new latest |
| * revision gets committed while you were merging in the previous |
| * one. For example: |
| * |
| * 1. Jane starts txn T, based at revision 6. |
| * 2. Someone commits (or already committed) revision 7. |
| * 3. Jane's starts merging the changes between 6 and 7 into T. |
| * 4. Meanwhile, someone commits revision 8. |
| * 5. Jane finishes the 6-->7 merge. T could now be committed |
| * against a latest revision of 7, if only that were still the |
| * latest. Unfortunately, 8 is now the latest, so... |
| * 6. Jane starts merging the changes between 7 and 8 into T. |
| * 7. Meanwhile, no one commits any new revisions. Whew. |
| * 8. Jane commits T, creating revision 9, whose tree is exactly |
| * T's tree, except immutable now. |
| * |
| * Lather, rinse, repeat. |
| */ |
| |
| svn_error_t *err; |
| svn_revnum_t new_rev; |
| svn_fs_t *fs = txn->fs; |
| |
| /* Initialize output params. */ |
| new_rev = SVN_INVALID_REVNUM; |
| if (conflict_p) |
| *conflict_p = NULL; |
| |
| while (1729) |
| { |
| svn_revnum_t youngish_rev; |
| svn_fs_root_t *youngish_root; |
| dag_node_t *youngish_root_node; |
| svn_stringbuf_t *conflict = svn_stringbuf_create("", pool); |
| |
| /* Get the *current* youngest revision, in one short-lived |
| Berkeley transaction. (We don't want the revisions table |
| locked while we do the main merge.) We call it "youngish" |
| because new revisions might get committed after we've |
| obtained it. */ |
| |
| SVN_ERR(svn_fs_fs__youngest_rev(&youngish_rev, fs, pool)); |
| SVN_ERR(svn_fs_fs__revision_root(&youngish_root, fs, youngish_rev, |
| pool)); |
| |
| /* Get the dag node for the youngest revision, also in one |
| Berkeley transaction. Later we'll use it as the SOURCE |
| argument to a merge, and if the merge succeeds, this youngest |
| root node will become the new base root for the svn txn that |
| was the target of the merge (but note that the youngest rev |
| may have changed by then -- that's why we're careful to get |
| this root in its own bdb txn here). */ |
| SVN_ERR(get_root(&youngish_root_node, youngish_root, pool)); |
| |
| /* Try to merge. If the merge succeeds, the base root node of |
| TARGET's txn will become the same as youngish_root_node, so |
| any future merges will only be between that node and whatever |
| the root node of the youngest rev is by then. */ |
| err = merge_changes(NULL, youngish_root_node, txn, conflict, pool); |
| if (err) |
| { |
| if ((err->apr_err == SVN_ERR_FS_CONFLICT) && conflict_p) |
| *conflict_p = conflict->data; |
| return err; |
| } |
| txn->base_rev = youngish_rev; |
| |
| /* Try to commit. */ |
| err = svn_fs_fs__commit(&new_rev, fs, txn, pool); |
| if (err && (err->apr_err == SVN_ERR_FS_TXN_OUT_OF_DATE)) |
| { |
| /* Did someone else finish committing a new revision while we |
| were in mid-merge or mid-commit? If so, we'll need to |
| loop again to merge the new changes in, then try to |
| commit again. Or if that's not what happened, then just |
| return the error. */ |
| svn_revnum_t youngest_rev; |
| SVN_ERR(svn_fs_fs__youngest_rev(&youngest_rev, fs, pool)); |
| if (youngest_rev == youngish_rev) |
| return err; |
| else |
| svn_error_clear(err); |
| } |
| else if (err) |
| { |
| return err; |
| } |
| else |
| { |
| /* Set the return value -- our brand spankin' new revision! */ |
| *new_rev_p = new_rev; |
| return SVN_NO_ERROR; |
| } |
| } |
| |
| /* NOTREACHED */ |
| } |
| |
| |
| /* Merge changes between two nodes into a third node. Given nodes |
| SOURCE_PATH under SOURCE_ROOT, TARGET_PATH under TARGET_ROOT and |
| ANCESTOR_PATH under ANCESTOR_ROOT, modify target to contain all the |
| changes between the ancestor and source. If there are conflicts, |
| return SVN_ERR_FS_CONFLICT and set *CONFLICT_P to a textual |
| description of the offending changes. Perform any temporary |
| allocations in POOL. */ |
| static svn_error_t * |
| fs_merge(const char **conflict_p, |
| svn_fs_root_t *source_root, |
| const char *source_path, |
| svn_fs_root_t *target_root, |
| const char *target_path, |
| svn_fs_root_t *ancestor_root, |
| const char *ancestor_path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *source, *ancestor; |
| svn_fs_txn_t *txn; |
| svn_error_t *err; |
| svn_stringbuf_t *conflict = svn_stringbuf_create("", pool); |
| |
| if (! target_root->is_txn_root) |
| return SVN_FS__NOT_TXN(target_root); |
| |
| /* Paranoia. */ |
| if ((source_root->fs != ancestor_root->fs) |
| || (target_root->fs != ancestor_root->fs)) |
| { |
| return svn_error_create |
| (SVN_ERR_FS_CORRUPT, NULL, |
| _("Bad merge; ancestor, source, and target not all in same fs")); |
| } |
| |
| /* ### kff todo: is there any compelling reason to get the nodes in |
| one db transaction? Right now we don't; txn_body_get_root() gets |
| one node at a time. This will probably need to change: |
| |
| Jim Blandy <jimb@zwingli.cygnus.com> writes: |
| > svn_fs_merge needs to be a single transaction, to protect it against |
| > people deleting parents of nodes it's working on, etc. |
| */ |
| |
| /* Get the ancestor node. */ |
| SVN_ERR(get_root(&ancestor, ancestor_root, pool)); |
| |
| /* Get the source node. */ |
| SVN_ERR(get_root(&source, source_root, pool)); |
| |
| /* Open a txn for the txn root into which we're merging. */ |
| SVN_ERR(svn_fs_fs__open_txn(&txn, ancestor_root->fs, target_root->txn, |
| pool)); |
| |
| /* Merge changes between ANCESTOR and SOURCE into TXN. */ |
| err = merge_changes(ancestor, source, txn, conflict, pool); |
| if (err) |
| { |
| if ((err->apr_err == SVN_ERR_FS_CONFLICT) && conflict_p) |
| *conflict_p = conflict->data; |
| return err; |
| } |
| |
| return SVN_NO_ERROR; |
| } |
| |
| svn_error_t * |
| svn_fs_fs__deltify(svn_fs_t *fs, |
| svn_revnum_t revision, |
| apr_pool_t *pool) |
| { |
| /* Deltify is a no-op for fs_fs. */ |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Directories. */ |
| |
| /* Set *TABLE_P to a newly allocated APR hash table containing the |
| entries of the directory at PATH in ROOT. The keys of the table |
| are entry names, as byte strings, excluding the final null |
| character; the table's values are pointers to svn_fs_dirent_t |
| structures. Allocate the table and its contents in POOL. */ |
| static svn_error_t * |
| fs_dir_entries(apr_hash_t **table_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node; |
| |
| /* Get the entries for this path in the caller's pool. */ |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_dir_entries(table_p, node, pool, pool)); |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Create a new directory named PATH in ROOT. The new directory has |
| no entries, and no properties. ROOT must be the root of a |
| transaction, not a revision. Do any necessary temporary allocation |
| in POOL. */ |
| static svn_error_t * |
| fs_make_dir(svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| parent_path_t *parent_path; |
| dag_node_t *sub_dir; |
| const char *txn_id = root->txn; |
| |
| SVN_ERR(open_path(&parent_path, root, path, open_path_last_optional, |
| txn_id, pool)); |
| |
| /* Check (recursively) to see if some lock is 'reserving' a path at |
| that location, or even some child-path; if so, check that we can |
| use it. */ |
| if (root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(path, root->fs, TRUE, FALSE, |
| pool)); |
| |
| /* If there's already a sub-directory by that name, complain. This |
| also catches the case of trying to make a subdirectory named `/'. */ |
| if (parent_path->node) |
| return SVN_FS__ALREADY_EXISTS(root, path); |
| |
| /* Create the subdirectory. */ |
| SVN_ERR(make_path_mutable(root, parent_path->parent, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_make_dir(&sub_dir, |
| parent_path->parent->node, |
| parent_path_path(parent_path->parent, |
| pool), |
| parent_path->entry, |
| txn_id, |
| pool)); |
| |
| /* Add this directory to the path cache. */ |
| SVN_ERR(dag_node_cache_set(root, parent_path_path(parent_path, pool), |
| sub_dir, pool)); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(add_change(root->fs, txn_id, path, svn_fs_fs__dag_get_id(sub_dir), |
| svn_fs_path_change_add, FALSE, FALSE, SVN_INVALID_REVNUM, |
| NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Delete the node at PATH under ROOT. ROOT must be a transaction |
| root. Perform temporary allocations in POOL. */ |
| static svn_error_t * |
| fs_delete_node(svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| parent_path_t *parent_path; |
| const char *txn_id = root->txn; |
| apr_int64_t mergeinfo_count; |
| |
| if (! root->is_txn_root) |
| return SVN_FS__NOT_TXN(root); |
| |
| SVN_ERR(open_path(&parent_path, root, path, 0, txn_id, pool)); |
| |
| /* We can't remove the root of the filesystem. */ |
| if (! parent_path->parent) |
| return svn_error_create(SVN_ERR_FS_ROOT_DIR, NULL, |
| _("The root directory cannot be deleted")); |
| |
| /* Check to see if path (or any child thereof) is locked; if so, |
| check that we can use the existing lock(s). */ |
| if (root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(path, root->fs, TRUE, FALSE, |
| pool)); |
| |
| /* Make the parent directory mutable, and do the deletion. */ |
| SVN_ERR(make_path_mutable(root, parent_path->parent, path, pool)); |
| if (svn_fs_fs__fs_supports_mergeinfo(root->fs)) |
| SVN_ERR(svn_fs_fs__dag_get_mergeinfo_count(&mergeinfo_count, |
| parent_path->node, |
| pool)); |
| SVN_ERR(svn_fs_fs__dag_delete(parent_path->parent->node, |
| parent_path->entry, |
| txn_id, pool)); |
| |
| /* Remove this node and any children from the path cache. */ |
| SVN_ERR(dag_node_cache_invalidate(root, parent_path_path(parent_path, pool), |
| pool)); |
| |
| /* Update mergeinfo counts for parents */ |
| if (svn_fs_fs__fs_supports_mergeinfo(root->fs) && mergeinfo_count > 0) |
| SVN_ERR(increment_mergeinfo_up_tree(parent_path->parent, |
| -mergeinfo_count, |
| pool)); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(add_change(root->fs, txn_id, path, |
| svn_fs_fs__dag_get_id(parent_path->node), |
| svn_fs_path_change_delete, FALSE, FALSE, |
| SVN_INVALID_REVNUM, NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *SAME_P to TRUE if FS1 and FS2 have the same UUID, else set to FALSE. |
| Use POOL for temporary allocation only. |
| Note: this code is duplicated between libsvn_fs_fs and libsvn_fs_base. */ |
| static svn_error_t * |
| fs_same_p(svn_boolean_t *same_p, |
| svn_fs_t *fs1, |
| svn_fs_t *fs2, |
| apr_pool_t *pool) |
| { |
| const char *uuid1; |
| const char *uuid2; |
| |
| /* Random thought: if fetching UUIDs to compare filesystems is too |
| expensive, one solution would be to cache the UUID in each fs |
| object (copying the UUID into fs->pool, of course). */ |
| |
| SVN_ERR(fs1->vtable->get_uuid(fs1, &uuid1, pool)); |
| SVN_ERR(fs2->vtable->get_uuid(fs2, &uuid2, pool)); |
| |
| *same_p = ! strcmp(uuid1, uuid2); |
| return SVN_NO_ERROR; |
| } |
| |
| /* Copy the node at FROM_PATH under FROM_ROOT to TO_PATH under |
| TO_ROOT. If PRESERVE_HISTORY is set, then the copy is recorded in |
| the copies table. Perform temporary allocations in POOL. */ |
| static svn_error_t * |
| copy_helper(svn_fs_root_t *from_root, |
| const char *from_path, |
| svn_fs_root_t *to_root, |
| const char *to_path, |
| svn_boolean_t preserve_history, |
| apr_pool_t *pool) |
| { |
| dag_node_t *from_node; |
| parent_path_t *to_parent_path; |
| const char *txn_id = to_root->txn; |
| svn_boolean_t same_p; |
| |
| /* Use an error check, not an assert, because even the caller cannot |
| guarantee that a filesystem's UUID has not changed "on the fly". */ |
| SVN_ERR(fs_same_p(&same_p, from_root->fs, to_root->fs, pool)); |
| if (! same_p) |
| return svn_error_createf |
| (SVN_ERR_UNSUPPORTED_FEATURE, NULL, |
| _("Cannot copy between two different filesystems ('%s' and '%s')"), |
| from_root->fs->path, to_root->fs->path); |
| |
| if (from_root->is_txn_root) |
| return svn_error_create |
| (SVN_ERR_UNSUPPORTED_FEATURE, NULL, |
| _("Copy from mutable tree not currently supported")); |
| |
| /* Get the NODE for FROM_PATH in FROM_ROOT.*/ |
| SVN_ERR(get_dag(&from_node, from_root, from_path, pool)); |
| |
| /* Build up the parent path from TO_PATH in TO_ROOT. If the last |
| component does not exist, it's not that big a deal. We'll just |
| make one there. */ |
| SVN_ERR(open_path(&to_parent_path, to_root, to_path, |
| open_path_last_optional, txn_id, pool)); |
| |
| /* Check to see if path (or any child thereof) is locked; if so, |
| check that we can use the existing lock(s). */ |
| if (to_root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(to_path, to_root->fs, |
| TRUE, FALSE, pool)); |
| |
| /* If the destination node already exists as the same node as the |
| source (in other words, this operation would result in nothing |
| happening at all), just do nothing an return successfully, |
| proud that you saved yourself from a tiresome task. */ |
| if (to_parent_path->node && |
| svn_fs_fs__id_eq(svn_fs_fs__dag_get_id(from_node), |
| svn_fs_fs__dag_get_id(to_parent_path->node))) |
| return SVN_NO_ERROR; |
| |
| if (! from_root->is_txn_root) |
| { |
| svn_fs_path_change_kind_t kind; |
| dag_node_t *new_node; |
| const char *from_canonpath; |
| apr_int64_t mergeinfo_start; |
| apr_int64_t mergeinfo_end; |
| |
| /* If TO_PATH already existed prior to the copy, note that this |
| operation is a replacement, not an addition. */ |
| if (to_parent_path->node) |
| { |
| kind = svn_fs_path_change_replace; |
| if (svn_fs_fs__fs_supports_mergeinfo(to_root->fs)) |
| SVN_ERR(svn_fs_fs__dag_get_mergeinfo_count(&mergeinfo_start, |
| to_parent_path->node, |
| pool)); |
| } |
| else |
| { |
| kind = svn_fs_path_change_add; |
| mergeinfo_start = 0; |
| } |
| |
| if (svn_fs_fs__fs_supports_mergeinfo(to_root->fs)) |
| SVN_ERR(svn_fs_fs__dag_get_mergeinfo_count(&mergeinfo_end, |
| from_node, pool)); |
| |
| /* Make sure the target node's parents are mutable. */ |
| SVN_ERR(make_path_mutable(to_root, to_parent_path->parent, |
| to_path, pool)); |
| |
| /* Canonicalize the copyfrom path. */ |
| from_canonpath = svn_fs__canonicalize_abspath(from_path, pool); |
| |
| SVN_ERR(svn_fs_fs__dag_copy(to_parent_path->parent->node, |
| to_parent_path->entry, |
| from_node, |
| preserve_history, |
| from_root->rev, |
| from_canonpath, |
| txn_id, pool)); |
| |
| if (kind == svn_fs_path_change_replace) |
| SVN_ERR(dag_node_cache_invalidate(to_root, |
| parent_path_path(to_parent_path, |
| pool), pool)); |
| |
| if (svn_fs_fs__fs_supports_mergeinfo(to_root->fs) |
| && mergeinfo_start != mergeinfo_end) |
| SVN_ERR(increment_mergeinfo_up_tree(to_parent_path->parent, |
| mergeinfo_end - mergeinfo_start, |
| pool)); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(get_dag(&new_node, to_root, to_path, pool)); |
| SVN_ERR(add_change(to_root->fs, txn_id, to_path, |
| svn_fs_fs__dag_get_id(new_node), kind, FALSE, FALSE, |
| from_root->rev, from_canonpath, pool)); |
| } |
| else |
| { |
| /* See IZ Issue #436 */ |
| /* Copying from transaction roots not currently available. |
| |
| ### cmpilato todo someday: make this not so. :-) Note that |
| when copying from mutable trees, you have to make sure that |
| you aren't creating a cyclic graph filesystem, and a simple |
| referencing operation won't cut it. Currently, we should not |
| be able to reach this clause, and the interface reports that |
| this only works from immutable trees anyway, but JimB has |
| stated that this requirement need not be necessary in the |
| future. */ |
| |
| SVN_ERR_MALFUNCTION(); |
| } |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Create a copy of FROM_PATH in FROM_ROOT named TO_PATH in TO_ROOT. |
| If FROM_PATH is a directory, copy it recursively. Temporary |
| allocations are from POOL.*/ |
| static svn_error_t * |
| fs_copy(svn_fs_root_t *from_root, |
| const char *from_path, |
| svn_fs_root_t *to_root, |
| const char *to_path, |
| apr_pool_t *pool) |
| { |
| return copy_helper(from_root, from_path, to_root, to_path, TRUE, pool); |
| } |
| |
| |
| /* Create a copy of FROM_PATH in FROM_ROOT named TO_PATH in TO_ROOT. |
| If FROM_PATH is a directory, copy it recursively. No history is |
| preserved. Temporary allocations are from POOL. */ |
| static svn_error_t * |
| fs_revision_link(svn_fs_root_t *from_root, |
| svn_fs_root_t *to_root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| if (! to_root->is_txn_root) |
| return SVN_FS__NOT_TXN(to_root); |
| |
| return copy_helper(from_root, path, to_root, path, FALSE, pool); |
| } |
| |
| |
| /* Discover the copy ancestry of PATH under ROOT. Return a relevant |
| ancestor/revision combination in *PATH_P and *REV_P. Temporary |
| allocations are in POOL. */ |
| static svn_error_t * |
| fs_copied_from(svn_revnum_t *rev_p, |
| const char **path_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node; |
| const char *copyfrom_path, *copyfrom_str = NULL; |
| svn_revnum_t copyfrom_rev; |
| char *str, *last_str, *buf; |
| |
| /* Check to see if there is a cached version of this copyfrom |
| entry. */ |
| if (! root->is_txn_root) { |
| fs_rev_root_data_t *frd = root->fsap_data; |
| copyfrom_str = apr_hash_get(frd->copyfrom_cache, path, APR_HASH_KEY_STRING); |
| } |
| |
| if (copyfrom_str) |
| { |
| if (strlen(copyfrom_str) == 0) |
| { |
| /* We have a cached entry that says there is no copyfrom |
| here. */ |
| copyfrom_rev = SVN_INVALID_REVNUM; |
| copyfrom_path = NULL; |
| } |
| else |
| { |
| /* Parse the copyfrom string for our cached entry. */ |
| buf = apr_pstrdup(pool, copyfrom_str); |
| str = apr_strtok(buf, " ", &last_str); |
| copyfrom_rev = atol(str); |
| copyfrom_path = last_str; |
| } |
| } |
| else |
| { |
| /* There is no cached entry, look it up the old-fashioned |
| way. */ |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_copyfrom_rev(©from_rev, node, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_copyfrom_path(©from_path, node, pool)); |
| } |
| |
| *rev_p = copyfrom_rev; |
| *path_p = copyfrom_path; |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Files. */ |
| |
| /* Create the empty file PATH under ROOT. Temporary allocations are |
| in POOL. */ |
| static svn_error_t * |
| fs_make_file(svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| parent_path_t *parent_path; |
| dag_node_t *child; |
| const char *txn_id = root->txn; |
| |
| SVN_ERR(open_path(&parent_path, root, path, open_path_last_optional, |
| txn_id, pool)); |
| |
| /* If there's already a file by that name, complain. |
| This also catches the case of trying to make a file named `/'. */ |
| if (parent_path->node) |
| return SVN_FS__ALREADY_EXISTS(root, path); |
| |
| /* Check (non-recursively) to see if path is locked; if so, check |
| that we can use it. */ |
| if (root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(path, root->fs, FALSE, FALSE, |
| pool)); |
| |
| /* Create the file. */ |
| SVN_ERR(make_path_mutable(root, parent_path->parent, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_make_file(&child, |
| parent_path->parent->node, |
| parent_path_path(parent_path->parent, |
| pool), |
| parent_path->entry, |
| txn_id, |
| pool)); |
| |
| /* Add this file to the path cache. */ |
| SVN_ERR(dag_node_cache_set(root, parent_path_path(parent_path, pool), child, |
| pool)); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(add_change(root->fs, txn_id, path, svn_fs_fs__dag_get_id(child), |
| svn_fs_path_change_add, TRUE, FALSE, SVN_INVALID_REVNUM, |
| NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *LENGTH_P to the size of the file PATH under ROOT. Temporary |
| allocations are in POOL. */ |
| static svn_error_t * |
| fs_file_length(svn_filesize_t *length_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *file; |
| |
| /* First create a dag_node_t from the root/path pair. */ |
| SVN_ERR(get_dag(&file, root, path, pool)); |
| |
| /* Now fetch its length */ |
| SVN_ERR(svn_fs_fs__dag_file_length(length_p, file, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set DIGEST to the checksum of PATH under ROOT. Temporary |
| allocations are from POOL. */ |
| static svn_error_t * |
| fs_file_checksum(svn_checksum_t **checksum, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *file; |
| |
| SVN_ERR(get_dag(&file, root, path, pool)); |
| return svn_fs_fs__dag_file_checksum(checksum, file, pool); |
| } |
| |
| |
| /* --- Machinery for svn_fs_file_contents() --- */ |
| |
| /* Set *CONTENTS to a readable stream that will return the contents of |
| PATH under ROOT. The stream is allocated in POOL. */ |
| static svn_error_t * |
| fs_file_contents(svn_stream_t **contents, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node; |
| svn_stream_t *file_stream; |
| |
| /* First create a dag_node_t from the root/path pair. */ |
| SVN_ERR(get_dag(&node, root, path, pool)); |
| |
| /* Then create a readable stream from the dag_node_t. */ |
| SVN_ERR(svn_fs_fs__dag_get_contents(&file_stream, node, pool)); |
| |
| *contents = file_stream; |
| return SVN_NO_ERROR; |
| } |
| |
| /* --- End machinery for svn_fs_file_contents() --- */ |
| |
| |
| |
| /* --- Machinery for svn_fs_apply_textdelta() --- */ |
| |
| |
| /* Local baton type for all the helper functions below. */ |
| typedef struct txdelta_baton_t |
| { |
| /* This is the custom-built window consumer given to us by the delta |
| library; it uniquely knows how to read data from our designated |
| "source" stream, interpret the window, and write data to our |
| designated "target" stream (in this case, our repos file.) */ |
| svn_txdelta_window_handler_t interpreter; |
| void *interpreter_baton; |
| |
| /* The original file info */ |
| svn_fs_root_t *root; |
| const char *path; |
| |
| /* Derived from the file info */ |
| dag_node_t *node; |
| |
| svn_stream_t *source_stream; |
| svn_stream_t *target_stream; |
| svn_stream_t *string_stream; |
| svn_stringbuf_t *target_string; |
| |
| /* MD5 digest for the base text against which a delta is to be |
| applied, and for the resultant fulltext, respectively. Either or |
| both may be null, in which case ignored. */ |
| svn_checksum_t *base_checksum; |
| svn_checksum_t *result_checksum; |
| |
| /* Pool used by db txns */ |
| apr_pool_t *pool; |
| |
| } txdelta_baton_t; |
| |
| |
| /* ### see comment in window_consumer() regarding this function. */ |
| |
| /* Helper function of generic type `svn_write_fn_t'. Implements a |
| writable stream which appends to an svn_stringbuf_t. */ |
| static svn_error_t * |
| write_to_string(void *baton, const char *data, apr_size_t *len) |
| { |
| txdelta_baton_t *tb = (txdelta_baton_t *) baton; |
| svn_stringbuf_appendbytes(tb->target_string, data, *len); |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* The main window handler returned by svn_fs_apply_textdelta. */ |
| static svn_error_t * |
| window_consumer(svn_txdelta_window_t *window, void *baton) |
| { |
| txdelta_baton_t *tb = (txdelta_baton_t *) baton; |
| |
| /* Send the window right through to the custom window interpreter. |
| In theory, the interpreter will then write more data to |
| cb->target_string. */ |
| SVN_ERR(tb->interpreter(window, tb->interpreter_baton)); |
| |
| /* ### the write_to_string() callback for the txdelta's output stream |
| ### should be doing all the flush determination logic, not here. |
| ### in a drastic case, a window could generate a LOT more than the |
| ### maximum buffer size. we want to flush to the underlying target |
| ### stream much sooner (e.g. also in a streamy fashion). also, by |
| ### moving this logic inside the stream, the stream becomes nice |
| ### and encapsulated: it holds all the logic about buffering and |
| ### flushing. |
| ### |
| ### further: I believe the buffering should be removed from tree.c |
| ### the buffering should go into the target_stream itself, which |
| ### is defined by reps-string.c. Specifically, I think the |
| ### rep_write_contents() function will handle the buffering and |
| ### the spill to the underlying DB. by locating it there, then |
| ### anybody who gets a writable stream for FS content can take |
| ### advantage of the buffering capability. this will be important |
| ### when we export an FS API function for writing a fulltext into |
| ### the FS, rather than forcing that fulltext thru apply_textdelta. |
| */ |
| |
| /* Check to see if we need to purge the portion of the contents that |
| have been written thus far. */ |
| if ((! window) || (tb->target_string->len > WRITE_BUFFER_SIZE)) |
| { |
| apr_size_t len = tb->target_string->len; |
| SVN_ERR(svn_stream_write(tb->target_stream, |
| tb->target_string->data, |
| &len)); |
| svn_stringbuf_set(tb->target_string, ""); |
| } |
| |
| /* Is the window NULL? If so, we're done. */ |
| if (! window) |
| { |
| /* Close the internal-use stream. ### This used to be inside of |
| txn_body_fulltext_finalize_edits(), but that invoked a nested |
| Berkeley DB transaction -- scandalous! */ |
| SVN_ERR(svn_stream_close(tb->target_stream)); |
| |
| SVN_ERR(svn_fs_fs__dag_finalize_edits(tb->node, tb->result_checksum, |
| tb->pool)); |
| } |
| |
| return SVN_NO_ERROR; |
| } |
| |
| /* Helper function for fs_apply_textdelta. BATON is of type |
| txdelta_baton_t. */ |
| static svn_error_t * |
| apply_textdelta(void *baton, apr_pool_t *pool) |
| { |
| txdelta_baton_t *tb = (txdelta_baton_t *) baton; |
| parent_path_t *parent_path; |
| const char *txn_id = tb->root->txn; |
| |
| /* Call open_path with no flags, as we want this to return an error |
| if the node for which we are searching doesn't exist. */ |
| SVN_ERR(open_path(&parent_path, tb->root, tb->path, 0, txn_id, pool)); |
| |
| /* Check (non-recursively) to see if path is locked; if so, check |
| that we can use it. */ |
| if (tb->root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(tb->path, tb->root->fs, |
| FALSE, FALSE, pool)); |
| |
| /* Now, make sure this path is mutable. */ |
| SVN_ERR(make_path_mutable(tb->root, parent_path, tb->path, pool)); |
| tb->node = parent_path->node; |
| |
| if (tb->base_checksum) |
| { |
| svn_checksum_t *checksum; |
| |
| /* Until we finalize the node, its data_key points to the old |
| contents, in other words, the base text. */ |
| SVN_ERR(svn_fs_fs__dag_file_checksum(&checksum, tb->node, pool)); |
| if (!svn_checksum_match(tb->base_checksum, checksum)) |
| return svn_error_createf |
| (SVN_ERR_CHECKSUM_MISMATCH, |
| NULL, |
| _("Base checksum mismatch on '%s':\n" |
| " expected: %s\n" |
| " actual: %s\n"), |
| tb->path, |
| svn_checksum_to_cstring_display(tb->base_checksum, pool), |
| svn_checksum_to_cstring_display(checksum, pool)); |
| } |
| |
| /* Make a readable "source" stream out of the current contents of |
| ROOT/PATH; obviously, this must done in the context of a db_txn. |
| The stream is returned in tb->source_stream. */ |
| SVN_ERR(svn_fs_fs__dag_get_contents(&(tb->source_stream), |
| tb->node, tb->pool)); |
| |
| /* Make a writable "target" stream */ |
| SVN_ERR(svn_fs_fs__dag_get_edit_stream(&(tb->target_stream), tb->node, |
| tb->pool)); |
| |
| /* Make a writable "string" stream which writes data to |
| tb->target_string. */ |
| tb->target_string = svn_stringbuf_create("", tb->pool); |
| tb->string_stream = svn_stream_create(tb, tb->pool); |
| svn_stream_set_write(tb->string_stream, write_to_string); |
| |
| /* Now, create a custom window handler that uses our two streams. */ |
| svn_txdelta_apply(tb->source_stream, |
| tb->string_stream, |
| NULL, |
| tb->path, |
| tb->pool, |
| &(tb->interpreter), |
| &(tb->interpreter_baton)); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(add_change(tb->root->fs, txn_id, tb->path, |
| svn_fs_fs__dag_get_id(tb->node), |
| svn_fs_path_change_modify, TRUE, FALSE, SVN_INVALID_REVNUM, |
| NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *CONTENTS_P and *CONTENTS_BATON_P to a window handler and baton |
| that will accept text delta windows to modify the contents of PATH |
| under ROOT. Allocations are in POOL. */ |
| static svn_error_t * |
| fs_apply_textdelta(svn_txdelta_window_handler_t *contents_p, |
| void **contents_baton_p, |
| svn_fs_root_t *root, |
| const char *path, |
| svn_checksum_t *base_checksum, |
| svn_checksum_t *result_checksum, |
| apr_pool_t *pool) |
| { |
| txdelta_baton_t *tb = apr_pcalloc(pool, sizeof(*tb)); |
| |
| tb->root = root; |
| tb->path = path; |
| tb->pool = pool; |
| |
| if (base_checksum) |
| tb->base_checksum = svn_checksum_dup(base_checksum, pool); |
| else |
| tb->base_checksum = NULL; |
| |
| if (result_checksum) |
| tb->result_checksum = svn_checksum_dup(result_checksum, pool); |
| else |
| tb->result_checksum = NULL; |
| |
| |
| SVN_ERR(apply_textdelta(tb, pool)); |
| |
| *contents_p = window_consumer; |
| *contents_baton_p = tb; |
| return SVN_NO_ERROR; |
| } |
| |
| /* --- End machinery for svn_fs_apply_textdelta() --- */ |
| |
| /* --- Machinery for svn_fs_apply_text() --- */ |
| |
| /* Baton for svn_fs_apply_text(). */ |
| struct text_baton_t |
| { |
| /* The original file info */ |
| svn_fs_root_t *root; |
| const char *path; |
| |
| /* Derived from the file info */ |
| dag_node_t *node; |
| |
| /* The returned stream that will accept the file's new contents. */ |
| svn_stream_t *stream; |
| |
| /* The actual fs stream that the returned stream will write to. */ |
| svn_stream_t *file_stream; |
| |
| /* MD5 digest for the final fulltext written to the file. May |
| be null, in which case ignored. */ |
| svn_checksum_t *result_checksum; |
| |
| /* Pool used by db txns */ |
| apr_pool_t *pool; |
| }; |
| |
| |
| /* A wrapper around svn_fs_fs__dag_finalize_edits, but for |
| * fulltext data, not text deltas. Closes BATON->file_stream. |
| * |
| * Note: If you're confused about how this function relates to another |
| * of similar name, think of it this way: |
| * |
| * svn_fs_apply_textdelta() ==> ... ==> txn_body_txdelta_finalize_edits() |
| * svn_fs_apply_text() ==> ... ==> txn_body_fulltext_finalize_edits() |
| */ |
| |
| /* Write function for the publically returned stream. */ |
| static svn_error_t * |
| text_stream_writer(void *baton, |
| const char *data, |
| apr_size_t *len) |
| { |
| struct text_baton_t *tb = baton; |
| |
| /* Psst, here's some data. Pass it on to the -real- file stream. */ |
| return svn_stream_write(tb->file_stream, data, len); |
| } |
| |
| /* Close function for the publically returned stream. */ |
| static svn_error_t * |
| text_stream_closer(void *baton) |
| { |
| struct text_baton_t *tb = baton; |
| |
| /* Close the internal-use stream. ### This used to be inside of |
| txn_body_fulltext_finalize_edits(), but that invoked a nested |
| Berkeley DB transaction -- scandalous! */ |
| SVN_ERR(svn_stream_close(tb->file_stream)); |
| |
| /* Need to tell fs that we're done sending text */ |
| SVN_ERR(svn_fs_fs__dag_finalize_edits(tb->node, tb->result_checksum, |
| tb->pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Helper function for fs_apply_text. BATON is of type |
| text_baton_t. */ |
| static svn_error_t * |
| apply_text(void *baton, apr_pool_t *pool) |
| { |
| struct text_baton_t *tb = baton; |
| parent_path_t *parent_path; |
| const char *txn_id = tb->root->txn; |
| |
| /* Call open_path with no flags, as we want this to return an error |
| if the node for which we are searching doesn't exist. */ |
| SVN_ERR(open_path(&parent_path, tb->root, tb->path, 0, txn_id, pool)); |
| |
| /* Check (non-recursively) to see if path is locked; if so, check |
| that we can use it. */ |
| if (tb->root->txn_flags & SVN_FS_TXN_CHECK_LOCKS) |
| SVN_ERR(svn_fs_fs__allow_locked_operation(tb->path, tb->root->fs, |
| FALSE, FALSE, pool)); |
| |
| /* Now, make sure this path is mutable. */ |
| SVN_ERR(make_path_mutable(tb->root, parent_path, tb->path, pool)); |
| tb->node = parent_path->node; |
| |
| /* Make a writable stream for replacing the file's text. */ |
| SVN_ERR(svn_fs_fs__dag_get_edit_stream(&(tb->file_stream), tb->node, |
| tb->pool)); |
| |
| /* Create a 'returnable' stream which writes to the file_stream. */ |
| tb->stream = svn_stream_create(tb, tb->pool); |
| svn_stream_set_write(tb->stream, text_stream_writer); |
| svn_stream_set_close(tb->stream, text_stream_closer); |
| |
| /* Make a record of this modification in the changes table. */ |
| SVN_ERR(add_change(tb->root->fs, txn_id, tb->path, |
| svn_fs_fs__dag_get_id(tb->node), |
| svn_fs_path_change_modify, TRUE, FALSE, SVN_INVALID_REVNUM, |
| NULL, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Return a writable stream that will set the contents of PATH under |
| ROOT. RESULT_CHECKSUM is the MD5 checksum of the final result. |
| Temporary allocations are in POOL. */ |
| static svn_error_t * |
| fs_apply_text(svn_stream_t **contents_p, |
| svn_fs_root_t *root, |
| const char *path, |
| svn_checksum_t *result_checksum, |
| apr_pool_t *pool) |
| { |
| struct text_baton_t *tb = apr_pcalloc(pool, sizeof(*tb)); |
| |
| tb->root = root; |
| tb->path = path; |
| tb->pool = pool; |
| |
| if (result_checksum) |
| tb->result_checksum = svn_checksum_dup(result_checksum, pool); |
| else |
| tb->result_checksum = NULL; |
| |
| SVN_ERR(apply_text(tb, pool)); |
| |
| *contents_p = tb->stream; |
| return SVN_NO_ERROR; |
| } |
| |
| /* --- End machinery for svn_fs_apply_text() --- */ |
| |
| |
| /* Check if the contents of PATH1 under ROOT1 are different from the |
| contents of PATH2 under ROOT2. If they are different set |
| *CHANGED_P to TRUE, otherwise set it to FALSE. */ |
| static svn_error_t * |
| fs_contents_changed(svn_boolean_t *changed_p, |
| svn_fs_root_t *root1, |
| const char *path1, |
| svn_fs_root_t *root2, |
| const char *path2, |
| apr_pool_t *pool) |
| { |
| dag_node_t *node1, *node2; |
| |
| /* Check that roots are in the same fs. */ |
| if (root1->fs != root2->fs) |
| return svn_error_create |
| (SVN_ERR_FS_GENERAL, NULL, |
| _("Cannot compare file contents between two different filesystems")); |
| |
| /* Check that both paths are files. */ |
| { |
| svn_node_kind_t kind; |
| |
| SVN_ERR(svn_fs_fs__check_path(&kind, root1, path1, pool)); |
| if (kind != svn_node_file) |
| return svn_error_createf |
| (SVN_ERR_FS_GENERAL, NULL, _("'%s' is not a file"), path1); |
| |
| SVN_ERR(svn_fs_fs__check_path(&kind, root2, path2, pool)); |
| if (kind != svn_node_file) |
| return svn_error_createf |
| (SVN_ERR_FS_GENERAL, NULL, _("'%s' is not a file"), path2); |
| } |
| |
| SVN_ERR(get_dag(&node1, root1, path1, pool)); |
| SVN_ERR(get_dag(&node2, root2, path2, pool)); |
| SVN_ERR(svn_fs_fs__dag_things_different(NULL, changed_p, |
| node1, node2, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Public interface to computing file text deltas. */ |
| |
| static svn_error_t * |
| fs_get_file_delta_stream(svn_txdelta_stream_t **stream_p, |
| svn_fs_root_t *source_root, |
| const char *source_path, |
| svn_fs_root_t *target_root, |
| const char *target_path, |
| apr_pool_t *pool) |
| { |
| dag_node_t *source_node, *target_node; |
| |
| if (source_root && source_path) |
| SVN_ERR(get_dag(&source_node, source_root, source_path, pool)); |
| else |
| source_node = NULL; |
| SVN_ERR(get_dag(&target_node, target_root, target_path, pool)); |
| |
| /* Create a delta stream that turns the source into the target. */ |
| SVN_ERR(svn_fs_fs__dag_get_file_delta_stream(stream_p, source_node, |
| target_node, pool)); |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| |
| /* Finding Changes */ |
| |
| /* Set *CHANGED_PATHS_P to a newly allocated hash containing |
| descriptions of the paths changed under ROOT. The hash is keyed |
| with const char * paths an dhas svn_fs_path_change_t * values. Use |
| POOL for all allocations. */ |
| static svn_error_t * |
| fs_paths_changed(apr_hash_t **changed_paths_p, |
| svn_fs_root_t *root, |
| apr_pool_t *pool) |
| { |
| if (root->is_txn_root) |
| return svn_fs_fs__txn_changes_fetch(changed_paths_p, root->fs, root->txn, |
| NULL, pool); |
| else |
| { |
| fs_rev_root_data_t *frd = root->fsap_data; |
| return svn_fs_fs__paths_changed(changed_paths_p, root->fs, root->rev, |
| frd->copyfrom_cache, pool); |
| } |
| } |
| |
| |
| |
| /* Our coolio opaque history object. */ |
| typedef struct |
| { |
| /* filesystem object */ |
| svn_fs_t *fs; |
| |
| /* path and revision of historical location */ |
| const char *path; |
| svn_revnum_t revision; |
| |
| /* internal-use hints about where to resume the history search. */ |
| const char *path_hint; |
| svn_revnum_t rev_hint; |
| |
| /* FALSE until the first call to svn_fs_history_prev(). */ |
| svn_boolean_t is_interesting; |
| } fs_history_data_t; |
| |
| static svn_fs_history_t * |
| assemble_history(svn_fs_t *fs, |
| const char *path, |
| svn_revnum_t revision, |
| svn_boolean_t is_interesting, |
| const char *path_hint, |
| svn_revnum_t rev_hint, |
| apr_pool_t *pool); |
| |
| |
| /* Set *HISTORY_P to an opaque node history object which represents |
| PATH under ROOT. ROOT must be a revision root. Use POOL for all |
| allocations. */ |
| static svn_error_t * |
| fs_node_history(svn_fs_history_t **history_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| svn_node_kind_t kind; |
| |
| /* We require a revision root. */ |
| if (root->is_txn_root) |
| return svn_error_create(SVN_ERR_FS_NOT_REVISION_ROOT, NULL, NULL); |
| |
| /* And we require that the path exist in the root. */ |
| SVN_ERR(svn_fs_fs__check_path(&kind, root, path, pool)); |
| if (kind == svn_node_none) |
| return SVN_FS__NOT_FOUND(root, path); |
| |
| /* Okay, all seems well. Build our history object and return it. */ |
| *history_p = assemble_history(root->fs, |
| svn_fs__canonicalize_abspath(path, pool), |
| root->rev, FALSE, NULL, |
| SVN_INVALID_REVNUM, pool); |
| return SVN_NO_ERROR; |
| } |
| |
| /* Find the youngest copyroot for path PARENT_PATH or its parents in |
| filesystem FS, and store the copyroot in *REV_P and *PATH_P. |
| Perform all allocations in POOL. */ |
| static svn_error_t * |
| find_youngest_copyroot(svn_revnum_t *rev_p, |
| const char **path_p, |
| svn_fs_t *fs, |
| parent_path_t *parent_path, |
| apr_pool_t *pool) |
| { |
| svn_revnum_t rev_mine, rev_parent = -1; |
| const char *path_mine, *path_parent; |
| |
| /* First find our parent's youngest copyroot. */ |
| if (parent_path->parent) |
| SVN_ERR(find_youngest_copyroot(&rev_parent, &path_parent, fs, |
| parent_path->parent, pool)); |
| |
| /* Find our copyroot. */ |
| SVN_ERR(svn_fs_fs__dag_get_copyroot(&rev_mine, &path_mine, |
| parent_path->node, pool)); |
| |
| /* If a parent and child were copied to in the same revision, prefer |
| the child copy target, since it is the copy relevant to the |
| history of the child. */ |
| if (rev_mine >= rev_parent) |
| { |
| *rev_p = rev_mine; |
| *path_p = path_mine; |
| } |
| else |
| { |
| *rev_p = rev_parent; |
| *path_p = path_parent; |
| } |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| static svn_error_t *fs_closest_copy(svn_fs_root_t **root_p, |
| const char **path_p, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| svn_fs_t *fs = root->fs; |
| parent_path_t *parent_path, *copy_dst_parent_path; |
| svn_revnum_t copy_dst_rev, created_rev; |
| const char *copy_dst_path; |
| svn_fs_root_t *copy_dst_root; |
| dag_node_t *copy_dst_node; |
| svn_node_kind_t kind; |
| |
| /* Initialize return values. */ |
| *root_p = NULL; |
| *path_p = NULL; |
| |
| SVN_ERR(open_path(&parent_path, root, path, 0, NULL, pool)); |
| |
| /* Find the youngest copyroot in the path of this node-rev, which |
| will indicate the target of the innermost copy affecting the |
| node-rev. */ |
| SVN_ERR(find_youngest_copyroot(©_dst_rev, ©_dst_path, |
| fs, parent_path, pool)); |
| if (copy_dst_rev == 0) /* There are no copies affecting this node-rev. */ |
| return SVN_NO_ERROR; |
| |
| /* It is possible that this node was created from scratch at some |
| revision between COPY_DST_REV and REV. Make sure that PATH |
| exists as of COPY_DST_REV and is related to this node-rev. */ |
| SVN_ERR(svn_fs_fs__revision_root(©_dst_root, fs, copy_dst_rev, pool)); |
| SVN_ERR(svn_fs_fs__check_path(&kind, copy_dst_root, path, pool)); |
| if (kind == svn_node_none) |
| return SVN_NO_ERROR; |
| SVN_ERR(open_path(©_dst_parent_path, copy_dst_root, path, |
| 0, NULL, pool)); |
| copy_dst_node = copy_dst_parent_path->node; |
| if (! svn_fs_fs__id_check_related(svn_fs_fs__dag_get_id(copy_dst_node), |
| svn_fs_fs__dag_get_id(parent_path->node))) |
| return SVN_NO_ERROR; |
| |
| /* One final check must be done here. If you copy a directory and |
| create a new entity somewhere beneath that directory in the same |
| txn, then we can't claim that the copy affected the new entity. |
| For example, if you do: |
| |
| copy dir1 dir2 |
| create dir2/new-thing |
| commit |
| |
| then dir2/new-thing was not affected by the copy of dir1 to dir2. |
| We detect this situation by asking if PATH@COPY_DST_REV's |
| created-rev is COPY_DST_REV, and that node-revision has no |
| predecessors, then there is no relevant closest copy. |
| */ |
| SVN_ERR(svn_fs_fs__dag_get_revision(&created_rev, copy_dst_node, pool)); |
| if (created_rev == copy_dst_rev) |
| { |
| const svn_fs_id_t *pred; |
| SVN_ERR(svn_fs_fs__dag_get_predecessor_id(&pred, copy_dst_node, pool)); |
| if (! pred) |
| return SVN_NO_ERROR; |
| } |
| |
| /* The copy destination checks out. Return it. */ |
| *root_p = copy_dst_root; |
| *path_p = copy_dst_path; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *PREV_PATH and *PREV_REV to the path and revision which |
| represent the location at which PATH in FS was located immediately |
| prior to REVISION iff there was a copy operation (to PATH or one of |
| its parent directories) between that previous location and |
| PATH@REVISION. |
| |
| If there was no such copy operation in that portion of PATH's |
| history, set *PREV_PATH to NULL and *PREV_REV to SVN_INVALID_REVNUM. */ |
| static svn_error_t * |
| prev_location(const char **prev_path, |
| svn_revnum_t *prev_rev, |
| svn_fs_t *fs, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| const char *copy_path, *copy_src_path, *remainder = ""; |
| svn_fs_root_t *copy_root; |
| svn_revnum_t copy_src_rev; |
| |
| /* Ask about the most recent copy which affected PATH@REVISION. If |
| there was no such copy, we're done. */ |
| SVN_ERR(fs_closest_copy(©_root, ©_path, root, path, pool)); |
| if (! copy_root) |
| { |
| *prev_rev = SVN_INVALID_REVNUM; |
| *prev_path = NULL; |
| return SVN_NO_ERROR; |
| } |
| |
| /* Ultimately, it's not the path of the closest copy's source that |
| we care about -- it's our own path's location in the copy source |
| revision. So we'll tack the relative path that expresses the |
| difference between the copy destination and our path in the copy |
| revision onto the copy source path to determine this information. |
| |
| In other words, if our path is "/branches/my-branch/foo/bar", and |
| we know that the closest relevant copy was a copy of "/trunk" to |
| "/branches/my-branch", then that relative path under the copy |
| destination is "/foo/bar". Tacking that onto the copy source |
| path tells us that our path was located at "/trunk/foo/bar" |
| before the copy. |
| */ |
| SVN_ERR(fs_copied_from(©_src_rev, ©_src_path, |
| copy_root, copy_path, pool)); |
| if (strcmp(copy_path, path) != 0) |
| remainder = svn_path_is_child(copy_path, path, pool); |
| *prev_path = svn_path_join(copy_src_path, remainder, pool); |
| *prev_rev = copy_src_rev; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| static svn_error_t * |
| fs_node_origin_rev(svn_revnum_t *revision, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool) |
| { |
| svn_fs_t *fs = root->fs; |
| const svn_fs_id_t *given_noderev_id, *cached_origin_id; |
| const char *node_id, *dash; |
| |
| path = svn_fs__canonicalize_abspath(path, pool); |
| |
| /* Check the cache first. */ |
| SVN_ERR(fs_node_id(&given_noderev_id, root, path, pool)); |
| node_id = svn_fs_fs__id_node_id(given_noderev_id); |
| |
| /* Is it a brand new uncommitted node? */ |
| if (node_id[0] == '_') |
| { |
| *revision = SVN_INVALID_REVNUM; |
| return SVN_NO_ERROR; |
| } |
| |
| /* Maybe this is a new-style node ID that just has the revision |
| sitting right in it. */ |
| dash = strchr(node_id, '-'); |
| if (dash && *(dash+1)) |
| { |
| *revision = SVN_STR_TO_REV(dash + 1); |
| return SVN_NO_ERROR; |
| } |
| |
| /* OK, it's an old-style ID? Maybe it's cached. */ |
| SVN_ERR(svn_fs_fs__get_node_origin(&cached_origin_id, |
| fs, |
| node_id, |
| pool)); |
| if (cached_origin_id != NULL) |
| { |
| *revision = svn_fs_fs__id_rev(cached_origin_id); |
| return SVN_NO_ERROR; |
| } |
| |
| { |
| /* Ah well, the answer isn't in the ID itself or in the cache. |
| Let's actually calculate it, then. */ |
| svn_fs_root_t *curroot = root; |
| apr_pool_t *subpool = svn_pool_create(pool); |
| apr_pool_t *predidpool = svn_pool_create(pool); |
| svn_stringbuf_t *lastpath = svn_stringbuf_create(path, pool); |
| svn_revnum_t lastrev = SVN_INVALID_REVNUM; |
| dag_node_t *node; |
| const svn_fs_id_t *pred_id; |
| |
| /* Walk the closest-copy chain back to the first copy in our history. |
| |
| NOTE: We merely *assume* that this is faster than walking the |
| predecessor chain, because we *assume* that copies of parent |
| directories happen less often than modifications to a given item. */ |
| while (1) |
| { |
| svn_revnum_t currev; |
| const char *curpath = lastpath->data; |
| |
| svn_pool_clear(subpool); |
| |
| /* Get a root pointing to LASTREV. (The first time around, |
| LASTREV is invalid, but that's cool because CURROOT is |
| already initialized.) */ |
| if (SVN_IS_VALID_REVNUM(lastrev)) |
| SVN_ERR(svn_fs_fs__revision_root(&curroot, fs, lastrev, subpool)); |
| |
| /* Find the previous location using the closest-copy shortcut. */ |
| SVN_ERR(prev_location(&curpath, &currev, fs, curroot, curpath, |
| subpool)); |
| if (! curpath) |
| break; |
| |
| /* Update our LASTPATH and LASTREV variables (which survive |
| SUBPOOL). */ |
| svn_stringbuf_set(lastpath, curpath); |
| lastrev = currev; |
| } |
| |
| /* Walk the predecessor links back to origin. */ |
| SVN_ERR(fs_node_id(&pred_id, curroot, lastpath->data, predidpool)); |
| while (pred_id) |
| { |
| svn_pool_clear(subpool); |
| SVN_ERR(svn_fs_fs__dag_get_node(&node, fs, pred_id, subpool)); |
| |
| /* Why not just fetch the predecessor ID in PREDIDPOOL? |
| Because svn_fs_fs__dag_get_predecessor_id() doesn't |
| necessarily honor the passed-in pool, and might return a |
| value cached in the node (which is allocated in |
| SUBPOOL... maybe). */ |
| svn_pool_clear(predidpool); |
| SVN_ERR(svn_fs_fs__dag_get_predecessor_id(&pred_id, node, subpool)); |
| pred_id = pred_id ? svn_fs_fs__id_copy(pred_id, predidpool) : NULL; |
| } |
| |
| /* When we get here, NODE should be the first node-revision in our |
| chain. */ |
| SVN_ERR(svn_fs_fs__dag_get_revision(revision, node, pool)); |
| |
| /* Wow, I don't want to have to do all that again. Let's cache |
| the result. */ |
| if (node_id[0] != '_') |
| SVN_ERR(svn_fs_fs__set_node_origin(fs, node_id, |
| svn_fs_fs__dag_get_id(node), pool)); |
| |
| svn_pool_destroy(subpool); |
| svn_pool_destroy(predidpool); |
| return SVN_NO_ERROR; |
| } |
| } |
| |
| |
| struct history_prev_args |
| { |
| svn_fs_history_t **prev_history_p; |
| svn_fs_history_t *history; |
| svn_boolean_t cross_copies; |
| apr_pool_t *pool; |
| }; |
| |
| |
| static svn_error_t * |
| history_prev(void *baton, apr_pool_t *pool) |
| { |
| struct history_prev_args *args = baton; |
| svn_fs_history_t **prev_history = args->prev_history_p; |
| svn_fs_history_t *history = args->history; |
| fs_history_data_t *fhd = history->fsap_data; |
| const char *commit_path, *src_path, *path = fhd->path; |
| svn_revnum_t commit_rev, src_rev, dst_rev; |
| svn_revnum_t revision = fhd->revision; |
| apr_pool_t *retpool = args->pool; |
| svn_fs_t *fs = fhd->fs; |
| parent_path_t *parent_path; |
| dag_node_t *node; |
| svn_fs_root_t *root; |
| const svn_fs_id_t *node_id; |
| svn_boolean_t reported = fhd->is_interesting; |
| svn_boolean_t retry = FALSE; |
| svn_revnum_t copyroot_rev; |
| const char *copyroot_path; |
| |
| /* Initialize our return value. */ |
| *prev_history = NULL; |
| |
| /* If our last history report left us hints about where to pickup |
| the chase, then our last report was on the destination of a |
| copy. If we are crossing copies, start from those locations, |
| otherwise, we're all done here. */ |
| if (fhd->path_hint && SVN_IS_VALID_REVNUM(fhd->rev_hint)) |
| { |
| reported = FALSE; |
| if (! args->cross_copies) |
| return SVN_NO_ERROR; |
| path = fhd->path_hint; |
| revision = fhd->rev_hint; |
| } |
| |
| /* Construct a ROOT for the current revision. */ |
| SVN_ERR(svn_fs_fs__revision_root(&root, fs, revision, pool)); |
| |
| /* Open PATH/REVISION, and get its node and a bunch of other |
| goodies. */ |
| SVN_ERR(open_path(&parent_path, root, path, 0, NULL, pool)); |
| node = parent_path->node; |
| node_id = svn_fs_fs__dag_get_id(node); |
| commit_path = svn_fs_fs__dag_get_created_path(node); |
| SVN_ERR(svn_fs_fs__dag_get_revision(&commit_rev, node, pool)); |
| |
| /* The Subversion filesystem is written in such a way that a given |
| line of history may have at most one interesting history point |
| per filesystem revision. Either that node was edited (and |
| possibly copied), or it was copied but not edited. And a copy |
| source cannot be from the same revision as its destination. So, |
| if our history revision matches its node's commit revision, we |
| know that ... */ |
| if (revision == commit_rev) |
| { |
| if (! reported) |
| { |
| /* ... we either have not yet reported on this revision (and |
| need now to do so) ... */ |
| *prev_history = assemble_history(fs, |
| apr_pstrdup(retpool, commit_path), |
| commit_rev, TRUE, NULL, |
| SVN_INVALID_REVNUM, retpool); |
| return SVN_NO_ERROR; |
| } |
| else |
| { |
| /* ... or we *have* reported on this revision, and must now |
| progress toward this node's predecessor (unless there is |
| no predecessor, in which case we're all done!). */ |
| const svn_fs_id_t *pred_id; |
| |
| SVN_ERR(svn_fs_fs__dag_get_predecessor_id(&pred_id, node, pool)); |
| if (! pred_id) |
| return SVN_NO_ERROR; |
| |
| /* Replace NODE and friends with the information from its |
| predecessor. */ |
| SVN_ERR(svn_fs_fs__dag_get_node(&node, fs, pred_id, pool)); |
| node_id = svn_fs_fs__dag_get_id(node); |
| commit_path = svn_fs_fs__dag_get_created_path(node); |
| SVN_ERR(svn_fs_fs__dag_get_revision(&commit_rev, node, pool)); |
| } |
| } |
| |
| /* Find the youngest copyroot in the path of this node, including |
| itself. */ |
| SVN_ERR(find_youngest_copyroot(©root_rev, ©root_path, fs, |
| parent_path, pool)); |
| |
| /* Initialize some state variables. */ |
| src_path = NULL; |
| src_rev = SVN_INVALID_REVNUM; |
| dst_rev = SVN_INVALID_REVNUM; |
| |
| if (copyroot_rev > commit_rev) |
| { |
| const char *remainder; |
| const char *copy_dst, *copy_src; |
| svn_fs_root_t *copyroot_root; |
| |
| SVN_ERR(svn_fs_fs__revision_root(©root_root, fs, copyroot_rev, |
| pool)); |
| SVN_ERR(get_dag(&node, copyroot_root, copyroot_path, pool)); |
| copy_dst = svn_fs_fs__dag_get_created_path(node); |
| |
| /* If our current path was the very destination of the copy, |
| then our new current path will be the copy source. If our |
| current path was instead the *child* of the destination of |
| the copy, then figure out its previous location by taking its |
| path relative to the copy destination and appending that to |
| the copy source. Finally, if our current path doesn't meet |
| one of these other criteria ... ### for now just fallback to |
| the old copy hunt algorithm. */ |
| if (strcmp(path, copy_dst) == 0) |
| remainder = ""; |
| else |
| remainder = svn_path_is_child(copy_dst, path, pool); |
| |
| if (remainder) |
| { |
| /* If we get here, then our current path is the destination |
| of, or the child of the destination of, a copy. Fill |
| in the return values and get outta here. */ |
| SVN_ERR(svn_fs_fs__dag_get_copyfrom_rev(&src_rev, node, pool)); |
| SVN_ERR(svn_fs_fs__dag_get_copyfrom_path(©_src, node, pool)); |
| |
| dst_rev = copyroot_rev; |
| src_path = svn_path_join(copy_src, remainder, pool); |
| } |
| } |
| |
| /* If we calculated a copy source path and revision, we'll make a |
| 'copy-style' history object. */ |
| if (src_path && SVN_IS_VALID_REVNUM(src_rev)) |
| { |
| /* It's possible for us to find a copy location that is the same |
| as the history point we've just reported. If that happens, |
| we simply need to take another trip through this history |
| search. */ |
| if ((dst_rev == revision) && reported) |
| retry = TRUE; |
| |
| *prev_history = assemble_history(fs, apr_pstrdup(retpool, path), |
| dst_rev, retry ? FALSE : TRUE, |
| src_path, src_rev, retpool); |
| } |
| else |
| { |
| *prev_history = assemble_history(fs, apr_pstrdup(retpool, commit_path), |
| commit_rev, TRUE, NULL, |
| SVN_INVALID_REVNUM, retpool); |
| } |
| |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Implement svn_fs_history_prev, set *PREV_HISTORY_P to a new |
| svn_fs_history_t object that represents the predecessory of |
| HISTORY. If CROSS_COPIES is true, *PREV_HISTORY_P may be related |
| only through a copy operation. Perform all allocations in POOL. */ |
| static svn_error_t * |
| fs_history_prev(svn_fs_history_t **prev_history_p, |
| svn_fs_history_t *history, |
| svn_boolean_t cross_copies, |
| apr_pool_t *pool) |
| { |
| svn_fs_history_t *prev_history = NULL; |
| fs_history_data_t *fhd = history->fsap_data; |
| svn_fs_t *fs = fhd->fs; |
| |
| /* Special case: the root directory changes in every single |
| revision, no exceptions. And, the root can't be the target (or |
| child of a target -- duh) of a copy. So, if that's our path, |
| then we need only decrement our revision by 1, and there you go. */ |
| if (strcmp(fhd->path, "/") == 0) |
| { |
| if (! fhd->is_interesting) |
| prev_history = assemble_history(fs, "/", fhd->revision, |
| 1, NULL, SVN_INVALID_REVNUM, pool); |
| else if (fhd->revision > 0) |
| prev_history = assemble_history(fs, "/", fhd->revision - 1, |
| 1, NULL, SVN_INVALID_REVNUM, pool); |
| } |
| else |
| { |
| struct history_prev_args args; |
| prev_history = history; |
| |
| while (1) |
| { |
| args.prev_history_p = &prev_history; |
| args.history = prev_history; |
| args.cross_copies = cross_copies; |
| args.pool = pool; |
| SVN_ERR(history_prev(&args, pool)); |
| |
| if (! prev_history) |
| break; |
| fhd = prev_history->fsap_data; |
| if (fhd->is_interesting) |
| break; |
| } |
| } |
| |
| *prev_history_p = prev_history; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Set *PATH and *REVISION to the path and revision for the HISTORY |
| object. Use POOL for all allocations. */ |
| static svn_error_t * |
| fs_history_location(const char **path, |
| svn_revnum_t *revision, |
| svn_fs_history_t *history, |
| apr_pool_t *pool) |
| { |
| fs_history_data_t *fhd = history->fsap_data; |
| |
| *path = apr_pstrdup(pool, fhd->path); |
| *revision = fhd->revision; |
| return SVN_NO_ERROR; |
| } |
| |
| static history_vtable_t history_vtable = { |
| fs_history_prev, |
| fs_history_location |
| }; |
| |
| /* Return a new history object (marked as "interesting") for PATH and |
| REVISION, allocated in POOL, and with its members set to the values |
| of the parameters provided. Note that PATH and PATH_HINT are not |
| duped into POOL -- it is the responsibility of the caller to ensure |
| that this happens. */ |
| static svn_fs_history_t * |
| assemble_history(svn_fs_t *fs, |
| const char *path, |
| svn_revnum_t revision, |
| svn_boolean_t is_interesting, |
| const char *path_hint, |
| svn_revnum_t rev_hint, |
| apr_pool_t *pool) |
| { |
| svn_fs_history_t *history = apr_pcalloc(pool, sizeof(*history)); |
| fs_history_data_t *fhd = apr_pcalloc(pool, sizeof(*fhd)); |
| fhd->path = path; |
| fhd->revision = revision; |
| fhd->is_interesting = is_interesting; |
| fhd->path_hint = path_hint; |
| fhd->rev_hint = rev_hint; |
| fhd->fs = fs; |
| |
| history->vtable = &history_vtable; |
| history->fsap_data = fhd; |
| return history; |
| } |
| |
| |
| /* mergeinfo queries */ |
| |
| /* DIR_DAG is a directory DAG node which has mergeinfo in its |
| descendants. This function iterates over its children. For each |
| child with immediate mergeinfo, it adds its mergeinfo to |
| RESULT_CATALOG. appropriate arguments. For each child with |
| descendants with mergeinfo, it recurses. Note that it does *not* |
| call the action on the path for DIR_DAG itself. |
| |
| POOL is used for temporary allocations, including the mergeinfo |
| hashes passed to actions; RESULT_POOL is used for the mergeinfo added |
| to RESULT_CATALOG. |
| */ |
| static svn_error_t * |
| crawl_directory_dag_for_mergeinfo(svn_fs_root_t *root, |
| const char *this_path, |
| dag_node_t *dir_dag, |
| svn_mergeinfo_catalog_t result_catalog, |
| apr_pool_t *pool, |
| apr_pool_t *result_pool) |
| { |
| apr_hash_t *entries; |
| apr_hash_index_t *hi; |
| apr_pool_t *iterpool = svn_pool_create(pool); |
| |
| SVN_ERR(svn_fs_fs__dag_dir_entries(&entries, dir_dag, pool, pool)); |
| |
| for (hi = apr_hash_first(pool, entries); |
| hi; |
| hi = apr_hash_next(hi)) |
| { |
| void *val; |
| svn_fs_dirent_t *dirent; |
| const char *kid_path; |
| dag_node_t *kid_dag; |
| svn_boolean_t has_mergeinfo, go_down; |
| |
| svn_pool_clear(iterpool); |
| |
| apr_hash_this(hi, NULL, NULL, &val); |
| dirent = val; |
| kid_path = svn_path_join(this_path, dirent->name, iterpool); |
| SVN_ERR(get_dag(&kid_dag, root, kid_path, iterpool)); |
| |
| SVN_ERR(svn_fs_fs__dag_has_mergeinfo(&has_mergeinfo, kid_dag, iterpool)); |
| SVN_ERR(svn_fs_fs__dag_has_descendants_with_mergeinfo(&go_down, kid_dag, |
| iterpool)); |
| |
| if (has_mergeinfo) |
| { |
| /* Save this partisular node's mergeinfo. */ |
| apr_hash_t *proplist; |
| svn_mergeinfo_t kid_mergeinfo; |
| svn_string_t *mergeinfo_string; |
| |
| SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, kid_dag, iterpool)); |
| mergeinfo_string = apr_hash_get(proplist, SVN_PROP_MERGEINFO, |
| APR_HASH_KEY_STRING); |
| if (!mergeinfo_string) |
| { |
| svn_string_t *idstr = svn_fs_fs__id_unparse(dirent->id, iterpool); |
| return svn_error_createf |
| (SVN_ERR_FS_CORRUPT, NULL, |
| _("Node-revision #'%s' claims to have mergeinfo but doesn't"), |
| idstr->data); |
| } |
| |
| SVN_ERR(svn_mergeinfo_parse(&kid_mergeinfo, |
| mergeinfo_string->data, |
| result_pool)); |
| |
| apr_hash_set(result_catalog, |
| apr_pstrdup(result_pool, kid_path), |
| APR_HASH_KEY_STRING, |
| kid_mergeinfo); |
| } |
| |
| if (go_down) |
| SVN_ERR(crawl_directory_dag_for_mergeinfo(root, |
| kid_path, |
| kid_dag, |
| result_catalog, |
| iterpool, |
| result_pool)); |
| } |
| |
| svn_pool_destroy(iterpool); |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Helper for get_mergeinfo_for_path() that will append PATH_PIECE |
| (which may contain slashes) to each path that exists in the |
| mergeinfo INPUT, and return a new mergeinfo in *OUTPUT. Deep |
| copies the values. Perform all allocations in POOL. */ |
| static svn_error_t * |
| append_to_merged_froms(svn_mergeinfo_t *output, |
| svn_mergeinfo_t input, |
| const char *path_piece, |
| apr_pool_t *pool) |
| { |
| apr_hash_index_t *hi; |
| *output = apr_hash_make(pool); |
| |
| for (hi = apr_hash_first(pool, input); hi; hi = apr_hash_next(hi)) |
| { |
| const void *key; |
| void *val; |
| char *newpath; |
| |
| apr_hash_this(hi, &key, NULL, &val); |
| newpath = svn_path_join((const char *) key, path_piece, pool); |
| apr_hash_set(*output, newpath, APR_HASH_KEY_STRING, |
| svn_rangelist_dup((apr_array_header_t *) val, pool)); |
| } |
| |
| return SVN_NO_ERROR; |
| } |
| |
| /* Calculates the mergeinfo for PATH under REV_ROOT using inheritance |
| type INHERIT. Returns it in *MERGEINFO, or NULL if there is none. |
| The result is allocated in RESULT_POOL; POOL is used for temporary |
| allocations. |
| */ |
| static svn_error_t * |
| get_mergeinfo_for_path(svn_mergeinfo_t *mergeinfo, |
| svn_fs_root_t *rev_root, |
| const char *path, |
| svn_mergeinfo_inheritance_t inherit, |
| apr_pool_t *pool, |
| apr_pool_t *result_pool) |
| { |
| parent_path_t *parent_path, *nearest_ancestor; |
| apr_hash_t *proplist; |
| svn_string_t *mergeinfo_string; |
| apr_pool_t *iterpool = svn_pool_create(pool); |
| |
| *mergeinfo = NULL; |
| |
| path = svn_fs__canonicalize_abspath(path, pool); |
| |
| SVN_ERR(open_path(&parent_path, rev_root, path, 0, NULL, pool)); |
| |
| if (inherit == svn_mergeinfo_nearest_ancestor && ! parent_path->parent) |
| return SVN_NO_ERROR; |
| |
| if (inherit == svn_mergeinfo_nearest_ancestor) |
| nearest_ancestor = parent_path->parent; |
| else |
| nearest_ancestor = parent_path; |
| |
| while (TRUE) |
| { |
| svn_boolean_t has_mergeinfo; |
| |
| svn_pool_clear(iterpool); |
| |
| SVN_ERR(svn_fs_fs__dag_has_mergeinfo(&has_mergeinfo, |
| nearest_ancestor->node, iterpool)); |
| if (has_mergeinfo) |
| break; |
| |
| /* No need to loop if we're looking for explicit mergeinfo. */ |
| if (inherit == svn_mergeinfo_explicit) |
| { |
| svn_pool_destroy(iterpool); |
| return SVN_NO_ERROR; |
| } |
| |
| nearest_ancestor = nearest_ancestor->parent; |
| |
| /* Run out? There's no mergeinfo. */ |
| if (!nearest_ancestor) |
| { |
| svn_pool_destroy(iterpool); |
| return SVN_NO_ERROR; |
| } |
| } |
| svn_pool_destroy(iterpool); |
| |
| SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, nearest_ancestor->node, pool)); |
| mergeinfo_string = apr_hash_get(proplist, SVN_PROP_MERGEINFO, |
| APR_HASH_KEY_STRING); |
| if (!mergeinfo_string) |
| return svn_error_createf |
| (SVN_ERR_FS_CORRUPT, NULL, |
| _("Node-revision '%s@%ld' claims to have mergeinfo but doesn't"), |
| parent_path_path(nearest_ancestor, pool), rev_root->rev); |
| |
| if (nearest_ancestor == parent_path) |
| { |
| /* We can return this directly. */ |
| SVN_ERR(svn_mergeinfo_parse(mergeinfo, |
| mergeinfo_string->data, |
| result_pool)); |
| return SVN_NO_ERROR; |
| } |
| else |
| { |
| svn_mergeinfo_t temp_mergeinfo; |
| |
| /* We're inheriting this, so we need to (a) remove |
| non-inheritable ranges and (b) add the rest of the path to |
| the merged-from paths. |
| */ |
| |
| SVN_ERR(svn_mergeinfo_parse(&temp_mergeinfo, |
| mergeinfo_string->data, |
| pool)); |
| SVN_ERR(svn_mergeinfo_inheritable(&temp_mergeinfo, |
| temp_mergeinfo, |
| NULL, SVN_INVALID_REVNUM, |
| SVN_INVALID_REVNUM, pool)); |
| |
| SVN_ERR(append_to_merged_froms(mergeinfo, |
| temp_mergeinfo, |
| parent_path_relpath(parent_path, |
| nearest_ancestor, |
| pool), |
| result_pool)); |
| return SVN_NO_ERROR; |
| } |
| } |
| |
| /* Adds mergeinfo for each descendant of PATH (but not PATH itself) |
| under ROOT to RESULT_CATALOG. Returned values are allocated in |
| RESULT_POOL; temporary values in POOL. */ |
| static svn_error_t * |
| add_descendant_mergeinfo(svn_mergeinfo_catalog_t result_catalog, |
| svn_fs_root_t *root, |
| const char *path, |
| apr_pool_t *pool, |
| apr_pool_t *result_pool) |
| { |
| dag_node_t *this_dag; |
| svn_boolean_t go_down; |
| |
| SVN_ERR(get_dag(&this_dag, root, path, pool)); |
| SVN_ERR(svn_fs_fs__dag_has_descendants_with_mergeinfo(&go_down, |
| this_dag, |
| pool)); |
| if (go_down) |
| SVN_ERR(crawl_directory_dag_for_mergeinfo(root, |
| path, |
| this_dag, |
| result_catalog, |
| pool, |
| result_pool)); |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Get the mergeinfo for a set of paths, returned in |
| *MERGEINFO_CATALOG. Returned values are allocated in POOL, while |
| temporary values are allocated in a sub-pool. */ |
| static svn_error_t * |
| get_mergeinfos_for_paths(svn_fs_root_t *root, |
| svn_mergeinfo_catalog_t *mergeinfo_catalog, |
| const apr_array_header_t *paths, |
| svn_mergeinfo_inheritance_t inherit, |
| svn_boolean_t include_descendants, |
| apr_pool_t *pool) |
| { |
| svn_mergeinfo_catalog_t result_catalog = apr_hash_make(pool); |
| apr_pool_t *iterpool = svn_pool_create(pool); |
| int i; |
| |
| for (i = 0; i < paths->nelts; i++) |
| { |
| svn_mergeinfo_t path_mergeinfo; |
| const char *path = APR_ARRAY_IDX(paths, i, const char *); |
| |
| svn_pool_clear(iterpool); |
| |
| SVN_ERR(get_mergeinfo_for_path(&path_mergeinfo, root, path, |
| inherit, iterpool, pool)); |
| if (path_mergeinfo) |
| apr_hash_set(result_catalog, path, APR_HASH_KEY_STRING, |
| path_mergeinfo); |
| if (include_descendants) |
| SVN_ERR(add_descendant_mergeinfo(result_catalog, root, path, iterpool, |
| pool)); |
| } |
| svn_pool_destroy(iterpool); |
| |
| *mergeinfo_catalog = result_catalog; |
| return SVN_NO_ERROR; |
| } |
| |
| |
| /* Implements svn_fs_get_mergeinfo. */ |
| static svn_error_t * |
| fs_get_mergeinfo(svn_mergeinfo_catalog_t *catalog, |
| svn_fs_root_t *root, |
| const apr_array_header_t *paths, |
| svn_mergeinfo_inheritance_t inherit, |
| svn_boolean_t include_descendants, |
| apr_pool_t *pool) |
| { |
| fs_fs_data_t *ffd = root->fs->fsap_data; |
| |
| /* We require a revision root. */ |
| if (root->is_txn_root) |
| return svn_error_create(SVN_ERR_FS_NOT_REVISION_ROOT, NULL, NULL); |
| |
| /* We have to actually be able to find the mergeinfo metadata! */ |
| if (! svn_fs_fs__fs_supports_mergeinfo(root->fs)) |
| return svn_error_createf |
| (SVN_ERR_UNSUPPORTED_FEATURE, NULL, |
| _("Querying mergeinfo requires version %d of the FSFS filesystem " |
| "schema; filesystem '%s' uses only version %d"), |
| SVN_FS_FS__MIN_MERGEINFO_FORMAT, root->fs->path, ffd->format); |
| |
| /* Retrieve a path -> mergeinfo hash mapping. */ |
| return get_mergeinfos_for_paths(root, catalog, paths, |
| inherit, include_descendants, |
| pool); |
| } |
| |
| /* The vtable associated with root objects. */ |
| static root_vtable_t root_vtable = { |
| fs_paths_changed, |
| svn_fs_fs__check_path, |
| fs_node_history, |
| fs_node_id, |
| svn_fs_fs__node_created_rev, |
| fs_node_origin_rev, |
| fs_node_created_path, |
| fs_delete_node, |
| fs_copied_from, |
| fs_closest_copy, |
| fs_node_prop, |
| fs_node_proplist, |
| fs_change_node_prop, |
| fs_props_changed, |
| fs_dir_entries, |
| fs_make_dir, |
| fs_copy, |
| fs_revision_link, |
| fs_file_length, |
| fs_file_checksum, |
| fs_file_contents, |
| fs_make_file, |
| fs_apply_textdelta, |
| fs_apply_text, |
| fs_contents_changed, |
| fs_get_file_delta_stream, |
| fs_merge, |
| fs_get_mergeinfo |
| }; |
| |
| /* Construct a new root object in FS, allocated from POOL. */ |
| static svn_fs_root_t * |
| make_root(svn_fs_t *fs, |
| apr_pool_t *pool) |
| { |
| /* We create a subpool for each root object to allow us to implement |
| svn_fs_close_root. */ |
| apr_pool_t *subpool = svn_pool_create(pool); |
| svn_fs_root_t *root = apr_pcalloc(subpool, sizeof(*root)); |
| |
| root->fs = fs; |
| root->pool = subpool; |
| root->vtable = &root_vtable; |
| |
| return root; |
| } |
| |
| |
| /* Construct a root object referring to the root of REVISION in FS, |
| whose root directory is ROOT_DIR. Create the new root in POOL. */ |
| static svn_fs_root_t * |
| make_revision_root(svn_fs_t *fs, |
| svn_revnum_t rev, |
| dag_node_t *root_dir, |
| apr_pool_t *pool) |
| { |
| svn_fs_root_t *root = make_root(fs, pool); |
| fs_rev_root_data_t *frd = apr_pcalloc(root->pool, sizeof(*frd)); |
| |
| root->is_txn_root = FALSE; |
| root->rev = rev; |
| |
| frd->root_dir = root_dir; |
| frd->copyfrom_cache = apr_hash_make(root->pool); |
| |
| root->fsap_data = frd; |
| |
| return root; |
| } |
| |
| |
| /* Construct a root object referring to the root of the transaction |
| named TXN and based on revision BASE_REV in FS, with FLAGS to |
| describe transaction's behavior. Create the new root in POOL. */ |
| static svn_error_t * |
| make_txn_root(svn_fs_root_t **root_p, |
| svn_fs_t *fs, |
| const char *txn, |
| svn_revnum_t base_rev, |
| apr_uint32_t flags, |
| apr_pool_t *pool) |
| { |
| svn_fs_root_t *root = make_root(fs, pool); |
| fs_txn_root_data_t *frd = apr_pcalloc(root->pool, sizeof(*frd)); |
| |
| root->is_txn_root = TRUE; |
| root->txn = apr_pstrdup(root->pool, txn); |
| root->txn_flags = flags; |
| root->rev = base_rev; |
| |
| /* Because this cache actually tries to invalidate elements, keep |
| the number of elements per page down. |
| |
| Note that since dag_node_cache_invalidate uses svn_cache_iter, |
| this *cannot* be a memcache-based cache. */ |
| SVN_ERR(svn_cache_create_inprocess(&(frd->txn_node_cache), |
| svn_fs_fs__dag_dup_for_cache, |
| APR_HASH_KEY_STRING, |
| 32, 20, FALSE, root->pool)); |
| |
| root->fsap_data = frd; |
| |
| *root_p = root; |
| return SVN_NO_ERROR; |
| } |