os/mm/devsound/a3fintegrationtest/src/tsi_a3f_devsound_teststep.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 "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
// Common header file for all A3F DevSound Integration test steps to share macros, static functions,
sl@0
    15
// constants and enumerations.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#ifndef TSI_A3F_DEVSOUND_TESTSTEP_H
sl@0
    20
#define TSI_A3F_DEVSOUND_TESTSTEP_H
sl@0
    21
sl@0
    22
// System includes
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <testframework.h>
sl@0
    25
#include <mmf/server/sounddevice.h>
sl@0
    26
sl@0
    27
// STR_SWITCH... STR_CASE... STR_SWITCH_END macro can be used as switch case that would take string.
sl@0
    28
#define STR_SWITCH(str)  {\
sl@0
    29
		TBuf<100> __ps(str);\
sl@0
    30
		while(1) {
sl@0
    31
sl@0
    32
#define STR_SWITCH_END()  break; } }
sl@0
    33
sl@0
    34
#define STR_CASE(str) if(__ps == str)
sl@0
    35
sl@0
    36
#define DEFAULT_CASE()
sl@0
    37
sl@0
    38
// Panic function
sl@0
    39
static void Panic(const TDesC &aCategory, TInt aReason)
sl@0
    40
	{
sl@0
    41
	User::Panic(aCategory, aReason);
sl@0
    42
	}
sl@0
    43
sl@0
    44
// Constants declarations
sl@0
    45
const TInt KNameSize = 25;
sl@0
    46
const TInt KBufferLen = 256;
sl@0
    47
const TInt KMicroSecsInOneSec = 1000000;
sl@0
    48
const TInt KMicroSecsInTenSecs = 10000000;
sl@0
    49
const TInt KMicroSecsInOneMinute = 60000000;
sl@0
    50
const TInt KFrequency1 = 100;
sl@0
    51
const TInt KFrequency2 = 200;
sl@0
    52
const TInt KNULLVolume = 0;
sl@0
    53
const TInt KNULLSamples = 0;
sl@0
    54
sl@0
    55
// Enumerations
sl@0
    56
enum TDevSoundPlayState
sl@0
    57
	{
sl@0
    58
	EStatePlayStart = 0,
sl@0
    59
	EStatePlayInitializing,
sl@0
    60
	EStatePlaying,
sl@0
    61
	EStatePlayPaused,
sl@0
    62
	EStatePlayStopped
sl@0
    63
	};
sl@0
    64
sl@0
    65
enum TDevSoundPlayEvents
sl@0
    66
	{
sl@0
    67
	EEventPlayStart = 0,
sl@0
    68
	EEventInitCompletePlay,
sl@0
    69
	EEventBTBF,
sl@0
    70
	EEventPlayTimerComplete,
sl@0
    71
	EEventPlayPaused,
sl@0
    72
	EEventPlayStopped
sl@0
    73
	};
sl@0
    74
sl@0
    75
enum TPanicCodes
sl@0
    76
	{
sl@0
    77
	EFsmPausedTwice = 0,
sl@0
    78
	EFsmIncorrectErrorPassed,
sl@0
    79
	EInvalidCallbackCall
sl@0
    80
	};
sl@0
    81
sl@0
    82
#endif // TSI_A3F_DEVSOUND_TESTSTEP_H