blob: 724f4d6745dabf29617a070e78de0edda8e86dfa [file] [log] [blame]
/* txn-table.h : internal interface to ops on `transactions' table
*
* ====================================================================
* Copyright (c) 2000-2002 CollabNet. All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://subversion.tigris.org/license-1.html.
* If newer versions of this license are posted there, you may use a
* newer version instead, at your option.
*
* This software consists of voluntary contributions made by many
* individuals. For exact contribution history, see the revision
* history and logs, available at http://subversion.tigris.org/.
* ====================================================================
*/
#ifndef SVN_LIBSVN_FS_TXN_TABLE_H
#define SVN_LIBSVN_FS_TXN_TABLE_H
#include "svn_fs.h"
#include "trail.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Open a `transactions' table in ENV. If CREATE is non-zero, create
one if it doesn't exist. Set *TRANSACTIONS_P to the new table.
Return a Berkeley DB error code. */
int svn_fs__open_transactions_table (DB **transactions_p,
DB_ENV *env,
int create);
/* Create a new transaction in FS as part of TRAIL, with an initial
root and base root ID of ROOT_ID. Set *TXN_ID_P to the ID of the new
transaction, allocated in TRAIL->pool. */
svn_error_t *svn_fs__create_txn (char **txn_id_p,
svn_fs_t *fs,
const svn_fs_id_t *root_id,
trail_t *trail);
/* Remove the transaction whose ID is SVN_TXN from the `transactions'
table of FS, as part of TRAIL. */
svn_error_t *svn_fs__delete_txn (svn_fs_t *fs,
const char *svn_txn,
trail_t *trail);
/* Retrieve the transaction skel *TXN_SKEL for the Subversion transaction
SVN_TXN from the `transactions' table of FS, as part of TRAIL.
If there is no such transaction, SVN_ERR_FS_NO_SUCH_TRANSACTION is
the error returned.
Allocate *TXN_SKEL in TRAIL->pool. */
svn_error_t *svn_fs__get_txn (skel_t **txn_skel,
svn_fs_t *fs,
const char *svn_txn,
trail_t *trail);
/* Retrieve information about the Subversion transaction SVN_TXN from
the `transactions' table of FS, as part of TRAIL.
Set *ROOT_ID_P to the ID of the transaction's root directory.
Set *BASE_ROOT_ID_P to the ID of the root directory of the
transaction's base revision.
If there is no such transaction, SVN_ERR_FS_NO_SUCH_TRANSACTION is
the error returned.
Allocate *ROOT_ID_P and *BASE_ROOT_ID_P in TRAIL->pool. */
svn_error_t *svn_fs__get_txn_ids (svn_fs_id_t **root_id_p,
svn_fs_id_t **base_root_id_p,
svn_fs_t *fs,
const char *svn_txn,
trail_t *trail);
/* Set the root directory of the Subversion transaction SVN_TXN in FS
to ROOT_ID, as part of TRAIL. Do any necessary temporary
allocation in TRAIL->pool. */
svn_error_t *svn_fs__set_txn_root (svn_fs_t *fs,
const char *svn_txn,
const svn_fs_id_t *root_id,
trail_t *trail);
/* Set the base root directory of SVN_TXN in FS to NEW_ID, as part of
TRAIL. Do any necessary temporary allocation in TRAIL->pool. */
svn_error_t *
svn_fs__set_txn_base (svn_fs_t *fs,
const char *svn_txn,
const svn_fs_id_t *new_id,
trail_t *trail);
/* Set *NAMES_P to a null-terminated array of strings, giving the
names of all currently active transactions in FS, as part of TRAIL.
Allocate the array and the names in TRAIL->pool. */
svn_error_t *svn_fs__get_txn_list (char ***names_p,
svn_fs_t *fs,
apr_pool_t *pool,
trail_t *trail);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* SVN_LIBSVN_FS_TXN_TABLE_H */
/*
* local variables:
* eval: (load-file "../../tools/dev/svn-dev.el")
* end:
*/