|
| 1 | +package com.aerospike.mapper.tools; |
| 2 | + |
| 3 | +import java.io.BufferedReader; |
| 4 | +import java.io.File; |
| 5 | +import java.io.IOException; |
| 6 | +import java.io.InputStream; |
| 7 | +import java.io.InputStreamReader; |
| 8 | +import java.util.ArrayList; |
| 9 | +import java.util.Arrays; |
| 10 | +import java.util.List; |
| 11 | +import java.util.Set; |
| 12 | +import java.util.stream.Collectors; |
| 13 | + |
| 14 | +import javax.validation.constraints.NotNull; |
| 15 | + |
| 16 | +import org.apache.commons.lang3.StringUtils; |
| 17 | + |
| 18 | +import com.aerospike.client.AerospikeException; |
| 19 | +import com.aerospike.client.Log; |
| 20 | +import com.aerospike.client.policy.BatchPolicy; |
| 21 | +import com.aerospike.client.policy.Policy; |
| 22 | +import com.aerospike.client.policy.QueryPolicy; |
| 23 | +import com.aerospike.client.policy.ScanPolicy; |
| 24 | +import com.aerospike.mapper.annotations.AerospikeRecord; |
| 25 | +import com.aerospike.mapper.tools.ClassCache.PolicyType; |
| 26 | +import com.aerospike.mapper.tools.configuration.ClassConfig; |
| 27 | +import com.aerospike.mapper.tools.configuration.Configuration; |
| 28 | +import com.aerospike.mapper.tools.utils.TypeUtils; |
| 29 | +import com.fasterxml.jackson.core.JsonProcessingException; |
| 30 | +import com.fasterxml.jackson.databind.ObjectMapper; |
| 31 | +import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; |
| 32 | + |
| 33 | +public abstract class AbstractBuilder<T extends IBaseAeroMapper> { |
| 34 | + private final T mapper; |
| 35 | + private List<Class<?>> classesToPreload = null; |
| 36 | + |
| 37 | + protected AbstractBuilder(T mapper) { |
| 38 | + this.mapper = mapper; |
| 39 | + } |
| 40 | + /** |
| 41 | + * Add in a custom type converter. The converter must have methods which implement the ToAerospike and FromAerospike annotation. |
| 42 | + * |
| 43 | + * @param converter The custom converter |
| 44 | + * @return this object |
| 45 | + */ |
| 46 | + public AbstractBuilder<T> addConverter(Object converter) { |
| 47 | + GenericTypeMapper typeMapper = new GenericTypeMapper(converter); |
| 48 | + TypeUtils.addTypeMapper(typeMapper.getMappedClass(), typeMapper); |
| 49 | + |
| 50 | + return this; |
| 51 | + } |
| 52 | + |
| 53 | + public AbstractBuilder<T> preLoadClasses(Class<?>... clazzes) { |
| 54 | + if (classesToPreload == null) { |
| 55 | + classesToPreload = new ArrayList<>(); |
| 56 | + } |
| 57 | + classesToPreload.addAll(Arrays.asList(clazzes)); |
| 58 | + return this; |
| 59 | + } |
| 60 | + |
| 61 | + public String getPackageName(Class<?> clazz) { |
| 62 | + Class<?> c; |
| 63 | + if (clazz.isArray()) { |
| 64 | + c = clazz.getComponentType(); |
| 65 | + } else { |
| 66 | + c = clazz; |
| 67 | + } |
| 68 | + String pn; |
| 69 | + if (c.isPrimitive()) { |
| 70 | + pn = "java.lang"; |
| 71 | + } else { |
| 72 | + String cn = c.getName(); |
| 73 | + int dot = cn.lastIndexOf('.'); |
| 74 | + pn = (dot != -1) ? cn.substring(0, dot).intern() : ""; |
| 75 | + } |
| 76 | + return pn; |
| 77 | + } |
| 78 | + |
| 79 | + public AbstractBuilder<T> preLoadClassesFromPackage(Class<?> classInPackage) { |
| 80 | + return preLoadClassesFromPackage(getPackageName(classInPackage)); |
| 81 | + } |
| 82 | + |
| 83 | + public AbstractBuilder<T> preLoadClassesFromPackage(String thePackage) { |
| 84 | + Set<Class<?>> clazzes = findAllClassesUsingClassLoader(thePackage); |
| 85 | + for (Class<?> thisClazz : clazzes) { |
| 86 | + // Only add classes with the AerospikeRecord annotation. |
| 87 | + if (thisClazz.getAnnotation(AerospikeRecord.class) != null) { |
| 88 | + this.preLoadClass(thisClazz); |
| 89 | + } |
| 90 | + } |
| 91 | + return this; |
| 92 | + } |
| 93 | + |
| 94 | + // See https://www.baeldung.com/java-find-all-classes-in-package |
| 95 | + private Set<Class<?>> findAllClassesUsingClassLoader(String packageName) { |
| 96 | + InputStream stream = ClassLoader.getSystemClassLoader() |
| 97 | + .getResourceAsStream(packageName.replaceAll("[.]", "/")); |
| 98 | + BufferedReader reader = new BufferedReader(new InputStreamReader(stream)); |
| 99 | + return reader.lines().filter(line -> line.endsWith(".class")).map(line -> getClass(line, packageName)) |
| 100 | + .collect(Collectors.toSet()); |
| 101 | + } |
| 102 | + |
| 103 | + private Class<?> getClass(String className, String packageName) { |
| 104 | + try { |
| 105 | + return Class.forName(packageName + "." + className.substring(0, className.lastIndexOf('.'))); |
| 106 | + } catch (ClassNotFoundException ignored) { |
| 107 | + } |
| 108 | + return null; |
| 109 | + } |
| 110 | + |
| 111 | + public AbstractBuilder<T> preLoadClass(Class<?> clazz) { |
| 112 | + if (classesToPreload == null) { |
| 113 | + classesToPreload = new ArrayList<>(); |
| 114 | + } |
| 115 | + classesToPreload.add(clazz); |
| 116 | + return this; |
| 117 | + } |
| 118 | + |
| 119 | + public AbstractBuilder<T> withConfigurationFile(File file) throws IOException { |
| 120 | + return this.withConfigurationFile(file, false); |
| 121 | + } |
| 122 | + |
| 123 | + public AbstractBuilder<T> withConfigurationFile(File file, boolean allowsInvalid) throws IOException { |
| 124 | + ObjectMapper objectMapper = new ObjectMapper(new YAMLFactory()); |
| 125 | + Configuration configuration = objectMapper.readValue(file, Configuration.class); |
| 126 | + this.loadConfiguration(configuration, allowsInvalid); |
| 127 | + return this; |
| 128 | + } |
| 129 | + |
| 130 | + public AbstractBuilder<T> withConfigurationFile(InputStream ios) throws IOException { |
| 131 | + return this.withConfigurationFile(ios, false); |
| 132 | + } |
| 133 | + |
| 134 | + public AbstractBuilder<T> withConfigurationFile(InputStream ios, boolean allowsInvalid) throws IOException { |
| 135 | + ObjectMapper objectMapper = new ObjectMapper(new YAMLFactory()); |
| 136 | + Configuration configuration = objectMapper.readValue(ios, Configuration.class); |
| 137 | + this.loadConfiguration(configuration, allowsInvalid); |
| 138 | + return this; |
| 139 | + } |
| 140 | + |
| 141 | + public AbstractBuilder<T> withConfiguration(String configurationYaml) throws JsonProcessingException { |
| 142 | + return this.withConfiguration(configurationYaml, false); |
| 143 | + } |
| 144 | + |
| 145 | + public AbstractBuilder<T> withConfiguration(String configurationYaml, boolean allowsInvalid) throws JsonProcessingException { |
| 146 | + ObjectMapper objectMapper = new ObjectMapper(new YAMLFactory()); |
| 147 | + Configuration configuration = objectMapper.readValue(configurationYaml, Configuration.class); |
| 148 | + this.loadConfiguration(configuration, allowsInvalid); |
| 149 | + return this; |
| 150 | + } |
| 151 | + |
| 152 | + public AbstractBuilder<T> withClassConfigurations(ClassConfig classConfig, ClassConfig ...classConfigs) { |
| 153 | + Configuration configuration = new Configuration(); |
| 154 | + configuration.add(classConfig); |
| 155 | + for (ClassConfig thisConfig : classConfigs) { |
| 156 | + configuration.add(thisConfig); |
| 157 | + } |
| 158 | + ClassCache.getInstance().addConfiguration(configuration); |
| 159 | + return this; |
| 160 | + |
| 161 | + } |
| 162 | + |
| 163 | + private void loadConfiguration(@NotNull Configuration configuration, boolean allowsInvalid) { |
| 164 | + for (ClassConfig config : configuration.getClasses()) { |
| 165 | + try { |
| 166 | + String name = config.getClassName(); |
| 167 | + if (StringUtils.isBlank(name)) { |
| 168 | + throw new AerospikeException("Class with blank name in configuration file"); |
| 169 | + } else { |
| 170 | + try { |
| 171 | + Class.forName(config.getClassName()); |
| 172 | + } catch (ClassNotFoundException e) { |
| 173 | + throw new AerospikeException("Cannot find a class with name " + name); |
| 174 | + } |
| 175 | + } |
| 176 | + } catch (RuntimeException re) { |
| 177 | + if (allowsInvalid) { |
| 178 | + Log.warn("Ignoring issue with configuration: " + re.getMessage()); |
| 179 | + } else { |
| 180 | + throw re; |
| 181 | + } |
| 182 | + } |
| 183 | + } |
| 184 | + ClassCache.getInstance().addConfiguration(configuration); |
| 185 | + } |
| 186 | + |
| 187 | + public static class AeroPolicyMapper<T extends IBaseAeroMapper> { |
| 188 | + private final AbstractBuilder<T> builder; |
| 189 | + private final Policy policy; |
| 190 | + private final PolicyType policyType; |
| 191 | + |
| 192 | + public AeroPolicyMapper(AbstractBuilder<T> builder, PolicyType policyType, Policy policy) { |
| 193 | + this.builder = builder; |
| 194 | + this.policyType = policyType; |
| 195 | + this.policy = policy; |
| 196 | + } |
| 197 | + |
| 198 | + public AbstractBuilder<T> forClasses(Class<?>... classes) { |
| 199 | + for (Class<?> thisClass : classes) { |
| 200 | + ClassCache.getInstance().setSpecificPolicy(policyType, thisClass, policy); |
| 201 | + } |
| 202 | + return builder; |
| 203 | + } |
| 204 | + |
| 205 | + public AbstractBuilder<T> forThisOrChildrenOf(Class<?> clazz) { |
| 206 | + ClassCache.getInstance().setChildrenPolicy(this.policyType, clazz, this.policy); |
| 207 | + return builder; |
| 208 | + } |
| 209 | + |
| 210 | + public AbstractBuilder<T> forAll() { |
| 211 | + ClassCache.getInstance().setDefaultPolicy(policyType, policy); |
| 212 | + return builder; |
| 213 | + } |
| 214 | + } |
| 215 | + |
| 216 | + public AeroPolicyMapper<T> withReadPolicy(Policy policy) { |
| 217 | + return new AeroPolicyMapper<>(this, PolicyType.READ, policy); |
| 218 | + } |
| 219 | + |
| 220 | + public AeroPolicyMapper<T> withWritePolicy(Policy policy) { |
| 221 | + return new AeroPolicyMapper<>(this, PolicyType.WRITE, policy); |
| 222 | + } |
| 223 | + |
| 224 | + public AeroPolicyMapper<T> withBatchPolicy(BatchPolicy policy) { |
| 225 | + return new AeroPolicyMapper<>(this, PolicyType.BATCH, policy); |
| 226 | + } |
| 227 | + |
| 228 | + public AeroPolicyMapper<T> withScanPolicy(ScanPolicy policy) { |
| 229 | + return new AeroPolicyMapper<>(this, PolicyType.SCAN, policy); |
| 230 | + } |
| 231 | + |
| 232 | + public AeroPolicyMapper<T> withQueryPolicy(QueryPolicy policy) { |
| 233 | + return new AeroPolicyMapper<>(this, PolicyType.QUERY, policy); |
| 234 | + } |
| 235 | + |
| 236 | + public T build() { |
| 237 | + if (classesToPreload != null) { |
| 238 | + for (Class<?> clazz : classesToPreload) { |
| 239 | + ClassCache.getInstance().loadClass(clazz, this.mapper); |
| 240 | + } |
| 241 | + } |
| 242 | + return this.mapper; |
| 243 | + } |
| 244 | +} |
0 commit comments