blob: 63dab8013a58868d0bbde39ff54516c99d975581 [file] [log] [blame]
/* fs_skels.h : headers for conversion between fs native types and
* skeletons
*
* ====================================================================
* 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.
* ====================================================================
*/
#ifndef SVN_LIBSVN_FS_FS_SKELS_H
#define SVN_LIBSVN_FS_FS_SKELS_H
#define SVN_WANT_BDB
#include "svn_private_config.h"
#include <apr_pools.h>
#include <apr_hash.h>
#include "svn_fs.h"
#include "../fs.h"
#include "private/svn_skel.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*** Parsing (conversion from skeleton to native FS type) ***/
/* Parse a `REVISION' SKEL and set *REVISION_P to the newly allocated
result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_revision_skel(revision_t **revision_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse a `TRANSACTION' SKEL and set *TRANSACTION_P to the newly allocated
result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_transaction_skel(transaction_t **transaction_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse a `REPRESENTATION' SKEL and set *REP_P to the newly allocated
result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_representation_skel(representation_t **rep_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse a `NODE-REVISION' SKEL and set *NODEREV_P to the newly allocated
result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_node_revision_skel(node_revision_t **noderev_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse a `COPY' SKEL and set *COPY_P to the newly allocated result. Use
POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_copy_skel(copy_t **copy_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse an `ENTRIES' SKEL and set *ENTRIES_P to a new hash with const
char * names (the directory entry name) and svn_fs_id_t * values
(the node-id of the entry), or NULL if SKEL contains no entries.
Use POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_entries_skel(apr_hash_t **entries_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse a `CHANGE' SKEL and set *CHANGE_P to the newly allocated result.
Use POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_change_skel(change_t **change_p,
svn_skel_t *skel,
apr_pool_t *pool);
/* Parse a `LOCK' SKEL and set *LOCK_P to the newly allocated result. Use
POOL for all allocations. */
svn_error_t *
svn_fs_base__parse_lock_skel(svn_lock_t **lock_p,
svn_skel_t *skel,
apr_pool_t *pool);
/*** Unparsing (conversion from native FS type to skeleton) ***/
/* Unparse REVISION into a newly allocated `REVISION' skel and set *SKEL_P
to the result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__unparse_revision_skel(svn_skel_t **skel_p,
const revision_t *revision,
apr_pool_t *pool);
/* Unparse TRANSACTION into a newly allocated `TRANSACTION' skel and set
*SKEL_P to the result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__unparse_transaction_skel(svn_skel_t **skel_p,
const transaction_t *transaction,
apr_pool_t *pool);
/* Unparse REP into a newly allocated `REPRESENTATION' skel and set *SKEL_P
to the result. Use POOL for all allocations. FORMAT is the format
version of the filesystem. */
svn_error_t *
svn_fs_base__unparse_representation_skel(svn_skel_t **skel_p,
const representation_t *rep,
int format,
apr_pool_t *pool);
/* Unparse NODEREV into a newly allocated `NODE-REVISION' skel and set
*SKEL_P to the result. Use POOL for all allocations. FORMAT is the
format version of the filesystem. */
svn_error_t *
svn_fs_base__unparse_node_revision_skel(svn_skel_t **skel_p,
const node_revision_t *noderev,
int format,
apr_pool_t *pool);
/* Unparse COPY into a newly allocated `COPY' skel and set *SKEL_P to the
result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__unparse_copy_skel(svn_skel_t **skel_p,
const copy_t *copy,
apr_pool_t *pool);
/* Unparse an ENTRIES hash, which has const char * names (the entry
name) and svn_fs_id_t * values (the node-id of the entry) into a newly
allocated `ENTRIES' skel and set *SKEL_P to the result. Use POOL for all
allocations. */
svn_error_t *
svn_fs_base__unparse_entries_skel(svn_skel_t **skel_p,
apr_hash_t *entries,
apr_pool_t *pool);
/* Unparse CHANGE into a newly allocated `CHANGE' skel and set *SKEL_P to
the result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__unparse_change_skel(svn_skel_t **skel_p,
const change_t *change,
apr_pool_t *pool);
/* Unparse LOCK into a newly allocated `LOCK' skel and set *SKEL_P to the
result. Use POOL for all allocations. */
svn_error_t *
svn_fs_base__unparse_lock_skel(svn_skel_t **skel_p,
const svn_lock_t *lock,
apr_pool_t *pool);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* SVN_LIBSVN_FS_FS_SKELS_H */