os/kernelhwsrv/kerneltest/f32test/fsstress/t_remdir.cpp
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 the License "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
// f32test\fsstress\t_remdir.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#if defined(_UNICODE)
sl@0
    19
#if !defined(UNICODE)
sl@0
    20
#define UNICODE
sl@0
    21
#endif
sl@0
    22
#endif
sl@0
    23
sl@0
    24
/*
sl@0
    25
#define WIN32_LEAN_AND_MEAN
sl@0
    26
#pragma warning( disable : 4201 ) // nonstandard extension used : nameless struct/union
sl@0
    27
 #include <windows.h>
sl@0
    28
#pragma warning( default : 4201 ) // nonstandard extension used : nameless struct/union
sl@0
    29
#include <stdlib.h>
sl@0
    30
*/
sl@0
    31
#include <f32file.h>
sl@0
    32
#include <f32fsys.h>
sl@0
    33
#include <f32ver.h>
sl@0
    34
#include <e32twin.h>
sl@0
    35
#include <e32uid.h>
sl@0
    36
sl@0
    37
#include "t_remfsy.h"
sl@0
    38
sl@0
    39
sl@0
    40
sl@0
    41
//////////////////////////////////////////////////////////////////////////
sl@0
    42
//								CRemoteDirCB							//
sl@0
    43
//////////////////////////////////////////////////////////////////////////	
sl@0
    44
sl@0
    45
sl@0
    46
sl@0
    47
CRemoteDirCB::CRemoteDirCB(/*CSessionFs* aSession*/)
sl@0
    48
//
sl@0
    49
// Constructor
sl@0
    50
//
sl@0
    51
	: CDirCB(/*aSession*/),iEntry()//JCS??????????
sl@0
    52
	{
sl@0
    53
sl@0
    54
//	iWinHandle=NULL;
sl@0
    55
//	__DECLARE_NAME(_S("CRemoteDirCB"));
sl@0
    56
	}
sl@0
    57
sl@0
    58
CRemoteDirCB::~CRemoteDirCB()
sl@0
    59
//
sl@0
    60
// Destructor
sl@0
    61
//
sl@0
    62
	{
sl@0
    63
sl@0
    64
//	if (iWinHandle!=NULL && FindClose(iWinHandle)==FALSE)
sl@0
    65
//		Panic(EDirClose);
sl@0
    66
	}
sl@0
    67
sl@0
    68
TBool CRemoteDirCB::MatchUid()
sl@0
    69
//
sl@0
    70
// Match the uid ?
sl@0
    71
//
sl@0
    72
	{
sl@0
    73
sl@0
    74
	if (iUidType[0]!=TUid::Null() || iUidType[1]!=TUid::Null() || iUidType[2]!=TUid::Null())
sl@0
    75
		return(ETrue);
sl@0
    76
	return(EFalse);
sl@0
    77
	}
sl@0
    78
sl@0
    79
sl@0
    80
void CRemoteDirCB::ReadL(TEntry& /*anEntry*/)
sl@0
    81
//
sl@0
    82
//	Read the next entry from the directory
sl@0
    83
//	Dummy implementation of a pure virtual function
sl@0
    84
//
sl@0
    85
	{
sl@0
    86
	User::After(200000);	//	Wait 0.2 seconds
sl@0
    87
	}
sl@0
    88
sl@0
    89
sl@0
    90
//////////////////////////////////////////////////////////////////////////
sl@0
    91
//								CRemoteFormatCB							//
sl@0
    92
//////////////////////////////////////////////////////////////////////////	
sl@0
    93
sl@0
    94
sl@0
    95
sl@0
    96
CRemoteFormatCB::CRemoteFormatCB(/*CSessionFs* aSession*/)//???JCS
sl@0
    97
//
sl@0
    98
// Constructor
sl@0
    99
//
sl@0
   100
	:CFormatCB(/*aSession*/)
sl@0
   101
	{
sl@0
   102
sl@0
   103
	__DECLARE_NAME(_S("CRemoteFormatCB"));
sl@0
   104
	}
sl@0
   105
sl@0
   106
CRemoteFormatCB::~CRemoteFormatCB()
sl@0
   107
//
sl@0
   108
// Destructor
sl@0
   109
//
sl@0
   110
	{}
sl@0
   111
sl@0
   112
void CRemoteFormatCB::DoFormatStepL()
sl@0
   113
//
sl@0
   114
// Do Formatting
sl@0
   115
//
sl@0
   116
	{
sl@0
   117
	
sl@0
   118
	iCurrentStep=0;
sl@0
   119
	User::Leave(KErrNotSupported);
sl@0
   120
	}
sl@0
   121