
org.broadleafcommerce.common.file.service.BroadleafFileService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broadleaf-common Show documentation
Show all versions of broadleaf-common Show documentation
A collection of classes shared by broadleaf profile, cms, admin, and core.
/*
* #%L
* BroadleafCommerce Common Libraries
* %%
* Copyright (C) 2009 - 2013 Broadleaf Commerce
* %%
* 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.
* #L%
*/
package org.broadleafcommerce.common.file.service;
import org.broadleafcommerce.common.file.domain.FileWorkArea;
import java.io.File;
import java.io.InputStream;
import java.util.List;
/**
* Many components in the Broadleaf Framework can benefit from creating and manipulating temporary files as well
* as storing and accessing files in a remote repository (such as AmazonS3).
*
* This service provides a pluggable way to provide those services.
*
* @author bpolster
*
*/
public interface BroadleafFileService {
/**
* Create a file work area that can be used for further operations.
* @return
*/
public FileWorkArea initializeWorkArea();
/**
* Closes the passed in work area. This method will delete all items contained in the work area. Future calls
* using this WorkArea will cause a RuntimeError
* @param Work Area
*/
void closeWorkArea(FileWorkArea workArea);
/**
* Returns a File representing the passed in name. This method will always access the file via the FileProvider
* which might be a remote operation.
*
* @param name - fully qualified path to the resource
* @return
*/
File getResource(String name);
/**
* Returns a File representing the resource. This method first checks the local temporary directory for the file.
* If it exists and has been modified within the timeout parameter, it will be returned. Otherwise, this method
* will make a call to {@link #getResource(String)}.
*
* If the timeout parameter is null then if the resource exists locally, it will be returned.
*
* @param name - fully qualified path to the resource
* @param timeout - timeframe that the temporary file is considered valid
* @return
*/
File getResource(String name, Long timeout);
/**
* Checks for a resource in the temporary directory of the file-system. Will check for a site-specific file.
*
* @param fullUrl
* @return
*/
File getLocalResource(String fullUrl);
/**
* Checks for a resource in the temporary directory of the file-system. Will check for a global (e.g. not site
* specific file).
*
* @param fullUrl
* @return
*/
File getSharedLocalResource(String fullUrl);
/**
* Returns true if the resource is available on the classpath.
* @param name
* @return
*/
boolean checkForResourceOnClassPath(String name);
/**
* Allows assets to be included in the Java classpath.
*
* This method was designed to support an internal Broadleaf use case and may not have general applicability
* beyond that. For Broadleaf demo sites, many of the product images are shared across the demo sites.
*
* Rather than copy those images, they are stored in a Jar file and shared by all of the sites.
*
* @param name - fully qualified path to the resource
* @return
*/
InputStream getClasspathResource(String name);
/**
* Removes the resource from the configured FileProvider
*
* @param name - fully qualified path to the resource
* @param applicationType - The type of file being accessed
*/
boolean removeResource(String name);
/**
* Takes in a temporary work area and a single File and copies that files to
* the configured FileProvider's permanent storage.
*
* Passing in removeFilesFromWorkArea to true allows for more efficient file processing
* when using a local file system as it performs a move operation instead of a copy.
*
* @param workArea
* @param fileName
* @param removeFilesFromWorkArea
*/
void addOrUpdateResource(FileWorkArea workArea, File file, boolean removeFilesFromWorkArea);
/**
* Takes in a temporary work area and copies all of the files to the configured FileProvider's permanent storage.
*
* Passing in removeFilesFromWorkArea to true allows for more efficient file processing
* when using a local file system as it performs a move operation instead of a copy.
*
* @param workArea
* @param removeFilesFromWorkArea
*/
void addOrUpdateResources(FileWorkArea workArea, boolean removeFilesFromWorkArea);
/**
* Takes in a temporary work area and a list of Files and copies them to
* the configured FileProvider's permanent storage.
*
* Passing in removeFilesFromWorkArea to true allows for more efficient file processing
* when using a local file system as it performs a move operation instead of a copy.
*
* @param workArea
* @param fileNames
* @param removeFilesFromWorkArea
*/
void addOrUpdateResources(FileWorkArea workArea, List files, boolean removeFilesFromWorkArea);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy