2014-08-03 23:10:41 +02:00
|
|
|
/* $NetBSD: var.h,v 1.25 2011/06/18 21:18:46 christos Exp $ */
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
/*-
|
2006-05-23 14:59:34 +02:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2005-04-21 16:53:53 +02:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2014-08-03 23:10:41 +02:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2005-04-21 16:53:53 +02:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
2006-05-23 14:59:34 +02:00
|
|
|
* @(#)var.h 8.2 (Berkeley) 5/4/95
|
2005-04-21 16:53:53 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shell variables.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* flags */
|
2006-05-23 14:59:34 +02:00
|
|
|
#define VEXPORT 0x01 /* variable is exported */
|
|
|
|
#define VREADONLY 0x02 /* variable cannot be modified */
|
2014-08-03 23:10:41 +02:00
|
|
|
#define VSTRFIXED 0x04 /* variable struct is statically allocated */
|
|
|
|
#define VTEXTFIXED 0x08 /* text is statically allocated */
|
2006-05-23 14:59:34 +02:00
|
|
|
#define VSTACK 0x10 /* text is allocated on the stack */
|
|
|
|
#define VUNSET 0x20 /* the variable is not set */
|
|
|
|
#define VNOFUNC 0x40 /* don't call the callback function */
|
2014-08-03 23:10:41 +02:00
|
|
|
#define VNOSET 0x80 /* do not set variable - just readonly test */
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct var {
|
|
|
|
struct var *next; /* next entry in hash list */
|
2006-05-23 14:59:34 +02:00
|
|
|
int flags; /* flags are defined above */
|
|
|
|
char *text; /* name=value */
|
2014-08-03 23:10:41 +02:00
|
|
|
int name_len; /* length of name */
|
2006-05-23 14:59:34 +02:00
|
|
|
void (*func)(const char *);
|
|
|
|
/* function to be called when */
|
|
|
|
/* the variable gets set/unset */
|
2005-04-21 16:53:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct localvar {
|
2006-05-23 14:59:34 +02:00
|
|
|
struct localvar *next; /* next local variable in list */
|
|
|
|
struct var *vp; /* the variable that was made local */
|
|
|
|
int flags; /* saved flags */
|
|
|
|
char *text; /* saved text */
|
2005-04-21 16:53:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
extern struct localvar *localvars;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
#if ATTY
|
|
|
|
extern struct var vatty;
|
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
extern struct var vifs;
|
|
|
|
extern struct var vmail;
|
|
|
|
extern struct var vmpath;
|
|
|
|
extern struct var vpath;
|
|
|
|
extern struct var vps1;
|
|
|
|
extern struct var vps2;
|
2014-08-03 23:10:41 +02:00
|
|
|
extern struct var vps4;
|
|
|
|
#ifndef SMALL
|
|
|
|
extern struct var vterm;
|
|
|
|
extern struct var vtermcap;
|
2006-05-23 14:59:34 +02:00
|
|
|
extern struct var vhistsize;
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following macros access the values of the above variables.
|
|
|
|
* They have to skip over the name. They return the null string
|
|
|
|
* for unset variables.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ifsval() (vifs.text + 4)
|
2006-05-23 14:59:34 +02:00
|
|
|
#define ifsset() ((vifs.flags & VUNSET) == 0)
|
2005-04-21 16:53:53 +02:00
|
|
|
#define mailval() (vmail.text + 5)
|
|
|
|
#define mpathval() (vmpath.text + 9)
|
|
|
|
#define pathval() (vpath.text + 5)
|
|
|
|
#define ps1val() (vps1.text + 4)
|
|
|
|
#define ps2val() (vps2.text + 4)
|
2014-08-03 23:10:41 +02:00
|
|
|
#define ps4val() (vps4.text + 4)
|
2006-05-23 14:59:34 +02:00
|
|
|
#define optindval() (voptind.text + 7)
|
2014-08-03 23:10:41 +02:00
|
|
|
#ifndef SMALL
|
2006-05-23 14:59:34 +02:00
|
|
|
#define histsizeval() (vhistsize.text + 9)
|
2014-08-03 23:10:41 +02:00
|
|
|
#define termval() (vterm.text + 5)
|
2005-04-21 16:53:53 +02:00
|
|
|
#endif
|
|
|
|
|
2014-08-03 23:10:41 +02:00
|
|
|
#if ATTY
|
|
|
|
#define attyset() ((vatty.flags & VUNSET) == 0)
|
|
|
|
#endif
|
2005-04-21 16:53:53 +02:00
|
|
|
#define mpathset() ((vmpath.flags & VUNSET) == 0)
|
|
|
|
|
2006-05-23 14:59:34 +02:00
|
|
|
void initvar(void);
|
2014-08-03 23:10:41 +02:00
|
|
|
void setvar(const char *, const char *, int);
|
2005-04-21 16:53:53 +02:00
|
|
|
void setvareq(char *, int);
|
|
|
|
struct strlist;
|
2014-08-03 23:10:41 +02:00
|
|
|
void listsetvar(struct strlist *, int);
|
|
|
|
char *lookupvar(const char *);
|
|
|
|
char *bltinlookup(const char *, int);
|
2006-05-23 14:59:34 +02:00
|
|
|
char **environment(void);
|
|
|
|
void shprocvar(void);
|
2014-08-03 23:10:41 +02:00
|
|
|
int showvars(const char *, int, int);
|
|
|
|
void mklocal(const char *, int);
|
|
|
|
void listmklocal(struct strlist *, int);
|
2005-04-21 16:53:53 +02:00
|
|
|
void poplocalvars(void);
|
2014-08-03 23:10:41 +02:00
|
|
|
int unsetvar(const char *, int);
|
|
|
|
int setvarsafe(const char *, const char *, int);
|
|
|
|
void print_quoted(const char *);
|