1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2007, 2009 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #define DATA_VALUE_H 1
27 /* Maximum length of a "short" string, that is represented in
28 "union value" without a separate pointer.
30 This is an implementation detail of the "union value" code.
31 There is little reason for client code to use it. */
32 #define MAX_SHORT_STRING 8
34 /* A numeric or string value.
36 The client is responsible for keeping track of the value's
39 This structure is semi-opaque:
41 - If the value is a number, clients may access the 'f'
44 - Clients should not access other members directly.
49 uint8_t short_string[MAX_SHORT_STRING];
53 static inline void value_init (union value *, int width);
54 static inline bool value_needs_init (int width);
55 static inline bool value_try_init (union value *, int width);
56 static inline void value_destroy (union value *, int width);
58 static inline double value_num (const union value *);
59 static inline const uint8_t *value_str (const union value *, int width);
60 static inline uint8_t *value_str_rw (union value *, int width);
62 static inline void value_copy (union value *, const union value *, int width);
63 void value_copy_rpad (union value *, int dst_width,
64 const union value *, int src_width,
66 void value_copy_str_rpad (union value *, int dst_width, const uint8_t *,
68 void value_copy_buf_rpad (union value *dst, int dst_width,
69 const uint8_t *src, size_t src_len, char pad);
70 void value_set_missing (union value *, int width);
71 int value_compare_3way (const union value *, const union value *, int width);
72 bool value_equal (const union value *, const union value *, int width);
73 unsigned int value_hash (const union value *, int width, unsigned int basis);
75 bool value_is_resizable (const union value *, int old_width, int new_width);
76 bool value_needs_resize (int old_width, int new_width);
77 void value_resize (union value *, int old_width, int new_width);
79 static inline void value_swap (union value *, union value *);
82 void value_init_pool (struct pool *, union value *, int width);
83 void value_resize_pool (struct pool *, union value *,
84 int old_width, int new_width);
86 /* Initializes V as a value of the given WIDTH, where 0
87 represents a numeric value and a positive integer represents a
88 string value WIDTH bytes long.
90 A WIDTH of -1 is ignored.
92 The contents of value V are indeterminate after
95 value_init (union value *v, int width)
97 if (width > MAX_SHORT_STRING)
98 v->long_string = xmalloc (width);
101 /* Returns true if a value of the given WIDTH actually needs to
102 have the value_init and value_destroy functions called, false
103 if those functions are no-ops for values of the given WIDTH.
105 Using this function is only a valuable optimization if a large
106 number of values of the given WIDTH are to be initialized*/
108 value_needs_init (int width)
110 return width > MAX_SHORT_STRING;
113 /* Same as value_init, except that failure to allocate memory
114 causes it to return false instead of terminating the
115 program. On success, returns true. */
117 value_try_init (union value *v, int width)
119 if (width > MAX_SHORT_STRING)
121 v->long_string = malloc (width);
122 return v->long_string != NULL;
128 /* Frees any memory allocated by value_init for V, which must
129 have the given WIDTH. */
131 value_destroy (union value *v, int width)
133 if (width > MAX_SHORT_STRING)
134 free (v->long_string);
137 /* Returns the numeric value in V, which must have width 0. */
139 value_num (const union value *v)
144 /* Returns the string value in V, which must have width WIDTH.
146 The returned value is not null-terminated.
148 It is important that WIDTH be the actual value that was passed
149 to value_init. Passing, e.g., a smaller value because only
150 that number of bytes will be accessed will not always work. */
151 static inline const uint8_t *
152 value_str (const union value *v, int width)
155 return (width > MAX_SHORT_STRING ? v->long_string : v->short_string);
158 /* Returns the string value in V, which must have width WIDTH.
160 The returned value is not null-terminated.
162 It is important that WIDTH be the actual value that was passed
163 to value_init. Passing, e.g., a smaller value because only
164 that number of bytes will be accessed will not always work. */
165 static inline uint8_t *
166 value_str_rw (union value *v, int width)
169 return (width > MAX_SHORT_STRING ? v->long_string : v->short_string);
172 /* Copies SRC to DST, given that they both contain data of the
175 value_copy (union value *dst, const union value *src, int width)
177 if (width <= MAX_SHORT_STRING)
180 memcpy (dst->long_string, src->long_string, width);
183 /* Exchanges the contents of A and B. */
185 value_swap (union value *a, union value *b)
187 union value tmp = *a;
192 #endif /* data/value.h */