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 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
|
// Copyright (c) 1996 James Clark
// See the file copying.txt for copying permission.
#ifndef Interpreter_INCLUDED
#define Interpreter_INCLUDED 1
#include "ELObj.h"
#include "Expression.h"
#include <OpenSP/Message.h>
#include <OpenSP/PointerTable.h>
#include <OpenSP/NamedTable.h>
#include "Collector.h"
#include <OpenSP/InputSource.h>
#include <OpenSP/XcharMap.h>
#include <OpenSP/Owner.h>
#include "Style.h"
#include "SosofoObj.h"
#include "ProcessingMode.h"
#include "NumberCache.h"
#include <OpenSP/HashTable.h>
#include "FOTBuilder.h"
#include <OpenSP/Owner.h>
#include <OpenSP/Boolean.h>
#include "Node.h"
#include "GroveManager.h"
#include "Pattern.h"
#include <OpenSP/CharMap.h>
#include "TransformationMode.h"
#ifdef DSSSL_NAMESPACE
namespace DSSSL_NAMESPACE {
#endif
class Interpreter;
class Identifier : public Named {
public:
enum SyntacticKey {
notKey,
keyQuote,
keyLambda,
keyIf,
keyCond,
keyAnd,
keyOr,
keyCase,
keyLet,
keyLetStar,
keyLetrec,
keyQuasiquote,
keyUnquote,
keyUnquoteSplicing,
keyDefine,
keyElse,
keyArrow,
keySet,
keyBegin,
keyThereExists,
keyForAll,
keySelectEach,
keyUnionForEach,
keyMake,
keyStyle,
keyWithMode,
keyDefineUnit,
keyQuery,
keyElement,
keyDefault,
keyRoot,
keyId,
keyMode,
keyDeclareInitialValue,
keyDeclareCharacteristic,
keyDeclareFlowObjectClass,
keyDeclareCharCharacteristicAndProperty,
keyDeclareReferenceValueType,
keyDeclareDefaultLanguage,
keyDeclareCharProperty,
keyDefinePageModel,
keyDefineColumnSetModel,
keyDefineLanguage,
keyAddCharProperties,
keyUse,
keyLabel,
keyContentMap,
keyIsKeepWithPrevious,
keyIsKeepWithNext,
keySpaceBefore,
keySpaceAfter,
keyLeftHeader,
keyCenterHeader,
keyRightHeader,
keyLeftFooter,
keyCenterFooter,
keyRightFooter,
keyDestination,
keyType,
keyCoalesceId,
keyIsDisplay,
keyScale,
keyMaxWidth,
keyMaxHeight,
keyEntitySystemId,
keyNotationSystemId,
keyPositionPointX,
keyPositionPointY,
keyEscapementDirection,
keyBreakBeforePriority,
keyBreakAfterPriority,
keyOrientation,
keyLength,
keyChar,
keyGlyphId,
keyIsSpace,
keyIsRecordEnd,
keyIsInputTab,
keyIsInputWhitespace,
keyIsPunct,
keyIsDropAfterLineBreak,
keyIsDropUnlessBeforeLineBreak,
keyMathClass,
keyMathFontPosture,
keyScript,
keyStretchFactor,
keyKeep,
keyBreakBefore,
keyBreakAfter,
keyIsMayViolateKeepBefore,
keyIsMayViolateKeepAfter,
keyBeforeRowBorder,
keyAfterRowBorder,
keyBeforeColumnBorder,
keyAfterColumnBorder,
keyColumnNumber,
keyRowNumber,
keyNColumnsSpanned,
keyNRowsSpanned,
keyWidth,
keyIsStartsRow,
keyIsEndsRow,
keyTableWidth,
keyMultiModes,
keyData,
keyMin,
keyMax,
keyIsConditional,
keyPriority,
keyGridNRows,
keyGridNColumns,
keyRadical,
keyNull,
keyIsRcs,
keyParent,
keyActive,
keyAttributes,
keyChildren,
keyRepeat,
keyPosition,
keyOnly,
keyClass,
keyImportance,
keyDeclareClassAttribute,
keyDeclareIdAttribute,
keyDeclareFlowObjectMacro,
keyOrElement,
keyPositionPreference,
keyCollate,
keyToupper,
keyTolower,
keySymbol,
keyOrder,
keyForward,
keyBackward,
keyWhitePoint,
keyBlackPoint,
keyRange,
keyRangeAbc,
keyRangeLmn,
keyRangeA,
keyDecodeAbc,
keyDecodeLmn,
keyDecodeA,
keyMatrixAbc,
keyMatrixLmn,
keyMatrixA,
keyArchitecture,
keyDefineTransliterationMap,
keyNode,
keySubgrove,
keyAdd,
keyRemove,
keySub,
keySortChildren,
keyOptional,
keyUnique,
keyProperty,
keyResultPath,
};
enum { lastSyntacticKey = keyWithMode };
Identifier(const StringC &name);
// Return 0 is value can't yet be computed.
ELObj *computeValue(bool force, Interpreter &) const;
ELObj *computeBuiltinValue(bool force, Interpreter &) const;
bool syntacticKey(SyntacticKey &) const;
void setSyntacticKey(SyntacticKey);
bool defined(unsigned &, Location &) const;
void setDefinition(Owner<Expression> &, unsigned part, const Location &);
void setBuiltinDefinition(Owner<Expression> &, unsigned part, const Location &);
void setValue(ELObj *, unsigned defPart = unsigned(-1));
bool evaluated() const;
const ConstPtr<InheritedC> &inheritedC() const;
bool inheritedCDefined(unsigned &, Location &) const;
bool charNICDefined(unsigned &, Location &) const;
void setCharNIC(unsigned, const Location &);
void setInheritedC(const ConstPtr<InheritedC> &);
void setInheritedC(const ConstPtr<InheritedC> &, unsigned, const Location &);
FlowObj *flowObj() const;
bool flowObjDefined(unsigned &, Location &) const;
void setFlowObj(FlowObj *);
void setFlowObj(FlowObj *, unsigned part, const Location &);
void setFeature(int);
bool requireFeature(Interpreter &, const Location &, bool fo = 0) const;
private:
unsigned defPart_;
Owner<Expression> def_;
InsnPtr insn_;
// Value in top-level environment.
ELObj *value_; // must be permanent
FlowObj *flowObj_; // prototype FlowObj with this name
unsigned flowObjPart_;
Location flowObjLoc_;
Location defLoc_;
SyntacticKey syntacticKey_;
bool beingComputed_;
bool charNIC_;
ConstPtr<InheritedC> inheritedC_;
unsigned inheritedCPart_;
Location inheritedCLoc_;
void maybeSaveBuiltin();
Identifier *builtin_;
static bool preferBuiltin_;
friend class Interpreter;
// FIXME This should be Interpreter::Feature
int feature_;
};
class Unit : public Named {
public:
Unit(const StringC &);
void setValue(long);
void setValue(double);
bool defined(unsigned &, Location &) const;
// return 0 if it can't be done
ELObj *resolveQuantity(bool force, Interpreter &, double val, int unitExp);
ELObj *resolveQuantity(bool force, Interpreter &, long val, int valExp);
void setDefinition(Owner<Expression> &, unsigned part, const Location &);
private:
void tryCompute(bool force, Interpreter &);
static bool scale(long val, int valExp, long num, long &result);
unsigned defPart_;
Location defLoc_;
Owner<Expression> def_;
InsnPtr insn_;
enum {
notComputed,
beingComputed,
computedExact,
computedInexact,
computedError
} computed_;
union {
long exact_;
double inexact_;
};
int dim_;
};
class ELObjDynamicRoot : public Collector::DynamicRoot {
public:
ELObjDynamicRoot(Collector &c, ELObj *obj = 0)
: Collector::DynamicRoot(c), obj_(obj) { }
void operator=(ELObj *obj) { obj_ = obj; }
operator ELObj *() const { return obj_; }
private:
void trace(Collector &) const;
ELObj *obj_;
};
struct CharPart {
Char c;
unsigned defPart;
};
struct ELObjPart {
ELObjPart();
ELObjPart(ELObj *x, unsigned y);
void operator=(const ELObjPart &);
bool operator==(const ELObjPart &) const;
bool operator!=(const ELObjPart &) const;
ELObj *obj;
unsigned defPart;
};
class CharPropValues {
public:
virtual bool setDefault(const StringC &, const Location &,
ELObj *, Interpreter &)=0;
virtual bool setValue(const StringC &,const StringC &,const Location &,
ELObj *, Interpreter &)=0;
virtual ELObj *value(Char, Interpreter &) const =0;
virtual ELObj *defaultValue(Interpreter &) const =0;
};
// These have to be in the header file, see Interpreter.
class IntegerCharPropValues : public CharPropValues {
public:
IntegerCharPropValues(long def=0)
: def_(def) {}
long getValue(Char) const;
void setRange(Char, Char, long);
private:
IntegerCharPropValues(const IntegerCharPropValues &); // Undefined.
IntegerCharPropValues &operator=(const IntegerCharPropValues &); // Undefined
long def_;
struct ValT_ {
long l_;
bool hasValue_;
ValT_() : hasValue_(false) {}
ValT_(long l) : hasValue_(true), l_(l) {}
bool operator==(const ValT_ &v) const
{ return (hasValue_==v.hasValue_) && (!hasValue_ || l_==v.l_); }
bool operator!=(const ValT_& v) const
{ return !(*this == v); }
};
CharMap<ValT_> map_;
bool setDefault(const StringC &, const Location &,
ELObj *, Interpreter &);
bool setValue(const StringC &, const StringC &, const Location &,
ELObj *,Interpreter &);
ELObj *value(Char, Interpreter &) const;
ELObj *defaultValue(Interpreter &) const;
};
class MaybeIntegerCharPropValues : public CharPropValues {
public:
MaybeIntegerCharPropValues(bool defFalse=true, long def=0)
: defFalse_(defFalse), def_(def) {}
// Returns true and sets 2nd arg if not #f, otherwise returns false.
bool getValue(Char, long &) const;
void setRange(Char, Char, long);
void setValue(Char, long);
private:
MaybeIntegerCharPropValues(const MaybeIntegerCharPropValues &); // Undefined.
MaybeIntegerCharPropValues &operator=(const MaybeIntegerCharPropValues &);
// Above undefined.
long def_;
bool defFalse_;
struct ValT_ {
long l_;
bool hasValue_;
bool isFalse_;
ValT_() : hasValue_(false) {}
ValT_(long l) : l_(l), hasValue_(true), isFalse_(false) {}
bool operator==(const ValT_ &v) const
{ return (hasValue_==v.hasValue_)
&& (!hasValue_ || (isFalse_ && v.isFalse_) || l_==v.l_); }
bool operator!=(const ValT_& v) const
{ return !(*this == v); }
};
CharMap<ValT_> map_;
bool setDefault(const StringC &, const Location &,
ELObj *, Interpreter &);
bool setValue(const StringC &, const StringC &, const Location &,
ELObj *,Interpreter &);
ELObj *value(Char, Interpreter &) const;
ELObj *defaultValue(Interpreter &) const;
};
class BooleanCharPropValues : public CharPropValues {
public:
BooleanCharPropValues(bool def=false)
: def_(def) {}
bool getValue(Char) const;
void setRange(Char, Char, bool);
private:
BooleanCharPropValues(const BooleanCharPropValues &); // Undefined.
BooleanCharPropValues &operator=(const BooleanCharPropValues &); // Undefined.
bool def_;
struct ValT_ {
bool b_:1;
bool hasValue_:1;
ValT_() : hasValue_(false) {}
ValT_(bool b) : b_(b), hasValue_(true) {}
bool operator==(const ValT_ &v) const
{ return (hasValue_==v.hasValue_) && (!hasValue_ || b_==v.b_); }
bool operator!=(const ValT_& v) const
{ return !(*this == v); }
};
CharMap<ValT_> map_;
bool setDefault(const StringC &, const Location &,
ELObj *, Interpreter &);
bool setValue(const StringC &, const StringC &, const Location &,
ELObj *,Interpreter &);
ELObj *value(Char, Interpreter &) const;
ELObj *defaultValue(Interpreter &) const;
};
class PublicIdCharPropValues : public CharPropValues {
public:
PublicIdCharPropValues(FOTBuilder::PublicId def=0)
: def_(def) {}
FOTBuilder::PublicId getValue(Char) const;
void setRange(Char, Char, const FOTBuilder::PublicId);
private:
PublicIdCharPropValues(const PublicIdCharPropValues &); // Undefined.
PublicIdCharPropValues &operator=(const PublicIdCharPropValues &); // Undefined.
FOTBuilder::PublicId def_;
struct ValT_ {
FOTBuilder::PublicId p_;
bool hasValue_;
ValT_() : hasValue_(false) {}
ValT_(FOTBuilder::PublicId p)
: hasValue_(true), p_(p) {}
bool operator==(const ValT_ &v) const
{ return (hasValue_==v.hasValue_) && (!hasValue_ || p_==v.p_); }
bool operator!=(const ValT_& v) const
{ return !(*this == v); }
};
CharMap<ValT_> map_;
bool setDefault(const StringC &, const Location &,
ELObj *, Interpreter &);
bool setValue(const StringC &, const StringC &, const Location &,
ELObj *,Interpreter &);
ELObj *value(Char, Interpreter &) const;
ELObj *defaultValue(Interpreter &) const;
};
class SymbolCharPropValues : public CharPropValues {
public:
SymbolCharPropValues(FOTBuilder::Symbol def=FOTBuilder::symbolFalse)
: def_(def) {}
FOTBuilder::Symbol getValue(Char) const;
void setRange(Char, Char, FOTBuilder::Symbol);
private:
SymbolCharPropValues(const SymbolCharPropValues &); // Undefined.
SymbolCharPropValues &operator=(const SymbolCharPropValues &); // Undefined.
FOTBuilder::Symbol def_;
struct ValT_ {
FOTBuilder::Symbol s_;
bool hasValue_;
ValT_() : hasValue_(false) {}
ValT_(FOTBuilder::Symbol s)
: hasValue_(true), s_(s) {}
bool operator==(const ValT_ &v) const
{ return (hasValue_==v.hasValue_) && (!hasValue_ || s_==v.s_); }
bool operator!=(const ValT_& v) const
{ return !(*this == v); }
};
CharMap<ValT_> map_;
bool setDefault(const StringC &, const Location &,
ELObj *, Interpreter &);
bool setValue(const StringC &, const StringC &, const Location &,
ELObj *,Interpreter &);
ELObj *value(Char, Interpreter &) const;
ELObj *defaultValue(Interpreter &) const;
};
class CharProp : public Named {
public:
CharProp(const StringC& name);
// def is used if char doesn't have property. If def==0, property default
// value is used.
ELObj *value(Char ch,ELObj *def, const Location &, Interpreter &);
// Use only before compile is called.
// Set value for characters in string.
void setValue(StringC &,Owner<Expression> &,unsigned,const Location&);
void declare(Owner<Expression> &, unsigned, const Location&,
CharPropValues * =0);
void declarePredefined(CharPropValues *);
bool hasAddedValue(Char,unsigned&,Location&) const;
bool declared(unsigned&,Location&) const;
void compile(Interpreter &);
protected:
enum computedType_ {
notComputed,
beingComputed,
computedError,
computedOK
};
// Default value.
unsigned defPart_;
Location defLoc_;
Owner<Expression> defExpr_;
computedType_ defComputed_;
// Added properties.
struct addedProp_ {
StringC chars_;
unsigned part_;
Location loc_;
Owner<Expression> expr_;
computedType_ computed_;
};
// Have to store in NCVector because of Owner non-copyable.
NCVector<addedProp_> addedPropsVec_;
// We have to store indices, since NCVector isn't really NC (ofcourse).
Owner<CharMap<NCVector<addedProp_>::size_type> > addedProps_;
enum { noAddedVal_ = NCVector<addedProp_>::size_type(-1) };
CharPropValues *values_;
// True if errors when compiling any of the added values.
bool hadError_;
void compileDef_(Interpreter &);
void compileAdded_(addedProp_ &,Interpreter &);
const addedProp_ *added_(Char) const;
private:
CharProp(const CharProp &); // Undefined.
CharProp &operator=(const CharProp &); // Undefined.
};
class Interpreter :
public Collector,
public Pattern::MatchContext,
public NumberCache,
public Messenger {
public:
enum PortName {
portNumerator,
portDenominator,
portPreSup,
portPreSub,
portPostSup,
portPostSub,
portMidSup,
portMidSub,
portOverMark,
portUnderMark,
portOpen,
portClose,
portDegree,
portOperator,
portLowerLimit,
portUpperLimit,
portHeader,
portFooter
};
enum { nPortNames = portFooter + 1 };
Interpreter(GroveManager *, Messenger *, int unitsPerInch, bool debugMode,
bool dsssl2, bool style, bool strictMode,
const FOTBuilder::Description &);
void endPart();
void dEndPart();
FalseObj *makeFalse();
TrueObj *makeTrue();
NilObj *makeNil();
SymbolObj *makeSymbol(const StringC &);
KeywordObj *makeKeyword(const StringC &);
IntegerObj *makeInteger(long n);
ErrorObj *makeError();
UnspecifiedObj *makeUnspecified();
PairObj *makePair(ELObj *, ELObj *);
ELObj *convertGlyphId(const Char *, size_t, const Location &);
bool isError(const ELObj *) const;
bool isUnspecified(const ELObj *) const;
CharObj *makeChar(Char);
ELObj *makeLengthSpec(const FOTBuilder::LengthSpec &);
AddressObj *makeAddressNone();
NodeListObj *makeEmptyNodeList();
void dispatchMessage(Message &);
void dispatchMessage(const Message &);
Identifier *lookup(const StringC &);
Unit *lookupUnit(const StringC &);
FunctionObj *lookupExternalProc(const StringC &);
CharProp *lookupCharProperty(const StringC &);
int unitsPerInch() const;
unsigned currentPartIndex() const;
const FOTBuilder::Description &fotbDescr() const;
void compile(const NodePtr &);
static StringC makeStringC(const char *);
SymbolObj *portName(PortName);
ELObj *cValueSymbol(FOTBuilder::Symbol);
void compileCharProperties();
// Map of LexCategory
XcharMap<char> lexCategory_;
static void normalizeGeneralName(const NodePtr &, StringC &);
GroveManager *groveManager() const;
StyleObj *initialStyle() const;
StyleObj *borderTrueStyle() const;
StyleObj *borderFalseStyle() const;
bool convertBooleanC(ELObj *, const Identifier *, const Location &, bool &);
bool convertPublicIdC(ELObj *, const Identifier *, const Location &,
FOTBuilder::PublicId &);
bool convertStringC(ELObj *, const Identifier *, const Location &, StringC &);
bool convertLengthC(ELObj *, const Identifier *, const Location &, FOTBuilder::Length &);
bool convertLengthSpecC(ELObj *, const Identifier *, const Location &, FOTBuilder::LengthSpec &);
bool convertLetter2C(ELObj *, const Identifier *, const Location &, FOTBuilder::Letter2 &);
bool convertOptLengthSpecC(ELObj *, const Identifier *, const Location &, FOTBuilder::OptLengthSpec &);
bool convertCharC(ELObj *, const Identifier *, const Location &, Char &);
bool convertColorC(ELObj *, const Identifier *, const Location &, ColorObj *&);
bool convertOptColorC(ELObj *, const Identifier *, const Location &, ColorObj *&);
// FIXME allow inexact value
bool convertIntegerC(ELObj *, const Identifier *, const Location &, long &);
bool convertOptPositiveIntegerC(ELObj *, const Identifier *, const Location &, long &);
bool convertRealC(ELObj *, const Identifier *, const Location &, double &);
bool convertEnumC(const FOTBuilder::Symbol *, size_t,
ELObj *, const Identifier *, const Location &, FOTBuilder::Symbol &);
bool convertEnumC(ELObj *, const Identifier *, const Location &, FOTBuilder::Symbol &);
void invalidCharacteristicValue(const Identifier *ident, const Location &loc);
bool convertLengthSpec(ELObj *, FOTBuilder::LengthSpec &);
bool convertToPattern(ELObj *, const Location &, Pattern &);
const ConstPtr<InheritedC> &charMapC() const;
const ConstPtr<InheritedC> &tableBorderC() const;
const ConstPtr<InheritedC> &cellBeforeRowBorderC() const;
const ConstPtr<InheritedC> &cellAfterRowBorderC() const;
const ConstPtr<InheritedC> &cellBeforeColumnBorderC() const;
const ConstPtr<InheritedC> &cellAfterColumnBorderC() const;
const ConstPtr<InheritedC> &fractionBarC() const;
const char *storePublicId(const Char *, size_t, const Location &);
unsigned allocGlyphSubstTableUniqueId();
bool lookupNodeProperty(const StringC &, ComponentName::Id &);
bool debugMode() const;
bool dsssl2() const;
bool style() const;
bool strictMode() const;
void setNodeLocation(const NodePtr &);
void setDefaultLanguage(Owner<Expression> &,unsigned part,const Location &);
ELObj *defaultLanguage() const;
bool defaultLanguageSet(unsigned &,Location &) const;
void compileDefaultLanguage();
void makeReadOnly(ELObj *);
ProcessingMode *lookupProcessingMode(const StringC &);
ProcessingMode *initialProcessingMode();
TransformationMode *transformationMode();
void addClassAttributeName(const StringC &name);
void addIdAttributeName(const StringC &name);
void installInitialValue(Identifier *, Owner<Expression> &);
void installExtensionInheritedC(Identifier *, const StringC &, const Location &);
CharPropValues *installExtensionCharNIC(Identifier *, const StringC &,
const Location &);
void installExtensionFlowObjectClass(Identifier *, const StringC &, const Location &);
// Return 0 if an invalid number.
ELObj *convertNumber(const StringC &, int radix = 10);
bool convertCharName(const StringC &str, Char &c) const;
enum LexCategory {
lexLetter, // a - z A - Z
lexOtherNameStart, // !$%&*/<=>?~_^:
lexAddNameStart,
lexDigit, // 0-9
lexOtherNumberStart, // -+.
lexOther,
lexDelimiter, // ;()"
lexWhiteSpace,
lexAddWhiteSpace
};
LexCategory lexCategory(Xchar);
void addStandardChar(const StringC &, const StringC &);
void addSdataEntity(const StringC &, const StringC &, const StringC &);
void addNameChar(const StringC &);
void addSeparatorChar(const StringC &);
void setCharRepertoire(const StringC &);
enum Feature {
noFeature,
combineChar,
keyword,
multiSource,
multiResult,
regexp,
word,
hytime,
charset,
expression,
multiProcess,
query,
sideBySide,
sideline,
alignedColumn,
bidi,
vertical,
math,
table,
tableAutoWidth,
simplePage,
page,
multiColumn,
nestedColumnSet,
generalIndirect,
inlineNote,
glyphAnnotation,
emphasizingMark,
includedContainer,
actualCharacteristic,
online,
fontInfo,
crossReference
};
enum { nFeatures = crossReference + 1 };
enum Support {
notSupported,
partiallySupported,
supported
};
struct Status {
bool declared;
Support supported;
StringC rcsname;
StringC appname;
};
bool convertFeature(const StringC &, Feature &);
void explicitFeatures();
void declareFeature(const StringC &);
void declareFeature(const Feature &);
bool requireFeature(const Feature &, const Location &);
enum Module {
baseabs,
prlgabs0,
prlgabs1,
instabs,
basesds0,
basesds1,
instsds0,
subdcabs,
sdclabs,
sdclsds,
prlgsds,
instsds1,
dtgabs,
rankabs,
srabs,
srsds,
linkabs,
linksds,
subdcsds,
fpiabs
};
enum { nModules = fpiabs + 1 };
void explicitModules();
void addModule(const StringC &);
private:
Interpreter(const Interpreter &); // undefined
void operator=(const Interpreter &); // undefined
void installSyntacticKeys();
void installPortNames();
void installCValueSymbols();
void installPrimitives();
void installPrimitive(const char *, PrimitiveObj *, Feature f);
void installXPrimitive(const char *, const char *, PrimitiveObj *);
void installBuiltins();
void installUnits();
void installCharNames();
void installInheritedCs();
void installInheritedC(const char *, InheritedC *);
void installInheritedCProc(const Identifier *);
void installFlowObjs();
void installSdata();
void installNodeProperties();
void installCharProperties();
void installFeatures(const FOTBuilder::Feature *);
void installModules();
void checkGrovePlan();
void compileInitialValues();
bool sdataMap(GroveString, GroveString, GroveChar &) const;
static bool convertUnicodeCharName(const StringC &str, Char &c);
bool convertToPattern(ELObj *obj, const Location &loc,
bool isChild, IList<Pattern::Element> &list);
bool patternAddAttributeQualifiers(ELObj *obj,
const Location &loc,
Pattern::Element &elem);
enum {
convertAllowBoolean = 01,
convertAllowSymbol = 02,
convertAllowNumber = 04
};
ELObj *convertFromString(ELObj *, unsigned hints, const Location &);
ELObj *convertNumberFloat(const StringC &);
bool scanSignDigits(const StringC &str, size_t &i, int &n);
Unit *scanUnit(const StringC &str, size_t i, int &unitExp);
NilObj *theNilObj_;
TrueObj *theTrueObj_;
FalseObj *theFalseObj_;
ErrorObj *theErrorObj_;
UnspecifiedObj *theUnspecifiedObj_;
typedef PointerTable<SymbolObj *, StringC, Hash, SymbolObj>
SymbolTable;
SymbolTable symbolTable_;
NamedTable<Identifier> identTable_;
NamedTable<Unit> unitTable_;
HashTable<StringC,FunctionObj *> externalProcTable_;
Messenger *messenger_;
const FOTBuilder::Description &fotbDescr_;
unsigned partIndex_;
unsigned dPartIndex_;
int unitsPerInch_;
unsigned nInheritedC_;
GroveManager *groveManager_;
ProcessingMode initialProcessingMode_;
NamedTable<ProcessingMode> processingModeTable_;
SymbolObj *portNames_[nPortNames];
ELObj *cValueSymbols_[FOTBuilder::nSymbols];
HashTable<StringC, CharPart> namedCharTable_;
HashTable<StringC, CharPart> sdataEntityNameTable_;
HashTable<StringC, CharPart> sdataEntityTextTable_;
Vector<const Identifier *> initialValueNames_;
NCVector<Owner<Expression> > initialValueValues_;
size_t currentPartFirstInitialValue_;
StyleObj *initialStyle_;
StyleObj *borderTrueStyle_;
StyleObj *borderFalseStyle_;
ConstPtr<InheritedC> charMapC_;
ConstPtr<InheritedC> tableBorderC_;
ConstPtr<InheritedC> cellBeforeRowBorderC_;
ConstPtr<InheritedC> cellAfterRowBorderC_;
ConstPtr<InheritedC> cellBeforeColumnBorderC_;
ConstPtr<InheritedC> cellAfterColumnBorderC_;
ConstPtr<InheritedC> fractionBarC_;
class StringSet {
public:
StringSet();
const char *store(String<char> &);
static unsigned long hash(const String<char> &);
static inline const String<char> &key(const String<char> &str) { return str; }
private:
OwnerTable<String<char>, String<char>, StringSet, StringSet> table_;
};
StringSet publicIds_;
unsigned nextGlyphSubstTableUniqueId_;
AddressObj *addressNoneObj_;
NodeListObj *emptyNodeListObj_;
HashTable<StringC,int> nodePropertyTable_;
bool debugMode_;
bool dsssl2_;
bool style_;
bool strictMode_;
ELObj *defaultLanguage_;
Owner<Expression> defaultLanguageDef_;
unsigned defaultLanguageDefPart_;
Location defaultLanguageDefLoc_;
friend class Identifier;
NamedTable<CharProp> charPropTable_;
// No access function, since this is not a character NIC.
MaybeIntegerCharPropValues numericEquivCPV_;
#define CP(t, n) \
private: t ## CharPropValues n ## CPV_; \
public: const t ## CharPropValues &n () const \
{ return n ## CPV_; }
CP(Boolean, isSpace);
CP(Boolean, isRecordEnd);
CP(Boolean, isBlank);
CP(Boolean, isInputTab);
CP(Boolean, isInputWhitespace);
CP(Boolean, isPunct);
CP(PublicId, script);
// FIXME! Shall not be PUblicId, but GlyphId.
CP(PublicId, glyphId);
CP(Boolean, isDropAfterLineBreak);
CP(Boolean, isDropUnlessBeforeLineBreak);
CP(Integer, breakBeforePriority);
CP(Integer, breakAfterPriority);
CP(Symbol, mathClass);
CP(Symbol, mathFontPosture);
Status feature_[nFeatures];
bool explicitFeatures_;
Status module_[nModules];
bool explicitModules_;
TransformationMode transformationMode_;
};
inline
ErrorObj *Interpreter::makeError()
{
return theErrorObj_;
}
inline
bool Interpreter::isError(const ELObj *obj) const
{
return obj == theErrorObj_;
}
inline
bool Interpreter::isUnspecified(const ELObj *obj) const
{
return obj == theUnspecifiedObj_;
}
inline
FalseObj *Interpreter::makeFalse()
{
return theFalseObj_;
}
inline
TrueObj *Interpreter::makeTrue()
{
return theTrueObj_;
}
inline
NilObj *Interpreter::makeNil()
{
return theNilObj_;
}
inline
UnspecifiedObj *Interpreter::makeUnspecified()
{
return theUnspecifiedObj_;
}
inline
IntegerObj *Interpreter::makeInteger(long n)
{
return new (*this) IntegerObj(n);
}
inline
PairObj *Interpreter::makePair(ELObj *car, ELObj *cdr)
{
return new (*this) PairObj(car, cdr);
}
inline
CharObj *Interpreter::makeChar(Char c)
{
return new (*this) CharObj(c);
}
inline
AddressObj *Interpreter::makeAddressNone()
{
return addressNoneObj_;
}
inline
NodeListObj *Interpreter::makeEmptyNodeList()
{
return emptyNodeListObj_;
}
inline
ELObj *Interpreter::cValueSymbol(FOTBuilder::Symbol sym)
{
return cValueSymbols_[sym];
}
inline
SymbolObj *Interpreter::portName(PortName i)
{
return portNames_[i];
}
inline
ProcessingMode *Interpreter::initialProcessingMode()
{
return &initialProcessingMode_;
}
inline
int Interpreter::unitsPerInch() const
{
return unitsPerInch_;
}
inline
unsigned Interpreter::currentPartIndex() const
{
return partIndex_;
}
inline
const FOTBuilder::Description &Interpreter::fotbDescr() const
{
return fotbDescr_;
}
inline
KeywordObj *Interpreter::makeKeyword(const StringC &str)
{
return new (*this) KeywordObj(lookup(str));
}
inline
StyleObj *Interpreter::initialStyle() const
{
return initialStyle_;
}
inline
StyleObj *Interpreter::borderTrueStyle() const
{
return borderTrueStyle_;
}
inline
StyleObj *Interpreter::borderFalseStyle() const
{
return borderFalseStyle_;
}
inline
GroveManager *Interpreter::groveManager() const
{
return groveManager_;
}
inline
const ConstPtr<InheritedC> &Interpreter::charMapC() const
{
return charMapC_;
}
inline
const ConstPtr<InheritedC> &Interpreter::tableBorderC() const
{
return tableBorderC_;
}
inline
const ConstPtr<InheritedC> &Interpreter::cellBeforeRowBorderC() const
{
return cellBeforeRowBorderC_;
}
inline
const ConstPtr<InheritedC> &Interpreter::cellAfterRowBorderC() const
{
return cellAfterRowBorderC_;
}
inline
const ConstPtr<InheritedC> &Interpreter::cellBeforeColumnBorderC() const
{
return cellBeforeColumnBorderC_;
}
inline
const ConstPtr<InheritedC> &Interpreter::cellAfterColumnBorderC() const
{
return cellAfterColumnBorderC_;
}
inline
const ConstPtr<InheritedC> &Interpreter::fractionBarC() const
{
return fractionBarC_;
}
inline
FunctionObj *Interpreter::lookupExternalProc(const StringC &pubid)
{
FunctionObj *const *func = externalProcTable_.lookup(pubid);
return func ? *func : 0;
}
inline
unsigned Interpreter::allocGlyphSubstTableUniqueId()
{
return nextGlyphSubstTableUniqueId_++;
}
inline
bool Interpreter::debugMode() const
{
return debugMode_;
}
inline
bool Interpreter::dsssl2() const
{
return dsssl2_;
}
inline
bool Interpreter::style() const
{
return style_;
}
inline
bool Interpreter::strictMode() const
{
return strictMode_;
}
inline
void Interpreter::makeReadOnly(ELObj *obj)
{
if (dsssl2())
Collector::makeReadOnly(obj);
}
inline
void Interpreter::addClassAttributeName(const StringC &name)
{
classAttributeNames_.push_back(name);
}
inline
void Interpreter::addIdAttributeName(const StringC &name)
{
idAttributeNames_.push_back(name);
}
inline
Interpreter::LexCategory Interpreter::lexCategory(Xchar c)
{
return LexCategory(lexCategory_[c]);
}
inline
bool Identifier::syntacticKey(SyntacticKey &key) const
{
if (syntacticKey_ == notKey)
return 0;
key = syntacticKey_;
return 1;
}
inline
void Identifier::setSyntacticKey(SyntacticKey key)
{
syntacticKey_ = key;
}
inline
bool Identifier::evaluated() const
{
return value_ != 0;
}
inline
const ConstPtr<InheritedC> &Identifier::inheritedC() const
{
return inheritedC_;
}
inline
bool Identifier::inheritedCDefined(unsigned &part, Location &loc) const
{
if (inheritedC_.isNull())
return 0;
part = inheritedCPart_;
loc = inheritedCLoc_;
return 1;
}
inline
bool Identifier::charNICDefined(unsigned &part, Location &loc) const
{
if (!charNIC_)
return 0;
part = inheritedCPart_;
loc = inheritedCLoc_;
return 1;
}
inline
void Identifier::setCharNIC(unsigned part,
const Location &loc)
{
charNIC_ = 1;
inheritedC_ = ConstPtr<InheritedC>(0);
inheritedCPart_ = part;
inheritedCLoc_ = loc;
}
inline
void Identifier::setInheritedC(const ConstPtr<InheritedC> &ic, unsigned part,
const Location &loc)
{
inheritedC_ = ic;
inheritedCPart_ = part;
inheritedCLoc_ = loc;
}
inline
void Identifier::setInheritedC(const ConstPtr<InheritedC> &ic)
{
inheritedC_ = ic;
inheritedCPart_ = unsigned(-1);
inheritedCLoc_ = Location();
}
inline
FlowObj *Identifier::flowObj() const
{
return flowObj_;
}
inline
bool Identifier::flowObjDefined(unsigned &part, Location &loc) const
{
if (!flowObj_)
return 0;
part = flowObjPart_;
loc = flowObjLoc_;
return 1;
}
inline
void Identifier::setFlowObj(FlowObj *fo)
{
flowObj_ = fo;
flowObjPart_ = unsigned(-1);
}
inline
void Identifier::setFlowObj(FlowObj *fo, unsigned part, const Location &loc)
{
flowObj_ = fo;
flowObjPart_ = part;
flowObjLoc_ = loc;
}
inline
ELObjPart::ELObjPart()
: obj(0), defPart(0)
{
}
inline
ELObjPart::ELObjPart(ELObj *o, unsigned p)
: obj(o), defPart(p)
{
}
inline
void ELObjPart::operator=(const ELObjPart &x)
{
obj = x.obj;
defPart = x.defPart;
}
inline
bool ELObjPart::operator==(const ELObjPart &x) const
{
return defPart == x.defPart && obj && x.obj && ELObj::eqv(*obj, *x.obj);
}
inline
bool ELObjPart::operator!=(const ELObjPart &x) const
{
return !(*this == x);
}
inline
long IntegerCharPropValues::getValue(Char ch) const
{
ValT_ v(map_[ch]);
if (v.hasValue_)
return v.l_;
else
return def_;
}
inline
void IntegerCharPropValues::setRange(Char from, Char to, long l)
{
map_.setRange(from, to, l);
}
inline
bool MaybeIntegerCharPropValues::getValue(Char ch, long &l) const
{
ValT_ v(map_[ch]);
if (v.hasValue_) {
if (!v.isFalse_)
l = v.l_;
return !v.isFalse_;
}
l = def_;
return true;
}
inline
void MaybeIntegerCharPropValues::setRange(Char from, Char to, long l)
{
map_.setRange(from, to, l);
}
inline
void MaybeIntegerCharPropValues::setValue(Char ch, long l)
{
map_.setChar(ch, l);
}
inline
bool BooleanCharPropValues::getValue(Char ch) const
{
ValT_ v(map_[ch]);
if (v.hasValue_)
return v.b_;
return def_;
}
inline
void BooleanCharPropValues::setRange(Char from, Char to, bool b)
{
map_.setRange(from, to, b);
}
inline
FOTBuilder::PublicId PublicIdCharPropValues::getValue(Char ch) const
{
ValT_ v(map_[ch]);
if (v.hasValue_)
return v.p_;
return def_;
}
inline
void PublicIdCharPropValues::setRange(Char from, Char to,
FOTBuilder::PublicId p)
{
map_.setRange(from, to, p);
}
inline
FOTBuilder::Symbol SymbolCharPropValues::getValue(Char ch) const
{
ValT_ v(map_[ch]);
if (v.hasValue_)
return v.s_;
return def_;
}
inline
void SymbolCharPropValues::setRange(Char from, Char to,
FOTBuilder::Symbol s)
{
map_.setRange(from, to, s);
}
inline
CharProp::CharProp(const StringC &name)
: Named(name), defComputed_(notComputed), values_(0),
hadError_(false)
{
}
#ifdef DSSSL_NAMESPACE
}
#endif
#endif /* not Interpreter_INCLUDED */
|