home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************
- Turbo Prolog Toolbox
- (C) Copyright 1987 Borland International.
-
- ***********************************************************/
-
- DOMAINS
- /*CURSOR = integer */
- CURSORTOK = t(TOK,CURSOR)
- TOKL = CURSORTOK*
- /*PROCID = string */
-
- /* include "XMINIGOL.DOM" */
-
- PREDICATES
-
- /* scan_error(STRING,CURSOR) */
- tokl(CURSOR,STRING,TOKL)
- maketok(CURSOR,STRING,TOK,STRING,STRING,CURSOR)
- str_tok(STRING,TOK)
- scan_str(CURSOR,STRING,STRING,STRING)
- search_ch(CHAR,STRING,INTEGER,INTEGER)
- skipspaces(STRING,STRING,INTEGER)
- isspace(CHAR)
-
- CLAUSES
-
- /* scan_error(_,_) :- write("No error recovery"). */
- tokl(POS,STR,[t(TOK,POS1)|TOKL]):-
- skipspaces(STR,STR1,NOOFSP),
- POS1=POS+NOOFSP,
- fronttoken(STR1,STRTOK,STR2),!,
- maketok(POS,STRTOK,TOK,STR2,STR3,LEN1),
- str_len(STRTOK,LEN),
- POS2=POS1+LEN+LEN1,
- tokl(POS2,STR3,TOKL).
- tokl(_,_,[]).
-
- skipspaces(STR,STR2,NOOFSP):-
- frontchar(STR,CH,STR1),isspace(CH),!,
- skipspaces(STR1,STR2,N1),
- NOOFSP=N1+1.
- skipspaces(STR,STR,0).
-
- isspace(' ').
- isspace('\t').
- isspace('\n').
-
- str_tok(",",comma):-!.
- str_tok("+",plus):-!.
- str_tok("-",minus):-!.
- str_tok("*",mult):-!.
- str_tok("/",div):-!.
- str_tok("^",power):-!.
- str_tok("?",questionmark):-!.
- str_tok(":",colon):-!.
- str_tok("!",exclmmark):-!.
- str_tok("(",lpar):-!.
- str_tok(")",rpar):-!.
- str_tok("if",if_):-!.
- str_tok("then",then):-!.
- str_tok("else",else):-!.
- str_tok("while",while):-!.
- str_tok("do",do):-!.
- str_tok("goto",goto):-!.
-
- maketok(_,STR,TOK,S,S,0):-str_tok(STR,TOK),!.
- maketok(_,"'",char(T),S1,S3,2):-!,frontchar(S1,T,S2),frontchar(S2,_,S3).
- maketok(CURSOR,"\"",str(STR),S1,S2,LEN):-!,
- scan_str(CURSOR,S1,S2,STR),str_len(STR,LEN1),LEN=LEN1+1.
- maketok(_,INTSTR,int(INTEGER),S,S,0):-str_int(INTSTR,INTEGER),!.
- maketok(_,REALSTR,real(REAL),S,S,0):-str_real(REALSTR,REAL),!.
- maketok(_,STRING,id(STRING),S,S,0):-isname(STRING),!.
- maketok(CURSOR,_,_,_,_,_):-scan_error("Illegal token",CURSOR),fail.
-
- scan_str(_,IN,OUT,STR):-
- search_ch('"',IN,0,N),
- frontstr(N,IN,STR,OUT1),!,
- frontchar(OUT1,_,OUT).
- scan_str(CURSOR,_,_,_):-scan_error("String not terminated",CURSOR),fail.
-
- search_ch(CH,STR,N,N):-
- frontchar(STR,CH,_),!.
- search_ch(CH,STR,N,N1):-
- frontchar(STR,_,S1),
- N2=N+1,
- search_ch(CH,S1,N2,N1).