]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/file.h
ovs-vsctl: Remove dead assignment.
[mirror_ovs.git] / ovsdb / file.h
CommitLineData
e1ebc8ce 1/* Copyright (c) 2009, 2010, 2011 Nicira Networks
bd06962a
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef OVSDB_FILE_H
17#define OVSDB_FILE_H 1
18
19#include <stdbool.h>
20#include "compiler.h"
1e19e50e 21#include "log.h"
bd06962a
BP
22
23struct ovsdb;
ada496b5 24struct ovsdb_file;
1e19e50e 25struct ovsdb_schema;
bd06962a
BP
26
27struct ovsdb_error *ovsdb_file_open(const char *file_name, bool read_only,
ada496b5 28 struct ovsdb **, struct ovsdb_file **)
bd06962a
BP
29 WARN_UNUSED_RESULT;
30
1e19e50e
BP
31struct ovsdb_error *ovsdb_file_open_as_schema(const char *file_name,
32 const struct ovsdb_schema *,
33 struct ovsdb **)
34 WARN_UNUSED_RESULT;
35
36struct ovsdb_error *ovsdb_file_save_copy(const char *file_name, int locking,
37 const char *comment,
38 const struct ovsdb *)
39 WARN_UNUSED_RESULT;
40
ada496b5
BP
41struct ovsdb_error *ovsdb_file_compact(struct ovsdb_file *);
42
e1ebc8ce
BP
43struct ovsdb_error *ovsdb_file_read_schema(const char *file_name,
44 struct ovsdb_schema **)
45 WARN_UNUSED_RESULT;
46
bd06962a 47#endif /* ovsdb/file.h */