Package org.fenixedu.academic.service.services.coordinator

Source Code of org.fenixedu.academic.service.services.coordinator.ReadDegreeCurricularPlanBaseService

/**
* Copyright © 2002 Instituto Superior Técnico
*
* This file is part of FenixEdu Academic.
*
* FenixEdu Academic 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 Academic 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 Academic.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.fenixedu.academic.service.services.coordinator;

import java.util.ArrayList;
import java.util.List;
import java.util.Set;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Transformer;
import org.fenixedu.academic.domain.CurricularCourseScope;
import org.fenixedu.academic.domain.DegreeCurricularPlan;
import org.fenixedu.academic.domain.ExecutionDegree;
import org.fenixedu.academic.domain.ExecutionSemester;
import org.fenixedu.academic.domain.ExecutionYear;
import org.fenixedu.academic.dto.InfoCurricularCourseScope;

import pt.ist.fenixframework.FenixFramework;

/**
* @author Fernanda Quitério 5/Dez/2003
*
* @modified <a href="mailto:amam@mega.ist.utl.pt">Amin Amirali</a> 23/11/2004
* @modified <a href="mailto:frnp@mega.ist.utl.pt">Francisco Paulo</a>
*           23/11/2004
*
*/
abstract public class ReadDegreeCurricularPlanBaseService {

    protected List<InfoCurricularCourseScope> readActiveCurricularCourseScopes(final String degreeCurricularPlanId) {
        List<InfoCurricularCourseScope> infoActiveScopes = null;

        if (degreeCurricularPlanId != null) {

            DegreeCurricularPlan degreeCurricularPlan = FenixFramework.getDomainObject(degreeCurricularPlanId);
            List<CurricularCourseScope> allActiveScopes = degreeCurricularPlan.getActiveCurricularCourseScopes();

            if (allActiveScopes != null && allActiveScopes.size() > 0) {
                infoActiveScopes = new ArrayList<InfoCurricularCourseScope>();

                CollectionUtils.collect(allActiveScopes, new Transformer() {
                    @Override
                    public Object transform(Object input) {
                        CurricularCourseScope curricularCourseScope = (CurricularCourseScope) input;

                        return InfoCurricularCourseScope.newInfoFromDomain(curricularCourseScope);
                    }
                }, infoActiveScopes);
            }
        }

        return infoActiveScopes;

    }

    // Read all curricular course scope of this year
    protected List<InfoCurricularCourseScope> readActiveCurricularCourseScopesInExecutionYear(
            final DegreeCurricularPlan degreeCurricularPlan, final ExecutionYear executionYear) {
        final List<InfoCurricularCourseScope> result = new ArrayList<InfoCurricularCourseScope>();

        if (degreeCurricularPlan != null) {
            for (final CurricularCourseScope curricularCourseScope : degreeCurricularPlan
                    .findCurricularCourseScopesIntersectingPeriod(executionYear.getBeginDate(), executionYear.getEndDate())) {
                result.add(InfoCurricularCourseScope.newInfoFromDomain(curricularCourseScope));
            }
        }

        return result;
    }

    // Read all curricular course scope of this year and curricular year
    protected List<InfoCurricularCourseScope> readActiveCurricularCourseScopesInCurricularYearAndExecutionPeriodAndExecutionDegree(
            final ExecutionSemester executionSemester, final ExecutionDegree executionDegree, final Integer curricularYear) {
        final List<InfoCurricularCourseScope> result = new ArrayList<InfoCurricularCourseScope>();

        if (executionSemester != null) {
            final DegreeCurricularPlan degreeCurricularPlan = executionDegree.getDegreeCurricularPlan();
            final ExecutionYear executionYear = executionSemester.getExecutionYear();
            final Set<CurricularCourseScope> curricularCourseScopes =
                    degreeCurricularPlan.findCurricularCourseScopesIntersectingPeriod(executionYear.getBeginDate(),
                            executionYear.getEndDate());

            for (final CurricularCourseScope curricularCourseScope : curricularCourseScopes) {
                if (curricularCourseScope.getCurricularSemester().getCurricularYear().getYear().equals(curricularYear)) {
                    result.add(InfoCurricularCourseScope.newInfoFromDomain(curricularCourseScope));
                }
            }
        }

        return result;
    }

}
TOP

Related Classes of org.fenixedu.academic.service.services.coordinator.ReadDegreeCurricularPlanBaseService

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.