sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __LANGUTILIMPL_H__
|
sl@0
|
17 |
#define __LANGUTILIMPL_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
/**
|
sl@0
|
24 |
Specifies the maximum length of the numerical part of the suffix.
|
sl@0
|
25 |
|
sl@0
|
26 |
If this is changed the documentation of the following functions
|
sl@0
|
27 |
must also be updated:
|
sl@0
|
28 |
|
sl@0
|
29 |
LangUtil::NearestLanguageFile()
|
sl@0
|
30 |
TNearestLanguageFileFinder::CountDigitsFromEndInValidSuffix()
|
sl@0
|
31 |
TNearestLanguageFileFinder::SetFileName()
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
const TInt KMaxSuffixLength = 5;
|
sl@0
|
34 |
|
sl@0
|
35 |
class RDirectoryScanner
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
@internalAll
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
virtual TInt Open(RFs& aFs, const TDesC& aMatchPattern) = 0;
|
sl@0
|
42 |
virtual TInt Next(TEntry& aOut) = 0;
|
sl@0
|
43 |
virtual void Close() = 0;
|
sl@0
|
44 |
virtual ~RDirectoryScanner() {}
|
sl@0
|
45 |
};
|
sl@0
|
46 |
|
sl@0
|
47 |
NONSHARABLE_CLASS(RRealDirectoryScanner) : public RDirectoryScanner
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
@internalAll
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
{
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
virtual TInt Open(RFs& aFs, const TDesC& aMatchPattern);
|
sl@0
|
54 |
virtual TInt Next(TEntry& aOut);
|
sl@0
|
55 |
virtual void Close();
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
RDir iDir;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
* Add a language to the end of the language path, unless it is already
|
sl@0
|
63 |
* present. On entry, the language path must have an ELangNone entry at its
|
sl@0
|
64 |
* end. This will be true on exit also.
|
sl@0
|
65 |
* @internalAll
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
void AddLanguage(TLanguagePath& aPath, TLanguage aNewLanguage);
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
* Create a language path from the current language, ideal language and locale.
|
sl@0
|
71 |
* The path may have up to eight entries in it.
|
sl@0
|
72 |
* @internalAll
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
|
sl@0
|
75 |
void MakeLanguageDowngradePath(TLanguagePath& aPath,
|
sl@0
|
76 |
TLanguage aCurrent, TLanguage aIdeal, const TLocale& aLocale);
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
* This class contains all the functions for working out the nearest language
|
sl@0
|
81 |
* file. It can be derived from for test code purposes.
|
sl@0
|
82 |
* @internalAll
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
NONSHARABLE_CLASS(TNearestLanguageFileFinder)
|
sl@0
|
85 |
{
|
sl@0
|
86 |
public:
|
sl@0
|
87 |
TNearestLanguageFileFinder(const RFs& aFs);
|
sl@0
|
88 |
TBool SetFileName(TFileName& aFileName);
|
sl@0
|
89 |
TLanguage Language();
|
sl@0
|
90 |
// put back the original suffix and drive letter
|
sl@0
|
91 |
void RepairFileName();
|
sl@0
|
92 |
// add the preset custom resource drive, if any, to iDrives.
|
sl@0
|
93 |
TInt AddCustomResourceDrive();
|
sl@0
|
94 |
// add all remaining drives to iDrives. iDrives must not have more than one
|
sl@0
|
95 |
// drive in it on entry.
|
sl@0
|
96 |
void AddAllDrives();
|
sl@0
|
97 |
// Tries to append the language code to iFileName. This is 00..09 or just the number.
|
sl@0
|
98 |
// If there was not enough space, EFalse is returned.
|
sl@0
|
99 |
TBool AppendLanguageCode(TLanguage aLanguage);
|
sl@0
|
100 |
// Search the drives in iDrives for the file named iFileName.
|
sl@0
|
101 |
// iFileName must have a drive specifier, which will be overwritten.
|
sl@0
|
102 |
TBool FindDrive();
|
sl@0
|
103 |
// Search for files across all drives in all languages in the path plus the
|
sl@0
|
104 |
// language-neutral file.
|
sl@0
|
105 |
// On entry, iFileName should be the original name with a drive specifier
|
sl@0
|
106 |
// minus the suffix. On return, iFileName will be untouched if EFalse is
|
sl@0
|
107 |
// returned, but contain the result if ETrue is returned.
|
sl@0
|
108 |
TBool FindLanguageAndDrive();
|
sl@0
|
109 |
// Test whether the filename passed in matches the stem given + numbers
|
sl@0
|
110 |
// added to the end. Returns the number if it does, or KErrNotFound if not.
|
sl@0
|
111 |
// aFileName must not end in a digit.
|
sl@0
|
112 |
static TInt LanguageNumberFromFile(const TDesC& aFileName, const TDesC& aStem);
|
sl@0
|
113 |
// Find lowest numbered file that matches iFileName, which must be without
|
sl@0
|
114 |
// its suffix.
|
sl@0
|
115 |
TInt FindFirstLanguageFile(RFs&);
|
sl@0
|
116 |
// Try each drive for any language files that match iFileName.
|
sl@0
|
117 |
// iFileName must have a directory specifier and be without its suffix.
|
sl@0
|
118 |
// returns KErrNotFound, KErrNone or error code.
|
sl@0
|
119 |
TInt FindFirstLanguageFileAndDrive();
|
sl@0
|
120 |
|
sl@0
|
121 |
virtual TInt GetCustomResourceDriveNumber() const;
|
sl@0
|
122 |
|
sl@0
|
123 |
virtual TInt FileExists(const TDesC& aFileName) const;
|
sl@0
|
124 |
// return our member that is our directory scanning class
|
sl@0
|
125 |
virtual RDirectoryScanner& DirectoryScanner();
|
sl@0
|
126 |
virtual ~TNearestLanguageFileFinder() {}
|
sl@0
|
127 |
|
sl@0
|
128 |
private:
|
sl@0
|
129 |
TInt CountDigitsFromEnd(const TDesC& aFilename);
|
sl@0
|
130 |
TInt CountDigitsFromEndInSuffix (const TDesC& aFilename);
|
sl@0
|
131 |
|
sl@0
|
132 |
public:
|
sl@0
|
133 |
const RFs& iFs;
|
sl@0
|
134 |
TFileName* iFileName;
|
sl@0
|
135 |
TLanguage iLanguage;
|
sl@0
|
136 |
TBuf<26> iDrives;
|
sl@0
|
137 |
TLanguagePath iPath;
|
sl@0
|
138 |
TBuf<KMaxSuffixLength> iSuffix;
|
sl@0
|
139 |
TInt iInitialDriveLetter;
|
sl@0
|
140 |
// length minus the removed suffix
|
sl@0
|
141 |
TInt iOriginalBaseLength;
|
sl@0
|
142 |
// length plus added drive letter minus removed suffix
|
sl@0
|
143 |
TInt iBaseLength;
|
sl@0
|
144 |
RRealDirectoryScanner iDirScanner;
|
sl@0
|
145 |
};
|
sl@0
|
146 |
|
sl@0
|
147 |
#endif // __LANGUTILIMPL_H__
|
sl@0
|
148 |
|