summaryrefslogtreecommitdiff
path: root/subversion/libsvn_fs_base/bdb/nodes-table.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/libsvn_fs_base/bdb/nodes-table.c')
-rw-r--r--subversion/libsvn_fs_base/bdb/nodes-table.c259
1 files changed, 259 insertions, 0 deletions
diff --git a/subversion/libsvn_fs_base/bdb/nodes-table.c b/subversion/libsvn_fs_base/bdb/nodes-table.c
new file mode 100644
index 0000000000000..d0f475fe716c2
--- /dev/null
+++ b/subversion/libsvn_fs_base/bdb/nodes-table.c
@@ -0,0 +1,259 @@
+/* nodes-table.c : working with the `nodes' table
+ *
+ * ====================================================================
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ * ====================================================================
+ */
+
+#include <string.h>
+#include <assert.h>
+
+#include "bdb_compat.h"
+
+#include "svn_fs.h"
+#include "private/svn_skel.h"
+
+#include "../fs.h"
+#include "../err.h"
+#include "dbt.h"
+#include "../util/fs_skels.h"
+#include "../trail.h"
+#include "../key-gen.h"
+#include "../id.h"
+#include "../../libsvn_fs/fs-loader.h"
+#include "bdb-err.h"
+#include "nodes-table.h"
+
+#include "svn_private_config.h"
+
+
+
+/* Opening/creating the `nodes' table. */
+
+
+int
+svn_fs_bdb__open_nodes_table(DB **nodes_p,
+ DB_ENV *env,
+ svn_boolean_t create)
+{
+ const u_int32_t open_flags = (create ? (DB_CREATE | DB_EXCL) : 0);
+ DB *nodes;
+
+ BDB_ERR(svn_fs_bdb__check_version());
+ BDB_ERR(db_create(&nodes, env, 0));
+ BDB_ERR((nodes->open)(SVN_BDB_OPEN_PARAMS(nodes, NULL),
+ "nodes", 0, DB_BTREE,
+ open_flags, 0666));
+
+ /* Create the `next-key' table entry (use '1' because '0' is
+ reserved for the root directory to use). */
+ if (create)
+ {
+ DBT key, value;
+
+ BDB_ERR(nodes->put(nodes, 0,
+ svn_fs_base__str_to_dbt(&key, NEXT_KEY_KEY),
+ svn_fs_base__str_to_dbt(&value, "1"), 0));
+ }
+
+ *nodes_p = nodes;
+ return 0;
+}
+
+
+
+/* Choosing node revision ID's. */
+
+svn_error_t *
+svn_fs_bdb__new_node_id(svn_fs_id_t **id_p,
+ svn_fs_t *fs,
+ const char *copy_id,
+ const char *txn_id,
+ trail_t *trail,
+ apr_pool_t *pool)
+{
+ base_fs_data_t *bfd = fs->fsap_data;
+ DBT query, result;
+ apr_size_t len;
+ char next_key[MAX_KEY_SIZE];
+ int db_err;
+ const char *next_node_id;
+
+ SVN_ERR_ASSERT(txn_id);
+
+ /* Get the current value associated with the `next-key' key in the table. */
+ svn_fs_base__str_to_dbt(&query, NEXT_KEY_KEY);
+ svn_fs_base__trail_debug(trail, "nodes", "get");
+ SVN_ERR(BDB_WRAP(fs, N_("allocating new node ID (getting 'next-key')"),
+ bfd->nodes->get(bfd->nodes, trail->db_txn,
+ &query,
+ svn_fs_base__result_dbt(&result),
+ 0)));
+ svn_fs_base__track_dbt(&result, pool);
+
+ /* Squirrel away our next node id value. */
+ next_node_id = apr_pstrmemdup(pool, result.data, result.size);
+
+ /* Bump to future key. */
+ len = result.size;
+ svn_fs_base__next_key(result.data, &len, next_key);
+ svn_fs_base__trail_debug(trail, "nodes", "put");
+ db_err = bfd->nodes->put(bfd->nodes, trail->db_txn,
+ svn_fs_base__str_to_dbt(&query, NEXT_KEY_KEY),
+ svn_fs_base__str_to_dbt(&result, next_key),
+ 0);
+ SVN_ERR(BDB_WRAP(fs, N_("bumping next node ID key"), db_err));
+
+ /* Create and return the new node id. */
+ *id_p = svn_fs_base__id_create(next_node_id, copy_id, txn_id, pool);
+ return SVN_NO_ERROR;
+}
+
+
+svn_error_t *
+svn_fs_bdb__new_successor_id(svn_fs_id_t **successor_p,
+ svn_fs_t *fs,
+ const svn_fs_id_t *id,
+ const char *copy_id,
+ const char *txn_id,
+ trail_t *trail,
+ apr_pool_t *pool)
+{
+ svn_fs_id_t *new_id;
+ svn_error_t *err;
+
+ SVN_ERR_ASSERT(txn_id);
+
+ /* Create and return the new successor ID. */
+ new_id = svn_fs_base__id_create(svn_fs_base__id_node_id(id),
+ copy_id ? copy_id
+ : svn_fs_base__id_copy_id(id),
+ txn_id, pool);
+
+ /* Now, make sure this NEW_ID doesn't already exist in FS. */
+ err = svn_fs_bdb__get_node_revision(NULL, fs, new_id, trail, trail->pool);
+ if ((! err) || (err->apr_err != SVN_ERR_FS_ID_NOT_FOUND))
+ {
+ svn_string_t *id_str = svn_fs_base__id_unparse(id, pool);
+ svn_string_t *new_id_str = svn_fs_base__id_unparse(new_id, pool);
+ return svn_error_createf
+ (SVN_ERR_FS_ALREADY_EXISTS, err,
+ _("Successor id '%s' (for '%s') already exists in filesystem '%s'"),
+ new_id_str->data, id_str->data, fs->path);
+ }
+
+ /* err is SVN_ERR_FS_ID_NOT_FOUND, meaning the ID is available. But
+ we don't want this error. */
+ svn_error_clear(err);
+
+ /* Return the new node revision ID. */
+ *successor_p = new_id;
+ return SVN_NO_ERROR;
+}
+
+
+
+/* Removing node revisions. */
+svn_error_t *
+svn_fs_bdb__delete_nodes_entry(svn_fs_t *fs,
+ const svn_fs_id_t *id,
+ trail_t *trail,
+ apr_pool_t *pool)
+{
+ base_fs_data_t *bfd = fs->fsap_data;
+ DBT key;
+
+ svn_fs_base__trail_debug(trail, "nodes", "del");
+ return BDB_WRAP(fs, N_("deleting entry from 'nodes' table"),
+ bfd->nodes->del(bfd->nodes,
+ trail->db_txn,
+ svn_fs_base__id_to_dbt(&key, id, pool),
+ 0));
+}
+
+
+
+
+/* Storing and retrieving NODE-REVISIONs. */
+
+
+svn_error_t *
+svn_fs_bdb__get_node_revision(node_revision_t **noderev_p,
+ svn_fs_t *fs,
+ const svn_fs_id_t *id,
+ trail_t *trail,
+ apr_pool_t *pool)
+{
+ base_fs_data_t *bfd = fs->fsap_data;
+ node_revision_t *noderev;
+ svn_skel_t *skel;
+ int db_err;
+ DBT key, value;
+
+ svn_fs_base__trail_debug(trail, "nodes", "get");
+ db_err = bfd->nodes->get(bfd->nodes, trail->db_txn,
+ svn_fs_base__id_to_dbt(&key, id, pool),
+ svn_fs_base__result_dbt(&value),
+ 0);
+ svn_fs_base__track_dbt(&value, pool);
+
+ /* If there's no such node, return an appropriately specific error. */
+ if (db_err == DB_NOTFOUND)
+ return svn_fs_base__err_dangling_id(fs, id);
+
+ /* Handle any other error conditions. */
+ SVN_ERR(BDB_WRAP(fs, N_("reading node revision"), db_err));
+
+ /* If our caller doesn't really care about the return value here,
+ just return successfully. */
+ if (! noderev_p)
+ return SVN_NO_ERROR;
+
+ /* Parse and the NODE-REVISION skel. */
+ skel = svn_skel__parse(value.data, value.size, pool);
+
+ /* Convert to a native FS type. */
+ SVN_ERR(svn_fs_base__parse_node_revision_skel(&noderev, skel, pool));
+ *noderev_p = noderev;
+ return SVN_NO_ERROR;
+}
+
+
+svn_error_t *
+svn_fs_bdb__put_node_revision(svn_fs_t *fs,
+ const svn_fs_id_t *id,
+ node_revision_t *noderev,
+ trail_t *trail,
+ apr_pool_t *pool)
+{
+ base_fs_data_t *bfd = fs->fsap_data;
+ DB_TXN *db_txn = trail->db_txn;
+ DBT key, value;
+ svn_skel_t *skel;
+
+ /* Convert from native type into skel */
+ SVN_ERR(svn_fs_base__unparse_node_revision_skel(&skel, noderev,
+ bfd->format, pool));
+ svn_fs_base__trail_debug(trail, "nodes", "put");
+ return BDB_WRAP(fs, N_("storing node revision"),
+ bfd->nodes->put(bfd->nodes, db_txn,
+ svn_fs_base__id_to_dbt(&key, id, pool),
+ svn_fs_base__skel_to_dbt(&value, skel,
+ pool),
+ 0));
+}