Main Page | Modules | Data Structures | File List | Data Fields | Globals

internal.h

Go to the documentation of this file.
00001 // $Id: internal_8h-source.html,v 1.7 2006/01/22 19:41:01 ensc Exp $    --*- c++ -*--
00002 
00003 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
00004 //  
00005 // This program is free software; you can redistribute it and/or modify
00006 // it under the terms of the GNU General Public License as published by
00007 // the Free Software Foundation; version 2 of the License.
00008 //  
00009 // This program is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012 // GNU General Public License for more details.
00013 //  
00014 // You should have received a copy of the GNU General Public License
00015 // along with this program; if not, write to the Free Software
00016 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00017 
00022 #ifndef H_UTIL_VSERVER_LIB_INTERNAL_H
00023 #define H_UTIL_VSERVER_LIB_INTERNAL_H
00024 
00025 #include "fmt.h"
00026 #include "vserver.h"
00027 
00028 #include <stdlib.h>
00029 #include <stdbool.h>
00030 
00031 #ifdef __cplusplus
00032 extern "C" {
00033 #endif
00034 
00035 char *  vc_getVserverByCtx_Internal(xid_t ctx, /*@null@*/vcCfgStyle *style,
00036                                     /*@null@*/char const *revdir,
00037                                     bool validate_result);
00038 
00039   
00040 int     utilvserver_checkCompatVersion();
00041 bool    utilvserver_isDirectory(char const *path, bool follow_link);
00042 bool    utilvserver_isFile(char const *path, bool follow_link);
00043 bool    utilvserver_isLink(char const *path);
00044 
00045 int     utilvserver_listparser_uint32(char const *str, size_t len,
00046                                       char const **err_ptr, size_t *err_len,
00047                                       uint_least32_t *flag,
00048                                       uint_least32_t *mask,
00049                                       uint_least32_t (*func)(char const*,
00050                                                              size_t, bool *
00051                                         )) NONNULL((1,5,7));
00052   
00053 int     utilvserver_listparser_uint64(char const *str, size_t len,
00054                                       char const **err_ptr, size_t *err_len,
00055                                       uint_least64_t *flag,
00056                                       uint_least64_t *mask,
00057                                       uint_least64_t (*func)(char const*,
00058                                                              size_t, bool *
00059                                         )) NONNULL((1,5,7));
00060 
00061 struct Mapping_uint32 {
00062     char const * const  id;
00063     size_t                      len;
00064     uint_least32_t              val;
00065 };
00066 
00067 struct Mapping_uint64 {
00068     char const * const  id;
00069     size_t                      len;
00070     uint_least64_t              val;
00071 };
00072   
00073 ssize_t utilvserver_value2text_uint32(char const *str, size_t len,
00074                                       struct Mapping_uint32 const *map,
00075                                       size_t map_len) NONNULL((1,3));
00076 
00077 ssize_t utilvserver_value2text_uint64(char const *str, size_t len,
00078                                       struct Mapping_uint64 const *map,
00079                                       size_t map_len) NONNULL((1,3));
00080 
00081 ssize_t utilvserver_text2value_uint32(uint_least32_t *val,
00082                                       struct Mapping_uint32 const *map,
00083                                       size_t map_len) NONNULL((1,2));
00084   
00085 ssize_t utilvserver_text2value_uint64(uint_least64_t *val,
00086                                       struct Mapping_uint64 const *map,
00087                                       size_t map_len) NONNULL((1,2));
00088 #ifdef __cplusplus
00089 }
00090 #endif
00091 
00092 
00093 #endif  //  H_UTIL_VSERVER_LIB_INTERNAL_H

Generated on Sun Jan 22 20:36:07 2006 for util-vserver (libvserver) by  doxygen 1.4.4