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

📄 lex.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 5 页
字号:
		} /* end of scanning one token */} /* end of yylex *//* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: *	EOB_ACT_LAST_MATCH - *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position *	EOB_ACT_END_OF_FILE - end of file */static int yy_get_next_buffer (void){    	register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;	register char *source = (yytext_ptr);	register int number_to_move, i;	int ret_val;	if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )		YY_FATAL_ERROR(		"fatal flex scanner internal error--end of buffer missed" );	if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )		{ /* Don't try to fill the buffer, so this is an EOF. */		if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )			{			/* We matched a single character, the EOB, so			 * treat this as a final EOF.			 */			return EOB_ACT_END_OF_FILE;			}		else			{			/* We matched some text prior to the EOB, first			 * process it.			 */			return EOB_ACT_LAST_MATCH;			}		}	/* Try to read more data. */	/* First move last chars to start of buffer. */	number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;	for ( i = 0; i < number_to_move; ++i )		*(dest++) = *(source++);	if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )		/* don't do the read, it's not guaranteed to return an EOF,		 * just force an EOF		 */		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;	else		{			int num_to_read =			YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;		while ( num_to_read <= 0 )			{ /* Not enough room in the buffer - grow it. */			/* just a shorter name for the current buffer */			YY_BUFFER_STATE b = YY_CURRENT_BUFFER;			int yy_c_buf_p_offset =				(int) ((yy_c_buf_p) - b->yy_ch_buf);			if ( b->yy_is_our_buffer )				{				int new_size = b->yy_buf_size * 2;				if ( new_size <= 0 )					b->yy_buf_size += b->yy_buf_size / 8;				else					b->yy_buf_size *= 2;				b->yy_ch_buf = (char *)					/* Include room in for 2 EOB chars. */					yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );				}			else				/* Can't grow it, we don't own it. */				b->yy_ch_buf = 0;			if ( ! b->yy_ch_buf )				YY_FATAL_ERROR(				"fatal error - scanner input buffer overflow" );			(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];			num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -						number_to_move - 1;			}		if ( num_to_read > YY_READ_BUF_SIZE )			num_to_read = YY_READ_BUF_SIZE;		/* Read in more data. */		YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),			(yy_n_chars), num_to_read );		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);		}	if ( (yy_n_chars) == 0 )		{		if ( number_to_move == YY_MORE_ADJ )			{			ret_val = EOB_ACT_END_OF_FILE;			yyrestart(yyin  );			}		else			{			ret_val = EOB_ACT_LAST_MATCH;			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =				YY_BUFFER_EOF_PENDING;			}		}	else		ret_val = EOB_ACT_CONTINUE_SCAN;	(yy_n_chars) += number_to_move;	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;	(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];	return ret_val;}/* yy_get_previous_state - get the state just before the EOB char was reached */    static yy_state_type yy_get_previous_state (void){	register yy_state_type yy_current_state;	register char *yy_cp;    	yy_current_state = (yy_start);	for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )		{		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);		if ( yy_accept[yy_current_state] )			{			(yy_last_accepting_state) = yy_current_state;			(yy_last_accepting_cpos) = yy_cp;			}		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )			{			yy_current_state = (int) yy_def[yy_current_state];			if ( yy_current_state >= 568 )				yy_c = yy_meta[(unsigned int) yy_c];			}		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];		}	return yy_current_state;}/* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis *	next_state = yy_try_NUL_trans( current_state ); */    static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state ){	register int yy_is_jam;    	register char *yy_cp = (yy_c_buf_p);	register YY_CHAR yy_c = 1;	if ( yy_accept[yy_current_state] )		{		(yy_last_accepting_state) = yy_current_state;		(yy_last_accepting_cpos) = yy_cp;		}	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )		{		yy_current_state = (int) yy_def[yy_current_state];		if ( yy_current_state >= 568 )			yy_c = yy_meta[(unsigned int) yy_c];		}	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];	yy_is_jam = (yy_current_state == 567);	return yy_is_jam ? 0 : yy_current_state;}    static void yyunput (int c, register char * yy_bp ){	register char *yy_cp;        yy_cp = (yy_c_buf_p);	/* undo effects of setting up yytext */	*yy_cp = (yy_hold_char);	if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )		{ /* need to shift things up to make room */		/* +2 for EOB chars. */		register int number_to_move = (yy_n_chars) + 2;		register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[					YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];		register char *source =				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];		while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )			*--dest = *--source;		yy_cp += (int) (dest - source);		yy_bp += (int) (dest - source);		YY_CURRENT_BUFFER_LVALUE->yy_n_chars =			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;		if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )			YY_FATAL_ERROR( "flex scanner push-back overflow" );		}	*--yy_cp = (char) c;	(yytext_ptr) = yy_bp;	(yy_hold_char) = *yy_cp;	(yy_c_buf_p) = yy_cp;}#ifndef YY_NO_INPUT#ifdef __cplusplus    static int yyinput (void)#else    static int input  (void)#endif{	int c;    	*(yy_c_buf_p) = (yy_hold_char);	if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )		{		/* yy_c_buf_p now points to the character we want to return.		 * If this occurs *before* the EOB characters, then it's a		 * valid NUL; if not, then we've hit the end of the buffer.		 */		if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )			/* This was really a NUL. */			*(yy_c_buf_p) = '\0';		else			{ /* need more input */			int offset = (yy_c_buf_p) - (yytext_ptr);			++(yy_c_buf_p);			switch ( yy_get_next_buffer(  ) )				{				case EOB_ACT_LAST_MATCH:					/* This happens because yy_g_n_b()					 * sees that we've accumulated a					 * token and flags that we need to					 * try matching the token before					 * proceeding.  But for input(),					 * there's no matching to consider.					 * So convert the EOB_ACT_LAST_MATCH					 * to EOB_ACT_END_OF_FILE.					 */					/* Reset buffer status. */					yyrestart(yyin );					/*FALLTHROUGH*/				case EOB_ACT_END_OF_FILE:					{					if ( yywrap( ) )						return EOF;					if ( ! (yy_did_buffer_switch_on_eof) )						YY_NEW_FILE;#ifdef __cplusplus					return yyinput();#else					return input();#endif					}				case EOB_ACT_CONTINUE_SCAN:					(yy_c_buf_p) = (yytext_ptr) + offset;					break;				}			}		}	c = *(unsigned char *) (yy_c_buf_p);	/* cast for 8-bit char's */	*(yy_c_buf_p) = '\0';	/* preserve yytext */	(yy_hold_char) = *++(yy_c_buf_p);	return c;}#endif	/* ifndef YY_NO_INPUT *//** Immediately switch to a different input stream. * @param input_file A readable stream. *  * @note This function does not reset the start condition to @c INITIAL . */    void yyrestart  (FILE * input_file ){    	if ( ! YY_CURRENT_BUFFER ){        yyensure_buffer_stack ();		YY_CURRENT_BUFFER_LVALUE =            yy_create_buffer(yyin,YY_BUF_SIZE );	}	yy_init_buffer(YY_CURRENT_BUFFER,input_file );	yy_load_buffer_state( );}/** Switch to a different input buffer. * @param new_buffer The new input buffer. *  */    void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer ){    	/* TODO. We should be able to replace this entire function body	 * with	 *		yypop_buffer_state();	 *		yypush_buffer_state(new_buffer);     */	yyensure_buffer_stack ();	if ( YY_CURRENT_BUFFER == new_buffer )		return;	if ( YY_CURRENT_BUFFER )		{		/* Flush out information for old buffer. */		*(yy_c_buf_p) = (yy_hold_char);		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);		}	YY_CURRENT_BUFFER_LVALUE = new_buffer;	yy_load_buffer_state( );	/* We don't actually know whether we did this switch during	 * EOF (yywrap()) processing, but the only time this flag	 * is looked at is after yywrap() is called, so it's safe	 * to go ahead and always set it.	 */	(yy_did_buffer_switch_on_eof) = 1;}static void yy_load_buffer_state  (void){    	(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;	(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;	yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;	(yy_hold_char) = *(yy_c_buf_p);}/** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. *  * @return the allocated buffer state. */    YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size ){	YY_BUFFER_STATE b;    	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );	if ( ! b )		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );	b->yy_buf_size = size;	/* yy_ch_buf has to be 2 characters longer than the size given because	 * we need to put in 2 end-of-buffer characters.	 */	b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );	if ( ! b->yy_ch_buf )		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );	b->yy_is_our_buffer = 1;	yy_init_buffer(b,file );	return b;}/** Destroy the buffer. * @param b a buffer created with yy_create_buffer() *  */    void yy_delete_buffer (YY_BUFFER_STATE  b ){    	if ( ! b )		return;	if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */		YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;	if ( b->yy_is_our_buffer )		yyfree((void *) b->yy_ch_buf  );	yyfree((void *) b  );}#ifndef __cplusplusextern int isatty (int );#endif /* __cplusplus */    /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */    static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file ){	int oerrno = errno;    	yy_flush_buffer(b );	b->yy_input_file = file;	b->yy_fill_buffer = 1;    /* If b is the current buffer, then yy_init_buffer was _probably_     * called from yyrestart() or through yy_get_next_buffer.     * In that case, we don't want to reset the lineno or column.     */    if (b != YY_CURRENT_BUFFER){        b->yy_bs_lineno = 1;        b->yy_bs_column = 0;    }        b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;    	errno = oerrno;}/** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. *  */    void yy_flush_buffer (YY_BUFFER_STATE  b ){    	if ( ! b )		return;	b->yy_n_chars = 0;	/* W

⌨️ 快捷键说明

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