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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
/*
* wordin.c
*
* Copyright (c) Chris Putnam 2010-2021
*
* Source code released under the GPL version 2
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "is_ws.h"
#include "str.h"
#include "str_conv.h"
#include "fields.h"
#include "pages.h"
#include "xml.h"
#include "xml_encoding.h"
#include "bibformats.h"
static int wordin_readf( FILE *fp, char *buf, int bufsize, int *bufpos, str *line, str *reference, int *fcharset );
static int wordin_processf( fields *wordin, const char *data, const char *filename, long nref, param *p );
/*****************************************************
PUBLIC: void wordin_initparams()
*****************************************************/
int
wordin_initparams( param *pm, const char *progname )
{
pm->readformat = BIBL_WORDIN;
pm->charsetin = BIBL_CHARSET_DEFAULT;
pm->charsetin_src = BIBL_SRC_DEFAULT;
pm->latexin = 0;
pm->xmlin = 1;
pm->utf8in = 1;
pm->nosplittitle = 0;
pm->verbose = 0;
pm->addcount = 0;
pm->output_raw = BIBL_RAW_WITHMAKEREFID |
BIBL_RAW_WITHCHARCONVERT;
pm->readf = wordin_readf;
pm->processf = wordin_processf;
pm->cleanf = NULL;
pm->typef = NULL;
pm->convertf = NULL;
pm->all = NULL;
pm->nall = 0;
slist_init( &(pm->asis) );
slist_init( &(pm->corps) );
if ( !progname ) pm->progname = NULL;
else {
pm->progname = strdup( progname );
if ( !pm->progname ) return BIBL_ERR_MEMERR;
}
return BIBL_OK;
}
/*****************************************************
PUBLIC: int wordin_readf()
*****************************************************/
static char *
wordin_findstartwrapper( char *buf, int *ntype )
{
return xml_find_start( buf, "b:Source" );
}
static char *
wordin_findendwrapper( char *buf, int ntype )
{
return xml_find_end( buf, "b:Source" );
}
static int
wordin_readf( FILE *fp, char *buf, int bufsize, int *bufpos, str *line, str *reference, int *fcharset )
{
str tmp;
char *startptr = NULL, *endptr;
int haveref = 0, inref = 0, file_charset = CHARSET_UNKNOWN, m, type = 1;
str_init( &tmp );
while ( !haveref && str_fget( fp, buf, bufsize, bufpos, line ) ) {
if ( str_cstr( line ) ) {
m = xml_getencoding( line );
if ( m!=CHARSET_UNKNOWN ) file_charset = m;
}
if ( str_cstr( line ) ) {
startptr = wordin_findstartwrapper( str_cstr( line ), &type );
}
if ( startptr || inref ) {
if ( inref ) str_strcat( &tmp, line );
else {
str_strcatc( &tmp, startptr );
inref = 1;
}
endptr = wordin_findendwrapper( str_cstr( &tmp ), type );
if ( endptr ) {
str_segcpy( reference, str_cstr( &tmp ), endptr );
haveref = 1;
}
}
}
str_free( &tmp );
*fcharset = file_charset;
return haveref;
}
/*****************************************************
PUBLIC: int wordin_processf()
*****************************************************/
typedef struct xml_convert {
char *in; /* The input tag */
char *a, *aval; /* The attribute="attribute_value" pair, if nec. */
char *out; /* The output tag */
int level;
} xml_convert;
/* wordin_person_last()
*
* From an xml list, extract the value from the first entry
* of <b:Last>xxxx</b:Last> and copy into name
*
* Additional <b:Last>yyyyy</b:Last> will be ignored.
*
* Returns BIBL_ERR_MEMERR on memory error, BIBL_OK otherwise.
*/
static int
wordin_person_last( xml *node, str *name )
{
while ( node && !xml_tag_matches( node, "b:Last" ) )
node = node->next;
if ( xml_has_value( node ) ) {
str_strcpy( name, xml_value( node ) );
if ( str_memerr( name ) ) return BIBL_ERR_MEMERR;
}
return BIBL_OK;
}
/* wordin_person_first()
*
* From an xml list, extract the value of any
* <b:First>xxxx</b:First> and append "|xxxx" to name.
*
* Returns BIBL_ERR_MEMERR on memory error, BIBL_OK otherwise
*/
static int
wordin_person_first( xml *node, str *name )
{
for ( ; node; node=node->next ) {
if ( !xml_tag_matches( node, "b:First" ) ) continue;
if ( xml_has_value( node ) ) {
if ( str_has_value( name ) ) str_addchar( name, '|' );
str_strcat( name, xml_value( node ) );
if ( str_memerr( name ) ) return BIBL_ERR_MEMERR;
}
}
return BIBL_OK;
}
static int
wordin_person( xml *node, fields *info, char *type )
{
int status, ret = BIBL_OK;
str name;
str_init( &name );
status = wordin_person_last( node, &name );
if ( status!=BIBL_OK ) {
ret = status;
goto out;
}
status = wordin_person_first( node, &name );
if ( status!=BIBL_OK ) {
ret = status;
goto out;
}
status = fields_add( info, type, str_cstr( &name ), 0 );
if ( status != FIELDS_OK ) ret = BIBL_ERR_MEMERR;
out:
str_free( &name );
return ret;
}
static int
wordin_people( xml *node, fields *info, char *type )
{
int ret = BIBL_OK;
if ( xml_tag_matches( node, "b:Author" ) && node->down ) {
ret = wordin_people( node->down, info, type );
} else if ( xml_tag_matches( node, "b:NameList" ) && node->down ) {
ret = wordin_people( node->down, info, type );
} else if ( xml_tag_matches( node, "b:Person" ) ) {
if ( node->down ) ret = wordin_person( node->down, info, type );
if ( ret!=BIBL_OK ) return ret;
if ( node->next ) ret = wordin_people( node->next, info, type );
}
return ret;
}
static int
wordin_reference( xml *node, fields *info )
{
int status, ret = BIBL_OK;
if ( xml_has_value( node ) ) {
if ( xml_tag_matches( node, "b:Tag" ) ) {
status = fields_add( info, "REFNUM", xml_value_cstr( node ), 0 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:SourceType" ) ) {
} else if ( xml_tag_matches( node, "b:City" ) ) {
status = fields_add( info, "ADDRESS", xml_value_cstr( node ), 0 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:Publisher" ) ) {
status = fields_add( info, "PUBLISHER", xml_value_cstr( node ), 0 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:Title" ) ) {
status = fields_add( info, "TITLE", xml_value_cstr( node ), 0 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:JournalName" ) ) {
status = fields_add( info, "TITLE", xml_value_cstr( node ), 1 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:Volume" ) ) {
status = fields_add( info, "VOLUME", xml_value_cstr( node ), 1 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:Comments" ) ) {
status = fields_add( info, "NOTES", xml_value_cstr( node ), 0 );
if ( status!=FIELDS_OK ) ret = BIBL_ERR_MEMERR;
} else if ( xml_tag_matches( node, "b:Pages" ) ) {
ret = add_pages( info, xml_value( node ), 1 );
} else if ( xml_tag_matches( node, "b:Author" ) && node->down ) {
ret = wordin_people( node->down, info, "AUTHOR" );
} else if ( xml_tag_matches( node, "b:Editor" ) && node->down ) {
ret = wordin_people( node->down, info, "EDITOR" );
}
}
if ( ret==BIBL_OK && node->next ) wordin_reference( node->next, info );
return ret;
}
static int
wordin_assembleref( xml *node, fields *info )
{
int ret = BIBL_OK;
if ( xml_tag_matches( node, "b:Source" ) ) {
if ( node->down ) ret = wordin_reference( node->down, info );
} else if ( str_is_empty( &(node->tag) ) && node->down ) {
ret = wordin_assembleref( node->down, info );
}
return ret;
}
static int
wordin_processf( fields *wordin, const char *data, const char *filename, long nref, param *p )
{
int status, ret = 1;
xml top;
xml_init( &top );
xml_parse( data, &top );
status = wordin_assembleref( &top, wordin );
xml_free( &top );
if ( status==BIBL_ERR_MEMERR ) ret = 0;
return ret;
}
|