1/* 2 * 3 * Copyright (c) 1997 Metro Link Incorporated 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included in 13 * all copies or substantial portions of the Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 19 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 20 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 * SOFTWARE. 22 * 23 * Except as contained in this notice, the name of the Metro Link shall not be 24 * used in advertising or otherwise to promote the sale, use or other dealings 25 * in this Software without prior written authorization from Metro Link. 26 * 27 */ 28/* 29 * Copyright (c) 1997-2002 by The XFree86 Project, Inc. 30 * 31 * Permission is hereby granted, free of charge, to any person obtaining a 32 * copy of this software and associated documentation files (the "Software"), 33 * to deal in the Software without restriction, including without limitation 34 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 35 * and/or sell copies of the Software, and to permit persons to whom the 36 * Software is furnished to do so, subject to the following conditions: 37 * 38 * The above copyright notice and this permission notice shall be included in 39 * all copies or substantial portions of the Software. 40 * 41 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 42 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 43 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 44 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 45 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 46 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 47 * OTHER DEALINGS IN THE SOFTWARE. 48 * 49 * Except as contained in this notice, the name of the copyright holder(s) 50 * and author(s) shall not be used in advertising or otherwise to promote 51 * the sale, use or other dealings in this Software without prior written 52 * authorization from the copyright holder(s) and author(s). 53 */ 54 55 56/* 57 * These definitions are used through out the configuration file parser, but 58 * they should not be visible outside of the parser. 59 */ 60 61#ifdef HAVE_XORG_CONFIG_H 62#include <xorg-config.h> 63#endif 64 65#ifndef _Configint_h_ 66#define _Configint_h_ 67 68#include <stdio.h> 69#include <string.h> 70#include <stdarg.h> 71#include <stddef.h> 72#include "xf86Parser.h" 73 74typedef enum { PARSE_DECIMAL, PARSE_OCTAL, PARSE_HEX } ParserNumType; 75 76typedef struct 77{ 78 int num; /* returned number */ 79 char *str; /* private copy of the return-string */ 80 double realnum; /* returned number as a real */ 81 ParserNumType numType; /* used to enforce correct number formatting */ 82} 83LexRec, *LexPtr; 84 85#ifndef TRUE 86#define TRUE 1 87#endif 88 89#ifndef FALSE 90#define FALSE 0 91#endif 92 93#include "configProcs.h" 94#include <stdlib.h> 95 96#define TestFree(a) if (a) { free (a); a = NULL; } 97 98#define parsePrologue(typeptr,typerec) typeptr ptr; \ 99if( (ptr=calloc(1,sizeof(typerec))) == NULL ) { return NULL; } 100 101#define HANDLE_RETURN(f,func)\ 102if ((ptr->f=func) == NULL)\ 103{\ 104 CLEANUP (ptr);\ 105 return NULL;\ 106} 107 108#define HANDLE_LIST(field,func,type)\ 109{\ 110type p = func ();\ 111if (p == NULL)\ 112{\ 113 CLEANUP (ptr);\ 114 return NULL;\ 115}\ 116else\ 117{\ 118 ptr->field = (type) xf86addListItem ((glp) ptr->field, (glp) p);\ 119}\ 120} 121 122#define Error(a,b) do { \ 123 xf86parseError (a, b); CLEANUP (ptr); return NULL; \ 124 } while (0) 125 126/* 127 * These are defines for error messages to promote consistency. 128 * error messages are preceded by the line number, section and file name, 129 * so these messages should be about the specific keyword and syntax in error. 130 * To help limit namespace polution, end each with _MSG. 131 * limit messages to 70 characters if possible. 132 */ 133 134#define BAD_OPTION_MSG \ 135"The Option keyword requires 1 or 2 quoted strings to follow it." 136#define INVALID_KEYWORD_MSG \ 137"\"%s\" is not a valid keyword in this section." 138#define INVALID_SECTION_MSG \ 139"\"%s\" is not a valid section name." 140#define UNEXPECTED_EOF_MSG \ 141"Unexpected EOF. Missing EndSection keyword?" 142#define QUOTE_MSG \ 143"The %s keyword requires a quoted string to follow it." 144#define NUMBER_MSG \ 145"The %s keyword requires a number to follow it." 146#define POSITIVE_INT_MSG \ 147"The %s keyword requires a positive integer to follow it." 148#define BOOL_MSG \ 149"The %s keyword requires a boolean to follow it." 150#define ZAXISMAPPING_MSG \ 151"The ZAxisMapping keyword requires 2 positive numbers or X or Y to follow it." 152#define DACSPEED_MSG \ 153"The DacSpeed keyword must be followed by a list of up to %d numbers." 154#define DISPLAYSIZE_MSG \ 155"The DisplaySize keyword must be followed by the width and height in mm." 156#define HORIZSYNC_MSG \ 157"The HorizSync keyword must be followed by a list of numbers or ranges." 158#define VERTREFRESH_MSG \ 159"The VertRefresh keyword must be followed by a list of numbers or ranges." 160#define VIEWPORT_MSG \ 161"The Viewport keyword must be followed by an X and Y value." 162#define VIRTUAL_MSG \ 163"The Virtual keyword must be followed by a width and height value." 164#define WEIGHT_MSG \ 165"The Weight keyword must be followed by red, green and blue values." 166#define BLACK_MSG \ 167"The Black keyword must be followed by red, green and blue values." 168#define WHITE_MSG \ 169"The White keyword must be followed by red, green and blue values." 170#define SCREEN_MSG \ 171"The Screen keyword must be followed by an optional number, a screen name\n" \ 172"\tin quotes, and optional position/layout information." 173#define INVALID_SCR_MSG \ 174"Invalid Screen line." 175#define INPUTDEV_MSG \ 176"The InputDevice keyword must be followed by an input device name in quotes." 177#define INACTIVE_MSG \ 178"The Inactive keyword must be followed by a Device name in quotes." 179#define UNDEFINED_SCREEN_MSG \ 180"Undefined Screen \"%s\" referenced by ServerLayout \"%s\"." 181#define UNDEFINED_MODES_MSG \ 182"Undefined Modes Section \"%s\" referenced by Monitor \"%s\"." 183#define UNDEFINED_DEVICE_MSG \ 184"Undefined Device \"%s\" referenced by Screen \"%s\"." 185#define UNDEFINED_ADAPTOR_MSG \ 186"Undefined VideoAdaptor \"%s\" referenced by Screen \"%s\"." 187#define ADAPTOR_REF_TWICE_MSG \ 188"VideoAdaptor \"%s\" already referenced by Screen \"%s\"." 189#define UNDEFINED_DEVICE_LAY_MSG \ 190"Undefined Device \"%s\" referenced by ServerLayout \"%s\"." 191#define UNDEFINED_INPUT_MSG \ 192"Undefined InputDevice \"%s\" referenced by ServerLayout \"%s\"." 193#define NO_IDENT_MSG \ 194"This section must have an Identifier line." 195#define ONLY_ONE_MSG \ 196"This section must have only one of either %s line." 197#define UNDEFINED_INPUTDRIVER_MSG \ 198"InputDevice section \"%s\" must have a Driver line." 199#define INVALID_GAMMA_MSG \ 200"gamma correction value(s) expected\n either one value or three r/g/b values." 201#define GROUP_MSG \ 202"The Group keyword must be followed by either a group name in quotes or\n" \ 203"\ta numerical group id." 204#define MULTIPLE_MSG \ 205"Multiple \"%s\" lines." 206#define MUST_BE_OCTAL_MSG \ 207"The number \"%d\" given in this section must be in octal (0xxx) format." 208 209/* Warning messages */ 210#define OBSOLETE_MSG \ 211"Ignoring obsolete keyword \"%s\"." 212 213#endif /* _Configint_h_ */ 214