com.alogic.blob.context.BlobManagerSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alogic-blob Show documentation
Show all versions of alogic-blob Show documentation
BLOB(binary large object),二进制大对象存储框架
package com.alogic.blob.context;
import java.io.InputStream;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import com.alogic.blob.core.BlobManager;
import com.anysoft.context.Context;
import com.anysoft.context.Source;
import com.anysoft.util.Factory;
import com.anysoft.util.IOTools;
import com.anysoft.util.Properties;
import com.anysoft.util.Settings;
import com.anysoft.util.XmlTools;
import com.anysoft.util.resource.ResourceFactory;
/**
* Blob管理器配置源
*
* @author duanyy
* @since 1.6.3.28
*
* @version 1.6.4.18 [duanyy 20151218]
* - 增加自动图标集
*/
public class BlobManagerSource extends Source {
/**
* Factory
*/
public static final TheFactory factory = new TheFactory();
private static BlobManagerSource theInstance = null;
@Override
public Context newInstance(Element e, Properties p,
String attrName) {
return factory.newInstance(e,p,attrName,XmlInner.class.getName());
}
@Override
protected String getContextName(){
return "context";
}
/**
* 工厂类
* @author duanyy
*
*/
public static class TheFactory extends Factory>{
}
public static Context newInstance(Element doc,Properties p){
if (doc == null)
return null;
return factory.newInstance(doc, p);
}
public static BlobManagerSource get(){
if (theInstance != null){
return theInstance;
}
synchronized (factory){
if (theInstance == null){
theInstance = (BlobManagerSource)newInstance(Settings.get(), new BlobManagerSource());
}
}
return theInstance;
}
protected static Context newInstance(Properties p,Context instance){
String configFile = p.GetValue("blob.master",
"java:///com/alogic/blob/context/blob.xml#com.alogic.blob.context.BlobManagerSource");
String secondaryFile = p.GetValue("blob.secondary",
"java:///com/alogic/blob/context/blob.xml#com.alogic.blob.context.BlobManagerSource");
ResourceFactory rm = Settings.getResourceFactory();
InputStream in = null;
try {
in = rm.load(configFile,secondaryFile, null);
Document doc = XmlTools.loadFromInputStream(in);
if (doc != null){
if (instance == null){
return newInstance(doc.getDocumentElement(),p);
}else{
instance.configure(doc.getDocumentElement(), p);
return instance;
}
}
} catch (Exception ex){
logger.error("Error occurs when load xml file,source=" + configFile, ex);
}finally {
IOTools.closeStream(in);
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy