mmserv/tms/tmsimpl/src/tmseffectimpl.cpp
changeset 0 71ca22bcf22a
child 10 3d8c721bf319
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmserv/tms/tmsimpl/src/tmseffectimpl.cpp	Tue Feb 02 01:08:46 2010 +0200
@@ -0,0 +1,89 @@
+/*
+ * 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 <tms.h>
+#include "tmsvolumeeffectimpl.h"
+#include "tmsgaineffectimpl.h"
+#include "tmsglobalvoleffectimpl.h"
+#include "tmsglobalgaineffectimpl.h"
+#include "tmsutility.h"
+#include "tmseffectimpl.h"
+
+using namespace TMS;
+
+EXPORT_C gint TMSEffectImpl::Create(TMSEffectType effecttype,
+        TMSEffect*& tmseffect)
+    {
+    gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
+    TRACE_PRN_FN_ENT;
+    switch (effecttype)
+        {
+        case TMS_EFFECT_VOLUME:
+            ret = TMSVolumeEffectImpl::Create(tmseffect);
+            break;
+        case TMS_EFFECT_GAIN:
+            ret = TMSGainEffectImpl::Create(tmseffect);
+            break;
+        case TMS_EFFECT_GLOBAL_VOL:
+            ret = TMSGlobalVolEffectImpl::Create(tmseffect);
+            break;
+        case TMS_EFFECT_GLOBAL_GAIN:
+            ret = TMSGlobalGainEffectImpl::Create(tmseffect);
+            break;
+        default:
+            ret = TMS_RESULT_EFFECT_TYPE_NOT_SUPPORTED;
+            break;
+        }
+
+    TRACE_PRN_FN_EXT;
+    return ret;
+    }
+
+EXPORT_C gint TMSEffectImpl::Delete(TMSEffect*& tmseffect)
+    {
+    gint ret(TMS_RESULT_INVALID_ARGUMENT);
+    TRACE_PRN_FN_ENT;
+    TMSEffectType effecttype;
+    ret = tmseffect->GetType(effecttype);
+    switch (effecttype)
+        {
+        case TMS_EFFECT_VOLUME:
+            delete (TMSVolumeEffectImpl*) (tmseffect);
+            tmseffect = NULL;
+            break;
+        case TMS_EFFECT_GAIN:
+            delete (TMSGainEffectImpl*) (tmseffect);
+            tmseffect = NULL;
+            break;
+        case TMS_EFFECT_GLOBAL_VOL:
+            delete (TMSGlobalVolEffectImpl*) (tmseffect);
+            tmseffect = NULL;
+            break;
+        case TMS_EFFECT_GLOBAL_GAIN:
+            delete (TMSGlobalGainEffectImpl*) (tmseffect);
+            tmseffect = NULL;
+            break;
+        default:
+            ret = TMS_RESULT_EFFECT_TYPE_NOT_SUPPORTED;
+            break;
+        }
+
+    TRACE_PRN_FN_EXT;
+    return ret;
+    }
+
+// End of file