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 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
|
/*
* This file is part of XForms.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "include/forms.h"
#include "flinternal.h"
#include "fd_main.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <float.h>
#include <ctype.h>
#include <stdarg.h>
static struct
{
FILE * fp;
char * fname;
size_t line_no;
char * line;
char * pos;
int merge;
} ff = { NULL, NULL, 0, NULL, NULL, 0 };
/***************************************
* Returns a pointer to the first position in a string
* that's not a white-space character
***************************************/
static char *
ff_skip_spaces( const char * cp )
{
while ( *cp && isspace( ( unsigned char ) *cp ) )
cp++;
return ( char * ) cp;
}
/***************************************
***************************************/
char *
ff_get_filename_copy( void )
{
if ( ! ff.fname || ! ff.fp )
return NULL;
return fl_strdup( ff.fname );
}
/***************************************
***************************************/
static int
ff_is_comment( void )
{
ff.pos = ff_skip_spaces( ff.pos );
return ! *ff.pos
|| *ff.pos == ';'
|| *ff.pos == '#'
|| *ff.pos == '-'
|| *ff.pos == '=';
}
/***************************************
***************************************/
void
ff_close( void )
{
if ( ff.fp )
{
fclose( ff.fp );
ff.fp = NULL;
}
fl_safe_free( ff.fname );
fl_safe_free( ff.line );
ff.pos = NULL;
ff.line_no = 0;
ff.merge = 0;
}
/***************************************
***************************************/
int
ff_err( const char * message )
{
if ( ! fdopt.conv_only )
fl_show_alert2( 0, "Error:\f%s\n%s:%lu.%lu",
message, ff.fname, ( unsigned long ) ff.line_no,
ff.line ? ( unsigned long ) ( ff.pos - ff.line ) : 0 );
else
M_err( "Error", "%s at %s:%lu.%lu",
message, ff.fname, ( unsigned long ) ff.line_no,
ff.line ? ( unsigned long ) ( ff.pos - ff.line ) : 0 );
ff_close( );
return FF_READ_FAILURE;
}
/***************************************
***************************************/
static int
ff_get_line( void )
{
if ( ff.fp )
do
{
fl_safe_free( ff.line );
if ( ! ( ff.line = fli_read_line( ff.fp ) ) )
{
if ( feof( ff.fp ) )
{
ff.line_no++;
return 0;
}
return ff_err( "Error while reading from file" );
}
ff.line_no++;
ff.pos = ff.line;
} while ( ff_is_comment( ) );
return 0;
}
/***************************************
***************************************/
int
ff_get_fd_file( const char * str,
int merge )
{
ff_close( );
ff.merge = merge;
fl_use_fselector( LOAD_FSELECTOR );
/* Get the filename if necessary */
if ( ! str || ! *str )
{
str = fl_show_fselector( merge ? "Filename to merge forms from" :
"Filename to load forms from",
"", "*.fd", "" );
if ( ! str || ! *str )
return -1;
}
/* Append ".fd" if required. */
ff.fname = append_fd_suffix( str );
/* Open the file for reading */
if ( ! ( ff.fp = fopen( ff.fname, "r" ) ) )
{
if ( ! fdopt.conv_only )
fl_show_alert( "Can't open file for reading", ff.fname, "", 0 );
else
M_err( "ff_get_fd_file", "Can't open '%s' for reading", ff.fname );
ff_close( );
return -1;
}
if ( ff_get_line( ) < 0 )
{
if ( ! fdopt.conv_only )
fl_show_alert( "Nothing to be read from", ff.fname, "", 0 );
else
M_err( "ff_get_fd_file", "Nothing to be read from '%s'",
ff.fname );
ff_close( );
return -1;
}
return 0;
}
/***************************************
* Checks if an input text matches text read from the file
* - with multiple white-spaces treated as a single space
***************************************/
static const char *
ff_match_text( const char *txt )
{
char *src = ff.pos;
txt = ff_skip_spaces( txt );
while ( *src && *txt )
{
if ( *src != *txt
&& ! ( isspace( ( unsigned char ) *src )
&& isspace( ( unsigned char ) *txt ) ) )
return NULL;
if ( isspace( ( unsigned char ) *src ) )
{
src = ff_skip_spaces( src );
txt = ff_skip_spaces( txt );
}
else
{
src++;
txt++;
}
}
txt = ff_skip_spaces( txt );
if ( *txt )
return NULL;
ff.pos = src;
return txt;
}
/***************************************
***************************************/
static int
ff_match_long( long * p )
{
long val;
char *ep;
val = strtol( ff.pos, &ep, 10 );
if ( ep == ff.pos )
return -1;
if ( *ep != '\0' && ! isspace( ( unsigned char ) *ep ) )
return -1;
if ( ( val == LONG_MAX || val == LONG_MIN ) && errno == ERANGE )
return -1;
ff.pos = ep;
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_ulong( unsigned long * p )
{
unsigned long val;
char *ep;
if ( *ff.pos == '-' )
return -1;
val = strtoul( ff.pos, &ep, 10 );
if ( ep == ff.pos
|| ( *ep != '\0' && ! isspace( ( unsigned char ) *ep ) )
|| ( val == ULONG_MAX && errno == ERANGE ) )
return -1;
ff.pos = ep;
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_int( int * p )
{
long val;
char *old_pos = ff.pos;
if ( ff_match_long( &val ) < 0 )
return -1;
if ( ( val > INT_MAX || val < INT_MIN ) )
{
ff.pos = old_pos;
return -1;
}
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_uint( unsigned int * p )
{
unsigned long val;
char *old_pos = ff.pos;
if ( ff_match_ulong( &val ) < 0 )
return -1;
if ( val > UINT_MAX )
{
ff.pos = old_pos;
return -1;
}
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_double( double * p )
{
double val;
char *ep;
val = strtod( ff.pos, &ep );
if ( ep == ff.pos
|| ( *ep != '\0' && ! isspace( ( unsigned char ) *ep ) )
|| ( ( val == HUGE_VAL || val == - HUGE_VAL ) && errno == ERANGE ) )
return -1;
ff.pos = ep;
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_float( float * p )
{
double val;
char *old_pos = ff.pos;
if ( ff_match_double( &val ) < 0 || val < - FLT_MAX || val > FLT_MAX)
{
ff.pos = old_pos;
return -1;
}
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_coord( FL_Coord * p,
int need_positive )
{
int val;
char *old_pos = ff.pos;
if ( ff_match_int( &val ) < 0 || ( need_positive && val < 0 ) )
{
ff.pos = old_pos;
return -1;
}
*p = val;
return 0;
}
/***************************************
***************************************/
static int
ff_match_string( char ** p )
{
/* Backtrack to start of line or last ':' */
while ( ff.pos > ff.line && isspace( ( unsigned char ) *--ff.pos ) )
/* empty */ ;
/* If we're at a ':' skip the next space if if exists */
if ( ff.pos > ff.line
&& *ff.pos == ':'
&& isspace( ( unsigned char ) *++ff.pos ) )
ff.pos++;
*p = ff.pos + strlen( ff.pos ) - 1;
if ( **p == '\n' )
**p = '\0';
*p = fl_strdup( ff.pos );
while ( *ff.pos )
ff.pos++;
return 0;
}
/***************************************
***************************************/
static int
ff_match_trimmed_string( char ** p )
{
char *ep = ff.pos + strlen( ff.pos ) - 1,
*fp = ep + 1;
char old_c;
if ( ! *ff.pos )
{
*p = fl_strdup( ff.pos );
return 0;
}
*p = NULL;
while ( ep > ff.pos && isspace( ( unsigned char ) *ep ) )
ep--;
old_c = *ep;
*++ep = '\0';
*p = fl_strdup( ff.pos );
*ep = old_c;
ff.pos = fp;
return 0;
}
/***************************************
***************************************/
static int
ff_match_spaceless_string( char ** p )
{
char *ep = ff.pos;
while ( *ep && ! isspace( ( unsigned char ) *ep ) )
ep++;
if ( ep == ff.pos )
*p = fl_strdup( "" );
else
{
*p = fl_malloc( ep - ff.pos + 1 );
fli_sstrcpy( *p, ff.pos, ep - ff.pos + 1 );
ff.pos = ep;
}
return 0;
}
/***************************************
***************************************/
static int
ff_match_var( char ** p )
{
char *ep = ff.pos;
char old_c;
if ( ! *ep )
{
*p = fl_strdup( ff.pos );
return -1;
}
*p = NULL;
if ( ! isascii( ( unsigned char ) *ep )
|| ! ( isalpha( ( unsigned char ) *ep ) || *ep == '_' ) )
{
*p = fl_strdup( "" );
return -1;
}
while ( *++ep
&& isascii( ( unsigned char ) *ep )
&& ( isalnum( ( unsigned char ) *ep ) || *ep == '_' ) )
/* empty */ ;
if ( *ep && ! isspace( ( unsigned char ) *ep ) )
{
*p = fl_strdup( "" );
return -1;
}
/* Currently variable, function etc. names can't be longer... */
if ( ep - ff.pos >= MAX_VAR_LEN )
{
*p = fl_strdup( "" );
return -1;
}
old_c = *ep;
*ep = '\0';
*p = fl_strdup( ff.pos );
*ep = old_c;
ff.pos = ep + 1;
return 0;
}
/***************************************
***************************************/
static int
ff_match_objclass( int * p )
{
char *class_name;
int class;
char * old_pos = ff.pos;
if ( ff_match_spaceless_string( &class_name ) < 0 )
return -1;
if ( ! *class_name || ( class = class_val( class_name ) ) == -1 )
{
ff.pos = old_pos;
fl_safe_free( class_name );
return -1;
}
*p = class;
fl_safe_free( class_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_boxtype( int * p )
{
char *boxtype_name;
char *old_pos = ff.pos;
int boxtype;
if ( ff_match_spaceless_string( &boxtype_name ) < 0 )
return -1;
if ( ! *boxtype_name || ( boxtype = boxtype_val( boxtype_name ) ) == -1 )
{
ff.pos = old_pos;
fl_safe_free( boxtype_name );
return -1;
}
*p = boxtype;
fl_safe_free( boxtype_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_color( FL_COLOR * p )
{
char *color_name;
char *old_pos = ff.pos;
FL_COLOR color;
if ( ff_match_spaceless_string( &color_name ) < 0 )
return -1;
if ( ! *color_name
|| ( ( color = fli_query_namedcolor( color_name ) ) > FL_MAX_COLORS
&& color != FL_NoColor ) )
{
ff.pos = old_pos;
fl_safe_free( color_name );
return -1;
}
*p = color;
if ( *p == 0x8fffffff )
*p = FL_NoColor;
fl_safe_free( color_name );
return 0;
}
/***************************************
* align may consist of two values, separated by a '|' or '+'
***************************************/
static int
ff_match_align( int * p )
{
char *align_name;
char *old_pos = ff.pos;
char *sp = strchr( ff.pos, '|' );
int align;
if ( ! sp )
sp = strchr( ff.pos, '+' );
if ( ! sp
|| ( sp > ff.pos
&& ! isspace( ( unsigned char ) sp[ -1 ] )
&& ! isspace( ( unsigned char ) sp[ 1 ] ) ) )
{
if ( ff_match_spaceless_string( &align_name ) < 0 )
return -1;
}
else
{
char *a1 = NULL,
*a2 = NULL,
o = *sp;
*sp = '\0';
if ( ff_match_spaceless_string( &a1 ) < 0 || ! *a1 )
{
fl_safe_free( a1 );
ff.pos = old_pos;
*sp = o;
return -1;
}
*sp = o;
ff.pos = sp + 1;
ff.pos = ff_skip_spaces( ff.pos );
if ( ff_match_spaceless_string( &a2 ) < 0 || ! *a2 )
{
fl_safe_free( a1 );
fl_safe_free( a2 );
ff.pos = old_pos;
return -1;
}
align_name = fli_print_to_string( "%s|%s", a1, a2 );
fl_safe_free( a1 );
fl_safe_free( a2 );
}
if ( ! *align_name || ( align = align_val( align_name ) ) == -1 )
{
ff.pos = old_pos;
fl_safe_free( align_name );
return -1;
}
*p = align;
fl_safe_free( align_name );
return 0;
}
/***************************************
* lstyle may consist of two values, separated by a '|' or '+'
***************************************/
static int
ff_match_lstyle( int * p )
{
char *lstyle_name;
int lstyle;
char *old_pos = ff.pos;
char *sp = strchr( ff.pos, '|' );
if ( ! sp )
sp = strchr( ff.pos, '+' );
if ( ! sp
|| ( sp > ff.pos
&& ! isspace( ( unsigned char ) sp[ -1 ] )
&& ! isspace( ( unsigned char ) sp[ 1 ] ) ) )
{
if ( ff_match_spaceless_string( &lstyle_name ) < 0 )
return -1;
}
else
{
char *l1,
*l2,
*old_pos = ff.pos,
o = *sp;
*sp = '\0';
if ( ff_match_spaceless_string( &l1 ) < 0 )
{
*sp = o;
return -1;
}
*sp = o;
ff.pos = sp + 1;
ff.pos = ff_skip_spaces( ff.pos );
if ( ff_match_spaceless_string( &l2 ) < 0 || ! *l2 )
{
ff.pos = old_pos;
fl_safe_free( l1 );
return -1;
}
lstyle_name = fli_print_to_string( "%s|%s", l1, l2 );
fl_safe_free( l1 );
fl_safe_free( l2 );
}
if ( ! *lstyle_name || ( lstyle = style_val( lstyle_name ) ) == -1 )
{
ff.pos = old_pos;
fl_safe_free( lstyle_name );
return -1;
}
*p = lstyle;
fl_safe_free( lstyle_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_lsize( int * p )
{
char *lsize_name;
char *old_pos = ff.pos;
int lsize;
if ( ff_match_spaceless_string( &lsize_name ) < 0 )
return -1;
if( ! *lsize_name || ( lsize = lsize_val( lsize_name ) ) == -1 )
{
fl_safe_free( lsize_name );
ff.pos = old_pos;
return -1;
}
*p = lsize;
fl_safe_free( lsize_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_resize( int * p )
{
char *resize_name;
char *old_pos = ff.pos;
int resize;
if ( ff_match_spaceless_string( &resize_name ) < 0 )
return -1;
if ( ! *resize_name || ( resize = resize_val( resize_name ) ) == -1 )
{
fl_safe_free( resize_name );
ff.pos = old_pos;
return -1;
}
*p = resize;
fl_safe_free( resize_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_gravity( int * p )
{
char *gravity_name;
char *old_pos = ff.pos;
int gravity;
if ( ff_match_spaceless_string( &gravity_name ) < 0 )
return -1;
if ( ! *gravity_name || ( gravity = gravity_val( gravity_name ) ) == -1 )
{
ff.pos = old_pos;
fl_safe_free( gravity_name );
return -1;
}
*p = gravity;
fl_safe_free( gravity_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_unit( int * p )
{
char *unit_name;
char *old_pos = ff.pos;
int unit;
if ( ff_match_spaceless_string( &unit_name ) < 0 )
return -1;
if ( ! *unit_name || ( unit = unit_val( unit_name ) ) == -1 )
{
ff.pos = old_pos;
fl_safe_free( unit_name );
return -1;
}
*p = unit;
fl_safe_free( unit_name );
return 0;
}
/***************************************
***************************************/
static int
ff_match_key( char ** p )
{
char *ep = ff.pos;
char *np;
char old_c;
*p = NULL;
while ( *ep && *ep != ':' )
ep++;
if ( ! *ep )
return -1;
np = ep-- + 1;
while ( ep > ff.pos && isspace( ( unsigned char ) *ep ) )
ep--;
if ( ep == ff.pos )
return -1;
old_c = *++ep;
*ep = '\0';
*p = fl_strdup( ff.pos );
*ep = old_c;
ff.pos = np;
return 0;
}
/***************************************
***************************************/
static int
ff_match_type( char ** p )
{
return ff_match_var( p );
}
/***************************************
* Function for reading data from .fd files in a fscanf()-like way.
*
* The format string may contain the following:
* a) text which must match the text in the string at that position
* b) %l match long (requires long *)
* b) %d match int (requires int *)
* c) %u match unsigned int (requires int *)
* d) %D match FL_Coord (requires FL_Coord *)
* e) %U match FL_Coord with positive value (requires FL_Coord *)
* f) %s match string (trimmed of spaces at start and end) (requires char **)
* g) %S match string (with all spaces) (requires char **)
* h) %f match single-precision floating point value (requires float *)
* i) %D match double floating point value (requires double *)
* j) %o match object class (requires int *)
* k) %t match type (requires char **)
* l) %b match boxtype (requires int *)
* m) %c match color (requires FL_COLOR *)
* n) %a match align (requires int *)
* o) %p match lstyle (requires int *)
* p) %q match lsize (requires int *)
* q) %r match resize (requires int *)
* r) %g match gravity (requires int *)
* s) %x match unit (requires int *)
* t) %v match C variable (requires char **)
* u) %k match a key (word(s) with a final colon) (requires char **)
*
* In case a string gets returned a copy must be made before the next
* call of this function.
* The function returns the number of items matched or a negative
* value on failure (in that case an error message is output).
***************************************/
int
ff_read( const char * format,
... )
{
va_list ap;
char *fmt;
const char *fp;
int cnt = 0;
char last = '\0';
if ( ! ff.line )
return -1;
format = ff_skip_spaces( format );
if ( ! format || ! *format )
{
M_err( "ff_read", "Invalid argument(s)" );
return -1;
}
fp = fmt = fl_strdup( format );
va_start( ap, format );
while ( *fp )
{
if ( *fp != '%' )
{
if ( ! ( fp = ff_match_text( fp ) ) )
{
va_end( ap );
return -1;
}
last = '\0';
}
else
{
int r;
switch ( *++fp )
{
case 'l' : /* long int */
r = ff_match_long( va_arg( ap, long * ) );
break;
case 'd' : /* int */
r = ff_match_int( va_arg( ap, int * ) );
break;
case 'u' : /* unsigned int */
r = ff_match_uint( va_arg( ap, unsigned int * ) );
break;
case 'D' : /* FL_Coord ('U' for positive) */
case 'U' :
r = ff_match_coord( va_arg( ap, FL_Coord * ), *fp == 'U' );
break;
case 's' : /* trimmed string */
r = ff_match_trimmed_string( va_arg( ap, char ** ) );
break;
case 'S' : /* string (with spaces) */
r = ff_match_string( va_arg( ap, char ** ) );
break;
case 'f' : /* float */
r = ff_match_float( va_arg( ap, float * ) );
break;
case 'F' : /* double */
r = ff_match_double( va_arg( ap, double * ) );
break;
case 'o' : /* object class */
r = ff_match_objclass( va_arg( ap, int * ) );
break;
case 't' : /* object type */
r = ff_match_type( va_arg( ap, char ** ) );
break;
case 'b' : /* box type */
r = ff_match_boxtype( va_arg( ap, int * ) );
break;
case 'c' : /* color */
r = ff_match_color( va_arg( ap, FL_COLOR * ) );
break;
case 'a' : /* alignment value */
r = ff_match_align( va_arg( ap, int * ) );
break;
case 'p' : /* lstyle value */
r = ff_match_lstyle( va_arg( ap, int * ) );
break;
case 'q' : /* lsize value */
r = ff_match_lsize( va_arg( ap, int * ) );
break;
case 'r' : /* resize value */
r = ff_match_resize( va_arg( ap, int * ) );
break;
case 'g' : /* gravity value */
r = ff_match_gravity( va_arg( ap, int * ) );
break;
case 'x' : /* unit value */
r = ff_match_unit( va_arg( ap, int * ) );
break;
case 'v' : /* C variable name */
r = ff_match_var( va_arg( ap, char ** ) );
break;
case 'k' : /* key with trailing colon */
r = ff_match_key( va_arg( ap, char ** ) );
break;
default : /* error, wrong format */
va_end( ap );
fl_free( fmt );
M_err( "ff_read", "Invalid argument(s)" );
return -1;
}
last = *fp;
if ( r < 0 )
break;
cnt++;
fp++;
}
ff.pos = ff_skip_spaces( ff.pos );
fp = ff_skip_spaces( fp );
}
va_end( ap );
fl_free( fmt );
/* If we're at the end of the line read in the next - except when the
last request was for a key, in that case the next one will be for
a value and it's allowed that no value exists even when there's a
key... */
if ( last != 'k' && ! *ff.pos )
ff_get_line( );
return cnt;
}
/*
* Local variables:
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|