⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 params.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 2 页
字号:
/* -------------------------------------------------------------------------- ** * Microsoft Network Services for Unix, AKA., Andrew Tridgell's SAMBA. * * This module Copyright (C) 1990-1998 Karl Auer * * Rewritten almost completely by Christopher R. Hertel * at the University of Minnesota, September, 1997. * This module Copyright (C) 1997-1998 by the University of Minnesota * -------------------------------------------------------------------------- ** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see <http://www.gnu.org/licenses/>. * * -------------------------------------------------------------------------- ** * * Module name: params * * -------------------------------------------------------------------------- ** * *  This module performs lexical analysis and initial parsing of a *  Windows-like parameter file.  It recognizes and handles four token *  types:  section-name, parameter-name, parameter-value, and *  end-of-file.  Comments and line continuation are handled *  internally. * *  The entry point to the module is function pm_process().  This *  function opens the source file, calls the Parse() function to parse *  the input, and then closes the file when either the EOF is reached *  or a fatal error is encountered. * *  A sample parameter file might look like this: * *  [section one] *  parameter one = value string *  parameter two = another value *  [section two] *  new parameter = some value or t'other * *  The parameter file is divided into sections by section headers: *  section names enclosed in square brackets (eg. [section one]). *  Each section contains parameter lines, each of which consist of a *  parameter name and value delimited by an equal sign.  Roughly, the *  syntax is: * *    <file>            :==  { <section> } EOF * *    <section>         :==  <section header> { <parameter line> } * *    <section header>  :==  '[' NAME ']' * *    <parameter line>  :==  NAME '=' VALUE '\n' * *  Blank lines and comment lines are ignored.  Comment lines are lines *  beginning with either a semicolon (';') or a pound sign ('#'). * *  All whitespace in section names and parameter names is compressed *  to single spaces.  Leading and trailing whitespace is stipped from *  both names and values. * *  Only the first equals sign in a parameter line is significant. *  Parameter values may contain equals signs, square brackets and *  semicolons.  Internal whitespace is retained in parameter values, *  with the exception of the '\r' character, which is stripped for *  historic reasons.  Parameter names may not start with a left square *  bracket, an equal sign, a pound sign, or a semicolon, because these *  are used to identify other tokens. * * -------------------------------------------------------------------------- ** */#include "includes.h"#include "system/locale.h"/* -------------------------------------------------------------------------- ** * Constants... */#define BUFR_INC 1024/* we can't use FILE* due to the 256 fd limit - use this cheap hack   instead */typedef struct {	char *buf;	char *p;	size_t size;	char *bufr;	int   bSize;} myFILE;static int mygetc(myFILE *f){	if (f->p >= f->buf+f->size) return EOF;        /* be sure to return chars >127 as positive values */	return (int)( *(f->p++) & 0x00FF );}static void myfile_close(myFILE *f){	talloc_free(f);}/* -------------------------------------------------------------------------- ** * Functions... */static int EatWhitespace( myFILE *InFile )  /* ------------------------------------------------------------------------ **   * Scan past whitespace (see ctype(3C)) and return the first non-whitespace   * character, or newline, or EOF.   *   *  Input:  InFile  - Input source.   *   *  Output: The next non-whitespace character in the input stream.   *   *  Notes:  Because the config files use a line-oriented grammar, we   *          explicitly exclude the newline character from the list of   *          whitespace characters.   *        - Note that both EOF (-1) and the nul character ('\0') are   *          considered end-of-file markers.   *   * ------------------------------------------------------------------------ **   */  {  int c;  for( c = mygetc( InFile ); isspace( c ) && ('\n' != c); c = mygetc( InFile ) )    ;  return( c );  } /* EatWhitespace */static int EatComment( myFILE *InFile )  /* ------------------------------------------------------------------------ **   * Scan to the end of a comment.   *   *  Input:  InFile  - Input source.   *   *  Output: The character that marks the end of the comment.  Normally,   *          this will be a newline, but it *might* be an EOF.   *   *  Notes:  Because the config files use a line-oriented grammar, we   *          explicitly exclude the newline character from the list of   *          whitespace characters.   *        - Note that both EOF (-1) and the nul character ('\0') are   *          considered end-of-file markers.   *   * ------------------------------------------------------------------------ **   */  {  int c;  for( c = mygetc( InFile ); ('\n'!=c) && (EOF!=c) && (c>0); c = mygetc( InFile ) )    ;  return( c );  } /* EatComment *//***************************************************************************** * Scan backards within a string to discover if the last non-whitespace * character is a line-continuation character ('\\'). * *  Input:  line  - A pointer to a buffer containing the string to be *                  scanned. *          pos   - This is taken to be the offset of the end of the *                  string.  This position is *not* scanned. * *  Output: The offset of the '\\' character if it was found, or -1 to *          indicate that it was not. * *****************************************************************************/static int Continuation(char *line, int pos ){	pos--;	while( (pos >= 0) && isspace((int)line[pos]))		pos--;	return (((pos >= 0) && ('\\' == line[pos])) ? pos : -1 );}static bool Section( myFILE *InFile, bool (*sfunc)(const char *, void *), void *userdata )  /* ------------------------------------------------------------------------ **   * Scan a section name, and pass the name to function sfunc().   *   *  Input:  InFile  - Input source.   *          sfunc   - Pointer to the function to be called if the section   *                    name is successfully read.   *   *  Output: true if the section name was read and true was returned from   *          <sfunc>.  false if <sfunc> failed or if a lexical error was   *          encountered.   *   * ------------------------------------------------------------------------ **   */  {  int   c;  int   i;  int   end;  const char *func  = "params.c:Section() -";  i = 0;      /* <i> is the offset of the next free byte in bufr[] and  */  end = 0;    /* <end> is the current "end of string" offset.  In most  */              /* cases these will be the same, but if the last          */              /* character written to bufr[] is a space, then <end>     */              /* will be one less than <i>.                             */  c = EatWhitespace( InFile );    /* We've already got the '['.  Scan */                                  /* past initial white space.        */  while( (EOF != c) && (c > 0) )    {    /* Check that the buffer is big enough for the next character. */    if( i > (InFile->bSize - 2) )      {      char *tb;            tb = talloc_realloc(InFile, InFile->bufr, char, InFile->bSize + BUFR_INC);      if( NULL == tb )        {        DEBUG(0, ("%s Memory re-allocation failure.", func) );        return( false );        }      InFile->bufr = tb;      InFile->bSize += BUFR_INC;      }    /* Handle a single character. */    switch( c )      {      case ']':                       /* Found the closing bracket.         */        InFile->bufr[end] = '\0';        if( 0 == end )                  /* Don't allow an empty name.       */          {          DEBUG(0, ("%s Empty section name in configuration file.\n", func ));          return( false );          }        if( !sfunc(InFile->bufr,userdata) )            /* Got a valid name.  Deal with it. */          return( false );        (void)EatComment( InFile );     /* Finish off the line.             */        return( true );      case '\n':                      /* Got newline before closing ']'.    */        i = Continuation( InFile->bufr, i );    /* Check for line continuation.     */        if( i < 0 )          {          InFile->bufr[end] = '\0';          DEBUG(0, ("%s Badly formed line in configuration file: %s\n",                   func, InFile->bufr ));          return( false );          }        end = ( (i > 0) && (' ' == InFile->bufr[i - 1]) ) ? (i - 1) : (i);        c = mygetc( InFile );             /* Continue with next line.         */        break;      default:                        /* All else are a valid name chars.   */        if( isspace( c ) )              /* One space per whitespace region. */          {          InFile->bufr[end] = ' ';          i = end + 1;          c = EatWhitespace( InFile );          }        else                            /* All others copy verbatim.        */          {          InFile->bufr[i++] = c;          end = i;          c = mygetc( InFile );          }      }    }  /* We arrive here if we've met the EOF before the closing bracket. */  DEBUG(0, ("%s Unexpected EOF in the configuration file\n", func));  return( false );  } /* Section */static bool Parameter( myFILE *InFile, bool (*pfunc)(const char *, const char *, void *), int c, void *userdata )  /* ------------------------------------------------------------------------ **   * Scan a parameter name and value, and pass these two fields to pfunc().   *   *  Input:  InFile  - The input source.   *          pfunc   - A pointer to the function that will be called to   *                    process the parameter, once it has been scanned.   *          c       - The first character of the parameter name, which

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -