mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00
Fold on Jeff's DefaultRuntimeDir impl... docs on the way
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1297955 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -394,6 +394,7 @@
|
|||||||
* add insert_network_bucket hook, AP_DECLINED
|
* add insert_network_bucket hook, AP_DECLINED
|
||||||
* 20120211.0 (2.5.0-dev) Change re_nsub in ap_regex_t from apr_size_t to int.
|
* 20120211.0 (2.5.0-dev) Change re_nsub in ap_regex_t from apr_size_t to int.
|
||||||
* 20120211.1 (2.5.0-dev) Add ap_palloc_debug, ap_pcalloc_debug
|
* 20120211.1 (2.5.0-dev) Add ap_palloc_debug, ap_pcalloc_debug
|
||||||
|
* 20120211.2 (2.5.0-dev) Add ap_runtime_dir_relative
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */
|
#define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */
|
||||||
|
@ -706,6 +706,14 @@ AP_DECLARE_NONSTD(const char *) ap_set_deprecated(cmd_parms *cmd,
|
|||||||
*/
|
*/
|
||||||
AP_DECLARE(char *) ap_server_root_relative(apr_pool_t *p, const char *fname);
|
AP_DECLARE(char *) ap_server_root_relative(apr_pool_t *p, const char *fname);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compute the name of a run-time file (e.g., shared memory "file") relative
|
||||||
|
* to the appropriate run-time directory. Absolute paths are returned as-is.
|
||||||
|
* The run-time directory is configured via the RuntimeDir directive or
|
||||||
|
* at build time.
|
||||||
|
*/
|
||||||
|
AP_DECLARE(char *) ap_runtime_dir_relative(apr_pool_t *p, const char *fname);
|
||||||
|
|
||||||
/* Finally, the hook for dynamically loading modules in... */
|
/* Finally, the hook for dynamically loading modules in... */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,6 +43,11 @@ extern "C" {
|
|||||||
AP_DECLARE_DATA extern const char *ap_server_argv0;
|
AP_DECLARE_DATA extern const char *ap_server_argv0;
|
||||||
/** The global server's ServerRoot */
|
/** The global server's ServerRoot */
|
||||||
AP_DECLARE_DATA extern const char *ap_server_root;
|
AP_DECLARE_DATA extern const char *ap_server_root;
|
||||||
|
/** The global server's DefaultRuntimeDir
|
||||||
|
* This is not usable directly in the general case; use
|
||||||
|
* ap_runtime_dir_relative() instead.
|
||||||
|
*/
|
||||||
|
AP_DECLARE_DATA extern const char *ap_runtime_dir;
|
||||||
/** The global server's server_rec */
|
/** The global server's server_rec */
|
||||||
AP_DECLARE_DATA extern server_rec *ap_server_conf;
|
AP_DECLARE_DATA extern server_rec *ap_server_conf;
|
||||||
/** global pool, for access prior to creation of server_rec */
|
/** global pool, for access prior to creation of server_rec */
|
||||||
|
@ -59,6 +59,7 @@
|
|||||||
|
|
||||||
AP_DECLARE_DATA const char *ap_server_argv0 = NULL;
|
AP_DECLARE_DATA const char *ap_server_argv0 = NULL;
|
||||||
AP_DECLARE_DATA const char *ap_server_root = NULL;
|
AP_DECLARE_DATA const char *ap_server_root = NULL;
|
||||||
|
AP_DECLARE_DATA const char *ap_runtime_dir = NULL;
|
||||||
AP_DECLARE_DATA server_rec *ap_server_conf = NULL;
|
AP_DECLARE_DATA server_rec *ap_server_conf = NULL;
|
||||||
AP_DECLARE_DATA apr_pool_t *ap_pglobal = NULL;
|
AP_DECLARE_DATA apr_pool_t *ap_pglobal = NULL;
|
||||||
|
|
||||||
@ -1560,6 +1561,25 @@ AP_DECLARE(char *) ap_server_root_relative(apr_pool_t *p, const char *file)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AP_DECLARE(char *) ap_runtime_dir_relative(apr_pool_t *p, const char *file)
|
||||||
|
{
|
||||||
|
char *newpath = NULL;
|
||||||
|
apr_status_t rv;
|
||||||
|
const char *runtime_dir = ap_runtime_dir ? ap_runtime_dir : ap_server_root_relative(p, DEFAULT_REL_RUNTIMEDIR);
|
||||||
|
|
||||||
|
rv = apr_filepath_merge(&newpath, runtime_dir, file,
|
||||||
|
APR_FILEPATH_TRUENAME, p);
|
||||||
|
if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv)
|
||||||
|
|| APR_STATUS_IS_ENOENT(rv)
|
||||||
|
|| APR_STATUS_IS_ENOTDIR(rv))) {
|
||||||
|
return newpath;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
AP_DECLARE(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive)
|
AP_DECLARE(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive)
|
||||||
{
|
{
|
||||||
struct ap_varbuf vb;
|
struct ap_varbuf vb;
|
||||||
|
@ -2775,6 +2775,24 @@ static const char *set_server_root(cmd_parms *cmd, void *dummy,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char *set_runtime_dir(cmd_parms *cmd, void *dummy, const char *arg)
|
||||||
|
{
|
||||||
|
const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
|
||||||
|
|
||||||
|
if (err != NULL) {
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((apr_filepath_merge((char**)&ap_runtime_dir, NULL,
|
||||||
|
ap_server_root_relative(cmd->pool, arg),
|
||||||
|
APR_FILEPATH_TRUENAME, cmd->pool) != APR_SUCCESS)
|
||||||
|
|| !ap_is_directory(cmd->temp_pool, ap_runtime_dir)) {
|
||||||
|
return "DefaultRuntimeDir must be a valid directory, absolute or relative to ServerRoot";
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static const char *set_timeout(cmd_parms *cmd, void *dummy, const char *arg)
|
static const char *set_timeout(cmd_parms *cmd, void *dummy, const char *arg)
|
||||||
{
|
{
|
||||||
const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE);
|
const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE);
|
||||||
@ -3928,6 +3946,8 @@ AP_INIT_TAKE1("ServerSignature", set_signature_flag, NULL, OR_ALL,
|
|||||||
"En-/disable server signature (on|off|email)"),
|
"En-/disable server signature (on|off|email)"),
|
||||||
AP_INIT_TAKE1("ServerRoot", set_server_root, NULL, RSRC_CONF | EXEC_ON_READ,
|
AP_INIT_TAKE1("ServerRoot", set_server_root, NULL, RSRC_CONF | EXEC_ON_READ,
|
||||||
"Common directory of server-related files (logs, confs, etc.)"),
|
"Common directory of server-related files (logs, confs, etc.)"),
|
||||||
|
AP_INIT_TAKE1("DefaultRuntimeDir", set_runtime_dir, NULL, RSRC_CONF | EXEC_ON_READ,
|
||||||
|
"Common directory for run-time files (shared memory, locks, etc.)"),
|
||||||
AP_INIT_TAKE1("ErrorLog", set_server_string_slot,
|
AP_INIT_TAKE1("ErrorLog", set_server_string_slot,
|
||||||
(void *)APR_OFFSETOF(server_rec, error_fname), RSRC_CONF,
|
(void *)APR_OFFSETOF(server_rec, error_fname), RSRC_CONF,
|
||||||
"The filename of the error log"),
|
"The filename of the error log"),
|
||||||
|
@ -54,6 +54,7 @@ typedef int flex_int32_t;
|
|||||||
typedef unsigned char flex_uint8_t;
|
typedef unsigned char flex_uint8_t;
|
||||||
typedef unsigned short int flex_uint16_t;
|
typedef unsigned short int flex_uint16_t;
|
||||||
typedef unsigned int flex_uint32_t;
|
typedef unsigned int flex_uint32_t;
|
||||||
|
#endif /* ! C99 */
|
||||||
|
|
||||||
/* Limits of integral types. */
|
/* Limits of integral types. */
|
||||||
#ifndef INT8_MIN
|
#ifndef INT8_MIN
|
||||||
@ -84,8 +85,6 @@ typedef unsigned int flex_uint32_t;
|
|||||||
#define UINT32_MAX (4294967295U)
|
#define UINT32_MAX (4294967295U)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* ! C99 */
|
|
||||||
|
|
||||||
#endif /* ! FLEXINT_H */
|
#endif /* ! FLEXINT_H */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
@ -159,15 +158,7 @@ typedef void* yyscan_t;
|
|||||||
|
|
||||||
/* Size of default input buffer. */
|
/* Size of default input buffer. */
|
||||||
#ifndef YY_BUF_SIZE
|
#ifndef YY_BUF_SIZE
|
||||||
#ifdef __ia64__
|
|
||||||
/* On IA-64, the buffer size is 16k, not 8k.
|
|
||||||
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
|
|
||||||
* Ditto for the __ia64__ case accordingly.
|
|
||||||
*/
|
|
||||||
#define YY_BUF_SIZE 32768
|
|
||||||
#else
|
|
||||||
#define YY_BUF_SIZE 16384
|
#define YY_BUF_SIZE 16384
|
||||||
#endif /* __ia64__ */
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The state buf must be large enough to hold one state per character in the main buffer.
|
/* The state buf must be large enough to hold one state per character in the main buffer.
|
||||||
@ -179,6 +170,11 @@ typedef void* yyscan_t;
|
|||||||
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
||||||
|
#define YY_TYPEDEF_YY_SIZE_T
|
||||||
|
typedef size_t yy_size_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
#define EOB_ACT_CONTINUE_SCAN 0
|
#define EOB_ACT_CONTINUE_SCAN 0
|
||||||
#define EOB_ACT_END_OF_FILE 1
|
#define EOB_ACT_END_OF_FILE 1
|
||||||
#define EOB_ACT_LAST_MATCH 2
|
#define EOB_ACT_LAST_MATCH 2
|
||||||
@ -201,11 +197,6 @@ typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
|||||||
|
|
||||||
#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
|
#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
|
||||||
|
|
||||||
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
||||||
#define YY_TYPEDEF_YY_SIZE_T
|
|
||||||
typedef size_t yy_size_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
||||||
#define YY_STRUCT_YY_BUFFER_STATE
|
#define YY_STRUCT_YY_BUFFER_STATE
|
||||||
struct yy_buffer_state
|
struct yy_buffer_state
|
||||||
@ -223,7 +214,7 @@ struct yy_buffer_state
|
|||||||
/* Number of characters read into yy_ch_buf, not including EOB
|
/* Number of characters read into yy_ch_buf, not including EOB
|
||||||
* characters.
|
* characters.
|
||||||
*/
|
*/
|
||||||
int yy_n_chars;
|
yy_size_t yy_n_chars;
|
||||||
|
|
||||||
/* Whether we "own" the buffer - i.e., we know we created it,
|
/* Whether we "own" the buffer - i.e., we know we created it,
|
||||||
* and can realloc() it to grow it, and should free() it to
|
* and can realloc() it to grow it, and should free() it to
|
||||||
@ -302,7 +293,7 @@ static void ap_expr_yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yysca
|
|||||||
|
|
||||||
YY_BUFFER_STATE ap_expr_yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
|
YY_BUFFER_STATE ap_expr_yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
|
||||||
YY_BUFFER_STATE ap_expr_yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
|
YY_BUFFER_STATE ap_expr_yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
|
||||||
YY_BUFFER_STATE ap_expr_yy_scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner );
|
YY_BUFFER_STATE ap_expr_yy_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner );
|
||||||
|
|
||||||
void *ap_expr_yyalloc (yy_size_t ,yyscan_t yyscanner );
|
void *ap_expr_yyalloc (yy_size_t ,yyscan_t yyscanner );
|
||||||
void *ap_expr_yyrealloc (void *,yy_size_t ,yyscan_t yyscanner );
|
void *ap_expr_yyrealloc (void *,yy_size_t ,yyscan_t yyscanner );
|
||||||
@ -611,7 +602,7 @@ static yyconst flex_int16_t yy_chk[319] =
|
|||||||
PERROR("String too long"); \
|
PERROR("String too long"); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#line 615 "util_expr_scan.c"
|
#line 606 "util_expr_scan.c"
|
||||||
|
|
||||||
#define INITIAL 0
|
#define INITIAL 0
|
||||||
#define str 1
|
#define str 1
|
||||||
@ -645,8 +636,8 @@ struct yyguts_t
|
|||||||
size_t yy_buffer_stack_max; /**< capacity of stack. */
|
size_t yy_buffer_stack_max; /**< capacity of stack. */
|
||||||
YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
|
YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
|
||||||
char yy_hold_char;
|
char yy_hold_char;
|
||||||
int yy_n_chars;
|
yy_size_t yy_n_chars;
|
||||||
int yyleng_r;
|
yy_size_t yyleng_r;
|
||||||
char *yy_c_buf_p;
|
char *yy_c_buf_p;
|
||||||
int yy_init;
|
int yy_init;
|
||||||
int yy_start;
|
int yy_start;
|
||||||
@ -699,7 +690,7 @@ FILE *ap_expr_yyget_out (yyscan_t yyscanner );
|
|||||||
|
|
||||||
void ap_expr_yyset_out (FILE * out_str ,yyscan_t yyscanner );
|
void ap_expr_yyset_out (FILE * out_str ,yyscan_t yyscanner );
|
||||||
|
|
||||||
int ap_expr_yyget_leng (yyscan_t yyscanner );
|
yy_size_t ap_expr_yyget_leng (yyscan_t yyscanner );
|
||||||
|
|
||||||
char *ap_expr_yyget_text (yyscan_t yyscanner );
|
char *ap_expr_yyget_text (yyscan_t yyscanner );
|
||||||
|
|
||||||
@ -747,12 +738,7 @@ static int input (yyscan_t yyscanner );
|
|||||||
|
|
||||||
/* Amount of stuff to slurp up with each read. */
|
/* Amount of stuff to slurp up with each read. */
|
||||||
#ifndef YY_READ_BUF_SIZE
|
#ifndef YY_READ_BUF_SIZE
|
||||||
#ifdef __ia64__
|
|
||||||
/* On IA-64, the buffer size is 16k, not 8k */
|
|
||||||
#define YY_READ_BUF_SIZE 16384
|
|
||||||
#else
|
|
||||||
#define YY_READ_BUF_SIZE 8192
|
#define YY_READ_BUF_SIZE 8192
|
||||||
#endif /* __ia64__ */
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Copy whatever the last rule matched to the standard output. */
|
/* Copy whatever the last rule matched to the standard output. */
|
||||||
@ -760,7 +746,7 @@ static int input (yyscan_t yyscanner );
|
|||||||
/* This used to be an fputs(), but since the string might contain NUL's,
|
/* This used to be an fputs(), but since the string might contain NUL's,
|
||||||
* we now use fwrite().
|
* we now use fwrite().
|
||||||
*/
|
*/
|
||||||
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
|
#define ECHO fwrite( yytext, yyleng, 1, yyout )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
||||||
@ -771,7 +757,7 @@ static int input (yyscan_t yyscanner );
|
|||||||
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
||||||
{ \
|
{ \
|
||||||
int c = '*'; \
|
int c = '*'; \
|
||||||
size_t n; \
|
yy_size_t n; \
|
||||||
for ( n = 0; n < max_size && \
|
for ( n = 0; n < max_size && \
|
||||||
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
|
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
|
||||||
buf[n] = (char) c; \
|
buf[n] = (char) c; \
|
||||||
@ -882,7 +868,7 @@ YY_DECL
|
|||||||
/*
|
/*
|
||||||
* Whitespaces
|
* Whitespaces
|
||||||
*/
|
*/
|
||||||
#line 886 "util_expr_scan.c"
|
#line 872 "util_expr_scan.c"
|
||||||
|
|
||||||
yylval = yylval_param;
|
yylval = yylval_param;
|
||||||
|
|
||||||
@ -1519,7 +1505,7 @@ YY_RULE_SETUP
|
|||||||
#line 398 "util_expr_scan.l"
|
#line 398 "util_expr_scan.l"
|
||||||
YY_FATAL_ERROR( "flex scanner jammed" );
|
YY_FATAL_ERROR( "flex scanner jammed" );
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
#line 1523 "util_expr_scan.c"
|
#line 1509 "util_expr_scan.c"
|
||||||
case YY_STATE_EOF(INITIAL):
|
case YY_STATE_EOF(INITIAL):
|
||||||
case YY_STATE_EOF(regex):
|
case YY_STATE_EOF(regex):
|
||||||
yyterminate();
|
yyterminate();
|
||||||
@ -1708,7 +1694,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int num_to_read =
|
yy_size_t num_to_read =
|
||||||
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
||||||
|
|
||||||
while ( num_to_read <= 0 )
|
while ( num_to_read <= 0 )
|
||||||
@ -1722,7 +1708,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||||||
|
|
||||||
if ( b->yy_is_our_buffer )
|
if ( b->yy_is_our_buffer )
|
||||||
{
|
{
|
||||||
int new_size = b->yy_buf_size * 2;
|
yy_size_t new_size = b->yy_buf_size * 2;
|
||||||
|
|
||||||
if ( new_size <= 0 )
|
if ( new_size <= 0 )
|
||||||
b->yy_buf_size += b->yy_buf_size / 8;
|
b->yy_buf_size += b->yy_buf_size / 8;
|
||||||
@ -1753,7 +1739,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||||||
|
|
||||||
/* Read in more data. */
|
/* Read in more data. */
|
||||||
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
||||||
yyg->yy_n_chars, (size_t) num_to_read );
|
yyg->yy_n_chars, num_to_read );
|
||||||
|
|
||||||
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
|
||||||
}
|
}
|
||||||
@ -1878,7 +1864,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||||||
|
|
||||||
else
|
else
|
||||||
{ /* need more input */
|
{ /* need more input */
|
||||||
int offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
|
yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
|
||||||
++yyg->yy_c_buf_p;
|
++yyg->yy_c_buf_p;
|
||||||
|
|
||||||
switch ( yy_get_next_buffer( yyscanner ) )
|
switch ( yy_get_next_buffer( yyscanner ) )
|
||||||
@ -1902,7 +1888,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||||||
case EOB_ACT_END_OF_FILE:
|
case EOB_ACT_END_OF_FILE:
|
||||||
{
|
{
|
||||||
if ( ap_expr_yywrap(yyscanner ) )
|
if ( ap_expr_yywrap(yyscanner ) )
|
||||||
return EOF;
|
return 0;
|
||||||
|
|
||||||
if ( ! yyg->yy_did_buffer_switch_on_eof )
|
if ( ! yyg->yy_did_buffer_switch_on_eof )
|
||||||
YY_NEW_FILE;
|
YY_NEW_FILE;
|
||||||
@ -2158,7 +2144,7 @@ void ap_expr_yypop_buffer_state (yyscan_t yyscanner)
|
|||||||
*/
|
*/
|
||||||
static void ap_expr_yyensure_buffer_stack (yyscan_t yyscanner)
|
static void ap_expr_yyensure_buffer_stack (yyscan_t yyscanner)
|
||||||
{
|
{
|
||||||
int num_to_alloc;
|
yy_size_t num_to_alloc;
|
||||||
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
||||||
|
|
||||||
if (!yyg->yy_buffer_stack) {
|
if (!yyg->yy_buffer_stack) {
|
||||||
@ -2251,17 +2237,16 @@ YY_BUFFER_STATE ap_expr_yy_scan_string (yyconst char * yystr , yyscan_t yyscanne
|
|||||||
|
|
||||||
/** Setup the input buffer state to scan the given bytes. The next call to ap_expr_yylex() will
|
/** Setup the input buffer state to scan the given bytes. The next call to ap_expr_yylex() will
|
||||||
* scan from a @e copy of @a bytes.
|
* scan from a @e copy of @a bytes.
|
||||||
* @param yybytes the byte buffer to scan
|
* @param bytes the byte buffer to scan
|
||||||
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
|
* @param len the number of bytes in the buffer pointed to by @a bytes.
|
||||||
* @param yyscanner The scanner object.
|
* @param yyscanner The scanner object.
|
||||||
* @return the newly allocated buffer state object.
|
* @return the newly allocated buffer state object.
|
||||||
*/
|
*/
|
||||||
YY_BUFFER_STATE ap_expr_yy_scan_bytes (yyconst char * yybytes, int _yybytes_len , yyscan_t yyscanner)
|
YY_BUFFER_STATE ap_expr_yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner)
|
||||||
{
|
{
|
||||||
YY_BUFFER_STATE b;
|
YY_BUFFER_STATE b;
|
||||||
char *buf;
|
char *buf;
|
||||||
yy_size_t n;
|
yy_size_t n, i;
|
||||||
int i;
|
|
||||||
|
|
||||||
/* Get memory for full buffer, including space for trailing EOB's. */
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
||||||
n = _yybytes_len + 2;
|
n = _yybytes_len + 2;
|
||||||
@ -2396,7 +2381,7 @@ FILE *ap_expr_yyget_out (yyscan_t yyscanner)
|
|||||||
/** Get the length of the current token.
|
/** Get the length of the current token.
|
||||||
* @param yyscanner The scanner object.
|
* @param yyscanner The scanner object.
|
||||||
*/
|
*/
|
||||||
int ap_expr_yyget_leng (yyscan_t yyscanner)
|
yy_size_t ap_expr_yyget_leng (yyscan_t yyscanner)
|
||||||
{
|
{
|
||||||
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
||||||
return yyleng;
|
return yyleng;
|
||||||
|
Reference in New Issue
Block a user