diff -r 000000000000 -r bde4ae8d615e os/kernelhwsrv/kerneltest/f32test/testfsys/t_tfsys.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/kernelhwsrv/kerneltest/f32test/testfsys/t_tfsys.cpp Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,142 @@ +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of the License "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// f32test\testfsys\t_tfsys.cpp +// +// + +#include "t_tfsys.h" + + +const TInt KMajorVersionNumber=1; +const TInt KMinorVersionNumber=0; + +CTestFileSystem::CTestFileSystem() +// +// Constructor +// + { + __DECLARE_NAME(_S("CTestFileSystem")); + } + +CTestFileSystem::~CTestFileSystem() +// +// Destructor +// + {} + +TInt CTestFileSystem::Install() +// +// Install the file system +// + { + iVersion=TVersion(KMajorVersionNumber,KMinorVersionNumber,KF32BuildVersionNumber); + TPtrC name=_L("Test"); + return(SetName(&name)); + } + +CMountCB* CTestFileSystem::NewMountL() const +// +// Create a new mount control block +// + { + return (new(ELeave) CTestMountCB); + } + +CFileCB* CTestFileSystem::NewFileL() const +// +// Create a new file +// + { + return (new(ELeave) CTestFileCB); + } + +CDirCB* CTestFileSystem::NewDirL() const +// +// create a new directory lister +// + { + return (new(ELeave) CTestDirCB); + } + +CFormatCB* CTestFileSystem::NewFormatL() const +// +// Create a new media formatter +// + { + return (new(ELeave) CTestFormatCB); + } + +TInt CTestFileSystem::DefaultPath(TDes& aPath) const +// +// Return the intial default path +// + { + aPath=_L("C:\\"); + return (KErrNone); + } + + +/** +Reports whether the specified interface is supported - if it is, +the supplied interface object is modified to it + +@param aInterfaceId The interface of interest +@param aInterface The interface object +@return KErrNone if the interface is supported, otherwise KErrNotFound + +@see CFileSystem::GetInterface() +*/ +TInt CTestFileSystem::GetInterface(TInt aInterfaceId, TAny*& aInterface,TAny* aInput) + { + switch(aInterfaceId) + { + case CFileSystem::EProxyDriveSupport: // The FAT Filesystem supports proxy drives + return KErrNone; + + default: + return(CFileSystem::GetInterface(aInterfaceId, aInterface, aInput)); + } + } + +CFileSystem* CTestFileSystem::NewL() +// +// +// + { + CFileSystem* testFSys = new(ELeave) CTestFileSystem; + return testFSys; + } + + +CTestMountCB::CTestMountCB(){}; +CTestMountCB::~CTestMountCB(){}; +CTestDirCB::CTestDirCB(){}; +CTestDirCB::~CTestDirCB(){}; +CTestFileCB::CTestFileCB(){}; +CTestFileCB::~CTestFileCB(){}; +CTestFormatCB::CTestFormatCB(){}; +CTestFormatCB::~CTestFormatCB(){}; + + +extern "C" { + +EXPORT_C CFileSystem* CreateFileSystem() +// +// Create a new file system +// + { + return(CTestFileSystem::NewL()); + } +} +