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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/*
*
* Copyright (c) 2015, Masatake YAMATO
* Copyright (c) 2015, Red Hat, K.K.
*
* This source code is released for free distribution under the terms of the
* GNU General Public License version 2 or (at your option) any later version.
*
* This module contains functions for generating tags for diff files (based on Sh parser).
*/
#include "general.h" /* must always come first */
#include "entry.h"
#include "debug.h"
#include "parse.h"
#include "read.h"
#include "routines.h"
#include "xml.h"
typedef enum {
R_CLASS_WIDGET,
} gladeClassRole;
typedef enum {
R_HANDLER_HANDLER,
} gladeHandleRoler;
static roleDefinition GladeClassRoles [] = {
{ true, "widget", "specified as a widget constructor" },
};
static roleDefinition GladeHandlerRoles [] = {
{ true, "handler", "specified as a callback for signal emission" },
};
typedef enum {
K_CLASS, K_HANDLER,
} gladeKind;
static kindDefinition GladeKinds [] = {
/* These two are appeared on names in C source code. */
{ true, 'c', "class", "classes",
.referenceOnly = true, ATTACH_ROLES (GladeClassRoles) },
{ true, 'h', "handler", "handlers",
.referenceOnly = true, ATTACH_ROLES (GladeHandlerRoles) },
};
static tagXpathTable gladeXpathMainTable[] = {
{ "///glade-interface//widget//@class",
LXPATH_TABLE_DO_MAKE,
{ .makeTagSpec = { K_CLASS, R_CLASS_WIDGET } }
},
{ "///glade-interface//signal//@handler",
LXPATH_TABLE_DO_MAKE,
{ .makeTagSpec = { K_HANDLER, R_HANDLER_HANDLER }}
},
};
enum gladeXpathTable {
TABLE_MAIN
};
static tagXpathTableTable gladeXpathTableTable[] = {
[TABLE_MAIN] = { ARRAY_AND_SIZE(gladeXpathMainTable) },
};
static void
findGladeTags (void)
{
scheduleRunningBaseparser (RUN_DEFAULT_SUBPARSERS);
}
static void
runXPathEngine(xmlSubparser *s,
xmlXPathContext *ctx, xmlNode *root)
{
findXMLTags (ctx, root, TABLE_MAIN, NULL);
}
static xmlSubparser gladeSubparser = {
.subparser = {
.direction = SUBPARSER_BI_DIRECTION,
},
.runXPathEngine = runXPathEngine,
};
extern parserDefinition*
GladeParser (void)
{
static const char *const extensions [] = { "glade", NULL };
parserDefinition* const def = parserNew ("Glade");
static parserDependency dependencies [] = {
[0] = { DEPTYPE_SUBPARSER, "XML", &gladeSubparser },
};
def->kindTable = GladeKinds;
def->kindCount = ARRAY_SIZE (GladeKinds);
def->extensions = extensions;
def->parser = findGladeTags;
def->tagXpathTableTable = gladeXpathTableTable;
def->tagXpathTableCount = ARRAY_SIZE (gladeXpathTableTable);
def->dependencies = dependencies;
def->dependencyCount = ARRAY_SIZE (dependencies);
return def;
}
|