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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
|
/* ------------------------------------------------------------------------
@NAME : format_name.c
@DESCRIPTION: bt_format_name() and support functions: everything needed
to turn a bt_name structure (as returned by bt_split_name())
back into a string according to a highly customizable format.
@GLOBALS :
@CREATED :
@MODIFIED :
@VERSION : $Id: format_name.c,v 1.12 1999/11/29 01:13:10 greg Rel $
@COPYRIGHT : Copyright (c) 1996-99 by Gregory P. Ward. All rights reserved.
This file is part of the btparse library. This library 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
of the License, or (at your option) any later version.
-------------------------------------------------------------------------- */
/*#include "bt_config.h"*/
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "btparse.h"
#include "error.h"
/*#include "my_dmalloc.h"*/
#include "bt_debug.h"
static char EmptyString[] = "";
#if DEBUG
/* prototypes to shut "gcc -Wmissing-prototypes" up */
void print_tokens (char *partname, char **tokens, int num_tokens);
void dump_name (bt_name * name);
void dump_format (bt_name_format * format);
#endif
/* ----------------------------------------------------------------------
* Interface to create/customize bt_name_format structures
*/
/* ------------------------------------------------------------------------
@NAME : bt_create_name_format
@INPUT : parts - a string of letters (maximum four, from the set
f, v, l, j, with no repetition) denoting the order
and presence of name parts. Also used to determine
certain pre-part text strings.
abbrev_first - flag: should first names be abbreviated?
@OUTPUT :
@RETURNS :
@DESCRIPTION: Creates a bt_name_format structure, slightly customized
according to the caller's choice of token order and
whether to abbreviate the first name. Use
bt_free_name_format() to free the structure (and any sub-
structures that may be allocated here). Use
bt_set_format_text() and bt_set_format_options() for
further customization of the format structure; do not
fiddle its fields directly.
Fills in the structures `parts' field according to `parts'
string: 'f' -> BTN_FIRST, and so on.
Sets token join methods: inter-token join (within each part)
is set to BTJ_MAYTIE (a "discretionary tie") for all parts;
inter-part join is set to BTJ_SPACE, except for a 'von'
token immediately preceding a 'last' token; there, we have
a discretionary tie.
Sets abbreviation flags: FALSE for everything except `first',
which follows `abbrev_first' argument.
Sets surrounding text (pre- and post-part, pre- and post-
token): empty string for everything, except:
- post-token for 'first' is "." if abbrev_first true
- if 'jr' immediately preceded by 'last':
pre-part for 'jr' is ", ", join for 'last' is nothing
- if 'first' immediately preceded by 'last'
pre-part for 'first' is ", " , join for 'last' is nothing
- if 'first' immediately preceded by 'jr' and 'jr' immediately
preceded by 'last':
pre-part for 'first' and 'jr' is ", " ,
join for 'last' and 'jr' is nothing
@CREATED : 1997/11/02, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
bt_name_format *
bt_create_name_format (char * parts, boolean abbrev_first)
{
int num_parts;
int num_valid_parts;
bt_name_format *
format;
int part_pos[BT_MAX_NAMEPARTS];
int i;
/*
* Check that the part list (a string with one letter -- f, v, l, or j
* -- for each part is valid: no longer than four characters, and no
* invalid characters.
*/
num_parts = strlen (parts);
num_valid_parts = strspn (parts, BT_VALID_NAMEPARTS);
if (num_parts > BT_MAX_NAMEPARTS)
{
usage_error ("bt_create_name_format: part list must have no more than "
"%d letters", BT_MAX_NAMEPARTS);
}
if (num_valid_parts != num_parts)
{
usage_error ("bt_create_name_format: bad part abbreviation \"%c\" "
"(must be one of \"%s\")",
parts[num_valid_parts], BT_VALID_NAMEPARTS);
}
/* User input is OK -- let's create the structure */
format = (bt_name_format *) malloc (sizeof (bt_name_format));
format->num_parts = num_parts;
for (i = 0; i < num_parts; i++)
{
switch (parts[i])
{
case 'f': format->parts[i] = BTN_FIRST; break;
case 'v': format->parts[i] = BTN_VON; break;
case 'l': format->parts[i] = BTN_LAST; break;
case 'j': format->parts[i] = BTN_JR; break;
default: internal_error ("bad part abbreviation \"%c\"", parts[i]);
}
part_pos[format->parts[i]] = i;
}
for (; i < BT_MAX_NAMEPARTS; i++)
{
format->parts[i] = BTN_NONE;
}
/*
* Set the token join methods: between tokens for all parts is a
* discretionary tie, and the join between parts is a space (except for
* 'von': if followed by 'last', we will have a discretionary tie).
*/
for (i = 0; i < num_parts; i++)
{
format->join_tokens[i] = BTJ_MAYTIE;
format->join_part[i] = BTJ_SPACE;
}
if (part_pos[BTN_VON] + 1 == part_pos[BTN_LAST])
format->join_part[BTN_VON] = BTJ_MAYTIE;
/*
* Now the abbreviation flags: follow 'abbrev_first' flag for 'first',
* and FALSE for everything else.
*/
format->abbrev[BTN_FIRST] = abbrev_first;
format->abbrev[BTN_VON] = FALSE;
format->abbrev[BTN_LAST] = FALSE;
format->abbrev[BTN_JR] = FALSE;
/*
* Now fill in the "surrounding text" fields (pre- and post-part, pre-
* and post-token) -- start out with everything NULL (empty string),
* and then tweak it to handle abbreviated first names, 'jr' following
* 'last', and 'first' following 'last' or 'last' and 'jr'. In the
* last three cases, we put in some pre-part text (", "), and also
* set the join method for the *previous* part (jr or last) to
* BTJ_NOTHING, so we don't get extraneous space before the ", ".
*/
for (i = 0; i < BT_MAX_NAMEPARTS; i++)
{
format->pre_part[i] = EmptyString;
format->post_part[i] = EmptyString;
format->pre_token[i] = EmptyString;
format->post_token[i] = EmptyString;
}
/* abbreviated first name:
* "Blow J" -> "Blow J.", or "J Blow" -> "J. Blow"
*/
if (abbrev_first)
{
format->post_token[BTN_FIRST] = ".";
}
/* 'jr' after 'last': "Joe Blow Jr." -> "Joe Blow, Jr." */
if (part_pos[BTN_JR] == part_pos[BTN_LAST]+1)
{
format->pre_part[BTN_JR] = ", ";
format->join_part[BTN_LAST] = BTJ_NOTHING;
/* 'first' after 'last' and 'jr': "Blow, Jr. Joe"->"Blow, Jr., Joe" */
if (part_pos[BTN_FIRST] == part_pos[BTN_JR]+1)
{
format->pre_part[BTN_FIRST] = ", ";
format->join_part[BTN_JR] = BTJ_NOTHING;
}
}
/* first after last: "Blow Joe" -> "Blow, Joe" */
if (part_pos[BTN_FIRST] == part_pos[BTN_LAST]+1)
{
format->pre_part[BTN_FIRST] = ", ";
format->join_part[BTN_LAST] = BTJ_NOTHING;
}
DBG_ACTION
(1, printf ("bt_create_name_format(): returning structure %p\n", format))
return format;
} /* bt_create_name_format() */
/* ------------------------------------------------------------------------
@NAME : bt_free_name_format()
@INPUT : format - free()'d, so this is an invalid pointer after the call
@OUTPUT :
@RETURNS :
@DESCRIPTION: Frees a bt_name_format structure created by
bt_create_name_format().
@CREATED : 1997/11/02, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
void
bt_free_name_format (bt_name_format * format)
{
free (format);
}
/* ------------------------------------------------------------------------
@NAME : bt_set_format_text
@INPUT : format - the format structure to update
part - which name-part to change the surrounding text for
pre_part - "pre-part" text, or NULL to leave alone
post_part - "post-part" text, or NULL to leave alone
pre_token - "pre-token" text, or NULL to leave alone
post_token - "post-token" text, or NULL to leave alone
@OUTPUT : format - pre_part, post_part, pre_token, post_token
arrays updated (only those with corresponding
non-NULL parameters are touched)
@RETURNS :
@DESCRIPTION: Sets the "surrounding text" for a particular name part in
a name format structure.
@CREATED : 1997/11/02, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
void
bt_set_format_text (bt_name_format * format,
bt_namepart part,
char * pre_part,
char * post_part,
char * pre_token,
char * post_token)
{
if (pre_part) format->pre_part[part] = pre_part;
if (post_part) format->post_part[part] = post_part;
if (pre_token) format->pre_token[part] = pre_token;
if (post_token) format->post_token[part] = post_token;
}
/* ------------------------------------------------------------------------
@NAME : bt_set_format_options()
@INPUT : format
part
abbrev
join_tokens
join_part
@OUTPUT : format - abbrev, join_tokens, join_part arrays all updated
@RETURNS :
@DESCRIPTION: Sets various formatting options for a particular name part in
a name format structure.
@CREATED : 1997/11/02, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
void
bt_set_format_options (bt_name_format * format,
bt_namepart part,
boolean abbrev,
bt_joinmethod join_tokens,
bt_joinmethod join_part)
{
format->abbrev[part] = abbrev;
format->join_tokens[part] = join_tokens;
format->join_part[part] = join_part;
}
/* ----------------------------------------------------------------------
* Functions for actually formatting a name (given a name and a name
* format structure).
*/
/* ------------------------------------------------------------------------
@NAME : count_virtual_char()
@INPUT : string
offset
@OUTPUT : vchar_count
@INOUT : depth
in_special
@RETURNS :
@DESCRIPTION: Munches a single physical character from a string, updating
the virtual character count, the depth, and an "in special
character" flag.
The virtual character count is incremented by any character
not part of a special character, and also by the right-brace
that closes a special character. The depth is incremented by
a left brace, and decremented by a right brace. in_special
is set to TRUE when we encounter a left brace at depth zero
that is immediately followed by a backslash; it is set to
false when we encounter the end of the special character,
i.e. when in_special is TRUE and we hit a right brace that
brings us back to depth zero.
*vchar_count and *depth should both be set to zero the first
time you call count_virtual_char() on a particular string,
and in_special should be set to FALSE.
@CALLS :
@CALLERS : string_length()
string_prefix()
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
static void
count_virtual_char (char * string,
int offset,
int * vchar_count,
int * depth,
boolean * in_special)
{
switch (string[offset])
{
case '{':
{
/* start of a special char? */
if (*depth == 0 && string[offset+1] == '\\')
*in_special = TRUE;
(*depth)++;
break;
}
case '}':
{
/* end of a special char? */
if (*depth == 1 && *in_special)
{
*in_special = FALSE;
(*vchar_count)++;
}
(*depth)--;
break;
}
default:
{
/* anything else? (possibly inside a special char) */
if (! *in_special) (*vchar_count)++;
}
}
} /* count_virtual_char () */
/* this should probably be publicly available, documented, etc. */
/* ------------------------------------------------------------------------
@NAME : string_length()
@INPUT : string
@OUTPUT :
@RETURNS : "virtual length" of `string'
@DESCRIPTION: Counts the number of "virtual characters" in a string. A
virtual character is either an entire BibTeX special character,
or any character outside of a special character.
Thus, "Hello" has virtual length 5, and so does
"H{\\'e}ll{\\\"o}". "{\\noop Hello there how are you?}" has
virtual length one.
@CALLS : count_virtual_char()
@CALLERS : format_name()
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
static int
string_length (char * string)
{
int length;
int depth;
boolean in_special;
int i;
length = 0;
depth = 0;
in_special = FALSE;
for (i = 0; string[i] != 0; i++)
{
count_virtual_char (string, i, &length, &depth, &in_special);
}
return length;
} /* string_length() */
/* ------------------------------------------------------------------------
@NAME : string_prefix()
@INPUT : string
prefix_len
@OUTPUT :
@RETURNS : physical length of the prefix of `string' with a virtual length
of `prefix_len'
@DESCRIPTION: Counts the number of physical characters from the beginning
of `string' needed to extract a sub-string with virtual
length `prefix_len'.
@CALLS : count_virtual_char()
@CALLERS : format_name()
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
static int
string_prefix (char * string, int prefix_len)
{
int i;
int vchars_seen;
int depth;
boolean in_special;
vchars_seen = 0;
depth = 0;
in_special = FALSE;
for (i = 0; string[i] != 0; i++)
{
count_virtual_char (string, i, &vchars_seen, &depth, &in_special);
if (vchars_seen == prefix_len)
return i+1;
}
return i;
} /* string_prefix() */
/* ------------------------------------------------------------------------
@NAME : append_text()
@INOUT : string
@INPUT : offset
text
start
len
@OUTPUT :
@RETURNS : number of characters copied from text+start to string+offset
@DESCRIPTION: Copies at most `len' characters from text+start to
string+offset. (I don't use strcpy() or strncpy() for this
because I need to get the number of characters actually
copied.)
@CALLS :
@CALLERS : format_name()
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
static int
append_text (char * string,
int offset,
const char * text,
int start,
int len)
{
int i;
if (text == NULL) return 0; /* no text -- none appended! */
for (i = 0; text[start+i] != 0; i++)
{
if (len > 0 && i == len)
break; /* exit loop without i++, right?!? */
string[offset+i] = text[start+i];
} /* for i */
return i; /* number of characters copied */
} /* append_text () */
/* ------------------------------------------------------------------------
@NAME : append_join
@INOUT : string
@INPUT : offset
method
should_tie
@OUTPUT :
@RETURNS : number of charactersa appended to string+offset (either 0 or 1)
@DESCRIPTION: Copies a "join character" ('~' or ' ') or nothing to
string+offset, according to the join method specified by
`method' and the `should_tie' flag.
Specifically: if `method' is BTJ_SPACE, a space is appended
and 1 is returned; if `method' is BTJ_FORCETIE, a TeX "tie"
character ('~') is appended and 1 is returned. If `method'
is BTJ_NOTHING, `string' is unchanged and 0 is returned. If
`method' is BTJ_MAYTIE then either a tie (if should_tie is
true) or a space (otherwise) is appended, and 1 is returned.
@CALLS :
@CALLERS : format_name()
@CREATED : 1997/11/03, GPW
@MODIFIED :
@COMMENTS : This should allow "tie" strings other than TeX's '~' -- I
think this could be done by putting a "tie string" field in
the name format structure, and using it here.
-------------------------------------------------------------------------- */
static int
append_join (char * string,
int offset,
bt_joinmethod method,
boolean should_tie)
{
switch (method)
{
case BTJ_MAYTIE: /* a "discretionary tie" -- pay */
{ /* attention to should_tie */
if (should_tie)
string[offset] = '~';
else
string[offset] = ' ';
return 1;
}
case BTJ_SPACE:
{
string[offset] = ' ';
return 1;
}
case BTJ_FORCETIE:
{
string[offset] = '~';
return 1;
}
case BTJ_NOTHING:
{
return 0;
}
default:
internal_error ("bad token join method %d", (int) method);
}
return 0; /* can't happen -- just here to */
/* keep gcc -Wall happy */
} /* append_join () */
#define STRLEN(s) (s == NULL) ? 0 : strlen (s)
/* ------------------------------------------------------------------------
@NAME : format_firstpass()
@INPUT : name
format
@OUTPUT :
@RETURNS :
@DESCRIPTION: Makes the first pass over a name for formatting, in order to
establish an upper bound on the length of the formatted name.
@CALLS :
@CALLERS : bt_format_name()
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
static unsigned
format_firstpass (bt_name * name,
bt_name_format * format)
{
int i; /* loop over parts */
int j; /* loop over tokens */
unsigned max_length;
bt_namepart part;
char ** tok;
int num_tok;
max_length = 0;
for (i = 0; i < format->num_parts; i++)
{
part = format->parts[i]; /* 'cause I'm a lazy typist */
tok = name->parts[part];
num_tok = name->part_len[part];
assert ((tok != NULL) == (num_tok > 0));
if (tok)
{
max_length += STRLEN (format->pre_part[part]);
max_length += STRLEN (format->post_part[part]);
max_length += STRLEN (format->pre_token[part]) * num_tok;
max_length += STRLEN (format->post_token[part]) * num_tok;
max_length += num_tok + 1; /* one join char per token, plus */
/* join char to next part */
/*
* We ignore abbreviation here -- just overestimates the maximum
* length, so no big deal. Also saves us the bother of computing
* the physical length of the prefix of virtual length 1.
*/
for (j = 0; j < num_tok; j++)
max_length += strlen (tok[j]);
}
} /* for i (loop over parts) */
return max_length;
} /* format_firstpass() */
/* ------------------------------------------------------------------------
@NAME : format_name()
@INPUT : format
tokens - token list (eg. from format_firstpass())
num_tokens - token count list (eg. from format_firstpass())
@OUTPUT : fname - filled in, must be preallocated by caller
@RETURNS :
@DESCRIPTION: Performs the second pass over a name and format, to actually
put the name into a single string according to `format'.
@CALLS :
@CALLERS : bt_format_name()
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
static void
format_name (bt_name_format * format,
char *** tokens,
int * num_tokens,
char * fname)
{
bt_namepart parts[BT_MAX_NAMEPARTS]; /* culled list from format */
int num_parts;
int offset; /* into fname */
int i; /* loop over parts */
int j; /* loop over tokens */
bt_namepart part;
int prefix_len;
int token_len; /* "physical" length (characters) */
int token_vlen; /* "virtual" length (special char */
/* counts as one character) */
boolean should_tie;
/*
* Cull format->parts down by keeping only those parts that are actually
* present in the current name (keeps the main loop simpler: makes it
* easy to know if the "next part" is present or not, so we know whether
* to append a join character.
*/
num_parts = 0;
for (i = 0; i < format->num_parts; i++)
{
part = format->parts[i];
if (tokens[part]) /* name actually has this part */
parts[num_parts++] = part;
}
offset = 0;
token_vlen = -1; /* sanity check, and keeps */
/* "gcc -O -Wall" happy */
for (i = 0; i < num_parts; i++)
{
part = parts[i];
offset += append_text (fname, offset,
format->pre_part[part], 0, -1);
for (j = 0; j < num_tokens[part]; j++)
{
offset += append_text (fname, offset,
format->pre_token[part], 0, -1);
if (format->abbrev[part])
{
prefix_len = string_prefix (tokens[part][j], 1);
token_len = append_text (fname, offset,
tokens[part][j], 0, prefix_len);
token_vlen = 1;
}
else
{
token_len = append_text (fname, offset,
tokens[part][j], 0, -1);
token_vlen = string_length (tokens[part][j]);
}
offset += token_len;
offset += append_text (fname, offset,
format->post_token[part], 0, -1);
/* join to next token, but only if there is a next token! */
if (j < num_tokens[part]-1)
{
should_tie = (num_tokens[part] > 1)
&& (((j == 0) && (token_vlen < 3))
|| (j == num_tokens[part]-2));
offset += append_join (fname, offset,
format->join_tokens[part], should_tie);
}
} /* for j */
offset += append_text (fname, offset,
format->post_part[part], 0, -1);
/* join to the next part, but again only if there is a next part */
if (i < num_parts-1)
{
if (token_vlen == -1)
{
internal_error ("token_vlen uninitialized -- no tokens in a part "
"that I checked existed");
}
should_tie = (num_tokens[part] == 1 && token_vlen < 3);
offset += append_join (fname, offset,
format->join_part[part], should_tie);
}
} /* for i (loop over parts) */
fname[offset] = 0;
} /* format_name () */
#if DEBUG
#define STATIC /* so BibTeX.xs can call 'em too */
/* borrowed print_tokens() and dump_name() from t/name_test.c */
STATIC void
print_tokens (char *partname, char **tokens, int num_tokens)
{
int i;
if (tokens)
{
printf ("%s = (", partname);
for (i = 0; i < num_tokens; i++)
{
printf ("%s%c", tokens[i], i == num_tokens-1 ? ')' : '|');
}
putchar ('\n');
}
}
STATIC void
dump_name (bt_name * name)
{
if (name == NULL)
{
printf (" name: null\n");
return;
}
if (name->tokens == NULL)
{
printf (" name: null token list\n");
return;
}
printf (" name (%p):\n", name);
printf (" total number of tokens = %d\n", name->tokens->num_items);
print_tokens (" first", name->parts[BTN_FIRST], name->part_len[BTN_FIRST]);
print_tokens (" von", name->parts[BTN_VON], name->part_len[BTN_VON]);
print_tokens (" last", name->parts[BTN_LAST], name->part_len[BTN_LAST]);
print_tokens (" jr", name->parts[BTN_JR], name->part_len[BTN_JR]);
}
STATIC void
dump_format (bt_name_format * format)
{
int i;
static char * nameparts[] = { "first", "von", "last", "jr" };
static char * joinmethods[] = {"may tie", "space", "force tie", "nothing"};
printf (" name format (%p):\n", format);
printf (" order:");
for (i = 0; i < format->num_parts; i++)
printf (" %s", nameparts[format->parts[i]]);
printf ("\n");
for (i = 0; i < BT_MAX_NAMEPARTS; i++)
{
printf (" %-5s: pre-part=%p (%s), post-part=%p (%s)\n",
nameparts[i],
format->pre_part[i], format->pre_part[i],
format->post_part[i], format->post_part[i]);
printf (" %-5s pre-token=%p (%s), post-token=%p (%s)\n",
"",
format->pre_token[i], format->pre_token[i],
format->post_token[i],format->post_token[i]);
printf (" %-5s abbrev=%s, join_tokens=%s, join_parts=%s\n",
"",
format->abbrev[i] ? "yes" : "no",
joinmethods[format->join_tokens[i]],
joinmethods[format->join_part[i]]);
}
}
#endif
/* ------------------------------------------------------------------------
@NAME : bt_format_name()
@INPUT : name
format
@OUTPUT :
@RETURNS : formatted name (allocated with malloc(); caller must free() it)
@DESCRIPTION: Formats an already-split name according to a pre-constructed
format structure.
@GLOBALS :
@CALLS : format_firstpass(), format_name()
@CALLERS :
@CREATED : 1997/11/03, GPW
@MODIFIED :
-------------------------------------------------------------------------- */
char *
bt_format_name (bt_name * name,
bt_name_format * format)
{
unsigned max_length;
char * fname;
#if DEBUG >= 2
printf ("bt_format_name():\n");
dump_name (name);
dump_format (format);
#endif
max_length = format_firstpass (name, format);
fname = (char *) malloc ((max_length+1) * sizeof (char));
#if 0
memset (fname, '_', max_length);
fname[max_length] = 0;
#endif
format_name (format, name->parts, name->part_len, fname);
assert (strlen (fname) <= max_length);
return fname;
} /* bt_format_name() */
|