net.openhft.lang.model.DataValueClasses Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lang Show documentation
Show all versions of lang Show documentation
Java Lang library for High Frequency Trading (Java 6+)
/*
* Copyright (C) 2015 higherfrequencytrading.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package net.openhft.lang.model;
import net.openhft.lang.io.DirectStore;
import java.util.WeakHashMap;
/**
* This class is a central access point for loading generated on-heap and off heap collections.
*/
public enum DataValueClasses {
;
// the weak hash map is required as the class loader could go away without notice e.g. in OSGi
private static final WeakHashMap cacheMap = new WeakHashMap();
public static T newInstance(Class interfaceClass) {
DataValueClassCache dataValueClassCache = acquireCache(interfaceClass);
return dataValueClassCache.newInstance(interfaceClass);
}
public static T newDirectReference(Class interfaceClass) {
DataValueClassCache dataValueClassCache = acquireCache(interfaceClass);
return dataValueClassCache.newDirectReference(interfaceClass);
}
public static T newDirectInstance(Class interfaceClass) {
T t = newDirectReference(interfaceClass);
Byteable b = (Byteable) t;
b.bytes(DirectStore.allocate(b.maxSize()).bytes(), 0);
return t;
}
public static Class heapClassFor(Class interfaceClass) {
DataValueClassCache dataValueClassCache = acquireCache(interfaceClass);
return dataValueClassCache.heapClassFor(interfaceClass);
}
public static Class directClassFor(Class interfaceClass) {
DataValueClassCache dataValueClassCache = acquireCache(interfaceClass);
return dataValueClassCache.directClassFor(interfaceClass);
}
private static DataValueClassCache acquireCache(Class interfaceClass) {
ClassLoader classLoader = interfaceClass.getClassLoader();
DataValueClassCache dataValueClassCache;
synchronized (cacheMap) {
dataValueClassCache = cacheMap.get(classLoader);
if (dataValueClassCache == null)
cacheMap.put(classLoader, dataValueClassCache = new DataValueClassCache());
}
return dataValueClassCache;
}
}