util.h 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * utils.h: common, generic utility functions
 *
 * Copyright (C) 2006, 2007 Binary Karma
 * Copyright (C) 2006 Shuveb Hussain
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * File created Jul 18, 2007 - Shuveb Hussain <shuveb@binarykarma.com>
 */

24 25 26
#ifndef __VIR_UTIL_H__
#define __VIR_UTIL_H__

27
#include "util-lib.h"
28
#include "verify.h"
29

30
int virExec(virConnectPtr conn, const char *const*argv, int *retpid,
31
            int infd, int *outfd, int *errfd);
32
int virExecNonBlock(virConnectPtr conn, const char *const*argv, int *retpid,
33
                    int infd, int *outfd, int *errfd);
34
int virRun(virConnectPtr conn, const char *const*argv, int *status);
35

36
int __virFileReadAll(const char *path,
37 38
                     int maxlen,
                     char **buf);
39
#define virFileReadAll(p,m,b) __virFileReadAll((p),(m),(b))
40 41 42 43 44 45 46 47 48 49

int virFileMatchesNameSuffix(const char *file,
                             const char *name,
                             const char *suffix);

int virFileHasSuffix(const char *str,
                     const char *suffix);

int virFileLinkPointsTo(const char *checkLink,
                        const char *checkDest);
50 51 52

int virFileExists(const char *path);

53 54 55 56 57 58 59 60 61
int virFileMakePath(const char *path);

int virFileBuildPath(const char *dir,
                     const char *name,
                     const char *ext,
                     char *buf,
                     unsigned int buflen);


62 63 64 65 66 67 68 69 70 71 72 73 74 75
int __virStrToLong_i(char const *s,
                     char **end_ptr,
                     int base,
                     int *result);
#define virStrToLong_i(s,e,b,r) __virStrToLong_i((s),(e),(b),(r))

int virStrToLong_ui(char const *s,
                    char **end_ptr,
                    int base,
                    unsigned int *result);
int virStrToLong_ll(char const *s,
                    char **end_ptr,
                    int base,
                    long long *result);
76
int __virStrToLong_ull(char const *s,
77 78 79
                       char **end_ptr,
                       int base,
                       unsigned long long *result);
80
#define virStrToLong_ull(s,e,b,r) __virStrToLong_ull((s),(e),(b),(r))
81

82 83 84
int __virMacAddrCompare (const char *mac1, const char *mac2);
#define virMacAddrCompare(mac1,mac2) __virMacAddrCompare((mac1),(mac2))

85 86 87
void virSkipSpaces(const char **str);
int virParseNumber(const char **str);

88 89
int virParseMacAddr(const char* str, unsigned char *addr);

90 91
int virDiskNameToIndex(const char* str);

92 93 94 95 96 97 98 99 100 101 102

int virEnumFromString(const char *const*types,
                      unsigned int ntypes,
                      const char *type);

const char *virEnumToString(const char *const*types,
                            unsigned int ntypes,
                            int type);

#define VIR_ENUM_IMPL(name, lastVal, ...)                               \
    static const char const *name ## TypeList[] = { __VA_ARGS__ };      \
103
    extern int (* name ## Verify (void)) [verify_true (ARRAY_CARDINALITY(name ## TypeList) == lastVal)]; \
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    const char *name ## TypeToString(int type) {                        \
        return virEnumToString(name ## TypeList,                        \
                               ARRAY_CARDINALITY(name ## TypeList),     \
                               type);                                   \
    }                                                                   \
    int name ## TypeFromString(const char *type) {                      \
        return virEnumFromString(name ## TypeList,                      \
                                 ARRAY_CARDINALITY(name ## TypeList),   \
                                 type);                                 \
    }

#define VIR_ENUM_DECL(name)                             \
    const char *name ## TypeToString(int type);         \
    int name ## TypeFromString(const char*type);

119
#endif /* __VIR_UTIL_H__ */