de.mhus.lib.adb.model.TableDynamic Maven / Gradle / Ivy
/**
* Copyright (C) 2020 Mike Hummel ([email protected])
*
* 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 de.mhus.lib.adb.model;
import java.io.IOException;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import de.mhus.lib.adb.DbDynamic;
import de.mhus.lib.annotations.adb.DbIndex;
import de.mhus.lib.core.pojo.PojoAttribute;
import de.mhus.lib.errors.MException;
/**
* TableDynamic class.
*
* @author mikehummel
* @version $Id: $Id
*/
public class TableDynamic extends Table {
/**
* {@inheritDoc}
*
* @throws SecurityException
* @throws NoSuchMethodException
* @throws InvocationTargetException
* @throws IllegalArgumentException
*/
@Override
protected void parseFields()
throws InstantiationException, IllegalAccessException, MException,
IllegalArgumentException, InvocationTargetException, NoSuchMethodException,
SecurityException {
DbDynamic.Field[] fa =
((DbDynamic) clazz.getDeclaredConstructor().newInstance()).getFieldDefinitions();
for (DbDynamic.Field f : fa) {
PojoAttribute> attr = new DynamicAttribute(f);
Field field =
manager.getSchema()
.createField(
manager,
this,
f.isPrimaryKey(),
f.isReadOnly(),
!f.isPersistent(),
attr,
f.getAttributes(),
f,
null);
if (field != null) addField(field);
// indexes
String[] indexes = f.getIndexes();
if (indexes != null) {
addToIndex(indexes, DbIndex.TYPE.AUTO, "", field);
}
}
}
private class DynamicAttribute implements PojoAttribute