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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
/* This file is part of the Zebra server.
Copyright (C) Index Data
Zebra 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 2, or (at your option) any later
version.
Zebra 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, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef MARCOMP_H
#define MARCOMP_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct mc_subfield
{
char *name;
char *prefix;
char *suffix;
struct {
int start;
int end;
} interval;
int which;
union {
#define MC_SF 1
#define MC_SFGROUP 2
#define MC_SFVARIANT 3
struct mc_field *in_line;
struct mc_subfield *child;
} u;
struct mc_subfield *next;
struct mc_subfield *parent;
} mc_subfield;
#define SZ_FNAME 3
#define SZ_IND 1
#define SZ_SFNAME 1
#define SZ_PREFIX 1
#define SZ_SUFFIX 1
typedef struct mc_field
{
char *name;
char *ind1;
char *ind2;
struct {
int start;
int end;
} interval;
struct mc_subfield *list;
} mc_field;
typedef enum
{
NOP,
REGULAR,
LVARIANT,
RVARIANT,
LGROUP,
RGROUP,
LINLINE,
RINLINE,
SUBFIELD,
LINTERVAL,
RINTERVAL,
} mc_token;
typedef enum
{
EMCOK = 0, /* first always, mondatory */
EMCNOMEM,
EMCF,
EMCSF,
EMCSFGROUP,
EMCSFVAR,
EMCSFINLINE,
EMCEND /* last always, mondatory */
} mc_errcode;
typedef struct mc_context
{
int offset;
int crrval;
mc_token crrtok;
mc_errcode errcode;
int len;
const char *data;
} mc_context;
mc_context *mc_mk_context(const char *s);
void mc_destroy_context(mc_context *c);
mc_field *mc_getfield(mc_context *c);
void mc_destroy_field(mc_field *p);
void mc_pr_field(mc_field *p, int offset);
mc_subfield *mc_getsubfields(mc_context *c, mc_subfield *parent);
void mc_destroy_subfield(mc_subfield *p);
void mc_destroy_subfields_recursive(mc_subfield *p);
void mc_pr_subfields(mc_subfield *p, int offset);
mc_errcode mc_errno(mc_context *c);
const char *mc_error(mc_errcode no);
#ifdef __cplusplus
}
#endif
#endif
/*
* Local variables:
* c-basic-offset: 4
* c-file-style: "Stroustrup"
* indent-tabs-mode: nil
* End:
* vim: shiftwidth=4 tabstop=8 expandtab
*/
|