connectivity/com.nokia.carbide.remoteConnections.discovery.pccs/src/com/nokia/carbide/remoteconnections/discovery/pccs/pccsnative/APIHANDLE.java
author Chad Peckham <chad.peckham@nokia.com>
Thu, 11 Feb 2010 16:07:33 -0600
branchRCL_2_4
changeset 941 e90e6ea44529
permissions -rw-r--r--
PnP development for switching USB personalities. Bug 10604.

/**
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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.carbide.remoteconnections.discovery.pccs.pccsnative;

import com.sun.jna.FromNativeContext;
import com.sun.jna.Pointer;
import com.sun.jna.PointerType;

/**
 *  Opaque API Handle used in most native APIs
 *
 */
public class APIHANDLE extends PointerType {
	// Constant value representing an invalid HANDLE.
    public static APIHANDLE INVALID_HANDLE_VALUE = new APIHANDLE(Pointer.createConstant((long)-1));
	private boolean immutable;

	public APIHANDLE() {
	}

	/**
	 * @param p
	 */
	public APIHANDLE(Pointer p) {
		setPointer(p); 
		immutable = true;	
	}

	/**
	 * Override to the appropriate object for INVALID_HANDLE_VALUE.
	 */
	@Override
	public Object fromNative(Object nativeValue, FromNativeContext context) {
        Object o = super.fromNative(nativeValue, context);
        if (INVALID_HANDLE_VALUE.equals(o))
            return INVALID_HANDLE_VALUE;
        return o;
	}

	@Override
	public void setPointer(Pointer p) {
        if (immutable)
            throw new UnsupportedOperationException("immutable reference"); //$NON-NLS-1$
		super.setPointer(p);
	}

}