net.sourceforge.fenixedu.domain.SchoolClass.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.fenixedu.domain.SchoolClass.java

Source

/**
 * Copyright  2002 Instituto Superior Tcnico
 *
 * This file is part of FenixEdu Core.
 *
 * FenixEdu Core 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, or
 * (at your option) any later version.
 *
 * FenixEdu Core 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 FenixEdu Core.  If not, see <http://www.gnu.org/licenses/>.
 */
package net.sourceforge.fenixedu.domain;

import static net.sourceforge.fenixedu.injectionCode.AccessControl.check;

import java.util.Comparator;
import java.util.HashSet;
import java.util.Set;

import net.sourceforge.fenixedu.domain.exceptions.DomainException;
import net.sourceforge.fenixedu.domain.time.calendarStructure.AcademicInterval;
import net.sourceforge.fenixedu.predicates.ResourceAllocationRolePredicates;

import org.apache.commons.lang.StringUtils;
import org.fenixedu.bennu.core.domain.Bennu;

/**
 * 
 * @author Luis Cruz & Sara Ribeiro
 */
public class SchoolClass extends SchoolClass_Base {

    public static final Comparator<SchoolClass> COMPARATOR_BY_NAME = new Comparator<SchoolClass>() {

        @Override
        public int compare(SchoolClass o1, SchoolClass o2) {
            final int i = o1.getNome().compareTo(o2.getNome());
            return i == 0 ? o1.getExternalId().compareTo(o2.getExternalId()) : i;
        }

    };

    public SchoolClass(final ExecutionDegree executionDegree, final ExecutionSemester executionSemester,
            final String name, final Integer curricularYear) {
        //        check(this, ResourceAllocationRolePredicates.checkPermissionsToManageSchoolClass);
        super();

        checkIfExistsSchoolClassWithSameName(executionDegree, executionSemester, curricularYear, name);

        setRootDomainObject(Bennu.getInstance());
        setExecutionDegree(executionDegree);
        setExecutionPeriod(executionSemester);
        setAnoCurricular(curricularYear);
        setNome(name);
    }

    public SchoolClass(ExecutionDegree executionDegree, AcademicInterval academicInterval, String name,
            Integer curricularYear) {
        //        check(this, ResourceAllocationRolePredicates.checkPermissionsToManageSchoolClass);
        super();

        ExecutionSemester executionInterval = (ExecutionSemester) ExecutionInterval
                .getExecutionInterval(academicInterval);
        checkIfExistsSchoolClassWithSameName(executionDegree, executionInterval, curricularYear, name);

        setRootDomainObject(Bennu.getInstance());
        setExecutionDegree(executionDegree);
        // FIXME: cast shouldn't be needed, SchoolClass should relate directly
        // with ExecutionInterval.
        setExecutionPeriod(executionInterval);
        setAnoCurricular(curricularYear);
        setNome(name);
    }

    public void edit(String name) {
        check(this, ResourceAllocationRolePredicates.checkPermissionsToManageSchoolClass);
        if (name != null && !StringUtils.isEmpty(name.trim())) {
            final SchoolClass otherClassWithSameNewName = getExecutionDegree()
                    .findSchoolClassesByExecutionPeriodAndName(getExecutionPeriod(), name.trim());
            if (otherClassWithSameNewName != null && !otherClassWithSameNewName.equals(this)) {
                throw new DomainException("Duplicate Entry: " + otherClassWithSameNewName.getNome());
            }
        }
        setNome(name);
    }

    public void delete() {
        check(this, ResourceAllocationRolePredicates.checkPermissionsToManageSchoolClass);
        getAssociatedShiftsSet().clear();
        super.setExecutionDegree(null);
        super.setExecutionPeriod(null);
        setRootDomainObject(null);
        deleteDomainObject();
    }

    @Override
    public void setExecutionDegree(ExecutionDegree executionDegree) {
        if (executionDegree == null) {
            throw new DomainException("error.SchoolClass.empty.executionDegree");
        }
        super.setExecutionDegree(executionDegree);
    }

