os/ossrv/lowlevellibsandfws/apputils/inc/BAUTILS.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#if !defined(__BAUTILS_H__)
sl@0
    17
#define __BAUTILS_H__
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include <f32file.h>
sl@0
    21
#include <barsread.h>
sl@0
    22
#include <badesca.h>
sl@0
    23
sl@0
    24
/**
sl@0
    25
@publishedAll
sl@0
    26
@released
sl@0
    27
*/
sl@0
    28
const TUint KBaflCharTruncation=0x2026; // Unicode's "horizontal ellipsis"
sl@0
    29
sl@0
    30
/**
sl@0
    31
There are at most 16 languages in the language downgrade path.
sl@0
    32
The end of the language path is marked by an ELangNone.
sl@0
    33
@publishedAll
sl@0
    34
@released
sl@0
    35
*/
sl@0
    36
const TInt KMaxDowngradeLanguages = 16;
sl@0
    37
sl@0
    38
/**
sl@0
    39
@publishedAll
sl@0
    40
@released
sl@0
    41
*/
sl@0
    42
typedef TLanguage TLanguagePath[KMaxDowngradeLanguages + 1];
sl@0
    43
sl@0
    44
class RFs;
sl@0
    45
class CBaflFileSortTable;
sl@0
    46
class TDigitizerCalibration;
sl@0
    47
sl@0
    48
sl@0
    49
class BaflUtils
sl@0
    50
