All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Data Fields | Related Functions
as_rec Struct Reference

Detailed Description

as_rec is an interface for record types. A record is how data in Aerospike is represented, and is composed of bins and metadata.

Implementations:

Definition at line 76 of file as_rec.h.

#include "as_rec.h"

+ Inheritance diagram for as_rec:
+ Collaboration diagram for as_rec:

Data Fields

void * data
 
const struct as_rec_hooks_s * hooks
 
- Data Fields inherited from as_val
cf_atomic32 count
 
bool free
 
enum as_val_t type
 

Related Functions

(Note that these are not member functions.)

static int as_rec_bin_names (const as_rec *rec, as_rec_bin_names_callback callback, void *udata)
 
as_recas_rec_cons (as_rec *rec, bool free, void *data, const as_rec_hooks *hooks)
 
static void as_rec_destroy (as_rec *rec)
 
static as_bytesas_rec_digest (const as_rec *rec)
 
static int as_rec_drop_key (const as_rec *rec)
 
static bool as_rec_foreach (const as_rec *rec, as_rec_foreach_callback callback, void *udata)
 
static as_recas_rec_fromval (const as_val *v)
 
static uint16_t as_rec_gen (const as_rec *rec)
 
static as_valas_rec_get (const as_rec *rec, const char *name)
 
static as_doubleas_rec_get_as_double (const as_rec *rec, const char *name)
 
static as_bytesas_rec_get_bytes (const as_rec *rec, const char *name)
 
static double as_rec_get_double (const as_rec *rec, const char *name)
 
static as_geojsonas_rec_get_geojson (const as_rec *rec, const char *name)
 
static char * as_rec_get_geojson_str (const as_rec *rec, const char *name)
 
static int64_t as_rec_get_int64 (const as_rec *rec, const char *name)
 
static as_integeras_rec_get_integer (const as_rec *rec, const char *name)
 
static as_listas_rec_get_list (const as_rec *rec, const char *name)
 
static as_mapas_rec_get_map (const as_rec *rec, const char *name)
 
static char * as_rec_get_str (const as_rec *rec, const char *name)
 
static as_stringas_rec_get_string (const as_rec *rec, const char *name)
 
as_recas_rec_init (as_rec *rec, void *data, const as_rec_hooks *hooks)
 
static as_valas_rec_key (const as_rec *rec)
 
static uint64_t as_rec_last_update_time (const as_rec *rec)
 
as_recas_rec_new (void *data, const as_rec_hooks *hooks)
 
static uint16_t as_rec_numbins (const as_rec *rec)
 
static int as_rec_remove (const as_rec *rec, const char *name)
 
static int as_rec_set (const as_rec *rec, const char *name, const as_val *value)
 
static int as_rec_set_as_double (const as_rec *rec, const char *name, const as_double *value)
 
static int as_rec_set_bytes (const as_rec *rec, const char *name, const as_bytes *value)
 
static int as_rec_set_double (const as_rec *rec, const char *name, double value)
 
static int as_rec_set_geojson (const as_rec *rec, const char *name, const as_geojson *value)
 
static int as_rec_set_int64 (const as_rec *rec, const char *name, int64_t value)
 
static int as_rec_set_integer (const as_rec *rec, const char *name, const as_integer *value)
 
static int as_rec_set_list (const as_rec *rec, const char *name, const as_list *value)
 
static int as_rec_set_map (const as_rec *rec, const char *name, const as_map *value)
 
static int as_rec_set_str (const as_rec *rec, const char *name, const char *value)
 
static int as_rec_set_string (const as_rec *rec, const char *name, const as_string *value)
 
static int as_rec_set_ttl (const as_rec *rec, uint32_t ttl)
 
static const char * as_rec_setname (const as_rec *rec)
 
static void * as_rec_source (const as_rec *rec)
 
static as_valas_rec_toval (const as_rec *rec)
 
static uint32_t as_rec_ttl (const as_rec *rec)
 

Friends And Related Function Documentation

static int as_rec_bin_names ( const as_rec rec,
as_rec_bin_names_callback  callback,
void *  udata 
)
related

Get a list of the bin names in the record.

Definition at line 336 of file as_rec.h.

as_rec * as_rec_cons ( as_rec rec,
bool  free,
void *  data,
const as_rec_hooks hooks 
)
related

Utilized by subtypes of as_rec to initialize the parent.

Parameters
recThe record to initialize
freeIf TRUE, then as_rec_destory() will free the record.
dataData for the map.
hooksImplementation for the map interface.
Returns
The initialized as_map on success. Otherwise NULL.
static void as_rec_destroy ( as_rec rec)
related

Destroy the record.

Definition at line 236 of file as_rec.h.

static as_bytes * as_rec_digest ( const as_rec rec)
related

Get the digest of the record.

Definition at line 346 of file as_rec.h.

static int as_rec_drop_key ( const as_rec rec)
related

Drop the record's key.

Definition at line 366 of file as_rec.h.

static bool as_rec_foreach ( const as_rec rec,
as_rec_foreach_callback  callback,
void *  udata 
)
related

Call the callback function for each bin in the record.

Parameters
recThe as_rec containing the bins to iterate over.
callbackThe function to call for each entry.
udataUser-data to be passed to the callback.
Returns
true if iteration completes fully. false if iteration was aborted.

Definition at line 765 of file as_rec.h.

static as_rec * as_rec_fromval ( const as_val v)
related

Convert from an as_val.

Definition at line 789 of file as_rec.h.

static uint16_t as_rec_gen ( const as_rec rec)
related

Get the generation of the record

Definition at line 296 of file as_rec.h.

static as_val * as_rec_get ( const as_rec rec,
const char *  name 
)
related

Get a bin's value.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 385 of file as_rec.h.

