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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
/*!
\file lib/db/dbmi_base/value.c
\brief DBMI Library (base) - value management
(C) 1999-2009, 2011 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
\author Joel Jones (CERL/UIUC), Radim Blazek
\author Doxygenized by Martin Landa <landa.martin gmail.com> (2011)
*/
#include <stdlib.h>
#include <grass/dbmi.h>
/*!
\brief Check of value is null
\param value pointer to dbValue
\return non-zero is null
\return zero is not null
*/
int db_test_value_isnull(dbValue *value)
{
return (value->isNull != 0);
}
/*!
\brief Get integer value
\param value pointer to dbValue
\return value
*/
int db_get_value_int(dbValue *value)
{
return (value->i);
}
/*!
\brief Get double precision value
\param value pointer to dbValue
\return value
*/
double db_get_value_double(dbValue *value)
{
return (value->d);
}
/*!
\brief Get value as double
For given value and C type of value returns double representation.
\param value pointer to dbValue
\param ctype C data type
\return value
*/
double db_get_value_as_double(dbValue *value, int ctype)
{
double val;
switch (ctype) {
case (DB_C_TYPE_INT):
val = (double)db_get_value_int(value);
break;
case (DB_C_TYPE_STRING):
val = atof(db_get_value_string(value));
break;
case (DB_C_TYPE_DOUBLE):
val = db_get_value_double(value);
break;
default:
val = 0;
}
return val;
}
/*!
\brief Get string value
\param value pointer to dbValue
\return value
*/
const char *db_get_value_string(dbValue *value)
{
return (db_get_string(&value->s));
}
/*!
\brief Get year value
\param value pointer to dbValue
\return value
*/
int db_get_value_year(dbValue *value)
{
return (value->t.year);
}
/*!
\brief Get month value
\param value pointer to dbValue
\return value
*/
int db_get_value_month(dbValue *value)
{
return (value->t.month);
}
/*!
\brief Get day value
\param value pointer to dbValue
\return value
*/
int db_get_value_day(dbValue *value)
{
return (value->t.day);
}
/*!
\brief Get hour value
\param value pointer to dbValue
\return value
*/
int db_get_value_hour(dbValue *value)
{
return (value->t.hour);
}
/*!
\brief Get minute value
\param value pointer to dbValue
\return value
*/
int db_get_value_minute(dbValue *value)
{
return (value->t.minute);
}
/*!
\brief Get seconds value
\param value pointer to dbValue
\return value
*/
double db_get_value_seconds(dbValue *value)
{
return (value->t.seconds);
}
/*!
\brief Set value to null
\param value pointer to dbValue
*/
void db_set_value_null(dbValue *value)
{
value->isNull = 1;
}
/*!
\brief Set value to not null
\param value pointer to dbValue
*/
void db_set_value_not_null(dbValue *value)
{
value->isNull = 0;
}
/*!
\brief Set integer value
\param value pointer to dbValue
\param i integer value
*/
void db_set_value_int(dbValue *value, int i)
{
value->i = i;
db_set_value_not_null(value);
}
/*!
\brief Set double precision value
\param value pointer to dbValue
\param d double value
*/
void db_set_value_double(dbValue *value, double d)
{
value->d = d;
db_set_value_not_null(value);
}
/*!
\brief Set string value
\param value pointer to dbValue
\param s string value
*/
int db_set_value_string(dbValue *value, const char *s)
{
db_set_value_not_null(value);
return db_set_string(&value->s, s);
}
/*!
\brief Set year value
\param value pointer to dbValue
\param year year value
*/
void db_set_value_year(dbValue *value, int year)
{
value->t.year = year;
db_set_value_datetime_not_current(value);
}
/*!
\brief Set month value
\param value pointer to dbValue
\param month month value
*/
void db_set_value_month(dbValue *value, int month)
{
value->t.month = month;
db_set_value_datetime_not_current(value);
}
/*!
\brief Set day value
\param value pointer to dbValue
\param day day value
*/
void db_set_value_day(dbValue *value, int day)
{
value->t.day = day;
db_set_value_datetime_not_current(value);
}
/*!
\brief Set hour value
\param value pointer to dbValue
\param hour hour value
*/
void db_set_value_hour(dbValue *value, int hour)
{
value->t.hour = hour;
db_set_value_datetime_not_current(value);
}
/*!
\brief Set minute value
\param value pointer to dbValue
\param minute minute value
*/
void db_set_value_minute(dbValue *value, int minute)
{
value->t.minute = minute;
db_set_value_datetime_not_current(value);
}
/*!
\brief Set seconds value
\param value pointer to dbValue
\param seconds seconds value
*/
void db_set_value_seconds(dbValue *value, double seconds)
{
value->t.seconds = seconds;
db_set_value_datetime_not_current(value);
}
/*!
\brief Check if datatime is current
\param value pointer to dbValue
\return non-zero for true
\return zero for false
*/
int db_test_value_datetime_current(dbValue *value)
{
return (value->t.current != 0);
}
/*!
\brief Set datetime to current
\param value pointer to dbValue
*/
void db_set_value_datetime_current(dbValue *value)
{
value->t.current = 1;
db_set_value_not_null(value);
}
/*!
\brief Set value to non-current
\param value pointer to dbValue
*/
void db_set_value_datetime_not_current(dbValue *value)
{
value->t.current = 0;
db_set_value_not_null(value);
}
/*!
\brief Copy value
Copy value from src to destination
\param dst destination dbValue
\param src source dbValue
*/
void db_copy_value(dbValue *dst, dbValue *src)
{
dst->isNull = src->isNull;
dst->i = src->i;
dst->d = src->d;
if (src->s.nalloc > 0)
db_copy_string(&(dst->s), &(src->s));
dst->t.current = src->t.current;
dst->t.year = src->t.year;
dst->t.month = src->t.month;
dst->t.day = src->t.day;
dst->t.hour = src->t.hour;
dst->t.minute = src->t.minute;
dst->t.seconds = src->t.seconds;
}
/*!
\brief Initialize dbCatValArray
\param arr pointer to dbCatValArray to be initialized
*/
void db_CatValArray_init(dbCatValArray *arr)
{
arr->n_values = 0;
arr->alloc = 0;
arr->value = NULL;
}
/*!
\brief Free allocated dbCatValArray
\param arr pointer to dbCatValArray
*/
void db_CatValArray_free(dbCatValArray *arr)
{
if (arr->ctype == DB_C_TYPE_STRING || arr->ctype == DB_C_TYPE_DATETIME) {
int i;
for (i = 0; i < arr->n_values; i++) {
if (arr->ctype == DB_C_TYPE_STRING && arr->value[i].val.s) {
db_free_string(arr->value[i].val.s);
}
if (arr->ctype == DB_C_TYPE_DATETIME && arr->value[i].val.t) {
db_free(arr->value[i].val.t);
}
}
}
G_free(arr->value);
}
/*!
\brief Allocate dbCatValArray
\todo return type void?
\param arr pointer to dbCatValArray
\param n number of items
\return DB_OK
*/
int db_CatValArray_alloc(dbCatValArray *arr, int n)
{
arr->value = (dbCatVal *)G_calloc(n, sizeof(dbCatVal));
arr->alloc = n;
return DB_OK;
}
/*!
\brief Realloc dbCatValArray
\todo return code void?
\param arr pointer to dbCatValArray
\param n number of items
\return DB_OK
*/
int db_CatValArray_realloc(dbCatValArray *arr, int n)
{
arr->value = (dbCatVal *)G_realloc(arr->value, n * sizeof(dbCatVal));
arr->alloc = n;
return DB_OK;
}
|