/* * 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.impl; import java.util.Set; import com.alibaba.citrus.service.resource.ResourceListerContext; import com.alibaba.citrus.service.resource.ResourceLoadingOption; import com.alibaba.citrus.service.resource.ResourceLoadingService; import com.alibaba.citrus.service.resource.ResourceNotFoundException; import org.slf4j.Logger; /** * 代表一次resource列表的查找的过程。 * * @author Michael Zhou */ public class ResourceListerContextImpl extends AbstractResourceLoadingContext<String[]> implements ResourceListerContext { /** 创建一个context。 */ public ResourceListerContextImpl(String resourceName, Set<ResourceLoadingOption> options, ResourceMapping[] mappings, ResourceLoadingService parent, Logger log) { super(resourceName, options, mappings, parent, log); } /** 开始一个查找过程。 */ public String[] list() throws ResourceNotFoundException { return doLoad(resourceName, options); } /** 回调函数:访问某个mapping。 */ @Override protected void visitMapping(ResourceMapping mapping) { } /** 调用parent resource loading service取得资源。 */ @Override protected String[] loadParentResource(String resourceName, Set<ResourceLoadingOption> options) throws ResourceNotFoundException { if (parent != null) { return parent.list(resourceName, options); } return null; } /** 调用mapping取得资源。 */ @Override protected String[] loadMappedResource(ResourceLoaderMapping mapping, Set<ResourceLoadingOption> options) { return mapping.list(this, options); } /** 实现<code>ResourceListerContext.list()</code>。 */ public String[] list(String newResourceName, Set<ResourceLoadingOption> newOptions) { return loadContextResource(newResourceName, newOptions); } @Override public String toString() { return "ResourceListerContext[" + resourceName + "]"; } }