/** 
sl@0
    51
Provides simple-to-use file system utilities.
sl@0
    52
sl@0
    53
The functions listed in "Copying, renaming, and deleting files" create and 
sl@0
    54
use a CFileMan object. They are useful for one-off calls, but for repeated 
sl@0
    55
use it is more efficient to use CFileMan directly.
sl@0
    56
sl@0
    57
Note that there is a very similiar group of functions available in EikFileUtils, 
sl@0
    58
which may be easier to use in GUI applications, as they do not require a file 
sl@0
    59
server session to be passed.
sl@0
    60
sl@0
    61
@see CFileMan
sl@0
    62
@see EikFileUtils 
sl@0
    63
@publishedAll
sl@0
    64
@released
sl@0
    65
*/
sl@0
    66
	{
sl@0
    67
public:
sl@0
    68
	IMPORT_C static void CopyWithTruncation(TDes& aDest,const TDesC& aSrc,TChar aTruncationSymbol=KBaflCharTruncation);
sl@0
    69
	IMPORT_C static TBool FileExists(const RFs& aFs,const TDesC& aFileName);
sl@0
    70
	IMPORT_C static void EnsurePathExistsL(RFs& aFs,const TDesC& aFileName);
sl@0
    71
	IMPORT_C static TPtrC ExtractAppNameFromFullName(const TFullName &aName);
sl@0
    72
	IMPORT_C static void NearestLanguageFile(const RFs& aFs,TFileName& aName);
sl@0
    73
	IMPORT_C static void NearestLanguageFile(const RFs& aFs,TFileName& aName, TLanguage& aLanguage);
sl@0
    74
	IMPORT_C static TInt SetIdealLanguage(TLanguage aLanguage);
sl@0
    75
	IMPORT_C static TLanguage IdealLanguage();
sl@0
    76
	IMPORT_C static void ReleaseIdealLanguage();
sl@0
    77
	IMPORT_C static TInt GetSystemDrive(TDriveNumber& aDriveNumber);
sl@0
    78
	IMPORT_C static TBool PathExists(RFs& aFs,const TDesC& aFileName);
sl@0
    79
	IMPORT_C static TInt IsFolder(const RFs& aFs, const TDesC& aFullName, TBool& aIsFolder);
sl@0
    80
	IMPORT_C static TBool FolderExists(RFs& aFs, const TDesC& aFolderName);
sl@0
    81
	IMPORT_C static TFileName FolderNameFromFullName(const TDesC& aFullName);
sl@0
    82
	IMPORT_C static TFileName DriveAndPathFromFullName(const TDesC& aFullName);
sl@0
    83
	IMPORT_C static TFileName RootFolderPath(const TBuf<1> aDriveLetter);
sl@0
    84
	IMPORT_C static void AbbreviateFileName(const TFileName& aOriginalFileName, TDes& aAbbreviatedFileName);
sl@0
    85
	IMPORT_C static TBool UidTypeMatches(const TUidType& aFileUid, const TUidType& aMatchUid);
sl@0
    86
	IMPORT_C static TInt Parse(const TDesC& aName);
sl@0
    87
	IMPORT_C static TInt ValidateFolderNameTypedByUserL(const RFs& aFs, const TDesC& aFolderNameTypedByUser, const TDesC& aCurrentPath, TFileName& aNewFolderFullName);
sl@0
    88
	IMPORT_C static TInt CopyFile(RFs& aFs, const TDesC& aSourceFullName, const TDesC& aTargetFullName, TUint aSwitch = CFileMan::EOverWrite);
sl@0
    89
	IMPORT_C static TInt RenameFile(RFs& aFs, const TDesC& aOldFullName, const TDesC& aNewFullName, TUint aSwitch = CFileMan::EOverWrite);
sl@0
    90
	IMPORT_C static TInt DeleteFile(RFs& aFs, const TDesC& aSourceFullName, TUint aSwitch = 0);
sl@0
    91
	IMPORT_C static TInt CheckWhetherFullNameRefersToFolder(const TDesC& aFullName, TBool& aIsFolder);
sl@0
    92
	IMPORT_C static TInt MostSignificantPartOfFullName(const TDesC& aFullName, TFileName& aMostSignificantPart);
sl@0
    93
	IMPORT_C static TInt CheckFolder(RFs& aFs, const TDesC& aFolderName);
sl@0
    94
	IMPORT_C static TInt DiskIsReadOnly(RFs& aFs, const TDesC& aFullName, TBool& aIsReadOnly);
sl@0
    95
	IMPORT_C static TInt DriveIsReadOnlyInternal(RFs& aFs, const TDesC& aFullName, TBool& aIsReadOnlyInternal);
sl@0
    96
	IMPORT_C static void GetDiskListL(const RFs& aFs,CDesCArray& aArray);
sl@0
    97
	IMPORT_C static void UpdateDiskListL(const RFs& aFs,CDesCArray& aArray,TBool aIncludeRom,TDriveNumber aDriveNumber);
sl@0
    98
	IMPORT_C static void RemoveSystemDirectory(CDir& aDir);
sl@0
    99
	IMPORT_C static TBool IsFirstDriveForSocket(TDriveUnit aDriveUnit);
sl@0
   100
	IMPORT_C static TInt SortByTable(CDir& aDir,CBaflFileSortTable* aTable);
sl@0
   101
	IMPORT_C static void GetDowngradePathL(const RFs& aFs, const TLanguage aCurrentLanguage, RArray<TLanguage>& aLanguageArray);
sl@0
   102
	IMPORT_C static void PersistLocale();
sl@0
   103
	IMPORT_C static TInt PersistHAL();
sl@0
   104
	IMPORT_C static void PersistScreenCalibration(const TDigitizerCalibration& aScreenCalibration);
sl@0
   105
	IMPORT_C static void InitialiseScreenCalibration(RFs& aFs);
sl@0
   106
	IMPORT_C static void InitialiseHAL(RFs& aFs);
sl@0
   107
	IMPORT_C static void InitialiseLocale(RFs& aFs);
sl@0
   108
	IMPORT_C static void GetEquivalentLanguageList(TLanguage aLang, TLanguagePath& aEquivalents);
sl@0
   109
	IMPORT_C static void NearestLanguageFileV2(const RFs& aFs,TFileName& aName, TLanguage& aLanguage);
sl@0
   110
sl@0
   111
private:
sl@0
   112
	static void DoCopyFileL(RFs& aFs, const TDesC& aSourceFullName, const TDesC& aTargetFullName, TUint aSwitch);
sl@0
   113
	static void DoRenameFileL(RFs& aFs, const TDesC& aOldFullName, const TDesC& aNewFullName, TUint aSwitch);
sl@0
   114
	static void DoDeleteFileL(RFs& aFs, const TDesC& aSourceFullName, TUint aSwitch);
sl@0
   115
	};
sl@0
   116
sl@0
   117
sl@0
   118
/**
sl@0
   119
 * Bafl File Sort Table containing an array of UIDs.
sl@0
   120
 * @publishedAll
sl@0
   121
 * @released
sl@0
   122
 */	
sl@0
   123
class CBaflFileSortTable : public CArrayFixFlat<TUid>
sl@0
   124
 	{
sl@0
   125
public:
sl@0
   126
	IMPORT_C CBaflFileSortTable();
sl@0
   127
	IMPORT_C void ConstructFromResourceL(TResourceReader& aReader);
sl@0
   128
private:
sl@0
   129
	enum {EArrayGranularity=4};
sl@0
   130
	};
sl@0
   131
sl@0
   132
#endif