os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererStateAccessor.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.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Implementation of the State Accessor class for CDiscoverer
    15 // 
    16 //
    17 
    18 #include "DiscovererStateAccessor.h"
    19 
    20 // ______________________________________________________________________________
    21 //
    22 void TDiscoverer_StateAccessor::Notification(TAny* aTestObject)
    23 	{
    24 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    25 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    26 	discoverer->Notification(KErrNone);
    27 	}
    28 
    29 void TDiscoverer_StateAccessor::ScanDirectoryL(TAny* aTestObject)
    30 	{
    31 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    32 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    33 	discoverer->ScanDirectoryL();
    34 	}
    35 
    36 void TDiscoverer_StateAccessor::ScanDirectoryCancel(TAny* aTestObject)
    37 	{
    38 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    39 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    40 	discoverer->ScanDirectoryCancel();
    41 	}
    42 
    43 void TDiscoverer_StateAccessor::CompleteNotificationProcessing(TAny* aTestObject)
    44 	{
    45 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    46 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    47 	discoverer->CompleteNotificationProcessing();
    48 	}
    49 
    50 void TDiscoverer_StateAccessor::ValidateEntryL(TAny* aTestObject, const TEntry& anEntry, const TParse& aPath, TEntry*& anEntryToFill)
    51 	{
    52 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    53 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    54 	discoverer->ValidateEntryL(anEntry, aPath, anEntryToFill);
    55 	}
    56 
    57 void TDiscoverer_StateAccessor::ProcessEntryL(TAny* aTestObject, const TEntry& anEntry)
    58 	{
    59 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    60 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    61 	discoverer->ProcessEntryL(anEntry);
    62 	}
    63 
    64 void TDiscoverer_StateAccessor::DriveMountedL(TAny* aTestObject, TDriveUnit aDrive)
    65 	{
    66 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    67 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    68 	discoverer->DriveMountedL(aDrive);
    69 	}
    70 
    71 void TDiscoverer_StateAccessor::DriveUnmountedL(TAny* aTestObject, TDriveUnit aDrive)
    72 	{
    73 	CDiscoverer* discoverer = REINTERPRET_CAST(CDiscoverer*, aTestObject);
    74 	__ASSERT_DEBUG(discoverer!=NULL, User::Invariant());
    75 	discoverer->DriveUnmountedL(aDrive);
    76 	}