blob: f737beb58ed140259b97ed5611129a74bba7dfea [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.uima.ruta.ide.validator;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.dltk.ast.declarations.ModuleDeclaration;
import org.eclipse.dltk.compiler.problem.IProblem;
import org.eclipse.dltk.compiler.problem.IProblemReporter;
import org.eclipse.dltk.core.IScriptProject;
import org.eclipse.dltk.core.ISourceModule;
import org.eclipse.dltk.core.builder.IBuildContext;
import org.eclipse.dltk.core.builder.IBuildParticipant;
import org.eclipse.dltk.core.builder.IBuildParticipantExtension;
import org.eclipse.dltk.core.builder.ISourceLineTracker;
/**
* Validator for the complete Ruta project, e.g., checks whether the referenced projects are open.
*
*/
public class RutaProjectChecker implements IBuildParticipant, IBuildParticipantExtension {
public boolean beginBuild(int buildType) {
return true;
}
public void endBuild(IProgressMonitor monitor) {
}
public void build(IBuildContext context) throws CoreException {
Object mdObj = context.get(IBuildContext.ATTR_MODULE_DECLARATION);
if (!(mdObj instanceof ModuleDeclaration)) {
return;
}
IProblemReporter problemReporter = context.getProblemReporter();
ISourceModule smod = context.getSourceModule();
ISourceLineTracker linetracker = context.getLineTracker();
RutaCheckerProblemFactory problemFactory = new RutaCheckerProblemFactory(smod.getElementName(), linetracker);
IScriptProject scriptProject = smod.getScriptProject();
IProject project = scriptProject.getProject();
IProject[] referencedProjects = project.getReferencedProjects();
List<IProject> listOfClosedProjects = new ArrayList<IProject>();
for (IProject each : referencedProjects) {
if(!each.isOpen()) {
listOfClosedProjects.add(each);
}
}
if(!listOfClosedProjects.isEmpty()) {
IProblem problem = problemFactory.createClosedProjectsProblem(listOfClosedProjects);
problemReporter.reportProblem(problem);
}
}
}