mmserv/tms/tmsimpl/src/tmsbufferimpl.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 11 May 2010 16:42:02 +0300
branchRCL_3
changeset 17 3570217d8c21
parent 13 f5c5c82a163e
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
 * 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 "tmsutility.h"
#include "tmsmembuffer.h"
#include "tmsbufferimpl.h"

using namespace TMS;

EXPORT_C gint TMSBufferImpl::Create(TMSBufferType buffertype, guint size,
        TMSBuffer*& tmsbuffer)
    {
    gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    TRACE_PRN_FN_ENT;
    switch (buffertype)
        {
        case TMS_BUFFER_MEMORY:
            ret = TMSMemBuffer::Create(size, tmsbuffer);
            break;
        default:
            ret = TMS_RESULT_BUFFER_TYPE_NOT_SUPPORTED;
            break;
        }

    TRACE_PRN_FN_EXT;
    return ret;
    }

EXPORT_C gint TMSBufferImpl::Delete(TMSBuffer*& tmsbuffer)
    {
    gint ret(TMS_RESULT_INVALID_ARGUMENT);
    TRACE_PRN_FN_ENT;
    TMSBufferType buffertype;
    ret = tmsbuffer->GetType(buffertype);
    switch (buffertype)
        {
        case TMS_BUFFER_MEMORY:
            delete (static_cast<TMSMemBuffer*>(tmsbuffer));
            tmsbuffer = NULL;
            ret = TMS_RESULT_SUCCESS;
            break;
        default:
            ret = TMS_RESULT_BUFFER_TYPE_NOT_SUPPORTED;
            break;
        }

    TRACE_PRN_FN_EXT;
    return ret;
    }

// End of file