/* * * Copyright (c) 1998-2001, Darren Hiebert * * This source code is released for free distribution under the terms of the * GNU General Public License. * * Defines external interface to option processing. */ #ifndef _OPTIONS_H #define _OPTIONS_H #if defined(OPTION_WRITE) || defined(VAXC) # define CONST_OPTION #else # define CONST_OPTION const #endif /* * INCLUDE FILES */ #include "general.h" /* must always come first */ #include #include "args.h" #include "parse.h" #include "strlist.h" #include "vstring.h" /* * DATA DECLARATIONS */ /* This stores the command line options. */ typedef struct sOptionValues { struct sInclude { boolean fileNames; /* include tags for source file names */ boolean qualifiedTags; /* include tags for qualified class members */ boolean fileScope; /* include tags of file scope only */ } include; struct sExtFields { /* extension field content control */ boolean access; boolean fileScope; boolean implementation; boolean inheritance; boolean kind; boolean kindKey; boolean kindLong; boolean language; boolean lineNumber; boolean scope; boolean filePosition; /* Write file position */ boolean argList; /* Write function and macro argumentlist */ } extensionFields; stringList* ignore; /* -I name of file containing tokens to ignore */ boolean append; /* -a append to "tags" file */ boolean backward; /* -B regexp patterns search backwards */ enum eLocate { EX_MIX, /* line numbers for defines, patterns otherwise */ EX_LINENUM, /* -n only line numbers in tag file */ EX_PATTERN /* -N only patterns in tag file */ } locate; /* --excmd EX command used to locate tag */ boolean recurse; /* -R recurse into directories */ boolean sorted; /* -u,--sort sort tags */ boolean verbose; /* -V verbose */ boolean xref; /* -x generate xref output instead */ char *fileList; /* -L name of file containing names of files */ char *tagFileName; /* -o name of tags file */ stringList* headerExt; /* -h header extensions */ stringList* etagsInclude;/* --etags-include list of TAGS files to include*/ unsigned int tagFileFormat;/* --format tag file format (level) */ boolean if0; /* --if0 examine code within "#if 0" branch */ boolean kindLong; /* --kind-long */ langType language; /* --lang specified language override */ boolean followLinks; /* --link follow symbolic links? */ boolean filter; /* --filter behave as filter: files in, tags out */ char* filterTerminator; /* --filter-terminator string to output */ boolean qualifiedTags; /* --qualified-tags include class-qualified tag */ boolean tagRelative; /* --tag-relative file paths relative to tag file */ boolean printTotals; /* --totals print cumulative statistics */ boolean lineDirectives; /* --linedirectives process #line directives */ boolean nestFunction; /* --nest Nest inside function blocks for tags */ } optionValues; /* * GLOBAL VARIABLES */ extern CONST_OPTION optionValues Option; /* * FUNCTION PROTOTYPES */ extern void verbose (const char *const format, ...) __printf__ (1, 2); extern void freeList (stringList** const pString); extern void setDefaultTagFileName (void); extern const char *fileExtension (const char *const fileName); extern boolean isIncludeFile (const char *const fileName); extern boolean isIgnoreToken (const char *const name, boolean *const pIgnoreParens, const char **const replacement); extern void readOptionConfiguration (void); extern void initOptions (void); extern void freeOptionResources (void); void addIgnoreListFromFile (const char *const fileName); #endif /* _OPTIONS_H */ /* vi:set tabstop=8 shiftwidth=4: */