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
|
/*
* isiin.c
*
* Copyright (c) Chris Putnam 2004-2009
*
* Program and source code released under the GPL
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "is_ws.h"
#include "newstr.h"
#include "newstr_conv.h"
#include "fields.h"
#include "name.h"
#include "title.h"
#include "serialno.h"
#include "reftypes.h"
#include "isiin.h"
/* ISI definition of a tag is strict:
* char 1 = uppercase alphabetic character
* char 2 = uppercase alphabetic character or digit
*/
static int
isiin_istag( char *buf )
{
if ( ! (buf[0]>='A' && buf[0]<='Z') ) return 0;
if ( ! (((buf[1]>='A' && buf[1]<='Z'))||(buf[1]>='0'&&buf[1]<='9')))
return 0;
return 1;
}
static int
readmore( FILE *fp, char *buf, int bufsize, int *bufpos, newstr *line )
{
if ( line->len ) return 1;
else return newstr_fget( fp, buf, bufsize, bufpos, line );
}
int
isiin_readf( FILE *fp, char *buf, int bufsize, int *bufpos, newstr *line, newstr *reference, int *fcharset )
{
int haveref = 0, inref = 0;
char *p;
*fcharset = CHARSET_UNKNOWN;
while ( !haveref && readmore( fp, buf, bufsize, bufpos, line ) ) {
if ( !line->data ) continue;
p = &(line->data[0]);
/* Recognize UTF8 BOM */
if ( line->len > 2 &&
(unsigned char)(p[0])==0xEF &&
(unsigned char)(p[1])==0xBB &&
(unsigned char)(p[2])==0xBF ) {
*fcharset = CHARSET_UNICODE;
p += 3;
}
/* Each reference ends with 'ER ' */
if ( isiin_istag( p ) ) {
if ( !strncmp( p, "FN ", 3 ) ) {
if (strncasecmp( p, "FN ISI Export Format",20)){
fprintf( stderr, ": warning file FN type not '%s' not recognized.\n", /*r->progname,*/ p );
}
} else if ( !strncmp( p, "VR ", 3 ) ) {
if ( strncasecmp( p, "VR 1.0", 6 ) ) {
fprintf(stderr,": warning file version number '%s' not recognized, expected 'VR 1.0'\n", /*r->progname,*/ p );
}
} else if ( !strncmp( p, "ER", 2 ) ) haveref = 1;
else {
newstr_addchar( reference, '\n' );
newstr_strcat( reference, p );
inref = 1;
}
newstr_empty( line );
}
/* not a tag, but we'll append to the last values */
else if ( inref ) {
newstr_addchar( reference, '\n' );
newstr_strcat( reference, p );
newstr_empty( line );
}
else {
newstr_empty( line );
}
}
return haveref;
}
static char *
process_isiline( newstr *tag, newstr *data, char *p )
{
int i;
/* collect tag and skip past it */
i = 0;
while ( i<2 && *p && *p!='\r' && *p!='\n') {
newstr_addchar( tag, *p++ );
i++;
}
while ( *p==' ' || *p=='\t' ) p++;
while ( *p && *p!='\r' && *p!='\n' )
newstr_addchar( data, *p++ );
newstr_trimendingws( data );
while ( *p=='\r' || *p=='\n' ) p++;
return p;
}
int
isiin_processf( fields *isiin, char *p, char *filename, long nref )
{
newstr tag, data;
int n;
newstrs_init( &tag, &data, NULL );
while ( *p ) {
newstrs_empty( &tag, &data, NULL );
p = process_isiline( &tag, &data, p );
if ( !data.len ) continue;
if ( (tag.len>1) && isiin_istag( tag.data ) ) {
fields_add( isiin, tag.data, data.data, 0 );
} else {
n = isiin->nfields;
if ( n>0 ) {
/* only one AU or AF for list of authors */
if ( !strcmp( isiin->tag[n-1].data,"AU") ){
fields_add( isiin, "AU", data.data, 0);
} else if ( !strcmp( isiin->tag[n-1].data,"AF") ){
fields_add( isiin, "AF", data.data, 0);
}
/* otherwise append multiline data */
else {
newstr_addchar( &(isiin->data[n-1]),' ');
newstr_strcat( &(isiin->data[n-1]), data.data );
}
}
}
}
newstrs_free( &data, &tag, NULL );
return 1;
}
static void
keyword_process( fields *info, char *newtag, char *p, int level )
{
newstr keyword;
newstr_init( &keyword );
while ( *p ) {
p = skip_ws( p );
while ( *p && *p!=';' ) newstr_addchar( &keyword, *p++ );
if ( keyword.len ) {
fields_add( info, newtag, keyword.data, level );
newstr_empty( &keyword );
}
if ( *p==';' ) p++;
}
newstr_free( &keyword );
}
int
isiin_typef( fields *isiin, char *filename, int nref, param *p, variants *all, int nall )
{
char *refnum = "";
int n, reftype, nrefnum;
n = fields_find( isiin, "PT", 0 );
nrefnum = fields_find ( isiin, "UT", 0 );
if ( nrefnum!=-1 ) refnum = isiin->data[nrefnum].data;
if ( n!=-1 )
reftype = get_reftype( (isiin->data[n]).data, nref, p->progname, all, nall, refnum );
else
reftype = get_reftype( "", nref, p->progname, all, nall, refnum ); /* default */
return reftype;
}
/* pull off authors first--use AF before AU */
static void
isiin_addauthors( fields *isiin, fields *info, int reftype, variants *all, int nall, list *asis, list *corps )
{
newstr *t, *d;
char *newtag, *authortype, use_af[]="AF", use_au[]="AU";
int level, i, n, has_af=0, has_au=0;
for ( i=0; i<isiin->nfields && has_af==0; ++i ) {
t = &( isiin->tag[i] );
if ( !strcasecmp( t->data, "AU" ) ) has_au++;
if ( !strcasecmp( t->data, "AF" ) ) has_af++;
}
if ( has_af ) authortype = use_af;
else authortype = use_au;
for ( i=0; i<isiin->nfields; ++i ) {
t = &( isiin->tag[i] );
if ( !strcasecmp( t->data, "AU" ) ) has_au++;
if ( strcasecmp( t->data, authortype ) ) continue;
d = &( isiin->data[i] );
n = process_findoldtag( authortype, reftype, all, nall );
level = ((all[reftype]).tags[n]).level;
newtag = all[reftype].tags[n].newstr;
name_add( info, newtag, d->data, level, asis, corps );
}
}
static void
isiin_report_notag( param *p, char *tag )
{
if ( p->verbose && strcmp( tag, "PT" ) ) {
if ( p->progname ) fprintf( stderr, "%s: ", p->progname );
fprintf( stderr, "Did not identify ISI tag '%s'\n", tag );
}
}
void
isiin_convertf( fields *isiin, fields *info, int reftype, param *p, variants *all, int nall )
{
newstr *t, *d;
int process, level, i, n;
char *newtag;
isiin_addauthors( isiin, info, reftype, all, nall, &(p->asis),
&(p->corps) );
for ( i=0; i<isiin->nfields; ++i ) {
t = &( isiin->tag[i] );
if ( !strcasecmp( t->data, "AU" ) || !strcasecmp( t->data, "AF" ) )
continue;
d = &( isiin->data[i] );
n = process_findoldtag( t->data, reftype, all, nall );
if ( n==-1 ) {
isiin_report_notag( p, t->data );
continue;
}
process = ((all[reftype]).tags[n]).processingtype;
level = ((all[reftype]).tags[n]).level;
newtag = all[reftype].tags[n].newstr;
if ( process == SIMPLE || process == DATE )
fields_add( info, newtag, d->data, level );
else if ( process == PERSON )
name_add( info, newtag, d->data, level, &(p->asis),
&(p->corps) );
else if ( process == TITLE )
title_process( info, newtag, d->data, level,
p->nosplittitle );
else if ( process == ISI_KEYWORD )
keyword_process( info, newtag, d->data, level );
else if ( process == SERIALNO )
addsn( info, d->data, level );
/* do nothing if process==TYPE || process==ALWAYS */
}
}
|