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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* 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>
#include "command.h"
#include "virterror_internal.h"
#include "memory.h"
#include "json.h"
#include "parallels_utils.h"
#define VIR_FROM_THIS VIR_FROM_PARALLELS
static int
parallelsDoCmdRun(char **outbuf, const char *binary, va_list list)
{
virCommandPtr cmd = virCommandNewVAList(binary, list);
char *scmd = NULL;
int ret = -1;
if (outbuf)
virCommandSetOutputBuffer(cmd, outbuf);
scmd = virCommandToString(cmd);
if (!scmd)
goto cleanup;
if (virCommandRun(cmd, NULL))
goto cleanup;
ret = 0;
cleanup:
VIR_FREE(scmd);
virCommandFree(cmd);
if (ret)
VIR_FREE(*outbuf);
return ret;
}
/*
* Run command and parse its JSON output, return
* pointer to virJSONValue or NULL in case of error.
*/
virJSONValuePtr
parallelsParseOutput(const char *binary, ...)
{
char *outbuf;
virJSONValuePtr jobj = NULL;
va_list list;
int ret;
va_start(list, binary);
ret = parallelsDoCmdRun(&outbuf, binary, list);
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 *
parallelsGetOutput(const char *binary, ...)
{
char *outbuf;
va_list list;
int ret;
va_start(list, binary);
ret = parallelsDoCmdRun(&outbuf, binary, list);
va_end(list);
if (ret)
return NULL;
return outbuf;
}
/*
* Run prlctl command and check for errors
*
* Return value is 0 in case of success, else - -1
*/
int
parallelsCmdRun(const char *binary, ...)
{
int ret;
va_list list;
va_start(list, binary);
ret = parallelsDoCmdRun(NULL, binary, list);
va_end(list);
return ret;
}
|