static as_double * as_rec_get_as_double ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_double.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 484 of file as_rec.h.

static as_bytes * as_rec_get_bytes ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_bytes.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 532 of file as_rec.h.

static double as_rec_get_double ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as a double.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise 0.

Definition at line 417 of file as_rec.h.

static as_geojson * as_rec_get_geojson ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_geojson.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 516 of file as_rec.h.

static char * as_rec_get_geojson_str ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as a NULL terminated GeoJSON string.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 451 of file as_rec.h.

static int64_t as_rec_get_int64 ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an int64_t.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise 0.

Definition at line 400 of file as_rec.h.

static as_integer * as_rec_get_integer ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_integer.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 468 of file as_rec.h.

static as_list * as_rec_get_list ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_list.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 548 of file as_rec.h.

static as_map * as_rec_get_map ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_map.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 564 of file as_rec.h.

static char * as_rec_get_str ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as a NULL terminated string.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 434 of file as_rec.h.

static as_string * as_rec_get_string ( const as_rec rec,
const char *  name 
)
related

Get a bin's value as an as_string.

Parameters
recThe as_rec to read the bin value from.
nameThe name of the bin.
Returns
On success, the value of the bin. Otherwise NULL.

Definition at line 500 of file as_rec.h.

as_rec * as_rec_init ( as_rec rec,
void *  data,
const as_rec_hooks hooks 
)
related

Initialize a stack allocated record.

Parameters
recStack allocated record to initialize.
dataData for the record.
hooksImplementation for the record interface.
Returns
On success, the initialized record. Otherwise NULL.
static as_val * as_rec_key ( const as_rec rec)
related

Get the record's key.

Definition at line 306 of file as_rec.h.

static uint64_t as_rec_last_update_time ( const as_rec rec)
related

Get the last update time for the record.

Definition at line 286 of file as_rec.h.

as_rec * as_rec_new ( void *  data,
const as_rec_hooks hooks 
)
related

Create and initialize a new heap allocated record.

Parameters
dataData for the record.
hooksImplementation for the record interface.
Returns
On success, a new record. Otherwise NULL.
static uint16_t as_rec_numbins ( const as_rec rec)
related

Get the number of bins in the record.

Definition at line 326 of file as_rec.h.

static int as_rec_remove ( const as_rec rec,
const char *  name 
)
related

Set bin value to nil. This will instruct the server to remove the bin when the record is written using aerospike_key_put().

Parameters
recThe record to remove the bin from.
nameThe name of the bin to remove.
Returns
0 on success, otherwise an error occurred.

Definition at line 266 of file as_rec.h.

static int as_rec_set ( const as_rec rec,
const char *  name,
const as_val value 
)
related

Set the bin's value to an as_val.

Parameters
recThe as_rec to write the bin value to - CONSUMES REFERENCE
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 585 of file as_rec.h.

static int as_rec_set_as_double ( const as_rec rec,
const char *  name,
const as_double value 
)
related

Set the bin's value to an as_double.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 665 of file as_rec.h.

static int as_rec_set_bytes ( const as_rec rec,
const char *  name,
const as_bytes value 
)
related

Set the bin's value to an as_bytes.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 713 of file as_rec.h.

static int as_rec_set_double ( const as_rec rec,
const char *  name,
double  value 
)
related

Set the bin's value to a double.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 617 of file as_rec.h.

static int as_rec_set_geojson ( const as_rec rec,
const char *  name,
const as_geojson value 
)
related

Set the bin's value to an as_geojson.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 697 of file as_rec.h.

static int as_rec_set_int64 ( const as_rec rec,
const char *  name,
int64_t  value 
)
related

Set the bin's value to an int64_t.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 601 of file as_rec.h.

static int as_rec_set_integer ( const as_rec rec,
const char *  name,
const as_integer value 
)
related

Set the bin's value to an as_integer.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 649 of file as_rec.h.

static int as_rec_set_list ( const as_rec rec,
const char *  name,
const as_list value 
)
related

Set the bin's value to an as_list.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 729 of file as_rec.h.

static int as_rec_set_map ( const as_rec rec,
const char *  name,
const as_map value 
)
related

Set the bin's value to an as_map.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 745 of file as_rec.h.

static int as_rec_set_str ( const as_rec rec,
const char *  name,
const char *  value 
)
related

Set the bin's value to a NULL terminated string.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 633 of file as_rec.h.

static int as_rec_set_string ( const as_rec rec,
const char *  name,
const as_string value 
)
related

Set the bin's value to an as_string.

Parameters
recThe as_rec storing the bin.
nameThe name of the bin.
valueThe value of the bin.
Returns
On success, 0. Otherwise an error occurred.

Definition at line 681 of file as_rec.h.

static int as_rec_set_ttl ( const as_rec rec,
uint32_t  ttl 
)
related

Set the time to live (ttl).

Definition at line 356 of file as_rec.h.

static const char * as_rec_setname ( const as_rec rec)
related

Get the record's set name.

Definition at line 316 of file as_rec.h.

static void * as_rec_source ( const as_rec rec)
related

Get the data source for the record.

Definition at line 250 of file as_rec.h.

static as_val * as_rec_toval ( const as_rec rec)
related

Convert to an as_val.

Definition at line 779 of file as_rec.h.

static uint32_t as_rec_ttl ( const as_rec rec)
related

Get the ttl for the record.

Definition at line 276 of file as_rec.h.

Field Documentation

void* as_rec::data

Data provided by the implementation of as_rec.

Definition at line 88 of file as_rec.h.

const struct as_rec_hooks_s* as_rec::hooks

Hooks provided by the implementation of as_rec.

Definition at line 93 of file as_rec.h.


The documentation for this struct was generated from the following file: