org.apache.oodt.cas.filemgr.structs.Reference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-filemgr Show documentation
Show all versions of cas-filemgr Show documentation
The file management component of a Catalog and Archive Service. This component
purposefully separates data stores and metadata stores as standard interfaces, and
provides some out of the box backend implementations of them (including one based
on the javax.sql.DataSource interface). This component provides everything that you need
to catalog, archive and manage files, and directories, and their associated metadata.
/*
* 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.oodt.cas.filemgr.structs;
//JDK imports
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
//OODT imports
import org.apache.oodt.cas.metadata.util.PathUtils;
import org.apache.tika.Tika;
import org.apache.tika.config.TikaConfig;
import org.apache.tika.mime.MimeType;
import org.apache.tika.mime.MimeTypeException;
import org.apache.tika.mime.MimeTypes;
import org.apache.tika.mime.MimeTypesFactory;
/**
* @author mattmann
* @author bfoster
* @version $Revision$
*
*
* A reference stores the original item reference, and also the item's data
* store reference, which describes its location within the data store.
*
*
*/
public class Reference {
/* the item's original location */
private String origReference = null;
/* the location of the item within the data store */
private String dataStoreReference = null;
/* the size of the file that this reference refers to */
private long fileSize = 0L;
/* the mime-type of the file that this reference refers to */
private MimeType mimeType = null;
private static MimeTypes mimeTypeRepository;
public static String STREAM_REFERENCE_DELIMITER = "-";
/* the static reference to the Mime-Type repository */
static {
try {
mimeTypeRepository = MimeTypesFactory.create(new FileInputStream(new File(PathUtils
.replaceEnvVariables(System.getProperty(
"org.apache.oodt.cas.filemgr.mime.type.repository",
"mime-types.xml")))));
} catch (Exception e){
mimeTypeRepository = TikaConfig.getDefaultConfig().getMimeRepository();
}
}
/**
*
* Copy Constructor
*
*
* @param r
* The Reference object to copy
*/
public Reference(Reference r) {
this(r.getOrigReference(), r.getDataStoreReference(), r.getFileSize(),
r.getMimeType());
}
/**
*
* Default constructor
*
*/
public Reference() {
super();
}
/**
*
* Constructs a new Reference with the specified parameters.
*
*
* @param origRef
* The item's original location.
* @param dataRef
* The item's location within the data store.
* @param size
* The size of the file that this reference refers to.
*/
public Reference(String origRef, String dataRef, long size) {
origReference = origRef;
dataStoreReference = dataRef;
fileSize = size;
// TODO: since no mimetype was specified, do the dirty work
// ourselves to determine the which MimeType class to associate
// with this reference.
try {
this.mimeType = mimeTypeRepository.forName(new Tika().detect(origRef));
} catch (MimeTypeException e) {
e.printStackTrace();
}
}
/**
*
* Constructs a new Reference with the specified parameters. In particular,
* a MimeType object is explicitly supplied. This object represents the
* mime-type of the item this reference refers to
*
*
* @param origRef
* The item's original location.
* @param dataRef
* The item's location within the data store.
* @param size
* The size of the file that this reference refers to.
* @param mime
* A MimeType object representing the mime-type of the item
*/
public Reference(String origRef, String dataRef, long size, MimeType mime) {
origReference = origRef;
dataStoreReference = dataRef;
fileSize = size;
mimeType = mime;
}
/**
* @return Returns the dataStoreReference.
*/
public String getDataStoreReference() {
return dataStoreReference;
}
/**
* @param dataStoreReference
* The dataStoreReference to set.
*/
public void setDataStoreReference(String dataStoreReference) {
this.dataStoreReference = dataStoreReference;
}
/**
* @return Returns the origReference.
*/
public String getOrigReference() {
return origReference;
}
/**
* @param origReference
* The origReference to set.
*/
public void setOrigReference(String origReference) {
this.origReference = origReference;
}
/**
* @return Returns the fileSize.
*/
public long getFileSize() {
return fileSize;
}
/**
* @param fileSize
* The fileSize to set.
*/
public void setFileSize(long fileSize) {
this.fileSize = fileSize;
}
/**
* @return returns a MimeType obj representing the mime-type of this
* reference
*/
public MimeType getMimeType() {
return mimeType;
}
/**
* @param mime
* the MimeType object to set for this reference
*/
public void setMimeType(MimeType mime) {
this.mimeType = mime;
}
/**
* @param name
* the String name of the mimetype of this reference
*/
public void setMimeType(String name) {
if(name == null || (name != null &&
name.equals(""))) return;
try {
this.mimeType = mimeTypeRepository.forName(name);
} catch (MimeTypeException e) {
e.printStackTrace();
}
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
public String toString() {
StringBuffer buf = new StringBuffer();
buf.append("[orig=");
buf.append(this.origReference);
buf.append(",dest=");
buf.append(this.dataStoreReference);
buf.append(",size=");
buf.append(this.fileSize);
buf.append(",mime=");
buf.append(this.mimeType != null ? this.mimeType.toString() : "N/A");
buf.append("]");
return buf.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy