File: gd_put_string.3in

package info (click to toggle)
libgetdata 0.11.0-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,144 kB
  • sloc: ansic: 100,814; cpp: 4,843; fortran: 4,548; f90: 2,561; python: 2,406; perl: 2,274; makefile: 1,487; php: 1,465; sh: 86
file content (127 lines) | stat: -rw-r--r-- 3,170 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.\" gd_put_string.3.  The gd_put_string man page.
.\"
.\" Copyright (C) 2008, 2009, 2010, 2011, 2016 D. V. Wiebe
.\"
.\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.\"
.\" This file is part of the GetData project.
.\"
.\" Permission is granted to copy, distribute and/or modify this document
.\" under the terms of the GNU Free Documentation License, Version 1.2 or
.\" any later version published by the Free Software Foundation; with no
.\" Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
.\" Texts.  A copy of the license is included in the `COPYING.DOC' file
.\" as part of this distribution.
.\"
.TH gd_put_string 3 "25 December 2016" "Version 0.10.0" "GETDATA"

.SH NAME
gd_put_string \(em write a STRING or SARRAY element to a Dirfile database

.SH SYNOPSIS
.SC
.B #include <getdata.h>
.HP
.BI "int gd_put_string(DIRFILE *" dirfile ", const char *" field_code ,
.BI "const char *" data_in );
.EC

.SH DESCRIPTION
The
.FN gd_put_string
function queries a dirfile(5) database specified by
.ARG dirfile
and stores the character string
.ARG data_in
in the
.B STRING
or
.B SARRAY
scalar field, specified by
.ARG field_code .
If
.ARG field_code
specifies a
.B SARRAY
field, the supplied string is stored as the first element.

The 
.ARG dirfile
argument must point to a valid DIRFILE object previously created by a call to
.F3 gd_open .

Because string values are stored in the dirfile metadata, the new value of
.ARG field_code
won't be written to disk until the dirfile metadata is flushed with
.F3 gd_metaflush ,
or until the dirfile is closed with
.F3 gd_close .

The
.F3 gd_put_sarray
function provides another way of storing
.B STRING
and
.B SARRAY
data to a Dirfile.

.SH RETURN VALUE
On success,
.FN gd_put_string
returns zero.  On error, this a negative-valued error code.  Possible error
codes are:
.DD GD_E_ACCMODE
The specified
.ARG dirfile
was opened read-only.
.DD GD_E_BAD_CODE
The field specified by
.ARG field_code
was not found in the database.
.DD GD_E_BAD_DIRFILE
An invalid
.ARG dirfile
was supplied.
.DD GD_E_BAD_FIELD_TYPE
The supplied
.ARG field_code
referred to a field of type other than
.BR SARRAY
or
.BR STRING .
.DD GD_E_INTERNAL_ERROR
An internal error occurred in the library while trying to perform the task.
This indicates a bug in the library.  Please report the incident to the
maintainer.
.DD GD_E_PROTECTED
The fragment containing the string was protected from change.
.PP
The error code is also stored in the
.B DIRFILE
object and may be retrieved after this function returns by calling
.F3 gd_error .
A descriptive error string for the error may be obtained by calling
.F3 gd_error_string .

.SH HISTORY
The
.FN put_string
function apepared in GetData-0.4.0.  It returned a
.B size_t
cotnaining length of the string written, or zero on error.

In GetData-0.7.0, this function was renamed to
.FN gd_put_strint .

In GetData-0.10.0, this function's return value changed to zero on success, or
or else a negative-valued error code.

.SH SEE ALSO
dirfile(5),
.F3 gd_close ,
.F3 gd_get_string ,
.F3 gd_error ,
.F3 gd_error_string ,
.F3 gd_metaflush ,
.F3 gd_open ,
.F3 gd_put_sarray .