
io.milton.context.SingletonFactory Maven / Gradle / Ivy
The newest version!
/*
*
* Copyright 2014 McEvoy Software Ltd.
*
* 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 io.milton.context;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Closeable;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* @author brad
*/
public class SingletonFactory implements Factory {
private static final Logger log = LoggerFactory.getLogger(SingletonFactory.class);
private Object bean;
private Class[] keyClasses;
@Override
public Class[] keyClasses() {
return keyClasses;
}
@Override
public String[] keyIds() {
return null;
}
@Override
public Registration insert(RootContext context, Context requestContext) {
return context.put(bean);
}
@Override
public void init(RootContext context) {
}
@Override
public void destroy() {
if (bean instanceof Closeable) {
log.warn("closing: {}", bean.getClass());
Closeable c = (Closeable) bean;
try {
c.close();
} catch (IOException ex) {
log.error("Exception closing: " + bean.getClass(), ex);
}
} else {
log.warn("not closing: {}", bean.getClass());
}
}
@Override
public void onRemove(Object item) {
}
public String getBeanClass() {
return bean.getClass().getCanonicalName();
}
public String getKeyClasses() {
StringBuilder s = new StringBuilder();
for (Class c : keyClasses) {
s.append(c.getCanonicalName()).append(",");
}
return s.toString();
}
public void setBean(Object bean) {
this.bean = bean;
List list = new ArrayList<>();
list.add(bean.getClass());
log.debug("setBean: " + bean.getClass().getCanonicalName());
for (Class c : this.bean.getClass().getInterfaces()) {
list.add(c);
log.debug(" - add interface: " + c.getCanonicalName());
}
Class superClass = this.bean.getClass().getSuperclass();
while (superClass != null) {
list.add(superClass);
superClass = superClass.getSuperclass();
}
this.keyClasses = new Class[list.size()];
list.toArray(keyClasses);
}
public Object getBean() {
return bean;
}
@Override
public String toString() {
if (bean != null) {
return "SingletonFactory(" + bean.getClass() + ")";
} else {
return super.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy