⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arraybindaction.java

📁 JAVA 文章管理系统源码
💻 JAVA
字号:
/*
 * Copyright 2004 The Apache Software Foundation.
 * 
 * Licensed 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.apache.commons.betwixt.io.read;

import java.util.ArrayList;
import java.util.List;

import org.apache.commons.betwixt.ElementDescriptor;
import org.apache.commons.betwixt.expression.Context;
import org.apache.commons.betwixt.expression.Updater;
import org.xml.sax.Attributes;

/**
 * <p>Acts to bind an array property.
 * Note that this is intended to be used to map 
 * properties with a setter taking an array 
 * but which do not have an adder.</p>
 * <p>
 * <strong>Note</strong> this implementation has state 
 * and therefore cannot be used concurrently (in simultaneous readings).
 * </p>
 * @author <a href='http://jakarta.apache.org/'>Jakarta Commons Team</a>
 * @version $Revision: 1.2 $
 */
public class ArrayBindAction extends MappingAction.Base {
   
    
    /**
     * Factory method creates implementations to map arrays.
     * @param elementDescriptor <code>ElementDescriptor</code> to be mapped, 
     * not null
     * @return <code>MappingAction</code>, not null 
     */
    public static final MappingAction createMappingAction(ElementDescriptor elementDescriptor) {
        MappingAction result = new ArrayBindAction();
        if (elementDescriptor.getSingularPropertyType() != null && 
                !elementDescriptor.getSingularPropertyType().isArray()) {
            result = BeanBindAction.INSTANCE;
        }
        return result;
    }
    
    private BeanMapping beanMapping = new BeanMapping();
    private Updater originalUpdater;
    
    /**
     * Mapping arrays requires the addition of a temporary object
     * (an <code>ArrayList</code>) into the stack together with an
     * updater for that object.   
     *    
     */
    public MappingAction begin(
        String namespace,
        String name,
        Attributes attributes,
        ReadContext context)
        throws Exception {
        // push an array onto the object stack
        context.pushBean(new ArrayList());
        return this;
    }

    /**
     * Pops the <code>ArrayList</code> and the updater from
     * their stacks. The original updater is called with the
     * result of the convertion.      
     */
    public void end(ReadContext context) throws Exception {
        if (originalUpdater != null) {       
            // create an array of appropriate type
            List values = (List) context.popBean();
            originalUpdater.update(context, values);
        }
    }    
    
    /** Construct a delegating implmentation that wraps the real bean creator */
    public MappingAction next(
        String namespace,
        String name,
        Attributes attributes,
        ReadContext context)
        throws Exception {
        originalUpdater = context.getCurrentUpdater();
        MappingAction nextBindAction = BeanBindAction.INSTANCE;
        beanMapping.setDelegate(nextBindAction);
        return beanMapping;
    }

    
    
    /** Updates a list by adding the new value */
    private static class ListUpdater implements Updater {
        /** Singleton */
        private static final ListUpdater INSTANCE = new ListUpdater();
        
        /** Update by adding the new value to the list */
        public void update(Context context, Object newValue) {
            List values = (List) context.getBean();
            values.add(newValue);
        }
        
    }
    
    private static class BeanMapping extends MappingAction.Base {
        private MappingAction delegate;
        
        BeanMapping() {}
        

        /**
         * Gets the action to which the bean binding is delegated.
         * @return <code>MappingAction</code> delegate, not null
         */
        MappingAction getDelegate() {
            return delegate;
        }

        /**
         * Sets the action to which the bean binding is delegated.
         * @param action< code>MappingAction</code> delegate, not null
         */
        void setDelegate(MappingAction action) {
            delegate = action;
        }
        
        /** Push updater and then delegate */
        public MappingAction begin(
            String namespace,
            String name,
            Attributes attributes,
            ReadContext context)
            throws Exception {
            context.pushUpdater(ListUpdater.INSTANCE);
            delegate = delegate.begin(namespace, name, attributes, context);
            return this;
        }

        /** Delegate to delegate (Doh!) */
        public void body(String text, ReadContext context) throws Exception {
            delegate.body(text, context);
        }

        /** Call delegate then pop <code>Updater</code> */
        public void end(ReadContext context) throws Exception {
            delegate.end(context);
            Updater updater = context.popUpdater();
        }

        /** Use delegate to create next action */
        public MappingAction next(
            String namespace,
            String name,
            Attributes attributes,
            ReadContext context)
            throws Exception {
            return delegate.next(namespace, name, attributes, context);
        }


    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -