UniRec  2.9.3
Data Structures | Functions
CSV representation

Data Structures

struct  urcsv_t
 

Functions

urcsv_turcsv_init (ur_template_t *tmplt, char delimiter)
 
void urcsv_free (urcsv_t **urcsv)
 
char * urcsv_header (urcsv_t *urcsv)
 
char * urcsv_record (urcsv_t *urcsv, const void *rec)
 
int urcsv_field (char *dst, uint32_t size, const void *rec, ur_field_type_t id, ur_template_t *tmplt)
 

Detailed Description

Functions to convert UniRec template and data into CSV-like representation

urcsv_t *csv = urcsv_init(tmplt, ',');
char *str = urcsv_header(csv);
fprintf(stderr, "%s\n", str);
free(str);
str = urcsv_record(csv, rec);
fprintf(stderr, "%s\n", str);
free(str);
urcsv_free(&csv);

Data Structure Documentation

◆ urcsv_t

struct urcsv_t

Internal structure used by urcsv_init(), urcsv_free(), urcsv_header(), urcsv_record()

Definition at line 47 of file unirec2csv.h.

Data Fields
char * buffer

Internal string buffer, allocated to buffer_size bytes

uint32_t buffer_size

Current size of allocated memory for buffer

char * curpos

Internal position in the buffer to write next string

char delimiter

Delimiter that is put between columns

uint32_t free_space

Current free bytes in the buffer

ur_template_t * tmplt

UniRec template associated with this conversion

Function Documentation

◆ urcsv_field()

int urcsv_field ( char *  dst,
uint32_t  size,
const void *  rec,
ur_field_type_t  id,
ur_template_t tmplt 
)

Convert value of UniRec field to its string representation.

Parameters
[out]dstPointer to memory where to store result (pointer is not moved)
[in]sizeSize of available memory for result
[in]recUniRec record - value of the field is taken
[in]idUniRec field id
[in]tmpltUniRec template
Returns
Number of written bytes. If 0, there was not enough space and caller must increase the memory size.

Definition at line 129 of file unirec2csv.c.

◆ urcsv_free()

void urcsv_free ( urcsv_t **  urcsv)

Destructor for urcsv_t

The funtion deallocates internal memory and urcsv, the pointer is set to NULL.

Parameters
[in,out]urcsvAddress of pointer to structure allocated by urcsv_init(), it will be set to NULL.

Definition at line 28 of file unirec2csv.c.

◆ urcsv_header()

char* urcsv_header ( urcsv_t urcsv)

Create a header line

The funtion creates a text representation of header according to template

Parameters
[in,out]urcsvPointer to structure allocated by urcsv_init().
Returns
Pointer to string, caller must free it

Definition at line 37 of file unirec2csv.c.

◆ urcsv_init()

urcsv_t* urcsv_init ( ur_template_t tmplt,
char  delimiter 
)

Constructor for urcsv_t

The function initializes struct for urcsv_header() and urcsv_record().

Parameters
[in]tmpltUniRec template that will be used to access fields of the records
[in]delimiterDelimiter that will be used to separate columns of output
Returns
Pointer to newly allocated and initialized structure

Definition at line 7 of file unirec2csv.c.

◆ urcsv_record()

char* urcsv_record ( urcsv_t urcsv,
const void *  rec 
)

Create a record line

The funtion creates a text representation of UniRec record

Parameters
[in,out]urcsvPointer to structure allocated by urcsv_init().
[in]recPointer to data - UniRec message
Returns
Pointer to string, caller must free it

Definition at line 209 of file unirec2csv.c.