123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /*!
- \file lib/db/dbmi_base/xdrdouble.c
-
- \brief DBMI Library (base) - external data representation (double)
-
- (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, Brad Douglas, Markus Neteler
- \author Doxygenized by Martin Landa <landa.martin gmail.com> (2011)
- */
- #include "xdr.h"
- /*!
- \brief Send double
- \param d
- \return
- */
- int db__send_double(double d)
- {
- int stat = DB_OK;
- if (!db__send(&d, sizeof(d)))
- stat = DB_PROTOCOL_ERR;
- if (stat == DB_PROTOCOL_ERR)
- db_protocol_error();
- return stat;
- }
- /*!
- \brief Receive double
- \param d
- */
- int db__recv_double(double *d)
- {
- int stat = DB_OK;
- if (!db__recv(d, sizeof(*d)))
- stat = DB_PROTOCOL_ERR;
- if (stat == DB_PROTOCOL_ERR)
- db_protocol_error();
- return stat;
- }
- /*!
- \brief Send double array
- \param x
- \param n
- \return
- */ \
- int db__send_double_array(const double *x, int n)
- {
- int stat = DB_OK;
- if (!db__send(&n, sizeof(n)))
- stat = DB_PROTOCOL_ERR;
- if (!db__send(x, n * sizeof(*x)))
- stat = DB_PROTOCOL_ERR;
- if (stat == DB_PROTOCOL_ERR)
- db_protocol_error();
- return stat;
- }
- /*!
- \brief Receive double array
- Returns an allocated array of doubles
- Caller is responsible for free()
- \param x
- \param n
- \return
- */
- int db__recv_double_array(double **x, int *n)
- {
- int stat = DB_OK;
- int count = 0;
- double *a = NULL;
- if (!db__recv(&count, sizeof(count)))
- stat = DB_PROTOCOL_ERR;
- *n = count;
- *x = a = (double *)db_calloc(count, sizeof(*a));
- if (!db__recv(a, count * sizeof(*a)))
- stat = DB_PROTOCOL_ERR;
- if (stat == DB_PROTOCOL_ERR)
- db_protocol_error();
- return stat;
- }
|