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 KNumberOfPopularIndices = 128;
23 const int KNumberOfBitsInByte = 8;
24 const int KNumberOfBitsInTwoBytes = 16;
26 BitmapOffset::BitmapOffset(uint16 aBitmapOffset)
27 : iBitmapOffset(aBitmapOffset)
30 void BitmapOffset::Externalize(ostream& out)
32 out.write((char*) &iBitmapOffset,sizeof(iBitmapOffset));
35 CharacterMetrics::CharacterMetrics()
38 iLeftAdjustInPixels(0),
40 iRightAdjustInPixels(0)
45 void CharacterMetrics::Externalize(ostream& out)
47 out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
48 out.write((char*) &iHeightInPixels, sizeof(iHeightInPixels));
49 out.write((char*) &iLeftAdjustInPixels, sizeof(iLeftAdjustInPixels));
50 out.write((char*) &iMoveInPixels, sizeof(iMoveInPixels));
51 out.write((char*) &iRightAdjustInPixels, sizeof(iRightAdjustInPixels));
54 MetricDistributionMember::~MetricDistributionMember()
59 MetricDistributionMember::MetricDistributionMember()
60 : iFrequency(0), iMetric(0)
63 CharacterMetrics* MetricDistributionMember::Metric() const
68 int MetricDistributionMember::Frequency() const
73 void MetricDistributionMember::SetFrequency(int aFrequency)
75 iFrequency = aFrequency;
78 void MetricDistributionMember::IncrementFrequency(int aIncrementBy)
80 iFrequency += aIncrementBy;
83 void MetricDistributionMember::SetMetric(CharacterMetrics* aMetric)
88 void MetricDistributionMember::Externalize(ostream& out)
90 iMetric->Externalize(out);
93 MetricDistribution::~MetricDistribution()
95 iCharacterMetricsList.Destroy();
98 MetricDistribution* MetricDistribution::New()
100 return new MetricDistribution;
103 MetricDistribution::MetricDistribution()
106 void MetricDistribution::SortMetricsByFrequency()
107 { // Only need sort the most popular 128, since after this 2 bytes will always be used
108 int maxIndex = iCharacterMetricsList.Size();
109 if (maxIndex > KNumberOfPopularIndices)
111 maxIndex = KNumberOfPopularIndices;
113 for(int indexToSet = 0; indexToSet < maxIndex; indexToSet++)
115 const CharacterMetrics& mostPopularRemaining = MostPopular(indexToSet);
116 SetIndex(mostPopularRemaining, indexToSet);
120 void MetricDistribution::SetIndex(const CharacterMetrics& aMetrics, int aIndexToSet)
122 int currentPos = Index(aMetrics);
123 if (currentPos != aIndexToSet)
125 MetricDistributionMember* match = iCharacterMetricsList[currentPos];
126 MetricDistributionMember* swapPos = iCharacterMetricsList[aIndexToSet];
128 CharacterMetrics* tempMet = match->Metric();
129 const int tempFreq = match->Frequency();
131 match->SetMetric(swapPos->Metric());
132 match->SetFrequency(swapPos->Frequency());
133 swapPos->SetMetric(tempMet);
134 swapPos->SetFrequency(tempFreq);
138 void MetricDistribution::AddOrIncrementMetric(const CharacterMetrics& aMetrics, int aFrequency)
140 boolean match = false;
141 const CharacterMetrics* trial = NULL;
142 MetricDistributionMember* link = NULL;
144 int maxIndex = iCharacterMetricsList.Size();
146 for(index = 0; index < maxIndex && !match; index++)
148 link = iCharacterMetricsList[index];
150 trial = link->Metric();
151 if (trial && (trial->iAscentInPixels == aMetrics.iAscentInPixels)
152 && (trial->iHeightInPixels == aMetrics.iHeightInPixels)
153 && (trial->iLeftAdjustInPixels == aMetrics.iLeftAdjustInPixels)
154 && (trial->iMoveInPixels == aMetrics.iMoveInPixels)
155 && (trial->iRightAdjustInPixels == aMetrics.iRightAdjustInPixels))
162 link->IncrementFrequency(aFrequency);
166 MetricDistributionMember* newLink = new MetricDistributionMember;
167 newLink->IncrementFrequency(aFrequency);
168 CharacterMetrics* newMetric = new CharacterMetrics(aMetrics);
169 newLink->SetMetric(newMetric);
170 iCharacterMetricsList.Add(newLink);
174 const CharacterMetrics& MetricDistribution::MostPopular(int aStartIndex)
176 // finds the most popular metric above index aStartIndex. Allows for a fairly quick sort of the metircs to be done.
177 MetricDistributionMember* link = NULL;
178 const CharacterMetrics* mostPopular = NULL;
179 int frequencyOfMostPopular = 0;
182 int total = 0; // for debugging
183 const int size = iCharacterMetricsList.Size();
184 for (count = aStartIndex; count < size; count++)
186 link = iCharacterMetricsList[count];
187 frequency = link->Frequency();
188 if (frequency>frequencyOfMostPopular)
190 mostPopular = link->Metric();
191 frequencyOfMostPopular = frequency;
198 int MetricDistribution::Index(const CharacterMetrics& aMetrics)
200 boolean same = false;
201 CharacterMetrics* match = NULL;
203 int size = iCharacterMetricsList.Size();
204 // see if we have this one already
205 for (i = 0; i < size; i++)
207 if (iCharacterMetricsList[i])
209 match = iCharacterMetricsList[i]->Metric();
211 if ((match->iAscentInPixels == aMetrics.iAscentInPixels)
212 && (match->iHeightInPixels == aMetrics.iHeightInPixels)
213 && (match->iLeftAdjustInPixels == aMetrics.iLeftAdjustInPixels)
214 && (match->iMoveInPixels == aMetrics.iMoveInPixels)
215 && (match->iRightAdjustInPixels == aMetrics.iRightAdjustInPixels))
228 void MetricDistribution::Externalize(ostream& out)
230 streamoff idOffset = iStreamId;
231 out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
232 int32 numMetrics = iCharacterMetricsList.Size();
233 out.write(reinterpret_cast<char*>(&numMetrics), sizeof(numMetrics));
236 void MetricDistribution::ExternalizeComponents(ostream& out)
238 iStreamId = out.tellp();
239 iCharacterMetricsList.Externalize(out);
242 void Characters::Externalize(ostream& out)
244 iStreamId = out.tellp();
245 iBitmapOffsetList.Externalize(out);
248 Characters::~Characters()
250 iBitmapOffsetList.Destroy();
254 : iString(), iOffset(0)
258 void ByteList::AddBit(char aBit)
263 aBit = char(aBit & mask);
264 char byte = char(aBit << iOffset);
265 int index = iString.Length() - 1;
266 iString[index] = char(iString[index] | byte);
270 void ByteList::NewByte()
277 int ByteList::Length() const
279 return iString.Length();
282 void ByteList::Externalize(ostream& out)
284 int32 length = iString.Length();
285 out.write((char*) &length, sizeof(length));
286 out.write(iString.Text(), length);
289 void CharactersBitmap::Externalize(ostream& out)
291 iStreamId = out.tellp();
292 iByteList.Externalize(out);
295 void CharactersBitmap::AddIndex(int aIndex)
296 {// Add index to metrics into the bitmap code section
297 // Use 1 byte for most popular indices, 2 bytes otherwise
299 if (aIndex < KNumberOfPopularIndices)
302 power = KNumberOfBitsInByte - 1;
307 power = KNumberOfBitsInTwoBytes - 1;
311 // Add significant bits of index.
312 for(int bitToAdd = 0; bitToAdd < power; bitToAdd++)
314 sigBit = char(aIndex >> bitToAdd);
315 iByteList.AddBit(sigBit);
319 void BitmapCodeSection::Externalize(ostream& out)
321 out.write((char*) &iStart, sizeof(iStart));
322 out.write((char*) &iEnd, sizeof(iEnd));
323 streamoff idOffset = iCharacters.iStreamId;
324 out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
325 idOffset = iCharactersBitmap.iStreamId;
326 out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
329 void BitmapCodeSection::ExternalizeComponents(ostream& out)
331 iCharacters.Externalize(out);
332 iCharactersBitmap.Externalize(out);
335 FontBitmap::FontBitmap()
336 : iPosture(PostureUpright),
337 iStrokeWeight(StrokeWeightNormal),
338 iIsProportional(efalse),
339 iCellHeightInPixels(0),
341 iMaxCharWidthInPixels(0),
342 iMaxNormalCharWidthInPixels(0),
345 iCharacterMetrics = MetricDistribution::New();
348 void FontBitmap::Externalize(ostream& out)
350 iStreamId = out.tellp();
351 out.write((char*) &iUid, sizeof(iUid));
352 out.put((char) iPosture);
353 out.put((char) iStrokeWeight);
354 out.put((char) iIsProportional);
355 out.write((char*) &iCellHeightInPixels, sizeof(iCellHeightInPixels));
356 out.write((char*) &iAscentInPixels, sizeof(iAscentInPixels));
357 out.write((char*) &iMaxCharWidthInPixels, sizeof(iMaxCharWidthInPixels));
358 out.write((char*) &iMaxNormalCharWidthInPixels, sizeof(iMaxNormalCharWidthInPixels));
359 out.write((char*) &iBitmapEncoding, sizeof(iBitmapEncoding));
360 iCharacterMetrics->Externalize(out);
361 iCodeSectionList.Externalize(out);
364 void FontBitmap::ExternalizeComponents(ostream& out)
366 // write out characters and chactersbitmap records
367 iCharacterMetrics->ExternalizeComponents(out);
368 int size = iCodeSectionList.Size();
369 for (int i = 0; i < size; i++)
371 iCodeSectionList[i]->ExternalizeComponents(out);
375 FontBitmap::~FontBitmap()
377 iCodeSectionList.Destroy();
378 delete iCharacterMetrics;
381 TypefaceFontBitmap::TypefaceFontBitmap(FontBitmap* aFontBitmap)
382 : iFontBitmap(aFontBitmap),
383 iFontBitmapUid(KNullUid),
389 TypefaceFontBitmap::TypefaceFontBitmap(uid aFontBitmapUid)
391 iFontBitmapUid(aFontBitmapUid),
397 void TypefaceFontBitmap::Externalize(ostream& out)
400 out.write((char*) &iFontBitmap->iUid, sizeof(iFontBitmap->iUid));
402 out.write((char*) &iFontBitmapUid, sizeof(iFontBitmapUid));
403 out.write((char*) &iWidthFactor, sizeof(iWidthFactor));
404 out.write((char*) &iHeightFactor, sizeof(iHeightFactor));
407 void FntTypeface::Externalize(ostream& out)
409 iStreamId = out.tellp();
410 Typeface::Externalize(out);
411 iTypefaceFontBitmapList.Externalize(out);
414 FontStoreFile::FontStoreFile()
415 : iCollectionUid(KNullUid),
416 iKPixelAspectRatio(1000),
422 void FontStoreFile::AddTypeface(FntTypeface *aTypeface)
424 iTypefaceList.Add(aTypeface);
425 for (int i = 0; i < aTypeface->iTypefaceFontBitmapList.Size(); i++)
427 if (aTypeface->iTypefaceFontBitmapList[i]->iFontBitmap)
428 iFontBitmapList.Add(aTypeface->iTypefaceFontBitmapList[i]->iFontBitmap);
432 void FontStoreFile::AddFontBitmap(FontBitmap* aFontBitmap)
434 iFontBitmapList.Add(aFontBitmap);
437 void FontStoreFile::Externalize(ostream& out)
439 ExternalizeHeader(out);
440 ExternalizeComponents(out);
443 void FontStoreFile::ExternalizeHeader(ostream& out)
445 out.write((char*) &KStoreWriteOnceLayoutUid, sizeof(KStoreWriteOnceLayoutUid));
446 out.write((char*) &KFontStoreFileUid, sizeof(KFontStoreFileUid));
447 out.write((char*) &KNullUid, sizeof(KNullUid));
448 out.write((char*) &KFontStoreFileChecksum, sizeof(KFontStoreFileChecksum));
449 streamoff idOffset = iStreamId;
450 out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
451 iStreamId = out.tellp();
452 out.write((char*) &KFnttranVersion, sizeof(KFnttranVersion));
453 out.write((char*) &iCollectionUid, sizeof(iCollectionUid));
454 out.write((char*) &iKPixelAspectRatio, sizeof(iKPixelAspectRatio));
455 idOffset = iDataStreamId;
456 out.write(reinterpret_cast<char*>(&idOffset), sizeof(idOffset));
457 iCopyrightInfo.Externalize(out);
460 void FontStoreFile::ExternalizeComponents(ostream& out)
462 iDataStreamId = out.tellp();
463 iFontBitmapList.Externalize(out);
464 iTypefaceList.Externalize(out);
465 iFontBitmapList.ExternalizeComponents(out);
468 boolean FontStore::Store(const String& aFilename)
470 boolean state = efalse;
472 String string = aFilename;
473 fout.open(string.Text(), ios::binary);
476 iFontStoreFile->Externalize(fout);
478 fout.open(string.Text(), ios::binary | ios::trunc);
479 iFontStoreFile->Externalize(fout);
486 void FontStore::AddFontStoreFile(FontStoreFile* aFontStoreFile)
488 iFontStoreFile = aFontStoreFile;
491 void FontStore::AddFontBitmap(FontBitmap *aFontBitmap)
493 iFontBitmapList.Add(aFontBitmap);
496 Record* FontStore::FindFontBitmap(String& aLabel)
498 return iFontBitmapList.LabelToRecord(aLabel);
501 void FontStore::AddTypeface(FntTypeface *aTypeface)
503 iTypefaceList.Add(aTypeface);
506 Record* FontStore::FindTypeface(String& aLabel)
508 return iTypefaceList.LabelToRecord(aLabel);
511 FontStore::FontStore()
512 : iFontStoreFile(NULL),
518 FontStore::~FontStore()
520 delete iFontStoreFile;
521 iFontBitmapList.Destroy();
522 iTypefaceList.Destroy();