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

org.apache.commons.vfs2.provider.AbstractVfsContainer Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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.apache.commons.vfs2.provider;

import java.util.ArrayList;

import org.apache.commons.vfs2.FileSystemException;

/**
 * A {@link VfsComponent} that contains a set of sub-components.
 */
public abstract class AbstractVfsContainer extends AbstractVfsComponent {

    /**
     * The components contained by this component.
     */
    private final ArrayList components = new ArrayList<>(); // @GuardedBy("self")

    /**
     * Adds a sub-component to this component.
     * 

* If the sub-component implements {@link VfsComponent}, it is initialised. All sub-components are closed when this * component is closed. *

* * @param component the component to add. * @throws FileSystemException if any error occurs. */ protected void addComponent(final Object component) throws FileSystemException { synchronized (components) { if (!components.contains(component)) { // Initialise if (component instanceof VfsComponent) { final VfsComponent vfsComponent = (VfsComponent) component; vfsComponent.setLogger(getLogger()); vfsComponent.setContext(getContext()); vfsComponent.init(); } // Keep track of component, to close it later components.add(component); } } // synchronized } /** * Removes a sub-component from this component. * * @param component the component to remove. */ protected void removeComponent(final Object component) { synchronized (components) { // multiple instances should not happen components.remove(component); } } /** * Closes the sub-components of this component. */ @Override public void close() { final Object[] toclose; synchronized (components) { toclose = components.toArray(); components.clear(); } // Close all components for (final Object component : toclose) { if (component instanceof VfsComponent) { final VfsComponent vfsComponent = (VfsComponent) component; vfsComponent.close(); } } } }