blob: 7ec5adc66d33f4219668137c2a2e0ad5450ba3f8 [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
* -------------------------------------------------------------------
*/
#include "video_preview_test.h"
void video_preview_test::test()
{
fprintf(fileoutput, "Start video preview test, num runs %d, proxy %d.\n", iMaxRuns, iUseProxy);
int error = 0;
scheduler = OsclExecScheduler::Current();
this->AddToScheduler();
if (start_async_test())
{
OSCL_TRY(error, scheduler->StartScheduler());
if (error != 0)
{
OSCL_LEAVE(error);
}
}
destroy_sink_source();
this->RemoveFromScheduler();
}
void video_preview_test::Run()
{
if (terminal)
{
if (iUseProxy)
{
CPV2WayProxyFactory::DeleteTerminal(terminal);
}
else
{
CPV2WayEngineFactory::DeleteTerminal(terminal);
}
terminal = NULL;
}
scheduler->StopScheduler();
}
void video_preview_test::DoCancel()
{
}
void video_preview_test::HandleInformationalEventL(const CPVCmnAsyncInfoEvent& aEvent)
{
int error = 0;
switch (aEvent.GetEventType())
{
case PVT_INDICATION_INCOMING_TRACK:
TPVChannelId id;
if (((CPVCmnAsyncEvent&)aEvent).GetLocalBuffer()[0] == PV_VIDEO)
{
OSCL_TRY(error, iVideoAddSinkId = terminal->AddDataSinkL(*iVideoSink, id));
if (error)
{
test_is_true(false);
disconnect();
}
}
break;
case PVT_INDICATION_DISCONNECT:
iAudioSourceAdded = false;
iVideoSourceAdded = false;
iAudioSinkAdded = false;
iVideoSinkAdded = false;
break;
case PVT_INDICATION_CLOSE_TRACK:
if (((CPVCmnAsyncEvent&)aEvent).GetLocalBuffer()[0] == PV_VIDEO)
{
if (((CPVCmnAsyncEvent&)aEvent).GetLocalBuffer()[1] == INCOMING)
{
iVideoSinkAdded = false;
}
else
{
iVideoSourceAdded = false;
}
if (check_video_stopped())
{
disconnect();
}
}
break;
case PVT_INDICATION_INTERNAL_ERROR:
break;
default:
break;
}
}
void video_preview_test::CommandCompletedL(const CPVCmnCmdResp& aResponse)
{
int error = 0;
switch (aResponse.GetCmdType())
{
case PVT_COMMAND_INIT:
if (aResponse.GetCmdStatus() == PVMFSuccess)
{
OSCL_TRY(error, terminal->ConnectL(iConnectOptions));
if (error)
{
test_is_true(false);
reset();
}
else
{
}
}
else
{
test_is_true(false);
RunIfNotReady();
}
break;
case PVT_COMMAND_RESET:
RunIfNotReady();
break;
case PVT_COMMAND_ADD_DATA_SOURCE:
if (aResponse.GetCmdId() == iVideoAddSourceId)
{
if (aResponse.GetCmdStatus() == PVMFSuccess)
{
iVideoSourceAdded = true;
if (check_video_started())
{
OSCL_TRY(error, terminal->AddPreviewSinkL(*iVideoSource, *iVideoPreview));
if (error)
{
test_is_true(false);
disconnect();
}
}
}
else
{
test_is_true(false);
disconnect();
}
iVideoAddSourceId = 0;
}
break;
case PVT_COMMAND_REMOVE_DATA_SOURCE:
if (aResponse.GetCmdId() == iVideoRemoveSourceId)
{
iVideoRemoveSourceId = 0;
iVideoSourceAdded = false;
if (check_video_stopped())
{
disconnect();
}
}
break;
case PVT_COMMAND_ADD_DATA_SINK:
if (aResponse.GetCmdId() == iVideoAddSinkId)
{
if (aResponse.GetCmdStatus() == PVMFSuccess)
{
iVideoSinkAdded = true;
if (check_video_started())
{
OSCL_TRY(error, terminal->AddPreviewSinkL(*iVideoSource, *iVideoPreview));
if (error)
{
test_is_true(false);
disconnect();
}
}
}
else
{
test_is_true(false);
disconnect();
}
iVideoAddSinkId = 0;
}
break;
case PVT_COMMAND_REMOVE_DATA_SINK:
if (aResponse.GetCmdId() == iVideoRemoveSinkId)
{
iVideoRemoveSinkId = 0;
iVideoSinkAdded = false;
if (check_video_stopped())
{
disconnect();
}
}
break;
case PVT_COMMAND_CONNECT:
if (aResponse.GetCmdStatus() == PVMFSuccess)
{
OSCL_TRY(error, iVideoAddSourceId = terminal->AddDataSourceL(*iVideoSource));
if (error)
{
test_is_true(false);
disconnect();
}
}
else
{
test_is_true(false);
reset();
}
break;
case PVT_COMMAND_DISCONNECT:
iAudioSourceAdded = false;
iVideoSourceAdded = false;
iAudioSinkAdded = false;
iVideoSinkAdded = false;
reset();
break;
case PVT_COMMAND_ADD_PREVIEW_SINK:
if (aResponse.GetCmdStatus() == PVMFSuccess)
{
OSCL_TRY(error, terminal->RemovePreviewSinkL(*iVideoPreview));
if (error)
{
test_is_true(false);
disconnect();
}
}
else
{
test_is_true(false);
disconnect();
}
break;
case PVT_COMMAND_REMOVE_PREVIEW_SINK:
if (aResponse.GetCmdStatus() == PVMFSuccess)
{
iCurrentRun++;
if (iCurrentRun < iMaxRuns)
{
OSCL_TRY(error, terminal->AddPreviewSinkL(*iVideoSource, *iVideoPreview));
if (error)
{
test_is_true(false);
disconnect();
}
}
else
{
test_is_true(true);
OSCL_TRY(error, iVideoRemoveSourceId = terminal->RemoveDataSourceL(*iVideoSource));
if (error)
{
test_is_true(false);
disconnect();
}
OSCL_TRY(error, iVideoRemoveSinkId = terminal->RemoveDataSinkL(*iVideoSink));
if (error)
{
test_is_true(false);
disconnect();
}
}
}
else
{
test_is_true(false);
disconnect();
}
break;
}
}
bool video_preview_test::start_async_test()
{
int error = 0;
if (iUseProxy)
{
OSCL_TRY(error, terminal = CPV2WayProxyFactory::CreateTerminalL(PV_324M,
(MPVCmnCmdStatusObserver *) this,
(MPVCmnInfoEventObserver *) this,
(MPVCmnErrorEventObserver *) this));
}
else
{
OSCL_TRY(error, terminal = CPV2WayEngineFactory::CreateTerminalL(PV_324M,
(MPVCmnCmdStatusObserver *) this,
(MPVCmnInfoEventObserver *) this,
(MPVCmnErrorEventObserver *) this));
}
if (error)
{
test_is_true(false);
return false;
}
create_sink_source();
OSCL_TRY(error, terminal->InitL(iSdkInitInfo, iCommServer));
if (error)
{
test_is_true(false);
if (iUseProxy)
{
CPV2WayProxyFactory::DeleteTerminal(terminal);
}
else
{
CPV2WayEngineFactory::DeleteTerminal(terminal);
}
terminal = NULL;
return false;
}
return true;
}