xref: /titanic_51/usr/src/lib/libsmbfs/cflib.h (revision 613a2f6ba31e891e3d947a356daf5e563d43c1ce)
14bff34e3Sthurlow /*
24bff34e3Sthurlow  * Copyright (c) 2000, Boris Popov
34bff34e3Sthurlow  * All rights reserved.
44bff34e3Sthurlow  *
54bff34e3Sthurlow  * Redistribution and use in source and binary forms, with or without
64bff34e3Sthurlow  * modification, are permitted provided that the following conditions
74bff34e3Sthurlow  * are met:
84bff34e3Sthurlow  * 1. Redistributions of source code must retain the above copyright
94bff34e3Sthurlow  *    notice, this list of conditions and the following disclaimer.
104bff34e3Sthurlow  * 2. Redistributions in binary form must reproduce the above copyright
114bff34e3Sthurlow  *    notice, this list of conditions and the following disclaimer in the
124bff34e3Sthurlow  *    documentation and/or other materials provided with the distribution.
134bff34e3Sthurlow  * 3. All advertising materials mentioning features or use of this software
144bff34e3Sthurlow  *    must display the following acknowledgement:
154bff34e3Sthurlow  *    This product includes software developed by Boris Popov.
164bff34e3Sthurlow  * 4. Neither the name of the author nor the names of any co-contributors
174bff34e3Sthurlow  *    may be used to endorse or promote products derived from this software
184bff34e3Sthurlow  *    without specific prior written permission.
194bff34e3Sthurlow  *
204bff34e3Sthurlow  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
214bff34e3Sthurlow  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
224bff34e3Sthurlow  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
234bff34e3Sthurlow  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
244bff34e3Sthurlow  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
254bff34e3Sthurlow  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
264bff34e3Sthurlow  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
274bff34e3Sthurlow  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
284bff34e3Sthurlow  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
294bff34e3Sthurlow  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
304bff34e3Sthurlow  * SUCH DAMAGE.
314bff34e3Sthurlow  *
324bff34e3Sthurlow  * $Id: cflib.h,v 1.1.1.1 2001/06/09 00:28:11 zarzycki Exp $
334bff34e3Sthurlow  */
344bff34e3Sthurlow 
35*613a2f6bSGordon Ross /*
36*613a2f6bSGordon Ross  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
37*613a2f6bSGordon Ross  * Use is subject to license terms.
38*613a2f6bSGordon Ross  */
394bff34e3Sthurlow 
404bff34e3Sthurlow #ifndef _CFLIB_H_
414bff34e3Sthurlow #define	_CFLIB_H_
424bff34e3Sthurlow 
434bff34e3Sthurlow struct rcfile;
444bff34e3Sthurlow 
454bff34e3Sthurlow /*
464bff34e3Sthurlow  * A unified options parser
474bff34e3Sthurlow  */
484bff34e3Sthurlow enum opt_argtype {OPTARG_STR, OPTARG_INT, OPTARG_BOOL};
494bff34e3Sthurlow 
504bff34e3Sthurlow struct opt_args;
514bff34e3Sthurlow 
524bff34e3Sthurlow typedef int opt_callback_t (struct opt_args *);
534bff34e3Sthurlow 
544bff34e3Sthurlow #define	OPTFL_NONE	0x0000
554bff34e3Sthurlow #define	OPTFL_HAVEMIN	0x0001
564bff34e3Sthurlow #define	OPTFL_HAVEMAX	0x0002
574bff34e3Sthurlow #define	OPTFL_MINMAX	NAFL_HAVEMIN | NAFL_HAVEMAX
584bff34e3Sthurlow 
594bff34e3Sthurlow struct opt_args {
604bff34e3Sthurlow 	enum opt_argtype type;
614bff34e3Sthurlow 	int	opt;		/* command line option */
624bff34e3Sthurlow 	char	*name;		/* rc file equiv */
634bff34e3Sthurlow 	int	flag;		/* OPTFL_* */
644bff34e3Sthurlow 	int	ival;		/* int/bool values, or max len for str value */
654bff34e3Sthurlow 	char	*str;		/* string value */
664bff34e3Sthurlow 	int	min;		/* min for ival */
674bff34e3Sthurlow 	int	max;		/* max for ival */
684bff34e3Sthurlow 	opt_callback_t *fn;	/* call back to validate */
694bff34e3Sthurlow };
704bff34e3Sthurlow typedef struct opt_args opt_args_t;
714bff34e3Sthurlow 
724bff34e3Sthurlow extern int cf_opterr, cf_optind, cf_optopt, cf_optreset;
734bff34e3Sthurlow extern const char *cf_optarg;
74*613a2f6bSGordon Ross extern struct rcfile *smb_rc;
754bff34e3Sthurlow 
764bff34e3Sthurlow #ifdef __cplusplus
774bff34e3Sthurlow extern "C" {
784bff34e3Sthurlow #endif
794bff34e3Sthurlow 
804bff34e3Sthurlow int  opt_args_parse(struct rcfile *, struct opt_args *, const char *,
814bff34e3Sthurlow 	opt_callback_t *);
824bff34e3Sthurlow int  opt_args_parseopt(struct opt_args *, int, char *, opt_callback_t *);
834bff34e3Sthurlow 
844bff34e3Sthurlow int  cf_getopt(int, char * const *, const char *);
85*613a2f6bSGordon Ross void cf_opt_lock(void);
86*613a2f6bSGordon Ross void cf_opt_unlock(void);
874bff34e3Sthurlow 
884bff34e3Sthurlow int  rc_getstringptr(struct rcfile *, const char *, const char *, char **);
894bff34e3Sthurlow int  rc_getstring(struct rcfile *, const char *, const char *, size_t, char *);
904bff34e3Sthurlow int  rc_getint(struct rcfile *, const char *, const char *, int *);
914bff34e3Sthurlow int  rc_getbool(struct rcfile *, const char *, const char *, int *);
924bff34e3Sthurlow 
93*613a2f6bSGordon Ross int smb_open_rcfile(char *);
94*613a2f6bSGordon Ross void smb_close_rcfile(void);
95*613a2f6bSGordon Ross 
964bff34e3Sthurlow #ifdef __cplusplus
974bff34e3Sthurlow }
984bff34e3Sthurlow #endif
994bff34e3Sthurlow 
1004bff34e3Sthurlow #endif	/* _CFLIB_H_ */
101