javacommons/utils/javasrc/com/nokia/mj/impl/rt/j9/NativeMemoryBlockImpl.java
author hgs
Fri, 15 Oct 2010 12:29:39 +0300
changeset 80 d6dafc5d983f
parent 21 2a9601315dfc
permissions -rw-r--r--
v2.2.19_1

/*
* Copyright (c) 2008 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:
*
*/

package com.nokia.mj.impl.rt.j9;

import java.io.InputStream;
import java.io.IOException;

import com.nokia.mj.impl.rt.support.NativeMemoryBlock;
import com.ibm.oti.vm.VM;
import com.ibm.oti.vm.OSMemoryAccessor;
/**
 *
 * @author Nokia Corporation
 * @version 1.0
 */

class NativeMemoryBlockImpl implements NativeMemoryBlock
{

    private InputStream mMemInputStream = null;

    /**
     * Default constructor not allowed
     */
    private NativeMemoryBlockImpl()
    {
    }

    /**
     * ctor
     */
    NativeMemoryBlockImpl(String jarPath, String resName)
    {
        mMemInputStream = VM.getResourceAsMemInputStream(jarPath, resName);
    }

    /**
     * Get the pointer to the native memory.
     */
    public long getPointer()
    {
        if (mMemInputStream != null)
        {
            return ((OSMemoryAccessor)mMemInputStream).getPointer();
        }
        return 0;
    }

    /**
     * Get the size of the allocated native memory.
     */
    public int getSize()
    {
        if (mMemInputStream != null)
        {
            return ((OSMemoryAccessor)mMemInputStream).getSize();
        }
        return 0;
    }

    /**
     * Frees the native memory.
     */
    public void freeMemory()
    {
        if (mMemInputStream != null)
        {
            try
            {
                mMemInputStream.close();
            }
            catch (IOException ioe)
            {
                // Should write a log or silently discard?
            }
        }
    }
}