⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uuids-table.c

📁 subversion-1.4.3-1.tar.gz 配置svn的源码
💻 C
字号:
/* uuids-table.c : operations on the `uuids' table * * ==================================================================== * Copyright (c) 2000-2004 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/. * ==================================================================== */#include <apr_uuid.h>#include "bdb_compat.h"#include "svn_fs.h"#include "../fs.h"#include "../err.h"#include "dbt.h"#include "../trail.h"#include "../../libsvn_fs/fs-loader.h"#include "bdb-err.h"#include "uuids-table.h"#include "svn_private_config.h"/*** Creating and opening the uuids table.     When the table is created, the repository's uuid is     generated and stored as record #1. ***/intsvn_fs_bdb__open_uuids_table(DB **uuids_p,                             DB_ENV *env,                             svn_boolean_t create){  const u_int32_t open_flags = (create ? (DB_CREATE | DB_EXCL) : 0);  DB *uuids;  int error;  BDB_ERR(svn_fs_bdb__check_version());  BDB_ERR(db_create(&uuids, env, 0));  BDB_ERR(uuids->set_re_len(uuids, APR_UUID_FORMATTED_LENGTH));  error = uuids->open(SVN_BDB_OPEN_PARAMS(uuids, NULL),                      "uuids", 0, DB_RECNO,                      open_flags, 0666);  /* This is a temporary compatibility check; it creates the     UUIDs table if one does not already exist. */  if (error == ENOENT && (! create))    {      BDB_ERR(uuids->close(uuids, 0));      return svn_fs_bdb__open_uuids_table(uuids_p, env, TRUE);    }  BDB_ERR(error);  if (create)    {      char buffer[APR_UUID_FORMATTED_LENGTH + 1];      DBT key, value;      apr_uuid_t uuid;      int recno = 0;      svn_fs_base__clear_dbt(&key);      key.data = &recno;      key.size = sizeof(recno);      key.ulen = key.size;      key.flags |= DB_DBT_USERMEM;      svn_fs_base__clear_dbt(&value);      value.data = buffer;      value.size = sizeof(buffer) - 1;      apr_uuid_get(&uuid);      apr_uuid_format(buffer, &uuid);      BDB_ERR(uuids->put(uuids, 0, &key, &value, DB_APPEND));    }  *uuids_p = uuids;  return 0;}svn_error_t *svn_fs_bdb__get_uuid(svn_fs_t *fs,                                  int idx,                                  const char **uuid,                                  trail_t *trail,                                  apr_pool_t *pool){  base_fs_data_t *bfd = fs->fsap_data;  char buffer[APR_UUID_FORMATTED_LENGTH + 1];  DB *uuids = bfd->uuids;  DBT key;  DBT value;  svn_fs_base__clear_dbt(&key);  key.data = &idx;  key.size = sizeof(idx);  svn_fs_base__clear_dbt(&value);  value.data = buffer;  value.size = sizeof(buffer) - 1;  value.ulen = value.size;  value.flags |= DB_DBT_USERMEM;  svn_fs_base__trail_debug(trail, "uuids", "get");  SVN_ERR(BDB_WRAP(fs, _("get repository uuid"),                   uuids->get(uuids, trail->db_txn, &key, &value, 0)));  *uuid = apr_pstrmemdup(pool, value.data, value.size);  return SVN_NO_ERROR;}svn_error_t *svn_fs_bdb__set_uuid(svn_fs_t *fs,                                  int idx,                                  const char *uuid,                                  trail_t *trail,                                  apr_pool_t *pool){  base_fs_data_t *bfd = fs->fsap_data;  DB *uuids = bfd->uuids;  DBT key;  DBT value;  svn_fs_base__clear_dbt(&key);  key.data = &idx;  key.size = sizeof(idx);  svn_fs_base__clear_dbt(&value);  value.size = strlen(uuid);  value.data = apr_pstrmemdup(pool, uuid, value.size + 1);  svn_fs_base__trail_debug(trail, "uuids", "put");  SVN_ERR(BDB_WRAP(fs, _("set repository uuid"),                   uuids->put(uuids, trail->db_txn, &key, &value, 0)));  return SVN_NO_ERROR;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -