source: mainline/uspace/lib/sif/include/sif.h@ eec201d

Last change on this file since eec201d was b82985e, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Inserting volume by path.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2 * Copyright (c) 2018 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libsif
30 * @{
31 */
32/**
33 * @file
34 * @brief
35 */
36
37#ifndef LIBSIF_SIF_H_
38#define LIBSIF_SIF_H_
39
40#include <errno.h>
41
42struct sif_sess;
43typedef struct sif_sess sif_sess_t;
44
45struct sif_trans;
46typedef struct sif_trans sif_trans_t;
47
48struct sif_node;
49typedef struct sif_node sif_node_t;
50
51errno_t sif_create(const char *, sif_sess_t **);
52errno_t sif_open(const char *, sif_sess_t **);
53errno_t sif_close(sif_sess_t *);
54sif_node_t *sif_get_root(sif_sess_t *);
55
56sif_node_t *sif_node_first_child(sif_node_t *);
57sif_node_t *sif_node_next_child(sif_node_t *);
58const char *sif_node_get_type(sif_node_t *);
59const char *sif_node_get_attr(sif_node_t *, const char *);
60
61errno_t sif_trans_begin(sif_sess_t *, sif_trans_t **);
62void sif_trans_abort(sif_trans_t *);
63errno_t sif_trans_end(sif_trans_t *);
64
65errno_t sif_node_prepend_child(sif_trans_t *, sif_node_t *, const char *,
66 sif_node_t **);
67errno_t sif_node_append_child(sif_trans_t *, sif_node_t *, const char *,
68 sif_node_t **);
69errno_t sif_node_insert_before(sif_trans_t *, sif_node_t *, const char *,
70 sif_node_t **);
71errno_t sif_node_insert_after(sif_trans_t *, sif_node_t *, const char *,
72 sif_node_t **);
73void sif_node_destroy(sif_trans_t *, sif_node_t *);
74errno_t sif_node_set_attr(sif_trans_t *, sif_node_t *, const char *,
75 const char *);
76void sif_node_unset_attr(sif_trans_t *, sif_node_t *, const char *);
77
78#endif
79
80/** @}
81 */
Note: See TracBrowser for help on using the repository browser.