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 273 274 275 276 277 278 279 280 281
|
/*
* copacin.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 "list.h"
#include "name.h"
#include "title.h"
#include "fields.h"
#include "reftypes.h"
#include "serialno.h"
#include "copacin.h"
/* Endnote-Refer/Copac tag definition:
character 1 = alphabetic character
character 2 = alphabetic character
character 3 = dash
character 4 = space
*/
static int
copacin_istag( char *buf )
{
if (! ((buf[0]>='A' && buf[0]<='Z')) || (buf[0]>='a' && buf[0]<='z') )
return 0;
if (! ((buf[1]>='A' && buf[1]<='Z')) || (buf[1]>='a' && buf[1]<='z') )
return 0;
if (buf[2]!='-' ) return 0;
if (buf[3]!=' ' ) 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
copacin_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 ) ) {
/* blank line separates */
if ( line->data==NULL ) continue;
if ( inref && line->len==0 ) haveref=1;
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;
}
if ( copacin_istag( p ) ) {
if ( inref ) newstr_addchar( reference, '\n' );
newstr_strcat( reference, p );
newstr_empty( line );
inref = 1;
} else if ( inref ) {
if ( p ) {
/* copac puts tag only on 1st line */
newstr_addchar( reference, ' ' );
if ( *p ) p++;
if ( *p ) p++;
if ( *p ) p++;
newstr_strcat( reference, p );
}
newstr_empty( line );
} else {
newstr_empty( line );
}
}
return haveref;
}
static char*
copacin_addtag2( char *p, newstr *tag, newstr *data )
{
int i;
i =0;
while ( i<3 && *p ) {
newstr_addchar( tag, *p++ );
i++;
}
while ( *p==' ' || *p=='\t' ) p++;
while ( *p && *p!='\r' && *p!='\n' ) {
newstr_addchar( data, *p );
p++;
}
newstr_trimendingws( data );
while ( *p=='\n' || *p=='\r' ) p++;
return p;
}
static char *
copacin_nextline( char *p )
{
while ( *p && *p!='\n' && *p!='\r') p++;
while ( *p=='\n' || *p=='\r' ) p++;
return p;
}
int
copacin_processf( fields *copacin, char *p, char *filename, long nref )
{
newstr tag, data;
newstr_init( &tag );
newstr_init( &data );
while ( *p ) {
p = skip_ws( p );
if ( copacin_istag( p ) ) {
p = copacin_addtag2( p, &tag, &data );
/* don't add empty strings */
if ( tag.len && data.len )
fields_add( copacin, tag.data, data.data, 0 );
newstr_empty( &tag );
newstr_empty( &data );
}
else p = copacin_nextline( p );
}
newstr_free( &tag );
newstr_free( &data );
return 1;
}
/* copac names appear to always start with last name first, but don't
* always seem to have a comma after the name
*
* editors seem to be stuck in as authors with the tag "[Editor]" in it
*/
static void
copacin_addname( fields *info, char *tag, newstr *name, int level, list *asis,
list *corps )
{
char *usetag = tag, editor[]="EDITOR", *p;
int comma = 0;
if ( strstr( name->data,"[Editor]" ) ) {
newstr_findreplace( name, "[Editor]", "" );
usetag = editor;
}
p = skip_ws( name->data );
while ( *p && !is_ws( *p ) ) {
if ( *p==',' ) comma++;
p++;
}
if ( !comma && is_ws( *p ) ) *p = ',';
name_add( info, usetag, name->data, level, asis, corps );
}
static void
copacin_addpage( fields *info, char *p, int level )
{
newstr page;
newstr_init( &page );
p = skip_ws( p );
while ( *p && !is_ws(*p) && *p!='-' && *p!='\r' && *p!='\n' )
newstr_addchar( &page, *p++ );
if ( page.len>0 ) fields_add( info, "PAGESTART", page.data, level );
newstr_empty( &page );
while ( *p && (is_ws(*p) || *p=='-' ) ) p++;
while ( *p && !is_ws(*p) && *p!='-' && *p!='\r' && *p!='\n' )
newstr_addchar( &page, *p++ );
if ( page.len>0 ) fields_add( info, "PAGEEND", page.data, level );
newstr_free( &page );
}
static void
copacin_adddate( fields *info, char *tag, char *newtag, char *p, int level )
{
char *months[12]={ "January", "February", "March", "April",
"May", "June", "July", "August", "September",
"October", "November", "December" };
char month[10];
int found,i,part;
newstr date;
newstr_init( &date );
part = (!strncasecmp(newtag,"PART",4));
if ( !strcasecmp( tag, "%D" ) ) {
while ( *p ) newstr_addchar( &date, *p++ );
if ( date.len>0 ) {
if ( part )
fields_add(info, "PARTYEAR", date.data, level);
else
fields_add( info, "YEAR", date.data, level );
}
} else if ( !strcasecmp( tag, "%8" ) ) {
while ( *p && *p!=' ' && *p!=',' ) newstr_addchar( &date, *p++ );
if ( date.len>0 ) {
found = -1;
for ( i=0; i<12 && found==-1; ++i )
if ( !strncasecmp( date.data, months[i], 3 ) )
found = i;
if ( found!=-1 ) {
if (found>8) sprintf( month, "%d", found+1 );
else sprintf( month, "0%d", found+1 );
if ( part )
fields_add( info, "PARTMONTH", month, level );
else fields_add( info, "MONTH", month, level );
} else {
if ( part )
fields_add( info, "PARTMONTH", date.data, level );
else
fields_add( info, "MONTH", date.data, level );
}
}
newstr_empty( &date );
p = skip_ws( p );
while ( *p && *p!='\n' && *p!=',' )
newstr_addchar( &date, *p++ );
if ( date.len>0 && date.len<3 ) {
if ( part )
fields_add( info, "PARTDAY", date.data, level );
else
fields_add( info, "DAY", date.data, level );
}
}
newstr_free( &date );
}
static void
copacin_report_notag( param *p, char *tag )
{
if ( p->verbose ) {
if ( p->progname ) fprintf( stderr, "%s: ", p->progname );
fprintf( stderr, "Cannot find tag '%s'\n", tag );
}
}
void
copacin_convertf( fields *copacin, fields *info, int reftype, param *p, variants *all, int nall )
{
newstr *t, *d;
int process, level, i, n;
char *newtag;
for ( i=0; i<copacin->nfields; ++i ) {
t = &( copacin->tag[i] );
d = &( copacin->data[i] );
n = process_findoldtag( t->data, reftype, all, nall );
if ( n==-1 ) {
copacin_report_notag( p, t->data );
continue;
}
process = ((all[reftype]).tags[n]).processingtype;
if ( process == ALWAYS ) continue; /*add these later*/
level = ((all[reftype]).tags[n]).level;
newtag = ((all[reftype]).tags[n]).newstr;
if ( process==SIMPLE )
fields_add( info, newtag, d->data, level );
else if ( process==TITLE )
title_process( info, newtag, d->data, level,
p->nosplittitle );
else if ( process==PERSON )
copacin_addname( info, newtag, d, level, &(p->asis),
&(p->corps) );
else if ( process==DATE )
copacin_adddate(info,all[reftype].
tags[i].oldstr,newtag,d->data,level);
else if ( process==PAGES )
copacin_addpage( info, d->data, level );
else if ( process==SERIALNO )
addsn( info, d->data, level );
/* else {
fprintf(stderr,"%s: internal error -- "
"illegal process %d\n", r->progname, process );
}*/
}
}
|