summaryrefslogtreecommitdiffstats
path: root/clib/src/value.c
blob: 899221e2ce1d98398323fcdcbfcc25ae601b8621 (plain)
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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: clib/src/value.c $                                            */
/*                                                                        */
/* OpenPOWER FFS Project                                                  */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2014,2015                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */

/*
 *   File: value.c
 * Author: Shaun Wetzstein <shaun@us.ibm.com>
 *  Descr:
 *   Note:
 *   Date: 08/23/10
 */

#include <unistd.h>
#include <stdarg.h>
#include <stdlib.h>
#include <malloc.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <limits.h>

#include "libclib.h"
#include "value.h"

/* ======================================================================= */

void value_dump(const value_t * self, FILE * out)
{
	assert(self != NULL);

	static const char *type_name[] = {
		"<unknown>",
		"int8_t", "int16_t", "int32_t", "int64_t",
		"uint8_t", "uint16_t", "uint32_t", "uint64_t",
		"float", "double",
		"string", "string-inline", "string-offset", "string-const",
		"blob", "blob-inline", "blob-offset", "blob-file",
	};

	switch (self->type) {
	case VT_I8:
		fprintf(out, "value: [ data: %d size: %d type: %s ] %p\n",
			self->i8, self->size, type_name[self->type], self);
		break;
	case VT_I16:
		fprintf(out, "value: [ data: %d size: %d type: %s ] %p\n",
			self->i16, self->size, type_name[self->type], self);
		break;
	case VT_I32:
		fprintf(out, "value: [ data: %d size: %d type: %s ] %p\n",
			self->i32, self->size, type_name[self->type], self);
		break;
	case VT_I64:
		fprintf(out, "value: [ data: %lld size: %d type: %s ] %p\n",
			(long long)self->i64, self->size, type_name[self->type], self);
		break;
	case VT_U8:
		fprintf(out, "value: [ data: %ud size: %d type: %s ] %p\n",
			self->u8, self->size, type_name[self->type], self);
		break;
	case VT_U16:
		fprintf(out, "value: [ data: %d size: %d type: %s ] %p\n",
			self->u16, self->size, type_name[self->type], self);
		break;
	case VT_U32:
		fprintf(out, "value: [ data: %d size: %d type: %s ] %p\n",
			self->u32, self->size, type_name[self->type], self);
		break;
	case VT_U64:
		fprintf(out, "value: [ data: %lld size: %d type: %s ] %p\n",
			(long long)self->u64, self->size, type_name[self->type], self);
		break;
	case VT_REAL32:
		fprintf(out, "value: [ data: %f size: %d type: %s ] %p\n",
			self->r32, self->size, type_name[self->type], self);
		break;
	case VT_REAL64:
		fprintf(out, "value: [ data: %g size: %d type: %s ] %p\n",
			self->r64, self->size, type_name[self->type], self);
		break;
	case VT_STR:
		fprintf(out, "value: [ data: '%s' size: %d type: %s ] %p\n",
			(char *)self->ptr, self->size, type_name[self->type],
			self);
		break;
	case VT_STR_INLINE:
		fprintf(out, "value: [ data: '%s' size: %d type: %s ] %p\n",
			(char *)self->data, self->size, type_name[self->type],
			self);
		break;
	case VT_STR_OFF:
		fprintf(out, "value: [ data: %llu size: %d type: %s ] %p\n",
			(long long)self->u64, self->size, type_name[self->type], self);
		break;
	case VT_STR_CONST:
		fprintf(out, "value: [ data: '%s' size: %d type: %s ] %p\n",
			(const char *)self->ptr, self->size,
			type_name[self->type], self);
		break;
	case VT_BLOB:
		fprintf(out, "value: [ size: %d type: %s ] %p\n",
			self->size, type_name[self->type], self);
		dump_memory(out, (unsigned long)self->ptr, self->ptr,
			    self->size);
		break;
	case VT_BLOB_INLINE:
		fprintf(out, "value: [ size: %d type: %s ] %p\n",
			self->size, type_name[self->type], self);
		dump_memory(out, (unsigned long)self->data, self->data,
			    self->size);
		break;
	case VT_BLOB_OFF:
		fprintf(out, "value: [ data: %llu size: %d type: %s ] %p\n",
			(long long)self->u64, self->size, type_name[self->type], self);
		break;
	case VT_BLOB_FILE:
		fprintf(out, "value: [ data: '%s' size: %d type: %s ] %p\n",
			(char *)self->data, self->size, type_name[self->type],
			self);
		break;
	default:
		// throw_unexpected(VALUE_TYPE);
		fprintf(out, "value: [ size: %d type: %s ] %p\n",
			self->size, type_name[self->type], self);
	}
}

/* ======================================================================= */
OpenPOWER on IntegriCloud