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

org.exist.util.CollectionScanner Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version

package org.exist.util;

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

import org.xmldb.api.base.Collection;
import org.xmldb.api.base.Resource;
import org.xmldb.api.base.XMLDBException;

public class CollectionScanner {

	public final static Resource[] scan(Collection current, String vpath, String pattern) 
	throws XMLDBException {
		final List list = new ArrayList();
		scan(list, current, vpath, pattern);
		final Resource resources[] = new Resource[list.size()];
		return (Resource[])list.toArray(resources);
	}

	public final static void scan(List list, Collection current, String vpath, String pattern) 
	throws XMLDBException {
		final String[] resources = current.listResources();
		String name;
		for (String resource : resources) {
			name = vpath + resource;
			System.out.println("checking " + name);
			if (DirectoryScanner.match(pattern, name)) {
				list.add(current.getResource(resource));
			}
		}
		final String[] childCollections = current.listChildCollections();
		for (String sub : childCollections) {
			name = vpath + sub;
			System.out.println("checking " + name + " = " + pattern);
			if (DirectoryScanner.matchStart(pattern, name))
			///TODO : use dedicated function in XmldbURI
			{
				scan(list, current.getChildCollection(sub), name + "/", pattern);
			}
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy