diff -r 000000000000 -r 71ca22bcf22a mmserv/tms/tmsimpl/src/tmssourceimpl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/tms/tmsimpl/src/tmssourceimpl.cpp Tue Feb 02 01:08:46 2010 +0200 @@ -0,0 +1,88 @@ +/* + * 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: Telephony Multimedia Service + * + */ + +#include +#include "tmsclientsourceimpl.h" +#include "tmsutility.h" +#include "tmssourceimpl.h" +#include "tmsmodemsourceimpl.h" +#include "tmsmicsourceimpl.h" + +using namespace TMS; + +EXPORT_C gint TMSSourceImpl::Create(TMSSourceType sourcetype, + TMSSource*& tmssource) + { + gint ret(TMS_RESULT_INSUFFICIENT_MEMORY); + TRACE_PRN_FN_ENT; + switch (sourcetype) + { + case TMS_SOURCE_CLIENT: + ret = TMSClientSourceImpl::Create(tmssource); + break; + case TMS_SOURCE_MODEM: + ret = TMSModemSourceImpl::Create(tmssource); + break; + case TMS_SOURCE_MIC: + ret = TMSMicSourceImpl::Create(tmssource); + break; + default: + ret = TMS_RESULT_SOURCE_TYPE_NOT_SUPPORTED; + break; + } + + TRACE_PRN_FN_EXT; + return ret; + } + +EXPORT_C gint TMSSourceImpl::Delete(TMSSource*& tmssource) + { + gint ret(TMS_RESULT_INVALID_ARGUMENT); + TRACE_PRN_FN_ENT; + TMSSourceType sourcetype; + ret = tmssource->GetType(sourcetype); + switch (sourcetype) + { + case TMS_SOURCE_CLIENT: + delete (TMSClientSourceImpl*) (tmssource); + tmssource = NULL; + ret = TMS_RESULT_SUCCESS; + break; + case TMS_SOURCE_MODEM: + { + delete (TMSModemSourceImpl*) (tmssource); + tmssource = NULL; + ret = TMS_RESULT_SUCCESS; + } + break; + case TMS_SOURCE_MIC: + { + delete (TMSMicSourceImpl*) (tmssource); + tmssource = NULL; + ret = TMS_RESULT_SUCCESS; + } + break; + default: + ret = TMS_RESULT_SOURCE_TYPE_NOT_SUPPORTED; + break; + } + + TRACE_PRN_FN_EXT; + return ret; + } + +// End of file