mmmw_plat/openmax_al_api/tsrc/openmaxaltestmodule/src/common/openmaxalstrminfoitftests.cpp
branchRCL_3
changeset 45 095bea5f582e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmmw_plat/openmax_al_api/tsrc/openmaxaltestmodule/src/common/openmaxalstrminfoitftests.cpp	Tue Aug 31 15:43:02 2010 +0300
@@ -0,0 +1,298 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+* 
+* Description: This file contains testclass implementation.
+*
+*/
+
+// [INCLUDE FILES] - do not remove
+#include <e32svr.h>
+#include <StifParser.h>
+#include <StifTestInterface.h>
+#include "openmaxaltestmodule.h"
+
+// EXTERNAL DATA STRUCTURES
+//extern  ?external_data;
+
+// EXTERNAL FUNCTION PROTOTYPES  
+//extern ?external_function( ?arg_type,?arg_type );
+
+// CONSTANTS
+//const ?type ?constant_var = ?constant;
+
+// MACROS
+//#define ?macro ?macro_def
+
+// LOCAL CONSTANTS AND MACROS
+//const ?type ?constant_var = ?constant;
+//#define ?macro_name ?macro_def
+
+// MODULE DATA STRUCTURES
+//enum ?declaration
+//typedef ?declaration
+
+// LOCAL FUNCTION PROTOTYPES
+//?type ?function_name( ?arg_type, ?arg_type );
+
+// FORWARD DECLARATIONS
+//class ?FORWARD_CLASSNAME;
+void StreamEventChangeCallback (
+        XAStreamInformationItf caller,
+        XAuint32 eventId,
+        XAuint32 streamIndex,
+        void * pEventData,
+        void * pContext
+);
+
+
+// ============================= LOCAL FUNCTIONS ===============================
+
+// -----------------------------------------------------------------------------
+// ?function_name ?description.
+// ?description
+// Returns: ?value_1: ?description
+//          ?value_n: ?description_line1
+//                    ?description_line2
+// -----------------------------------------------------------------------------
+//
+/*
+?type ?function_name(
+    ?arg_type arg,  // ?description
+    ?arg_type arg)  // ?description
+    {
+
+    ?code  // ?comment
+
+    // ?comment
+    ?code
+    }
+*/
+ 
+TInt COpenMAXALTestModule::al_strminfoitf_QueryMediaContainerInformation( CStifItemParser& /*aItem*/ )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    XAMediaContainerInformation info;
+    
+    if(m_StrInfoItf)
+        {
+        res = (*m_StrInfoItf)->QueryMediaContainerInformation(m_StrInfoItf,&info);
+        status = res;
+        }
+    else
+        {
+        status = KErrNotFound;
+        }
+    return status;    
+    }
+
+TInt COpenMAXALTestModule::al_strminfoitf_QueryStreamType( CStifItemParser& aItem )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    TInt index(0);
+    XAuint32 streamType;
+
+    status = aItem.GetNextInt(index);
+    if(!status)
+        {
+        if(m_StrInfoItf)
+            {
+            res = (*m_StrInfoItf)->QueryStreamType(m_StrInfoItf,index, &streamType);
+            status = res;
+            }
+        else
+            {
+            status = KErrNotFound;
+            }
+        }
+    else
+        {
+        status = KErrGeneral;
+        }
+    return status;            
+    }
+
+TInt COpenMAXALTestModule::al_strminfoitf_QueryStreamInformation( CStifItemParser& aItem )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    TInt streamindex(0);
+    void* info = NULL;
+    XAuint32 domain;
+    XAAudioStreamInformation audioinfo;
+    XAVideoStreamInformation videoinfo;
+    
+    status = aItem.GetNextInt(streamindex);
+    RET_ERR_IF_ERR(status);
+    
+    if(m_StrInfoItf)
+        {
+        res = (*m_StrInfoItf)->QueryStreamType(m_StrInfoItf,streamindex, &domain);
+        status = res;
+        }
+    else
+        {
+        status = KErrNotFound;
+        }
+    
+    if(domain == XA_DOMAINTYPE_AUDIO)
+        {
+        info = &audioinfo;
+        }
+    else if ( domain == XA_DOMAINTYPE_VIDEO)
+        {
+        info = &videoinfo;
+        }
+    
+    if(!status)
+        {
+        if(m_StrInfoItf)
+            {
+            res = (*m_StrInfoItf)->QueryStreamInformation(m_StrInfoItf,streamindex, info);
+            status = res;
+            }
+        else
+            {
+            status = KErrNotFound;
+            }
+        }
+    else
+        {
+        status = KErrGeneral;
+        }
+    return status;        
+    }
+
+TInt COpenMAXALTestModule::al_strminfoitf_QueryStreamName( CStifItemParser& aItem )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    TInt streamindex(0);
+    XAuint16 size;
+
+    status = aItem.GetNextInt(streamindex);
+    if(!status)
+        {
+        if(m_StrInfoItf)
+            {
+            res = (*m_StrInfoItf)->QueryStreamName(m_StrInfoItf,streamindex, &size, NULL);
+            status = res;
+            }
+        else
+            {
+            status = KErrNotFound;
+            }
+        }
+    else
+        {
+        status = KErrGeneral;
+        }
+    return status;       
+    }
+
+TInt COpenMAXALTestModule::al_strminfoitf_RegisterStreamChangeCallback( CStifItemParser& /*aItem*/ )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    if(m_StrInfoItf)
+        {
+        res = (*m_StrInfoItf)->RegisterStreamChangeCallback(m_StrInfoItf,StreamEventChangeCallback,(void*)this);
+        status = res;
+        }
+    else
+        {
+        status = KErrNotFound;
+        }
+    return status;    
+    }
+
+TInt COpenMAXALTestModule::al_strminfoitf_QueryActiveStreams( CStifItemParser& aItem )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    XAuint32 size(0);
+    TInt inpsize;
+    XAboolean arr[2];
+    
+    status = aItem.GetNextInt(inpsize);
+    if(!status)
+        {
+        if(m_StrInfoItf)
+            {
+            size = inpsize;
+            res = (*m_StrInfoItf)->QueryActiveStreams(m_StrInfoItf, &size, arr);
+            status = res;
+            }
+        else
+            {
+            status = KErrNotFound;
+            }
+        }
+    else
+        {
+        if(m_StrInfoItf)
+            {
+            res = (*m_StrInfoItf)->QueryActiveStreams(m_StrInfoItf,&size, NULL);
+            status = res;
+            }
+        else
+            {
+            status = KErrNotFound;
+            }
+        }
+    return status;     
+    }
+
+TInt COpenMAXALTestModule::al_strminfoitf_SetActiveStream( CStifItemParser& aItem )
+    {
+    TInt status(KErrNone);
+    XAresult res;
+    TInt streamindex(0);
+    XAboolean active;
+    XAboolean commitnow;
+    TInt value;
+    
+    status = aItem.GetNextInt(streamindex);
+    RET_ERR_IF_ERR(status);
+    
+    status = aItem.GetNextInt(value);
+    RET_ERR_IF_ERR(status);
+    active = value;
+
+    status = aItem.GetNextInt(value);
+    RET_ERR_IF_ERR(status);
+    commitnow = value;
+    
+    if(m_StrInfoItf)
+        {
+        res = (*m_StrInfoItf)->SetActiveStream(m_StrInfoItf,streamindex, active, commitnow);
+        status = res;
+        }
+    else
+        {
+        status = KErrNotFound;
+        }
+    return status;          
+    }
+
+void StreamEventChangeCallback (
+        XAStreamInformationItf caller,
+        XAuint32 eventId,
+        XAuint32 streamIndex,
+        void * pEventData,
+        void * pContext
+)
+    {
+    
+    }