alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.core.registry;


import org.openide.filesystems.FileObject;
import org.openide.filesystems.FileSystem;

import java.io.IOException;
import java.util.Enumeration;
import java.util.Collection;
import java.util.Set;
import java.util.HashSet;
import java.awt.*;
import java.net.URL;

final class PrimitiveBinding extends ObjectBinding {
    public static final String PRIMITIVE_BINDING_PREFIX = "BINDING:";

    private FileObject folder;
    private String bindingName;

    public String getBindingName() {
        return bindingName;
    }

    public Object createInstance() throws IOException {
        Object o = folder.getAttribute(PRIMITIVE_BINDING_PREFIX + bindingName);
        if (o != null) {
            o = convertToObject(o);
        }
        return o;
    }

    // MultiFilesystem stores attributes of folders which do not exist
    // on writable layer yet on root file object of the writable filesystem
    // in the format of "folder\folder\attribute". Check that here:    
    static  boolean isCustomizedAndAttachedToRoot (FileSystem customFS, FileObject folder, String bindingName) {
        String name = folder.getPath().replace('/', '\\');
        return (customFS.getRoot().getAttribute(name+"\\"+PRIMITIVE_BINDING_PREFIX+bindingName) != null) ? true : false;                
    }

    // MultiFilesystem stores attributes of folders which do not exist
    // on writable layer yet on root file object of the writable filesystem
    // in the format of "folder\folder\attribute". Check that here:        
    static  void deleteIfCustomizedAndAttachedToRoot (FileSystem customFS, FileObject folder, String bindingName) throws IOException {
        String name = folder.getPath().replace('/', '\\');
        FileObject root = customFS.getRoot();
        if (root.getAttribute(name+"\\"+PRIMITIVE_BINDING_PREFIX+bindingName) != null) {
            root.setAttribute(name+"\\"+PRIMITIVE_BINDING_PREFIX+bindingName, null);               
        }        
    }
    
    static ObjectBinding get(FileObject folder, String bindingName) {
        return isValid(folder, bindingName) ? new PrimitiveBinding(folder, bindingName) : null;
    }

    static Collection getAll(FileObject folder) {
        Set retVal = new HashSet();
        Enumeration en = folder.getAttributes();
        while (en.hasMoreElements()) {
            String attr = (String) en.nextElement();
            if (attr.startsWith(PRIMITIVE_BINDING_PREFIX)) {
                ObjectBinding ob = PrimitiveBinding.get(folder, attr.substring(PRIMITIVE_BINDING_PREFIX.length()));
                if (ob != null) retVal.add(ob);
            }
        }
        return retVal;
    }


    /**
     * may return null
     */
    static ObjectBinding create(FileObject folder, String bindingName, Object object) {
        if (!isPrimitive(object)) return null;

        object = convertToPrimitive(object);
        try {
            folder.setAttribute(PRIMITIVE_BINDING_PREFIX + bindingName, object);
        } catch (IOException e) {
            // then this method returns null;
        }

        return isValid(folder, bindingName) ? new PrimitiveBinding(folder, bindingName) : null;
    }

    private PrimitiveBinding(FileObject folder, String bindingName) {
        super(folder);
        this.folder = folder;
        this.bindingName = bindingName;
    }

    public void delete() throws IOException {
        if (isEnabled()) {
            // delete primitive binding attributes            
            deleteAllAttributes();
            // delete primitive binding
            folder.setAttribute(PRIMITIVE_BINDING_PREFIX + bindingName, null);
        }
    }

    private void deleteAllAttributes() throws IOException {
        Enumeration en = folder.getAttributes();
        while (en.hasMoreElements()) {
            String attrName = (String) en.nextElement();
            if (attrName.startsWith(ContextImpl.PRIMITIVE_BINDING_ATTR_PREFIX + bindingName + "/")) {
                folder.setAttribute(attrName, null);
            }
        }
    }

    public boolean isEnabled() {
        return isValid(folder, bindingName);
    }

    public ObjectBinding write(Object object) throws IOException {
        return super.write(object);
    }

    private static boolean isValid(FileObject folder, String bindingName) {
        return (folder.getAttribute(PRIMITIVE_BINDING_PREFIX + bindingName) != null);
    }

    private static Object convertToPrimitive(Object o) {
        if (!((o instanceof Font) || (o instanceof Color))) {
            // all other simple or primitive data types (including URL)
            // are handled directly by FS attribute types
            return o;
        }

        String value;
        if (o instanceof Font) {
            Font f = (Font) o;
            String strStyle;

            if (f.isBold()) {
                strStyle = f.isItalic() ? "bolditalic" : "bold";
            } else {
                strStyle = f.isItalic() ? "italic" : "plain";
            }
            value = "Font[" + f.getFamily() + "-" + strStyle + "-" + f.getSize() + "]";
        } else {
            value = "Color[" + Integer.toString(((Color) o).getRGB()) + "]";
        }
        return value;
    }

    static boolean isPrimitive(Object o) {
        if (o instanceof String ||
                o instanceof Integer ||
                o instanceof Long ||
                o instanceof Boolean ||
                o instanceof Float ||
                o instanceof Double ||
                o instanceof Font ||
                o instanceof URL ||
                o instanceof Color) {
            return true;
        } else {
            return false;
        }
    }

    private static Object convertToObject(Object o) {
        if ((!(o instanceof String)) || (!(((String) o).endsWith("]")))) {
            return o;
        }
        try {
            String string = (String) o;
            String val = string.substring(0, string.length() - 1);
            if (val.startsWith("Font[")) {
                val = val.substring("Font[".length());
                return Font.decode(val);
            } else if (val.startsWith("Color[")) {
                val = val.substring("Color[".length());
                return Color.decode(val);
            }
        } catch (Exception e) {
            // ignore it
        }
        return o;
    }

}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.