/** * Licensed to the Austrian Association for Software Tool Integration (AASTI) * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. The AASTI 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.openengsb.persistence.rulebase.filebackend; import java.io.File; import java.util.Map; import org.apache.commons.codec.DecoderException; import org.apache.commons.codec.net.URLCodec; import org.apache.commons.io.filefilter.IOFileFilter; import org.openengsb.core.workflow.drools.model.RuleBaseElement; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * A filter which gets used by the {@link RuleBaseElementPersistenceBackendService} to get files fitting the metadata * search criteria * */ public class RuleBaseFileNameFilter implements IOFileFilter { private static final Logger LOGGER = LoggerFactory.getLogger(RuleBaseFileNameFilter.class); private String type; private String name; private String pack; private URLCodec decoder; public RuleBaseFileNameFilter(Map<String, String> metaData) { type = metaData.get(RuleBaseElement.META_RULE_TYPE); name = metaData.get(RuleBaseElement.META_RULE_NAME); pack = metaData.get(RuleBaseElement.META_RULE_PACKAGE); decoder = new URLCodec(); } @Override public boolean accept(File file) { String filename = file.getName(); String[] parts = filename.split(RuleBaseElementPersistenceBackendService.SEPARATOR); if (parts.length != 3) { return false; } try { if (!(type == null || parts[0].equals(type))) { return false; } if (!(name == null || decoder.decode(parts[1]).equals(name))) { return false; } if (!(pack == null || decoder.decode(parts[2]).equals(pack))) { return false; } } catch (DecoderException e) { LOGGER.warn(e.getMessage()); return false; } return true; } @Override public boolean accept(File dir, String name) { throw new UnsupportedOperationException("Method is not needed!"); } }