    @Override
    public void setExecutionPeriod(ExecutionSemester executionSemester) {
        if (executionSemester == null) {
            throw new DomainException("error.SchoolClass.empty.executionPeriod");
        }
        super.setExecutionPeriod(executionSemester);
    }

    @Override
    public void setAnoCurricular(Integer anoCurricular) {
        if (anoCurricular == null || anoCurricular.intValue() < 1) {
            throw new DomainException("error.SchoolClass.invalid.curricularYear");
        }
        super.setAnoCurricular(anoCurricular);
    }

    @Override
    public void setNome(String name) {
        if (name == null || StringUtils.isEmpty(name.trim())) {
            throw new DomainException("error.SchoolClass.empty.name");
        }
        final DegreeCurricularPlan degreeCurricularPlan = getExecutionDegree().getDegreeCurricularPlan();
        final Degree degree = degreeCurricularPlan.getDegree();
        super.setNome(constructName(degree, name.trim(), getAnoCurricular()));
    }

    private void checkIfExistsSchoolClassWithSameName(ExecutionDegree executionDegree,
            ExecutionSemester executionSemester, Integer curricularYear, String className) {

        if (executionDegree != null && executionSemester != null && curricularYear != null && className != null) {

            final DegreeCurricularPlan degreeCurricularPlan = executionDegree.getDegreeCurricularPlan();
            final Set<SchoolClass> classes = executionDegree
                    .findSchoolClassesByExecutionPeriodAndCurricularYear(executionSemester, curricularYear);
            final Degree degree = degreeCurricularPlan.getDegree();
            final String schoolClassName = degree.constructSchoolClassPrefix(curricularYear) + className;

            for (final SchoolClass schoolClass : classes) {
                if (!schoolClass.equals(this) && schoolClassName.equalsIgnoreCase(schoolClass.getNome())) {
                    throw new DomainException("Duplicate Entry: " + className + " for curricular year "
                            + curricularYear + " and degree curricular plan " + degreeCurricularPlan.getName());
                }
            }
        }
    }

    protected String constructName(final Degree degree, final String name, final Integer curricularYear) {
        return degree.constructSchoolClassPrefix(curricularYear) + name;
    }

    public void associateShift(Shift shift) {
        if (shift == null) {
            throw new NullPointerException();
        }
        if (!this.getAssociatedShiftsSet().contains(shift)) {
            this.getAssociatedShiftsSet().add(shift);
        }
        if (!shift.getAssociatedClassesSet().contains(this)) {
            shift.getAssociatedClassesSet().add(this);
        }
    }

    public Set<Shift> findAvailableShifts() {
        final ExecutionDegree executionDegree = getExecutionDegree();
        final DegreeCurricularPlan degreeCurricularPlan = executionDegree.getDegreeCurricularPlan();

        final Set<Shift> shifts = new HashSet<Shift>();
        for (final CurricularCourse curricularCourse : degreeCurricularPlan.getCurricularCoursesSet()) {
            if (curricularCourse.hasScopeForCurricularYear(getAnoCurricular(), getExecutionPeriod())) {
                for (final ExecutionCourse executionCourse : curricularCourse.getAssociatedExecutionCoursesSet()) {
                    if (executionCourse.getExecutionPeriod() == getExecutionPeriod()) {
                        shifts.addAll(executionCourse.getAssociatedShifts());
                    }
                }
            }
        }
        shifts.removeAll(getAssociatedShiftsSet());
        return shifts;
    }

    public Object getEditablePartOfName() {
        final DegreeCurricularPlan degreeCurricularPlan = getExecutionDegree().getDegreeCurricularPlan();
        final Degree degree = degreeCurricularPlan.getDegree();
        return StringUtils.substringAfter(getNome(), degree.constructSchoolClassPrefix(getAnoCurricular()));
    }

    public AcademicInterval getAcademicInterval() {
        return getExecutionPeriod().getAcademicInterval();
    }

}