1/*
2 * err.h : interface to routines for returning Berkeley DB errors
3 *
4 * ====================================================================
5 *    Licensed to the Apache Software Foundation (ASF) under one
6 *    or more contributor license agreements.  See the NOTICE file
7 *    distributed with this work for additional information
8 *    regarding copyright ownership.  The ASF licenses this file
9 *    to you under the Apache License, Version 2.0 (the
10 *    "License"); you may not use this file except in compliance
11 *    with the License.  You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 *    Unless required by applicable law or agreed to in writing,
16 *    software distributed under the License is distributed on an
17 *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18 *    KIND, either express or implied.  See the License for the
19 *    specific language governing permissions and limitations
20 *    under the License.
21 * ====================================================================
22 */
23
24
25
26#ifndef SVN_LIBSVN_FS_ERR_H
27#define SVN_LIBSVN_FS_ERR_H
28
29#include <apr_pools.h>
30
31#include "svn_error.h"
32#include "svn_fs.h"
33
34#ifdef __cplusplus
35extern "C" {
36#endif /* __cplusplus */
37
38
39
40/* Building common error objects.  */
41
42
43/* SVN_ERR_FS_CORRUPT: the REVISION skel of revision REV in FS is corrupt.  */
44svn_error_t *svn_fs_base__err_corrupt_fs_revision(svn_fs_t *fs,
45                                                  svn_revnum_t rev);
46
47/* SVN_ERR_FS_ID_NOT_FOUND: something in FS refers to node revision
48   ID, but that node revision doesn't exist.  */
49svn_error_t *svn_fs_base__err_dangling_id(svn_fs_t *fs,
50                                          const svn_fs_id_t *id);
51
52/* SVN_ERR_FS_CORRUPT: something in FS refers to filesystem revision REV,
53   but that filesystem revision doesn't exist.  */
54svn_error_t *svn_fs_base__err_dangling_rev(svn_fs_t *fs, svn_revnum_t rev);
55
56/* SVN_ERR_FS_CORRUPT: the entry for TXN in the `transactions' table
57   is corrupt.  */
58svn_error_t *svn_fs_base__err_corrupt_txn(svn_fs_t *fs, const char *txn);
59
60/* SVN_ERR_FS_CORRUPT: the entry for COPY_ID in the `copies' table
61   is corrupt.  */
62svn_error_t *svn_fs_base__err_corrupt_copy(svn_fs_t *fs, const char *copy_id);
63
64/* SVN_ERR_FS_NO_SUCH_TRANSACTION: there is no transaction named TXN in FS.  */
65svn_error_t *svn_fs_base__err_no_such_txn(svn_fs_t *fs, const char *txn);
66
67/* SVN_ERR_FS_TRANSACTION_NOT_MUTABLE: trying to change the
68   unchangeable transaction named TXN in FS.  */
69svn_error_t *svn_fs_base__err_txn_not_mutable(svn_fs_t *fs, const char *txn);
70
71/* SVN_ERR_FS_NO_SUCH_COPY: there is no copy with id COPY_ID in FS.  */
72svn_error_t *svn_fs_base__err_no_such_copy(svn_fs_t *fs, const char *copy_id);
73
74/* SVN_ERR_FS_BAD_LOCK_TOKEN: LOCK_TOKEN does not refer to a lock in FS.  */
75svn_error_t *svn_fs_base__err_bad_lock_token(svn_fs_t *fs,
76                                             const char *lock_token);
77
78/* SVN_ERR_FS_NO_LOCK_TOKEN: no lock token given for PATH in FS.  */
79svn_error_t *svn_fs_base__err_no_lock_token(svn_fs_t *fs, const char *path);
80
81/* SVN_ERR_FS_CORRUPT: a lock in `locks' table is corrupt.  */
82svn_error_t *svn_fs_base__err_corrupt_lock(svn_fs_t *fs,
83                                           const char *lock_token);
84
85/* SVN_ERR_FS_NO_SUCH_NODE_ORIGIN: no recorded node origin for NODE_ID
86   in FS.  */
87svn_error_t *svn_fs_base__err_no_such_node_origin(svn_fs_t *fs,
88                                                  const char *node_id);
89
90/* SVN_ERR_FS_NO_SUCH_CHECKSUM_REP: no recorded rep key for CHECKSUM in FS. */
91svn_error_t *svn_fs_base__err_no_such_checksum_rep(svn_fs_t *fs,
92                                                   svn_checksum_t *checksum);
93
94#ifdef __cplusplus
95}
96#endif /* __cplusplus */
97
98#endif /* SVN_LIBSVN_FS_ERR_H */
99