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