blob: 7f3fe744146da4a2085e4142c34dece90d10c5b5 [file] [log] [blame]
/*
* Copyright 1999-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.garbage.tree;
import java.util.Iterator;
import org.apache.commons.jxpath.CompiledExpression;
import org.apache.commons.jxpath.JXPathContext;
import org.apache.commons.jxpath.Pointer;
import org.xml.sax.Locator;
import org.xml.sax.SAXException;
/**
*
*
* @author <a href="mailto:pier@apache.org">Pier Fumagalli</a>, February 2003
* @version CVS $Id: TemplateFor.java,v 1.2 2004/03/05 10:07:24 bdelacretaz Exp $
*/
public class TemplateFor extends LocatedEvents implements Event {
/** Our expression. */
private CompiledExpression expression = null;
/** The expression as a string. */
private String data = null;
/**
* Create a new <code>TemplateFor</code> instance.
*
* @param variable The variable name to create/update..
* @param data The data of this expression.
*/
public TemplateFor(String data) {
this(null, data);
}
/**
* Create a new <code>TemplateFor</code> instance.
*
* @param locator The <code>Locator</code> instance where location
* information should be read from.
* @param data The data of this expression.
*/
public TemplateFor(Locator locator, String data) {
super(locator);
if (data == null) {
throw new TreeException(locator, "No expression data");
}
try {
this.expression = JXPathContext.compile(data);
this.data = data;
} catch (Exception e) {
throw new TreeException(locator, "Cannot create expression from \""
+ data + "\"", e);
}
}
/**
* Process this event in the context of the specified <code>Runtime</code>.
*
* @param runtime The <code>Runtime</code> receiving events notifications.
* @throws SAXException In case of error processing this event.
*/
public void process(Runtime runtime, JXPathContext context)
throws SAXException {
try {
Iterator iterator = this.expression.iteratePointers(context);
while (iterator.hasNext()) {
Pointer ptr = (Pointer)iterator.next();
JXPathContext ctx = context.getRelativeContext(ptr);
VariableScope scp = new VariableScope(ctx);
Iterator evt = this.iterator();
while(evt.hasNext()) {
((Event)evt.next()).process(runtime, ctx);
}
}
} catch (SAXException e) {
throw(e);
} catch (Exception e) {
throw new SAXException("Cannot evaluate expression {"
+ this.data + "}", e);
}
}
/**
* If possible, merge this <code>Event</code> to another.
* <br />
* By default all <code>AbstractEvent</code> instances will not merge with
* each other. Solid implementations of this class will have to override
* this method and (if extending the <code>LocatedEvent</code> abstract
* class) call {@link LocatedEvent#mergeLocation(LocatedEvent)} to update
* location information.
*
* @param event The <code>Event</code> to which this one should be merged.
* @return Always <b>false</b>.
* @see LocatedEvent#mergeLocation(LocatedEvent)
*/
public boolean merge(Event event) {
return(false);
}
}