mmserv/tms/tmsimpl/src/tmsbufferimpl.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Feb 2010 23:19:48 +0200
branchRCL_3
changeset 3 4f62049db6ac
parent 0 71ca22bcf22a
child 10 3d8c721bf319
permissions -rw-r--r--
Revision: 201003 Kit: 201007

/*
 * 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 "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 (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