forked from indilib/indi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
indidriver.h
225 lines (186 loc) · 11.7 KB
/
indidriver.h
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#if 0
INDI Driver Functions
Copyright (C) 2003 - 2015 Jasem Mutlaq
Copyright (C) 2003 - 2006 Elwood C. Downey
This library is free software;
you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation;
either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY;
without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library;
if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110 - 1301 USA
#endif
#pragma once
#include "indiapi.h"
#include "lilxml.h"
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
extern int verbose; /* chatty */
extern char *me; /* a.out name */
//extern LilXML *clixml; /* XML parser context */
extern int dispatch(XMLEle *root, char msg[]);
//extern void clientMsgCB(int fd, void *arg);
/**
* \defgroup configFunctions Configuration Functions: Functions drivers call to save and load configuraion options.
<p>Drivers can save properties states and values in an XML configuration file. The following functions take an optional filename
parameter which specifies the full path of the configuration file. If the filename is set to NULL, the configuration file
is locally stored in ~/.indi. By default, two configuration files may exist for each driver:</p>
<ul>
<li>Last Saved Configuration: ~/.indi/driver_name_config.xml</li>
<li>Default Configuration: ~/.indi/driver_name_config.xml.default</li>
</ul>
<p>libindi stores the configuration parameters enclosed in newXXX commands. Therefore, if a configuration file is loaded,
the driver property gets updated as if a client is setting these values. This is important to note since some configuration
options may only available when the device is powered up or is in a particular state.</p>
<p>If no filename is supplied, each function will try to create the configuration files in the following order:</p>
<ol>
<li>INDICONFIG environment variable: The functions checks if the envrionment variable is defined, and if so, it shall
be used as the configuration filename</li>
<li>Generate filename: If the <i>device_name</i> is supplied, the function will attempt to set the configuration filename to ~/.indi/device_name_config.xml</li>
</ol>
\author Jasem Mutlaq
\note Drivers subclassing INDI::DefaultDevice do not need to call the configuration functions directly as it is handled internally by the class.
\version libindi 1.1+
*/
/*@{*/
/** \brief Open a configuration file for writing and return a configuration file FILE pointer.
\param filename full path of the configuration file. If set, the function will attempt to open it for writing.
If set to NULL, it will attempt to generate the filename as described in the <b>Detailed Description</b> introduction and then open it for writing.
\param dev device name. This is used if the filename parameter is NULL, and INDICONFIG environment variable is not set as described in the <b>Detailed Description</b> introduction.
\param mode mode to open the file with (e.g. "w" or "r")
\param errmsg In case of errors, store the error message in this buffer. The size of the buffer must be at least MAXRBUF.
\return pointer to FILE if configuration file is opened successful, otherwise NULL and errmsg is set.
*/
extern FILE *IUGetConfigFP(const char *filename, const char *dev, const char *mode, char errmsg[]);
/**
\param filename full path of the configuration file. If set, it will be deleted from disk.
If set to NULL, it will attempt to generate the filename as described in the <b>Detailed Description</b> introduction and then delete it.
\param dev device name. This is used if the filename parameter is NULL, and INDICONFIG environment variable is not set as described in the <b>Detailed Description</b> introduction.
\param errmsg In case of errors, store the error message in this buffer. The size of the buffer must be at least MAXRBUF.
\return 0 on success, -1 on failure.
*/
extern int IUPurgeConfig(const char *filename, const char *dev, char errmsg[]);
/** \brief Loads and processes a configuration file.
Once a configuration file is successful loaded, the function will iterate over the enclosed newXXX commands, and dispatches
each command to the driver. Subsequently, the driver receives the updated property value in the driver's ISNewXXX functions.
The driver may call this function at any time. However, it is usually called either on driver startup or on device power up.
By default, all the properties are read from the configuration file. To load a specific property, pass the property name, otherwise
pass NULL to retrieve all properties.
\param filename full path of the configuration file. If set, the function will attempt to load the file.
If set to NULL, it will attempt to generate the filename as described in the <b>Detailed Description</b> introduction and then load it.
\param dev device name. This is used if the filename parameter is NULL, and INDICONFIG environment variable is not set as described in the <b>Detailed Description</b> introduction.
\param property Property name to load configuration for. If NULL, all properties within the configuration file will be processed.
\param silent If silent is 1, it will suppress any output messages to the driver.
\param errmsg In case of errors, store the error message in this buffer. The size of the buffer must be at least MAXRBUF.
\return 0 on successful, -1 if there is an error and errmsg is set.
*/
extern int IUReadConfig(const char *filename, const char *dev, const char *property, int silent, char errmsg[]);
/** \brief Copies an existing configuration file into a default configuration file.
If no <i>default</i> configuration file for the supplied <i>dev</i> exists, it gets created and its contentes copied from an exiting source configuration file.
Usually, when the user saves the configuration file of a driver for the first time, IUSaveDefaultConfig is called to create the default
configuration file. If the default configuration file already exists, the function performs no action and returns.
\param source_config full path of the source configuration file to read. If set, the function will attempt to load the file.
If set to NULL, it will attempt to generate the filename as described in the <b>Detailed Description</b> introduction and then load it.
\param dest_config full path of the destination default configuration file to write. If set, the function will attempt to load the file.
If set to NULL, it will attempt to generate the filename as described in the <b>Detailed Description</b> introduction and then load it.
If the file already exists, the function returns. If the file doesn't exist, it gets created and its contents copied from the source_config file.
\param dev device name. This is used if either the source_config or desg_config are NULL, and INDICONFIG environment variable is not set as described in the <b>Detailed Description</b> introduction.
\return 0 is successful, -1 othereise.
*/
extern int IUSaveDefaultConfig(const char *source_config, const char *dest_config, const char *dev);
/** \brief Add opening or closing tag to a configuration file.
A configuration file root XML element is \<INDIDriver\>. This functions add \<INDIDriver\> or \</INDIDriver\> as required.
\param fp file pointer to a configuration file.
\param ctag If 0, \<INDIDriver\> is appened to the configuration file, otherwise \</INDIDriver\> is appeneded and the <i>fp</i> is closed.
\param dev device name. Used only for sending notification to the driver if silent is set to 1.
\param silent If silent is 1, it will suppress any output messages to the driver.
*/
extern void IUSaveConfigTag(FILE *fp, int ctag, const char *dev, int silent);
/** \brief Add a number vector property value to the configuration file
\param fp file pointer to a configuration file.
\param nvp pointer to a number vector property.
*/
extern void IUSaveConfigNumber(FILE *fp, const INumberVectorProperty *nvp);
/** \brief Add a text vector property value to the configuration file
\param fp file pointer to a configuration file.
\param tvp pointer to a text vector property.
*/
extern void IUSaveConfigText(FILE *fp, const ITextVectorProperty *tvp);
/** \brief Add a switch vector property value to the configuration file
\param fp file pointer to a configuration file.
\param svp pointer to a switch vector property.
*/
extern void IUSaveConfigSwitch(FILE *fp, const ISwitchVectorProperty *svp);
/** \brief Add a BLOB vector property value to the configuration file
\param fp file pointer to a configuration file.
\param bvp pointer to a BLOB vector property.
\note If the BLOB size is large, this function will block until the BLOB contents are written to the file.
*/
extern void IUSaveConfigBLOB(FILE *fp, const IBLOBVectorProperty *bvp);
/**
* @brief IUGetConfigNumber Opens configuration file and reads single number property.
* @param dev name of device
* @param property name of vector property
* @param member name of member property
* @param value pointer to save value of property if found.
* @return 0 on success, -1 if not found.
*/
extern int IUGetConfigNumber(const char *dev, const char *property, const char *member, double *value);
/**
* @brief IUGetConfigSwitch Opens configuration file and reads single switch property.
* @param dev name of device
* @param property name of vector property
* @param member name of member property
* @param value pointer to save value of property if found.
* @return 0 on success, -1 if not found.
*/
extern int IUGetConfigSwitch(const char *dev, const char *property, const char *member, ISState *value);
/**
* @brief IUGetConfigOnSwitchIndex Opens configuration file and reads single switch property to find ON switch index, if any.
* @param dev name of device
* @param property name of vector property
* @param index pointer to save value of ON switch index, if found.
* @return 0 on success, -1 if not found.
*/
extern int IUGetConfigOnSwitchIndex(const char *dev, const char *property, int *index);
/**
* @brief IUGetConfigOnSwitchLabel Opens configuration file and reads single switch property to find ON switch index, if any.
* @param dev name of device
* @param property name of vector property
* @param label of the ON switch index if any.
* @param size size of label in bytes.
* @return 0 on success, -1 if not found.
*/
extern int IUGetConfigOnSwitchLabel(const char *dev, const char *property, char *label, size_t size);
/**
* @brief IUGetConfigOnSwitch Opens configuration file and reads a single switch vector property to find the index
* of the first ON switch element.
* @param property pointer to initialized switch vector property.
* @param index index of first ON switch property. If none is found, it is set to -1
* @return 0 on success, -1 if not found.
*/
extern int IUGetConfigOnSwitch(const ISwitchVectorProperty *property, int *index);
/**
* @brief IUGetConfigText Opens configuration file and reads single text property.
* @param dev name of device
* @param property name of vector property
* @param member name of member property
* @param value pointer to save value of property if found.
* @param len size of char buffer (value)
* @return 0 on success, -1 if not found.
*/
extern int IUGetConfigText(const char *dev, const char *property, const char *member, char *value, int len);
/*@}*/
#ifdef __cplusplus
}
#endif