/* * Copyright (c) 2002-2012 Alibaba Group Holding Limited. * All rights reserved. * * 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 com.alibaba.citrus.service.resource.loader; import static com.alibaba.citrus.util.BasicConstant.*; import static com.alibaba.citrus.util.FileUtil.*; import static com.alibaba.citrus.util.StringUtil.*; import java.util.Set; import com.alibaba.citrus.service.resource.Resource; import com.alibaba.citrus.service.resource.ResourceLister; import com.alibaba.citrus.service.resource.ResourceListerContext; import com.alibaba.citrus.service.resource.ResourceLoaderContext; import com.alibaba.citrus.service.resource.ResourceLoadingOption; import com.alibaba.citrus.service.resource.ResourceLoadingService; import com.alibaba.citrus.service.resource.ResourceMatchResult; /** * 一个特殊的resource loader,用来按默认的方法查找资源。 * * @author Michael Zhou */ public class SuperResourceLoader implements ResourceLister { private String newResourceName; public void setName(String resourceName) { this.newResourceName = trimToNull(resourceName); } /** 初始化loader,并设定loader所在的<code>ResourceLoadingService</code>的实例。 */ public void init(ResourceLoadingService resourceLoadingService) { } /** 查找指定名称的资源。 */ public Resource getResource(ResourceLoaderContext context, Set<ResourceLoadingOption> options) { try { context.saveLastResult(); return context.getResource(getNewResourceName(context), options); } finally { context.restoreLastResult(); } } /** 查找目录列表。 */ public String[] list(ResourceListerContext context, Set<ResourceLoadingOption> options) { return context.list(getNewResourceName(context), options); } private String getNewResourceName(ResourceMatchResult context) { String resourceName = EMPTY_STRING; if (newResourceName != null) { resourceName = newResourceName; } resourceName = normalizeAbsolutePath(context.substitute(resourceName)); return resourceName; } @Override public String toString() { StringBuilder buf = new StringBuilder(); buf.append(getClass().getSimpleName()).append("["); if (newResourceName != null) { buf.append(newResourceName); } buf.append("]"); return buf.toString(); } }