Update contrib.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 // Declarations for some internal BAFL functions
22 Specifies the maximum length of the numerical part of the suffix.
24 If this is changed the documentation of the following functions
27 BaflUtils::NearestLanguageFile()
28 TNearestLanguageFileFinder::CountDigitsFromEndInValidSuffix()
29 TNearestLanguageFileFinder::SetFileName()
31 const TInt KMaxSuffixLength = 5;
33 class RDirectoryScanner
39 virtual TInt Open(RFs& aFs, const TDesC& aMatchPattern) = 0;
40 virtual TInt Next(TEntry& aOut) = 0;
41 virtual void Close() = 0;
42 virtual ~RDirectoryScanner() {}
45 NONSHARABLE_CLASS(RRealDirectoryScanner) : public RDirectoryScanner
51 virtual TInt Open(RFs& aFs, const TDesC& aMatchPattern);
52 virtual TInt Next(TEntry& aOut);
59 * Add a language to the end of the language path, unless it is already
60 * present. On entry, the language path must have an ELangNone entry at its
61 * end. This will be true on exit also.
64 void AddLanguage(TLanguagePath& aPath, TLanguage aNewLanguage);
67 * Create a language path from the current language, ideal language and locale.
68 * The path may have up to eight entries in it.
72 void MakeLanguageDowngradePath(TLanguagePath& aPath,
73 TLanguage aCurrent, TLanguage aIdeal, const TLocale& aLocale);
77 * This class contains all the functions for working out the nearest language
78 * file. It can be derived from for test code purposes.
81 NONSHARABLE_CLASS(TNearestLanguageFileFinder)
84 TNearestLanguageFileFinder(const RFs& aFs);
85 TBool SetFileName(TFileName& aFileName);
87 // put back the original suffix and drive letter
88 void RepairFileName();
89 // add the preset custom resource drive, if any, to iDrives.
90 TInt AddCustomResourceDrive();
91 // add all remaining drives to iDrives. iDrives must not have more than one
92 // drive in it on entry.
94 // Tries to append the language code to iFileName. This is 00..09 or just the number.
95 // If there was not enough space, EFalse is returned.
96 TBool AppendLanguageCode(TLanguage aLanguage);
97 // Search the drives in iDrives for the file named iFileName.
98 // iFileName must have a drive specifier, which will be overwritten.
100 // Search for files across all drives in all languages in the path plus the
101 // language-neutral file.
102 // On entry, iFileName should be the original name with a drive specifier
103 // minus the suffix. On return, iFileName will be untouched if EFalse is
104 // returned, but contain the result if ETrue is returned.
105 TBool FindLanguageAndDrive();
106 // Test whether the filename passed in matches the stem given + numbers
107 // added to the end. Returns the number if it does, or KErrNotFound if not.
108 // aFileName must not end in a digit.
109 static TInt LanguageNumberFromFile(const TDesC& aFileName, const TDesC& aStem);
110 // Find lowest numbered file that matches iFileName, which must be without
112 TInt FindFirstLanguageFile(RFs&);
113 // Try each drive for any language files that match iFileName.
114 // iFileName must have a directory specifier and be without its suffix.
115 // returns KErrNotFound, KErrNone or error code.
116 TInt FindFirstLanguageFileAndDrive();
118 virtual TInt GetCustomResourceDriveNumber() const;
120 virtual TInt FileExists(const TDesC& aFileName) const;
121 // return our member that is our directory scanning class
122 virtual RDirectoryScanner& DirectoryScanner();
123 virtual ~TNearestLanguageFileFinder() {}
126 TInt CountDigitsFromEnd(const TDesC& aFilename);
127 TInt CountDigitsFromEndInSuffix (const TDesC& aFilename);
131 TFileName* iFileName;
135 TBuf<KMaxSuffixLength> iSuffix;
136 TInt iInitialDriveLetter;
137 // length minus the removed suffix
138 TInt iOriginalBaseLength;
139 // length plus added drive letter minus removed suffix
141 RRealDirectoryScanner iDirScanner;