/* * java-gnome, a UI library for writing GTK and GNOME programs from Java! * * Copyright © 2007-2011 Operational Dynamics Consulting, Pty Ltd * * The code in this file, and the program it is a part of, is made available * to you by its authors as open source software: you can redistribute it * and/or modify it under the terms of the GNU General Public License version * 2 ("GPL") as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GPL for more details. * * You should have received a copy of the GPL along with this program. If not, * see http://www.gnu.org/licenses/. The authors of this program may be * contacted through http://java-gnome.sourceforge.net/. * * Linking this library statically or dynamically with other modules is making * a combined work based on this library. Thus, the terms and conditions of * the GPL cover the whole combination. As a special exception (the * "Claspath Exception"), the copyright holders of this library give you * permission to link this library with independent modules to produce an * executable, regardless of the license terms of these independent modules, * and to copy and distribute the resulting executable under terms of your * choice, provided that you also meet, for each linked independent module, * the terms and conditions of the license of that module. An independent * module is a module which is not derived from or based on this library. If * you modify this library, you may extend the Classpath Exception to your * version of the library, but you are not obligated to do so. If you do not * wish to do so, delete this exception statement from your version. */ package org.freedesktop.cairo; import org.gnome.gdk.Gdk; public abstract class Plumbing extends org.freedesktop.bindings.Plumbing { protected Plumbing() {} /* * Expose access to the global GDK lock. */ /* * TODO I'm not sure we need this. In fact, I rather expect that this is * in the way, but we'd have to make the synchronized block output by the * code generator conditional. */ protected static final java.lang.Object lock; static { isLibraryReady(); lock = Gdk.lock; assert (Status.SUCCESS != null); } public static Entity entityFor(Class type, long pointer) { Entity obj; obj = (Entity) org.freedesktop.bindings.Plumbing.instanceFor(pointer); if (obj != null) { return obj; } else { if (type == Context.class) { obj = createContext(pointer); } else if (type == Surface.class) { obj = createSurface(pointer); } else if (type == Pattern.class) { obj = createPattern(pointer); } else { throw new UnsupportedOperationException("Unhandled type " + type.getName()); } return obj; } } private static Context createContext(long pointer) { return new Context(pointer); } /* * Similar to createProxy() in the superclass, but in Cairo's case we are * forced to go to native in order to navigate the type "forest". Unlike * the g_type_name() based mechanism in org.gnome.glib, we only know the * abstract class as the type argument; however, C side, cairo allows us * to look up the fully qualified type given the abstract and so we can * then map that to the appropriate Java Proxy. * * Both of these implementations increment the reference count of the * underlying native library object; we are creating our Proxy for the * first time and need to assume an ownership of it. */ private static native Entity createSurface(long pointer); private static native Entity createPattern(long pointer); }