blob: 931d3fa5ed9e6eadca244d978eb5b48a426f0889 [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.netbeans.modules.maven.spring;
import java.io.File;
import java.net.URI;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import org.netbeans.api.project.Project;
import org.netbeans.modules.maven.api.FileUtilities;
import org.netbeans.modules.maven.api.NbMavenProject;
import org.netbeans.modules.spring.api.beans.SpringConstants;
import org.netbeans.modules.spring.spi.beans.SpringConfigFileLocationProvider;
import org.netbeans.modules.spring.spi.beans.SpringConfigFileProvider;
import org.netbeans.spi.project.ProjectServiceProvider;
import org.openide.filesystems.FileObject;
import org.openide.filesystems.FileUtil;
import org.openide.util.NbCollections;
/**
*
* @author mkleint
*/
@ProjectServiceProvider(service={SpringConfigFileProvider.class, SpringConfigFileLocationProvider.class}, projectType="org-netbeans-modules-maven")
public class MavenSpringConfigProviderImpl implements SpringConfigFileLocationProvider, SpringConfigFileProvider {
private Project prj;
public MavenSpringConfigProviderImpl(Project project) {
prj = project;
}
/**
* Can return {@code null} if the location is unknown.
*
* @return the location.
*/
@Override
public FileObject getLocation() {
NbMavenProject project = prj.getLookup().lookup(NbMavenProject.class);
if (NbMavenProject.TYPE_WAR.equals(project.getPackagingType())) {
FileObject fo = FileUtilities.convertURItoFileObject(project.getWebAppDirectory());
if (fo != null) {
return fo;
}
}
URI[] res = project.getResources(false);
for (URI resource : res) {
FileObject fo = FileUtilities.convertURItoFileObject(resource);
if (fo != null) {
return fo;
}
}
return null;
}
@Override
public Set<File> getConfigFiles() {
Set<File> result = new HashSet<File>();
NbMavenProject project = prj.getLookup().lookup(NbMavenProject.class);
if (NbMavenProject.TYPE_WAR.equals(project.getPackagingType())) {
FileObject fo = FileUtilities.convertURItoFileObject(project.getWebAppDirectory());
if (fo != null) {
addFilesInRoot(fo, result);
}
}
URI[] res = project.getResources(false);
for (URI resource : res) {
FileObject fo = FileUtilities.convertURItoFileObject(resource);
if (fo != null) {
addFilesInRoot(fo, result);
}
}
return Collections.unmodifiableSet(result);
}
private static void addFilesInRoot(FileObject root, Set<File> result) {
for (FileObject fo : NbCollections.iterable(root.getChildren(true))) {
if (Thread.currentThread().isInterrupted()) {
return;
}
if (!SpringConstants.CONFIG_MIME_TYPE.equals(fo.getMIMEType())) {
continue;
}
File file = FileUtil.toFile(fo);
if (file == null) {
continue;
}
result.add(file);
}
}
}