All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.persistence.view.impl.change.BasicElementSingularChangeModel Maven / Gradle / Ivy

There is a newer version: 1.6.11
Show newest version
/*
 * Copyright 2014 - 2020 Blazebit.
 *
 * 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 com.blazebit.persistence.view.impl.change;

import com.blazebit.persistence.view.change.ChangeModel;
import com.blazebit.persistence.view.change.MapChangeModel;
import com.blazebit.persistence.view.change.PluralChangeModel;
import com.blazebit.persistence.view.change.SingularChangeModel;
import com.blazebit.persistence.view.impl.metamodel.AbstractMethodAttribute;
import com.blazebit.persistence.view.impl.metamodel.BasicTypeImpl;
import com.blazebit.persistence.view.metamodel.MapAttribute;
import com.blazebit.persistence.view.metamodel.MethodMapAttribute;
import com.blazebit.persistence.view.metamodel.MethodPluralAttribute;
import com.blazebit.persistence.view.metamodel.MethodSingularAttribute;
import com.blazebit.persistence.view.metamodel.PluralAttribute;
import com.blazebit.persistence.view.metamodel.SingularAttribute;

import java.util.Collection;
import java.util.Collections;
import java.util.List;

/**
 * @author Christian Beikov
 * @since 1.2.0
 */
public class BasicElementSingularChangeModel extends AbstractChangeModel implements SingularChangeModel {

    private final V current;
    private final DirtyChecker dirtyChecker;

    public BasicElementSingularChangeModel(BasicTypeImpl basicType, V current, DirtyChecker dirtyChecker) {
        super(null, basicType);
        this.current = current;
        this.dirtyChecker = dirtyChecker;
    }

    @Override
    public V getInitialState() {
        return null;
    }

    @Override
    public V getCurrentState() {
        return current;
    }

    @Override
    public ChangeKind getKind() {
        if (dirtyChecker != null) {
            if (dirtyChecker.getDirtyKind(null, current) != DirtyChecker.DirtyKind.NONE) {
                return ChangeKind.MUTATED;
            }
            return ChangeKind.NONE;
        } else {
            return ChangeKind.NONE;
        }
    }

    @Override
    public boolean isDirty() {
        if (dirtyChecker != null) {
            if (dirtyChecker.getDirtyKind(null, current) != DirtyChecker.DirtyKind.NONE) {
                return true;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }

    @Override
    public boolean isDirty(String attributePath) {
        throw illegalDereference();
    }

    @Override
    public boolean isChanged(String attributePath) {
        throw illegalDereference();
    }

    @Override
    public List> getDirtyChanges() {
        return Collections.emptyList();
    }

    @Override
    public  ChangeModel get(String attributePath) {
        throw illegalDereference();
    }

    @Override
    protected  ChangeModel get(AbstractMethodAttribute methodAttribute) {
        throw illegalDereference();
    }

    @Override
    public  List> getAll(String attributePath) {
        throw illegalDereference();
    }

    @Override
    public  SingularChangeModel get(SingularAttribute attribute) {
        throw illegalDereference();
    }

    @Override
    public > PluralChangeModel get(PluralAttribute attribute) {
        throw illegalDereference();
    }

    @Override
    public  MapChangeModel get(MapAttribute attribute) {
        throw illegalDereference();
    }

    @Override
    public  SingularChangeModel get(MethodSingularAttribute attribute) {
        throw illegalDereference();
    }

    @Override
    public > PluralChangeModel get(MethodPluralAttribute attribute) {
        throw illegalDereference();
    }

    @Override
    public  MapChangeModel get(MethodMapAttribute attribute) {
        throw illegalDereference();
    }

    private IllegalStateException illegalDereference() {
        return new IllegalStateException("Illegal dereference of basic type attribute!");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy