1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
* Copyright (c) 2009, 2010
* Tama Communications Corporation
*
* This file is part of GNU GLOBAL.
*
* 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/>.
*/
#ifndef _PARSER_H_
#define _PARSER_H_
/*
* Built-in parser base on gctags
*/
void parser_init(const char *, const char *);
void parser_exit(void);
/* tag type */
/** definition */
#define PARSER_DEF 1
/** reference or other symbol */
#define PARSER_REF_SYM 2
/* flags */
/** debug mode */
#define PARSER_DEBUG 1
/** verbose mode */
#define PARSER_VERBOSE 2
/** print warning message */
#define PARSER_WARNING 4
/** force level 1 block end */
#define PARSER_END_BLOCK 8
/** force level 1 block start */
#define PARSER_BEGIN_BLOCK 16
/** gtags --explain */
#define PARSER_EXPLAIN 32
typedef void (*PARSER_CALLBACK)(int, const char *, int, const char *, const char *, void *);
struct parser_param {
int size; /**< size of this structure */
int flags;
const char *file;
PARSER_CALLBACK put;
void *arg;
int (*isnotfunction)(const char *);
const char *langmap;
char *(*getconf)(const char *);
void (*die)(const char *, ...);
void (*warning)(const char *, ...);
void (*message)(const char *, ...);
};
typedef void (*PARSER)(const struct parser_param *);
void parse_file(const char *, int, PARSER_CALLBACK, void *);
const struct lang_entry *get_parser(const char *);
void execute_parser(const struct lang_entry *, const char *, int, PARSER_CALLBACK, void *);
const char *get_explain(const char *, const struct lang_entry *);
#endif
|