123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- /*!
- \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;
- }
|