org.xwiki.script.safe.SafeIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-commons-script Show documentation
Show all versions of xwiki-commons-script Show documentation
Scripting APIs, on top of JSR-223
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.script.safe;
import java.lang.reflect.Constructor;
import java.util.Iterator;
/**
* Provide a public script access to an iterator.
*
* @param the type of the iterated value
* @param the type of the Iterator
* @version $Id: 698774cd7422a3ce364b43fb2a535154674e2c6f $
* @since 16.2.0RC1
*/
public class SafeIterator> extends AbstractSafeObject implements Iterator
{
/**
* Safe implementation of the iterator elements.
*/
private Constructor< ? extends E> safeConstructor;
/**
* @param it the wrapped iterator
* @param safeProvider the provider of instances safe for public scripts
* @param safeConstructor the constructor used to create new safe wrapper for iterator elements
*/
public SafeIterator(I it, ScriptSafeProvider< ? > safeProvider, Constructor< ? extends E> safeConstructor)
{
super(it, safeProvider);
this.safeConstructor = safeConstructor;
}
/**
* @param element the element to wrap
* @return the wrapped element
*/
protected E safeElement(E element)
{
if (this.safeConstructor != null) {
try {
return this.safeConstructor.newInstance(element, this.safeProvider);
} catch (Exception e) {
return safe(element);
}
} else {
return safe(element);
}
}
// Iterator
@Override
public boolean hasNext()
{
return getWrapped().hasNext();
}
@Override
public E next()
{
return safeElement(getWrapped().next());
}
@Override
public void remove()
{
throw new UnsupportedOperationException(FORBIDDEN);
}
}