First public contribution.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 const int NumResources=34;
24 String IdentResource[NumResources] =
47 "SetGraphicsColor", // !!
62 const int NumDisplayModeValues = 11;
64 String IdentDisplayModeValue[NumDisplayModeValues] =
79 EXPORT_C PdrReader::PdrReader()
94 EXPORT_C boolean PdrReader::Read(const String& aFilename)
96 boolean state = Open(aFilename);
98 while (!_EOF() && state)
100 if (IdentComp(IdentResources))
101 state = ReadResources();
102 else if (IdentComp(IdentTranslates))
103 state = ReadTranslates();
104 else if (IdentComp(IdentFontInfo))
105 state = ReadFontInfo();
106 else if (IdentComp(IdentTypefaceFonts))
107 state = ReadTypefaceFonts();
108 // else if (IdentComp(IdentExtraInfo))
109 // state = ReadExtraInfo();
110 else if (IdentComp(IdentModel))
112 else if (IdentComp(IdentPdrStoreFile))
113 state = ReadPdrStoreFile();
116 Error("Resource identifier expected");
125 EXPORT_C PdrReader::~PdrReader()
129 boolean PdrReader::ReadResources()
131 boolean state = etrue;
132 iResources = PdrResources::New();
133 state = IdentCopy(iResources->iLabel);
136 while (!IdentComp(IdentEndResources) && !_EOF() && state)
138 int i; // DEF102183: Graphics tools fail to build using MS VC8.
139 for (i = 0; (i < NumResources) && !IdentComp(IdentResource[i]); i++)
140 { // Tries to match resources identifier
142 if (i < NumResources)
144 PdrResource *resource = PdrResource::New();
145 state = Command(resource->iString);
149 iResources->AddResource(resource);
158 Error("Resources identifier expected");
163 iPdrModelStore.AddResources(iResources);
164 cout << "Resources read\n";
167 iResources->Delete();
171 boolean PdrReader::ReadTranslates()
174 boolean state = etrue;
175 iTranslates = PdrTranslates::New();
176 state = IdentCopy(iTranslates->iLabel);
179 while (!IdentComp(IdentEndTranslates) && !_EOF() && state)
181 if (iLex->iType == ELexNumber)
183 PdrTranslation *translation = PdrTranslation::New();
185 translation->iFrom = uint16(num);
187 state = Operator(ch);
193 if (iLex->iType == ELexNumber)
196 translation->iTo += char(num);
200 state = Command(translation->iTo);
207 Error("Operator ':' expected");
211 iTranslates->AddTranslation(translation);
213 translation->Delete();
218 iPdrModelStore.AddTranslates(iTranslates);
219 cout << "Translates read\n";
222 iTranslates->Delete();
226 boolean PdrReader::ReadCodeSection(int aCode)
228 boolean state = etrue;
231 iCodeSection = WidthsCodeSection::New();
234 if ((num<aCode) && state)
236 Error("CodeSection out of sequence");
241 iCodeSection->iStart = uint16(num);
242 state = Operator(ch);
248 iCodeSection->iEnd = uint16(num);
254 Error("Operator ':' expected");
259 while (!IdentComp(IdentEndCodeSection) && !_EOF() && state)
261 if (iLex->iType != ELexNL)
263 state = Number(code);
264 if ((code != iCodeSection->iStart + iCodeSection->NumWidths()) && state)
267 Error("Width out of sequence");
270 state = Operator(ch);
275 Width *width = Width::New();
278 width->iWidthInPixels = (uint16) num;
279 iCodeSection->AddWidth(width);
293 num = ((iCodeSection->iEnd + 1) - iCodeSection->iStart);
294 if ((num != iCodeSection->NumWidths()) && (iCodeSection->NumWidths() != 1))
296 Error("Wrong number of widths in codesection");
302 iFontInfo->AddCodeSection(iCodeSection);
303 // cout << "Codesection read\n";
306 iCodeSection->Delete();
310 boolean PdrReader::ReadFontInfo()
312 boolean state = etrue;
313 iFontInfo = FontInfo::New();
315 state = IdentCopy(iFontInfo->iLabel);
318 while (!IdentComp(IdentEndFontInfo) && !_EOF() && state)
320 if (iLex->iType == ELexIdent)
322 if (IdentComp(IdentCodeSection))
324 int code = 0,size = iFontInfo->NumCodeSections();
326 code = iFontInfo->CodeSectionList(size - 1)->iEnd + 1;
327 state = ReadCodeSection(code);
329 else if (IdentComp(IdentAscent))
332 iFontInfo->iAscentInPixels = uint16(num);
336 else if (IdentComp(IdentMaxNormalCharWidth))
340 iFontInfo->iMaxNormalCharWidthInPixels = uint16(num);
344 Error("Unrecognised fontinfo identifier");
350 Error("Fontinfo identifier expected");
358 iFontInfo->iMaxCharWidthInPixels = 0;
359 for (int i = 0; i < iFontInfo->NumCodeSections(); i++)
361 WidthsCodeSection* codesection = iFontInfo->CodeSectionList(i);
362 for (int j = 0; j < codesection->NumWidths(); j++)
364 int width = codesection->WidthList(j)->iWidthInPixels;
365 if (width > iFontInfo->iMaxCharWidthInPixels)
366 iFontInfo->iMaxCharWidthInPixels = (uint16) width;
372 iPdrModelStore.AddFontInfo(iFontInfo);
373 cout << "Fontinfo read\n";
380 boolean PdrReader::ReadStyle()
382 boolean state = etrue;
386 if (!iTypefaceFonts->iIsScalable)
387 style = &iFontHeight->iStyle[iIndex];
389 style = &iTypefaceFonts->iScalableFontHeight.iStyle[iIndex];
390 style->iIsAvailable = etrue;
391 state = IdentCopy(label);
394 fontinfo = iPdrModelStore.FindFontInfo(label);
396 style->iFontInfo = fontinfo;
399 Error("Fontinfo not found");
406 boolean PdrReader::ReadFontHeight()
408 boolean state = etrue;
410 if (iTypefaceFonts->iIsScalable == etrue)
413 Error("Scalablefontheight already defined");
416 iFontHeight = PdrFontHeight::New();
420 while (!IdentComp(IdentEndFontHeight) && !_EOF() && state)
422 if (iLex->iType == ELexIdent)
424 if (IdentComp(IdentHeight))
427 iFontHeight->iHeightInTwips = num;
431 else if (IdentComp(IdentWidthScale))
434 iFontHeight->iWidthScale = num;
438 else if (IdentComp(IdentNormal))
443 else if (IdentComp(IdentBold))
448 else if (IdentComp(IdentItalic))
453 else if (IdentComp(IdentBoldItalic))
458 else if (IdentComp(IdentCommand))
460 state = Command(iFontHeight->iCommandString);
464 Error("Unrecognised fontheight identifier");
470 Error("Fontheight identifier expected");
478 iTypefaceFonts->AddFontHeight(iFontHeight);
479 cout << "Fontheight read\n";
482 iFontHeight->Delete();
486 boolean PdrReader::ReadScalableFontHeight()
488 boolean state = etrue;
490 if (iTypefaceFonts->NumFontHeights())
493 Error("Non-scalable fontheights already defined");
495 else if (iTypefaceFonts->iIsScalable == etrue)
498 Error("Scalablefontheight already defined");
500 iTypefaceFonts->iIsScalable=etrue;
504 while (!IdentComp(IdentEndScalableFontHeight) && !_EOF() && state)
506 if (iLex->iType == ELexIdent)
508 if (IdentComp(IdentHeightMin))
511 iTypefaceFonts->iScalableFontHeight.iHeightMinInTwips = num;
515 else if (IdentComp(IdentHeightMax))
518 iTypefaceFonts->iScalableFontHeight.iHeightMaxInTwips = num;
522 else if (IdentComp(IdentHeightDelta))
525 iTypefaceFonts->iScalableFontHeight.iHeightDeltaInTwips = num;
529 else if (IdentComp(IdentNormal))
534 else if (IdentComp(IdentBold))
539 else if (IdentComp(IdentItalic))
544 else if (IdentComp(IdentBoldItalic))
549 else if (IdentComp(IdentCommand))
551 state = Command(iTypefaceFonts->iScalableFontHeight.iCommandString);
555 Error("Unrecognised scalablefontheight identifier");
561 Error("Scalablefontheight identifier expected");
569 cout << "Scalablefontheight read\n";
573 if (!iTypefaceFonts->iIsScalable)
574 iFontHeight->Delete();
579 boolean PdrReader::ReadTypefaceFonts()
581 boolean state = etrue;
584 iTypefaceFonts = TypefaceFonts::New();
585 state = IdentCopy(iTypefaceFonts->iLabel);
588 while (!IdentComp(IdentEndTypefaceFonts) && !_EOF() && state)
590 if (iLex->iType == ELexIdent)
592 if (IdentComp(IdentTypefaceName))
594 if (StringCopy(iTypefaceFonts->iTypeface.iName))
595 while (iLex->iType != ELexNL)
596 { if (IdentComp(IdentProportional))
597 iTypefaceFonts->iTypeface.iFlags = boolean(iTypefaceFonts->iTypeface.iFlags | Proportional);
598 else if (IdentComp(IdentSerif))
599 iTypefaceFonts->iTypeface.iFlags = boolean(iTypefaceFonts->iTypeface.iFlags | Serif);
600 else if (IdentComp(IdentSymbol))
601 iTypefaceFonts->iTypeface.iFlags = boolean(iTypefaceFonts->iTypeface.iFlags | Symbol);
604 Error("Typefacefonts identifier or newline expected");
611 else if (IdentComp(IdentTypefaceTranslates))
613 state = IdentCopy(label);
616 translates = iPdrModelStore.FindTranslates(label);
618 iTypefaceFonts->iTranslates = translates;
621 Error("Translates not found");
626 else if (IdentComp(IdentFontHeight))
628 state = ReadFontHeight();
630 else if (IdentComp(IdentScalableFontHeight))
632 state = ReadScalableFontHeight();
636 Error("Unrecognised typefacefonts identifier");
642 Error("Typefacefonts identifier expected");
650 iPdrModelStore.AddTypefaceFonts(iTypefaceFonts);
651 cout << "Typefacefonts read\n";
654 iTypefaceFonts->Delete();
658 boolean PdrReader::ReadModel()
660 boolean state = etrue;
662 iModel = PrinterModelHeader::New();
664 // Record* extrainfo;
666 state = IdentCopy(iModel->iLabel);
669 while (!IdentComp(IdentEndModel) && !_EOF() && state)
671 if (iLex->iType == ELexIdent)
673 if (IdentComp(IdentModelName))
675 if (StringCopy(iModel->iEntry.iName))
676 while (iLex->iType != ELexNL)
678 if (IdentComp(IdentRequiresPrinterPort))
679 iModel->iEntry.iRequiresPrinterPort = etrue;
682 Error("Model identifier or newline expected");
689 else if (IdentComp(IdentModelUid))
690 state = Number(iModel->iEntry.iUid);
691 else if (IdentComp(IdentModelFlags))
694 iModel->iInfo.iFlags = num;
696 else if (IdentComp(IdentModelResources))
698 state = IdentCopy(label);
701 resources = iPdrModelStore.FindResources(label);
703 iModel->iInfo.iResources = resources;
706 Error("Resources not found");
711 /* else if (IdentComp(IdentSpareRecord))
713 state = IdentCopy(label);
716 extrainfo = iPdrModelStore.FindExtraInfo(label);
718 iModel->iInfo.iSpareRecord = extrainfo;
721 Error("Spare record not found");
727 else if (IdentComp(IdentKPixelWidth))
730 iModel->iInfo.iKPixelWidthInTwips = num;
734 else if (IdentComp(IdentKPixelHeight))
737 iModel->iInfo.iKPixelHeightInTwips = num;
741 else if (IdentComp(IdentPortraitOffset))
745 iModel->iInfo.iPortraitOffsetInPixels.iX = num;
747 iModel->iInfo.iPortraitOffsetInPixels.iY = num;
754 else if (IdentComp(IdentLandscapeOffset))
758 iModel->iInfo.iLandscapeOffsetInPixels.iX = num;
760 iModel->iInfo.iLandscapeOffsetInPixels.iY = num;
767 else if (IdentComp(IdentMinMarginLeft))
770 iModel->iInfo.iMinMarginsInPixels.iLeft = num;
774 else if (IdentComp(IdentMinMarginRight))
777 iModel->iInfo.iMinMarginsInPixels.iRight = num;
781 else if (IdentComp(IdentMinMarginTop))
784 iModel->iInfo.iMinMarginsInPixels.iTop = num;
788 else if (IdentComp(IdentMinMarginBottom))
791 iModel->iInfo.iMinMarginsInPixels.iBottom = num;
795 else if (IdentComp(IdentDisplayMode))
797 int i; // DEF102183: Graphics tools fail to build using MS VC8.
798 for (i = 0; (i < NumDisplayModeValues) && !IdentComp(IdentDisplayModeValue[i]); i++)
799 { // Tries to match display mode identifier
801 if (i < NumDisplayModeValues)
803 iModel->iInfo.iDisplayMode = i;
808 Error("Display mode identifier expected");
811 else if (IdentComp(IdentTypefaceFontss))
814 while (!IdentComp(IdentEndTypefaceFontss) && !_EOF() && state)
816 TypefaceFontsEntry* typefacefontsentry = NULL;
817 if (iLex->iType == ELexIdent)
819 state = IdentCopy(label);
820 Record* typefacefonts = iPdrModelStore.FindTypefaceFonts(label);
823 typefacefontsentry = TypefaceFontsEntry::New(typefacefonts);
828 Error("Typefacefonts not found");
834 while ((iLex->iType != ELexNL) && !_EOF() && state)
836 if (IdentComp(IdentNotInPortrait))
838 typefacefontsentry->iNotInPortrait = etrue;
840 else if (IdentComp(IdentNotInLandscape))
842 typefacefontsentry->iNotInLandscape = etrue;
846 Error("Typefacefontsentry identifier or newline expected");
851 iModel->iInfo.AddTypefaceFontsEntry(typefacefontsentry);
853 typefacefontsentry->Delete();
861 Error("unrecognised model identifier");
867 Error("Model identifier expected");
875 iPdrModelStore.AddModel(iModel);
876 cout << "Model read\n";
883 boolean PdrReader::ReadPdrStoreFile()
885 boolean state = etrue;
889 Error("Pdrstorefile already read");
893 iPdrStoreFile = PdrStoreFile::New();
897 while (!IdentComp(IdentEndPdrStoreFile) && !_EOF() && state)
899 if (IdentComp(IdentPDLName))
901 state = StringCopy(iPdrStoreFile->iPDLName);
903 else if (IdentComp(IdentPDLUid))
905 state = Number(iPdrStoreFile->iPDLUid);
907 else if (IdentComp(IdentModels))
910 while (!IdentComp(IdentEndModels) && !_EOF() && state)
912 state = IdentCopy(label);
915 model = iPdrModelStore.FindModel(label);
918 iPdrStoreFile->AddModel((PrinterModelHeader*)model);
922 Error("model not found");
932 Error("Pdrstorefile identifier expected");
940 iPdrModelStore.AddPdrStoreFile(iPdrStoreFile);
941 cout << "Pdrstorefile read\n";
944 iPdrStoreFile->Delete();
949 EXPORT_C boolean PdrReader::Store(const String& aFilename)
951 boolean state = etrue;
955 Error("No pdrstore file record");
958 state = iPdrModelStore.Store(aFilename);
962 boolean PdrReader::Command(String& aCommand)
964 boolean state = etrue;
966 state = StringCopy(string);
967 int length = string.Length();
968 for (int i = 0; i < length; i++)
971 if (ch == '<') // Read control character
974 for (i = i + 1; (i < length) && (string[i] != '>'); i++)
975 ch = char((ch * 10) + (string[i] - '0'));
982 boolean PdrReader::ReadExtraInfo()
984 boolean state = etrue;
986 PdrExtraInfo* extrainfo = new PdrExtraInfo();
987 state = IdentCopy(extrainfo->iLabel);
990 while (!IdentComp(IdentEndExtraInfo) && !_EOF() && state)
992 String* string = new String;
993 state = Command(*string);
995 extrainfo->iInfo.Add(string);
1002 iPdrModelStore.AddExtraInfo(extrainfo);
1003 cout << "Extra info read\n";