is.codion.framework.model.DefaultEntityApplicationModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codion-framework-model Show documentation
Show all versions of codion-framework-model Show documentation
Codion Application Framework
/*
* This file is part of Codion.
*
* Codion is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Codion 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Codion. If not, see .
*
* Copyright (c) 2008 - 2024, Björn Darri Sigurðsson.
*/
package is.codion.framework.model;
import is.codion.common.user.User;
import is.codion.common.version.Version;
import is.codion.framework.db.EntityConnection;
import is.codion.framework.db.EntityConnectionProvider;
import is.codion.framework.domain.entity.Entities;
import is.codion.framework.domain.entity.EntityType;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import static java.util.Objects.requireNonNull;
/**
* A central application model class.
* @param the type of {@link DefaultEntityModel} this application model is based on
* @param the type of {@link AbstractEntityEditModel} used by this {@link EntityModel}
* @param the type of {@link EntityTableModel} used by this {@link EntityModel}
*/
public class DefaultEntityApplicationModel,
E extends AbstractEntityEditModel, T extends EntityTableModel> implements EntityApplicationModel {
private final EntityConnectionProvider connectionProvider;
private final Version version;
private final List entityModels = new ArrayList<>();
/**
* Instantiates a new DefaultEntityApplicationModel
* @param connectionProvider the EntityConnectionProvider instance
* @throws NullPointerException in case connectionProvider is null
*/
public DefaultEntityApplicationModel(EntityConnectionProvider connectionProvider) {
this(connectionProvider, null);
}
/**
* Instantiates a new DefaultEntityApplicationModel
* @param connectionProvider the EntityConnectionProvider instance
* @param version the application version
* @throws NullPointerException in case connectionProvider is null
*/
public DefaultEntityApplicationModel(EntityConnectionProvider connectionProvider, Version version) {
this.connectionProvider = requireNonNull(connectionProvider, "connectionProvider");
this.version = version;
}
@Override
public final User user() {
return connectionProvider.connection().user();
}
@Override
public final EntityConnectionProvider connectionProvider() {
return connectionProvider;
}
@Override
public final EntityConnection connection() {
return connectionProvider.connection();
}
@Override
public final Optional version() {
return Optional.ofNullable(version);
}
@Override
public final Entities entities() {
return connectionProvider.entities();
}
@Override
@SafeVarargs
public final void addEntityModels(M... entityModels) {
requireNonNull(entityModels, "entityModels");
for (M entityModel : entityModels) {
addEntityModel(entityModel);
}
}
@Override
public final void addEntityModel(M entityModel) {
if (this.entityModels.contains(requireNonNull(entityModel))) {
throw new IllegalArgumentException("Entity model " + entityModel + " has already been added");
}
this.entityModels.add(entityModel);
}
@Override
public final boolean containsEntityModel(Class extends M> modelClass) {
return entityModels.stream()
.anyMatch(entityModel -> entityModel.getClass().equals(modelClass));
}
@Override
public final boolean containsEntityModel(EntityType entityType) {
return entityModels.stream()
.anyMatch(entityModel -> entityModel.entityType().equals(entityType));
}
@Override
public final boolean containsEntityModel(M entityModel) {
return entityModels.contains(entityModel);
}
@Override
public final List entityModels() {
return Collections.unmodifiableList(entityModels);
}
@Override
public final void refresh() {
for (M entityModel : entityModels) {
if (entityModel.containsTableModel()) {
entityModel.tableModel().refresh();
}
}
}
@Override
public final C entityModel(Class modelClass) {
for (M model : entityModels) {
if (model.getClass().equals(modelClass)) {
return (C) model;
}
}
throw new IllegalArgumentException("EntityModel of type: " + modelClass + " not found");
}
@Override
public final C entityModel(EntityType entityType) {
for (M entityModel : entityModels) {
if (entityModel.entityType().equals(entityType)) {
return (C) entityModel;
}
}
throw new IllegalArgumentException("EntityModel for type " + entityType + " not found in model: " + this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy