1get_mvector_list(3) GETDATA get_mvector_list(3)
2
3
4
6 get_mvector_list — retrieve a list of vector fields in a dirfile
7
9 #include <getdata.h>
10
11 const char **get_mvector_list(DIRFILE *dirfile, const char *parent);
12
14 The get_mvector_list() function queries a dirfile(5) database specified
15 by dirfile and returns a read-only list of names of the all vector type
16 metafields for the specified parent field defined in the database (i.e.
17 fields of types BIT, LINCOM, LINTERP, MULTIPLY, PHASE, POLYNOM, RAW,
18 SBIT).
19
20 The dirfile argument must point to a valid DIRFILE object previously
21 created by a call to dirfile_open(3).
22
23 The array returned will be de-allocated by a call to dirfile_close(3)
24 and should not be de-allocated by the caller. The list returned should
25 not be assumed to be in any particular order. The array is terminated
26 by a NULL pointer. The number of strings in the array can be obtained
27 from a call to get_nmvectors(3).
28
29 The caller may not modify any strings in the array, or the array it‐
30 self. Doing so may cause database corruption. The pointer returned is
31 guaranteed to be valid until get_mvector_list() is called again with
32 the same arguments, or until the array is deallocated by a call to
33 dirfile_close(3).
34
35
37 Upon successful completion, get_mvector_list() returns a pointer to an
38 array of strings containing the names of all the vector metafields for
39 the given parent field. On error it returns NULL and sets the dirfile
40 error to a non-zero error value. Possible error values are:
41
42 GD_E_ALLOC
43 The library was unable to allocate memory.
44
45 GD_E_BAD_CODE
46 The supplied parent field code was not found, or referred to a
47 metafield itself.
48
49 GD_E_BAD_DIRFILE
50 The supplied dirfile was invalid.
51
52 The dirfile error may be retrieved by calling get_error(3). A descrip‐
53 tive error string for the last error encountered can be obtained from a
54 call to get_error_string(3).
55
57 dirfile(5), dirfile_open(3), get_error(3), get_error_string(3),
58 get_mfield_list(3), get_nmetavectors(3), get_vector_list(3)
59
60
61
62Version 0.6.0 16 October 2009 get_mvector_list(3)