All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.netbeans.html.context.impl.CtxImpl Maven / Gradle / Ivy

The newest version!
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.netbeans.html.context.impl;

import net.java.html.BrwsrCtx;
import org.netbeans.html.context.spi.Contexts;

/** Implementation detail. Holds list of technologies for particular
 * {@link BrwsrCtx}.
 *
 * @author Jaroslav Tulach
 */
public final class CtxImpl {
    private Bind[] techs;
    private final Object[] context;
    
    public CtxImpl(Object[] context) {
        this(context, new Bind[0]);
    }
    
    private CtxImpl(Object[] context, Bind[] techs) {
        this.techs = techs;
        this.context = context;
    }
    
    public static  Tech find(BrwsrCtx context, Class technology) {
        CtxImpl impl = CtxAccssr.getDefault().find(context);
        for (Bind bind : impl.techs) {
            if (technology == bind.clazz) {
                return technology.cast(bind.impl);
            }
        }
        return null;
    }

    public BrwsrCtx build() {
        new BindCompare().sort(techs);
        CtxImpl impl = new CtxImpl(context, techs.clone());
        BrwsrCtx ctx = CtxAccssr.getDefault().newContext(impl);
        return ctx;
    }

    public  void register(Class type, Tech impl, int priority) {
        techs = new BindCompare().add(techs, new Bind(type, impl, priority));
    }
    
    private static final class Bind {
        private final Class clazz;
        private final Tech impl;
        private final int priority;

        public Bind(Class clazz, Tech impl, int priority) {
            this.clazz = clazz;
            this.impl = impl;
            this.priority = priority;
        }

        @Override
        public String toString() {
            return "Bind{" + "clazz=" + clazz + "@" + clazz.getClassLoader() + ", impl=" + impl + ", priority=" + priority + '}';
        }
    }
    
    private final class BindCompare {

        void sort(Bind[] techs) {
            for (int i = 0; i < techs.length; i++) {
                Bind min = techs[i];
                int minIndex = i;
                for  (int j = i + 1; j < techs.length; j++) {
                    if (compare(min, techs[j]) > 0) {
                        min = techs[j];
                        minIndex = j;
                    }
                }
                if (minIndex != i) {
                    techs[minIndex] = techs[i];
                    techs[i] = min;
                }
            }
        }

        private  Bind[] add(Bind[] techs, Bind bind) {
            Bind[] newArr = new Bind[techs.length + 1];
            for (int i = 0; i < techs.length; i++) {
                newArr[i] = techs[i];
            }
            newArr[techs.length] = bind;
            return newArr;
        }
        private boolean isPrefered(Bind b) {
            final Class implClazz = b.impl.getClass();
            Contexts.Id id = implClazz.getAnnotation(Contexts.Id.class);
            if (id == null) {
                return false;
            }
            for (String v : id.value()) {
                for (Object c : context) {
                    if (v.equals(c)) {
                        return true;
                    }
                }
            }
            return false;
        }
        
        private int compare(Bind o1, Bind o2) {
            boolean p1 = isPrefered(o1);
            boolean p2 = isPrefered(o2);
            if (p1 != p2) {
                return p1 ? -1 : 1;
            }
            if (o1.priority != o2.priority) {
                return o1.priority - o2.priority;
            }
            return o1.clazz.getName().compareTo(o2.clazz.getName());
        }
    } // end of BindCompare
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy