-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMIValue.c
170 lines (150 loc) · 3.68 KB
/
MIValue.c
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/******************************************************************************
* Copyright (c) 2005 The Regents of the University of California.
* This material was produced under U.S. Government contract W-7405-ENG-36
* for Los Alamos National Laboratory, which is operated by the University
* of California for the U.S. Department of Energy. The U.S. Government has
* rights to use, reproduce, and distribute this software. NEITHER THE
* GOVERNMENT NOR THE UNIVERSITY MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
* ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified
* to produce derivative works, such modified software should be clearly
* marked, so as not to confuse it with the version available from LANL.
*
* Additionally, this program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* LA-CC 04-115
*
* Copyright 2012-2014 Cray Inc. All Rights Reserved.
*
******************************************************************************/
/*
* Based on the QNX Java implementation of the MI interface
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <stdlib.h>
#include "MIList.h"
#include "MIValue.h"
#include "MIResult.h"
MIValue *
MIValueNew(void)
{
MIValue * val;
val = (MIValue *)malloc(sizeof(MIValue));
val->type = MIValueTypeInvalid;
val->cstring = NULL;
val->values = NULL;
val->results = NULL;
return val;
}
MIValue *
NewMIConst(void)
{
MIValue * val = MIValueNew();
val->type = MIValueTypeConst;
return val;
}
MIValue *
NewMITuple(void)
{
MIValue * val = MIValueNew();
val->type = MIValueTypeTuple;
return val;
}
MIValue *
NewMIList(void)
{
MIValue * val = MIValueNew();
val->type = MIValueTypeList;
return val;
}
MIString *
MIConstToString(MIValue *v)
{
return MIStringNew(v->cstring);
}
MIString *
MIListToString(MIValue *v)
{
int first = 1;
MIString * str = MIStringNew("[");
MIResult * r;
MIValue * val;
for (MIListSet(v->results); (r = (MIResult *)MIListGet(v->results)) != NULL;) {
if (!first) {
MIStringAppend(str, MIStringNew(","));
}
first = 0;
MIStringAppend(str, MIResultToString(r));
}
first = 1;
for (MIListSet(v->values); (val = (MIValue *)MIListGet(v->values)) != NULL;) {
if (!first) {
MIStringAppend(str, MIStringNew(","));
}
first = 0;
MIStringAppend(str, MIValueToString(val));
}
MIStringAppend(str, MIStringNew("]"));
return str;
}
MIString *
MITupleToString(MIValue *v)
{
int first = 1;
MIString * str = MIStringNew("{");
MIResult * r;
#ifdef __APPLE__
MIValue * val;
#endif /* __APPLE__ */
for (MIListSet(v->results); (r = (MIResult *)MIListGet(v->results)) != NULL;) {
if (!first) {
MIStringAppend(str, MIStringNew(","));
}
first = 0;
MIStringAppend(str, MIResultToString(r));
}
#ifdef __APPLE__
first = 1;
for (MIListSet(v->values); (val = (MIValue *)MIListGet(v->values)) != NULL;) {
if (!first) {
MIStringAppend(str, MIStringNew(","));
}
first = 0;
MIStringAppend(str, MIValueToString(val));
}
#endif /* __APPLE__ */
MIStringAppend(str, MIStringNew("}"));
return str;
}
MIString *
MIValueToString(MIValue *v)
{
MIString * str = NULL;
switch (v->type) {
case MIValueTypeConst:
str = MIConstToString(v);
break;
case MIValueTypeList:
str = MIListToString(v);
break;
case MIValueTypeTuple:
str = MITupleToString(v);
break;
}
return str;
}
void
MIValueFree(MIValue *v)
{
if (v->cstring != NULL)
free(v->cstring);
if (v->results != NULL)
MIListFree(v->results, MIResultFree);
if (v->values != NULL)
MIListFree(v->values, MIValueFree);
free(v);
}