os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,76 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Implementation of the State Accessor class for CDiscoverer
1.18 +//
1.19 +//
1.20 +
1.21 +#include "DiscovererStateAccessor.h"
1.22 +
1.23 +// ______________________________________________________________________________
1.24 +//
1.25 +void TDiscoverer_StateAccessor::Notification(TAny* aTestObject)
1.26 + {
1.27 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.28 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.29 + discoverer->Notification(KErrNone);
1.30 + }
1.31 +
1.32 +void TDiscoverer_StateAccessor::ScanDirectoryL(TAny* aTestObject)
1.33 + {
1.34 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.35 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.36 + discoverer->ScanDirectoryL();
1.37 + }
1.38 +
1.39 +void TDiscoverer_StateAccessor::ScanDirectoryCancel(TAny* aTestObject)
1.40 + {
1.41 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.42 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.43 + discoverer->ScanDirectoryCancel();
1.44 + }
1.45 +
1.46 +void TDiscoverer_StateAccessor::CompleteNotificationProcessing(TAny* aTestObject)
1.47 + {
1.48 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.49 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.50 + discoverer->CompleteNotificationProcessing();
1.51 + }
1.52 +
1.53 +void TDiscoverer_StateAccessor::ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill)
1.54 + {
1.55 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.56 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.57 + discoverer->ValidateEntryL(anEntry, aPath, anEntryToFill);
1.58 + }
1.59 +
1.60 +void TDiscoverer_StateAccessor::ProcessEntryL(TAny* aTestObject, const TEntry& anEntry)
1.61 + {
1.62 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.63 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.64 + discoverer->ProcessEntryL(anEntry);
1.65 + }
1.66 +
1.67 +void TDiscoverer_StateAccessor::DriveMountedL(TAny* aTestObject, TDriveUnit aDrive)
1.68 + {
1.69 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.70 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.71 + discoverer->DriveMountedL(aDrive);
1.72 + }
1.73 +
1.74 +void TDiscoverer_StateAccessor::DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive)
1.75 + {
1.76 + CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
1.77 + __ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
1.78 + discoverer->DriveUnmountedL(aDrive);
1.79 + }