os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.cpp
Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implementation of the State Accessor class for CDiscoverer
18 #include "DiscovererStateAccessor.h"
20 // ______________________________________________________________________________
22 void TDiscoverer_StateAccessor::Notification(TAny* aTestObject)
24 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
25 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
26 discoverer->Notification(KErrNone);
29 void TDiscoverer_StateAccessor::ScanDirectoryL(TAny* aTestObject)
31 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
32 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
33 discoverer->ScanDirectoryL();
36 void TDiscoverer_StateAccessor::ScanDirectoryCancel(TAny* aTestObject)
38 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
39 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
40 discoverer->ScanDirectoryCancel();
43 void TDiscoverer_StateAccessor::CompleteNotificationProcessing(TAny* aTestObject)
45 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
46 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
47 discoverer->CompleteNotificationProcessing();
50 void TDiscoverer_StateAccessor::ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill)
52 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
53 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
54 discoverer->ValidateEntryL(anEntry, aPath, anEntryToFill);
57 void TDiscoverer_StateAccessor::ProcessEntryL(TAny* aTestObject, const TEntry& anEntry)
59 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
60 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
61 discoverer->ProcessEntryL(anEntry);
64 void TDiscoverer_StateAccessor::DriveMountedL(TAny* aTestObject, TDriveUnit aDrive)
66 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
67 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
68 discoverer->DriveMountedL(aDrive);
71 void TDiscoverer_StateAccessor::DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive)
73 CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
74 __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
75 discoverer->DriveUnmountedL(aDrive);