parallels_utils.c 4.8 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 24 25 26
/*
 * parallels_utils.c: core driver functions for managing
 * Parallels Cloud Server hosts
 *
 * Copyright (C) 2012 Parallels, Inc.
 *
 * 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, see
 * <http://www.gnu.org/licenses/>.
 *
 */

#include <config.h>

#include <stdarg.h>

27
#include "vircommand.h"
28
#include "virerror.h"
29
#include "viralloc.h"
30
#include "virjson.h"
31
#include "parallels_utils.h"
32
#include "virstring.h"
33
#include "datatypes.h"
34 35 36

#define VIR_FROM_THIS VIR_FROM_PARALLELS

37
/**
38
 * vzDomObjFromDomain:
39 40 41 42 43 44 45 46 47
 * @domain: Domain pointer that has to be looked up
 *
 * This function looks up @domain and returns the appropriate virDomainObjPtr
 * that has to be unlocked by virObjectUnlock().
 *
 * Returns the domain object without incremented reference counter which is locked
 * on success, NULL otherwise.
 */
virDomainObjPtr
48
vzDomObjFromDomain(virDomainPtr domain)
49 50
{
    virDomainObjPtr vm;
51
    vzConnPtr privconn = domain->conn->privateData;
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    vm = virDomainObjListFindByUUID(privconn->domains, domain->uuid);
    if (!vm) {
        virUUIDFormat(domain->uuid, uuidstr);
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s' (%s)"),
                       uuidstr, domain->name);
        return NULL;
    }

    return vm;

}

67
/**
68
 * vzDomObjFromDomainRef:
69 70 71 72 73 74 75 76 77
 * @domain: Domain pointer that has to be looked up
 *
 * This function looks up @domain and returns the appropriate virDomainObjPtr
 * that has to be released by calling virDomainObjEndAPI().
 *
 * Returns the domain object with incremented reference counter which is locked
 * on success, NULL otherwise.
 */
virDomainObjPtr
78
vzDomObjFromDomainRef(virDomainPtr domain)
79 80
{
    virDomainObjPtr vm;
81
    vzConnPtr privconn = domain->conn->privateData;
82 83 84 85 86 87 88 89 90 91 92 93 94
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    vm = virDomainObjListFindByUUIDRef(privconn->domains, domain->uuid);
    if (!vm) {
        virUUIDFormat(domain->uuid, uuidstr);
        virReportError(VIR_ERR_NO_DOMAIN,
                       _("no domain with matching uuid '%s' (%s)"),
                       uuidstr, domain->name);
        return NULL;
    }

    return vm;
}
95

96
static int
97
vzDoCmdRun(char **outbuf, const char *binary, va_list list)
98 99 100 101 102 103 104
{
    virCommandPtr cmd = virCommandNewVAList(binary, list);
    int ret = -1;

    if (outbuf)
        virCommandSetOutputBuffer(cmd, outbuf);

105
    if (virCommandRun(cmd, NULL) < 0)
106 107 108 109
        goto cleanup;

    ret = 0;

110
 cleanup:
111
    virCommandFree(cmd);
112
    if (ret && outbuf)
113 114 115 116 117 118 119 120 121
        VIR_FREE(*outbuf);
    return ret;
}

/*
 * Run command and parse its JSON output, return
 * pointer to virJSONValue or NULL in case of error.
 */
virJSONValuePtr
122
vzParseOutput(const char *binary, ...)
123 124 125 126 127 128 129
{
    char *outbuf;
    virJSONValuePtr jobj = NULL;
    va_list list;
    int ret;

    va_start(list, binary);
130
    ret = vzDoCmdRun(&outbuf, binary, list);
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
    va_end(list);
    if (ret)
        return NULL;

    jobj = virJSONValueFromString(outbuf);
    if (!jobj)
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("invalid output from prlctl: %s"), outbuf);

    VIR_FREE(outbuf);
    return jobj;
}

/*
 * Run command and return its output, pointer to
 * buffer or NULL in case of error. Caller os responsible
 * for freeing the buffer.
 */
char *
150
vzGetOutput(const char *binary, ...)
151 152 153 154 155 156
{
    char *outbuf;
    va_list list;
    int ret;

    va_start(list, binary);
157
    ret = vzDoCmdRun(&outbuf, binary, list);
158 159 160 161 162 163
    va_end(list);
    if (ret)
        return NULL;

    return outbuf;
}
164 165 166 167 168 169 170

/*
 * Run prlctl command and check for errors
 *
 * Return value is 0 in case of success, else - -1
 */
int
171
vzCmdRun(const char *binary, ...)
172 173 174 175 176
{
    int ret;
    va_list list;

    va_start(list, binary);
177
    ret = vzDoCmdRun(NULL, binary, list);
178 179 180 181
    va_end(list);

    return ret;
}
D
Dmitry Guryanov 已提交
182 183 184 185 186 187

/*
 * Return new file path in malloced string created by
 * concatenating first and second function arguments.
 */
char *
188
vzAddFileExt(const char *path, const char *ext)
D
Dmitry Guryanov 已提交
189 190 191 192
{
    char *new_path = NULL;
    size_t len = strlen(path) + strlen(ext) + 1;

193
    if (VIR_ALLOC_N(new_path, len) < 0)
D
Dmitry Guryanov 已提交
194 195
        return NULL;

196 197
    if (!virStrcpy(new_path, path, len)) {
        VIR_FREE(new_path);
D
Dmitry Guryanov 已提交
198
        return NULL;
199
    }
D
Dmitry Guryanov 已提交
200 201 202 203
    strcat(new_path, ext);

    return new_path;
}