texinfo documentation is similar to the printed manual.
[gnutls.git] / src / libopts / env.c
blob60e8a037f7ae7b7069d3e05cbd4b3d08c08526f8
2 /**
3 * \file environment.c
5 * Time-stamp: "2011-07-19 17:43:34 bkorb"
7 * This file contains all of the routines that must be linked into
8 * an executable to use the generated option processing. The optional
9 * routines are in separately compiled modules so that they will not
10 * necessarily be linked in.
12 * This file is part of AutoOpts, a companion to AutoGen.
13 * AutoOpts is free software.
14 * AutoOpts is Copyright (c) 1992-2012 by Bruce Korb - all rights reserved
16 * AutoOpts is available under any one of two licenses. The license
17 * in use must be one of these two and the choice is under the control
18 * of the user of the license.
20 * The GNU Lesser General Public License, version 3 or later
21 * See the files "COPYING.lgplv3" and "COPYING.gplv3"
23 * The Modified Berkeley Software Distribution License
24 * See the file "COPYING.mbsd"
26 * These files have the following md5sums:
28 * 43b91e8ca915626ed3818ffb1b71248b pkg/libopts/COPYING.gplv3
29 * 06a1a2e4760c90ea5e1dad8dfaac4d39 pkg/libopts/COPYING.lgplv3
30 * 66a5cedaf62c4b2637025f049f9b826f pkg/libopts/COPYING.mbsd
33 /* = = = START-STATIC-FORWARD = = = */
34 static void
35 do_env_opt(tOptState * os, char * env_name,
36 tOptions * pOpts, teEnvPresetType type);
37 /* = = = END-STATIC-FORWARD = = = */
40 * doPrognameEnv - check for preset values from the ${PROGNAME}
41 * environment variable. This is accomplished by parsing the text into
42 * tokens, temporarily replacing the arg vector and calling
43 * immediate_opts and/or regular_opts.
45 LOCAL void
46 doPrognameEnv(tOptions * pOpts, teEnvPresetType type)
48 char const* pczOptStr = getenv(pOpts->pzPROGNAME);
49 token_list_t* pTL;
50 int sv_argc;
51 tAoUI sv_flag;
52 char** sv_argv;
55 * No such beast? Then bail now.
57 if (pczOptStr == NULL)
58 return;
61 * Tokenize the string. If there's nothing of interest, we'll bail
62 * here immediately.
64 pTL = ao_string_tokenize(pczOptStr);
65 if (pTL == NULL)
66 return;
69 * Substitute our $PROGNAME argument list for the real one
71 sv_argc = pOpts->origArgCt;
72 sv_argv = pOpts->origArgVect;
73 sv_flag = pOpts->fOptSet;
76 * We add a bogus pointer to the start of the list. The program name
77 * has already been pulled from "argv", so it won't get dereferenced.
78 * The option scanning code will skip the "program name" at the start
79 * of this list of tokens, so we accommodate this way ....
81 pOpts->origArgVect = (char**)(pTL->tkn_list - 1);
82 pOpts->origArgCt = pTL->tkn_ct + 1;
83 pOpts->fOptSet &= ~OPTPROC_ERRSTOP;
85 pOpts->curOptIdx = 1;
86 pOpts->pzCurOpt = NULL;
88 switch (type) {
89 case ENV_IMM:
90 (void)immediate_opts(pOpts);
91 break;
93 case ENV_ALL:
94 (void)immediate_opts(pOpts);
95 pOpts->curOptIdx = 1;
96 pOpts->pzCurOpt = NULL;
97 /* FALLTHROUGH */
99 case ENV_NON_IMM:
100 (void)regular_opts(pOpts);
104 * Free up the temporary arg vector and restore the original program args.
106 free(pTL);
107 pOpts->origArgVect = sv_argv;
108 pOpts->origArgCt = sv_argc;
109 pOpts->fOptSet = sv_flag;
112 static void
113 do_env_opt(tOptState * os, char * env_name,
114 tOptions * pOpts, teEnvPresetType type)
116 os->pzOptArg = getenv(env_name);
117 if (os->pzOptArg == NULL)
118 return;
120 os->flags = OPTST_PRESET | OPTST_ALLOC_ARG | os->pOD->fOptState;
121 os->optType = TOPT_UNDEFINED;
123 if ( (os->pOD->pz_DisablePfx != NULL)
124 && (streqvcmp(os->pzOptArg, os->pOD->pz_DisablePfx) == 0)) {
125 os->flags |= OPTST_DISABLED;
126 os->pzOptArg = NULL;
129 switch (type) {
130 case ENV_IMM:
132 * Process only immediate actions
134 if (DO_IMMEDIATELY(os->flags))
135 break;
136 return;
138 case ENV_NON_IMM:
140 * Process only NON immediate actions
142 if (DO_NORMALLY(os->flags) || DO_SECOND_TIME(os->flags))
143 break;
144 return;
146 default: /* process everything */
147 break;
151 * Make sure the option value string is persistent and consistent.
153 * The interpretation of the option value depends
154 * on the type of value argument the option takes
156 if (OPTST_GET_ARGTYPE(os->pOD->fOptState) == OPARG_TYPE_NONE) {
158 * Ignore any value.
160 os->pzOptArg = NULL;
162 } else if (os->pzOptArg[0] == NUL) {
164 * If the argument is the empty string and the argument is
165 * optional, then treat it as if the option was not specified.
167 if ((os->pOD->fOptState & OPTST_ARG_OPTIONAL) == 0)
168 return;
169 os->pzOptArg = NULL;
171 } else {
172 AGDUPSTR(os->pzOptArg, os->pzOptArg, "option argument");
173 os->flags |= OPTST_ALLOC_ARG;
176 handle_opt(pOpts, os);
180 * env_presets - check for preset values from the envrionment
181 * This routine should process in all, immediate or normal modes....
183 LOCAL void
184 env_presets(tOptions * pOpts, teEnvPresetType type)
186 int ct;
187 tOptState st;
188 char* pzFlagName;
189 size_t spaceLeft;
190 char zEnvName[ AO_NAME_SIZE ];
193 * Finally, see if we are to look at the environment
194 * variables for initial values.
196 if ((pOpts->fOptSet & OPTPROC_ENVIRON) == 0)
197 return;
199 doPrognameEnv(pOpts, type);
201 ct = pOpts->presetOptCt;
202 st.pOD = pOpts->pOptDesc;
204 pzFlagName = zEnvName
205 + snprintf(zEnvName, sizeof(zEnvName), "%s_", pOpts->pzPROGNAME);
206 spaceLeft = AO_NAME_SIZE - (pzFlagName - zEnvName) - 1;
208 for (;ct-- > 0; st.pOD++) {
209 size_t nln;
212 * If presetting is disallowed, then skip this entry
214 if ( ((st.pOD->fOptState & OPTST_NO_INIT) != 0)
215 || (st.pOD->optEquivIndex != NO_EQUIVALENT) )
216 continue;
219 * IF there is no such environment variable,
220 * THEN skip this entry, too.
222 nln = strlen(st.pOD->pz_NAME) + 1;
223 if (nln <= spaceLeft) {
225 * Set up the option state
227 memcpy(pzFlagName, st.pOD->pz_NAME, nln);
228 do_env_opt(&st, zEnvName, pOpts, type);
233 * Special handling for ${PROGNAME_LOAD_OPTS}
235 if ( (pOpts->specOptIdx.save_opts != NO_EQUIVALENT)
236 && (pOpts->specOptIdx.save_opts != 0)) {
237 size_t nln;
238 st.pOD = pOpts->pOptDesc + pOpts->specOptIdx.save_opts + 1;
240 if (st.pOD->pz_NAME == NULL)
241 return;
243 nln = strlen(st.pOD->pz_NAME) + 1;
245 if (nln > spaceLeft)
246 return;
248 memcpy(pzFlagName, st.pOD->pz_NAME, nln);
249 do_env_opt(&st, zEnvName, pOpts, type);
254 * Local Variables:
255 * mode: C
256 * c-file-style: "stroustrup"
257 * indent-tabs-mode: nil
258 * End:
259 * end of autoopts/environment.c */