merge with 0.30.213
[util-vserver.git] / lib / internal.h
1 // $Id: internal.h 2415 2006-12-08 13:24:49Z dhozac $    --*- c++ -*--
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 /** \file internal.h
19  *  \brief Declarations which are used by util-vserver internally.
20  */
21
22 #ifndef H_UTIL_VSERVER_LIB_INTERNAL_H
23 #define H_UTIL_VSERVER_LIB_INTERNAL_H
24
25 #include "fmt.h"
26 #include "vserver.h"
27
28 #include <stdlib.h>
29 #include <stdbool.h>
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 char *  vc_getVserverByCtx_Internal(xid_t ctx, /*@null@*/vcCfgStyle *style,
36                                     /*@null@*/char const *revdir,
37                                     bool validate_result);
38
39   
40 int     utilvserver_checkCompatVersion();
41 uint_least32_t  utilvserver_checkCompatConfig();
42 bool    utilvserver_isDirectory(char const *path, bool follow_link);
43 bool    utilvserver_isFile(char const *path, bool follow_link);
44 bool    utilvserver_isLink(char const *path);
45
46 int     utilvserver_listparser_uint32(char const *str, size_t len,
47                                       char const **err_ptr, size_t *err_len,
48                                       uint_least32_t *flag,
49                                       uint_least32_t *mask,
50                                       uint_least32_t (*func)(char const*,
51                                                              size_t, bool *
52                                         )) NONNULL((1,5,7));
53   
54 int     utilvserver_listparser_uint64(char const *str, size_t len,
55                                       char const **err_ptr, size_t *err_len,
56                                       uint_least64_t *flag,
57                                       uint_least64_t *mask,
58                                       uint_least64_t (*func)(char const*,
59                                                              size_t, bool *
60                                         )) NONNULL((1,5,7));
61
62 struct Mapping_uint32 {
63     char const * const  id;
64     size_t                      len;
65     uint_least32_t              val;
66 };
67
68 struct Mapping_uint64 {
69     char const * const  id;
70     size_t                      len;
71     uint_least64_t              val;
72 };
73   
74 ssize_t utilvserver_value2text_uint32(char const *str, size_t len,
75                                       struct Mapping_uint32 const *map,
76                                       size_t map_len) NONNULL((1,3));
77
78 ssize_t utilvserver_value2text_uint64(char const *str, size_t len,
79                                       struct Mapping_uint64 const *map,
80                                       size_t map_len) NONNULL((1,3));
81
82 ssize_t utilvserver_text2value_uint32(uint_least32_t *val,
83                                       struct Mapping_uint32 const *map,
84                                       size_t map_len) NONNULL((1,2));
85   
86 ssize_t utilvserver_text2value_uint64(uint_least64_t *val,
87                                       struct Mapping_uint64 const *map,
88                                       size_t map_len) NONNULL((1,2));
89 #ifdef __cplusplus
90 }
91 #endif
92
93
94 #endif  //  H_UTIL_VSERVER_LIB_INTERNAL_H