com.redhat.ceylon.tools.new_.NewSubTool Maven / Gradle / Ivy
/*
* Copyright Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the authors tag. All rights reserved.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU General Public License version 2.
*
* This particular file is subject to the "Classpath" exception as provided in the
* LICENSE file that accompanied this code.
*
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License,
* along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
package com.redhat.ceylon.tools.new_;
import java.io.File;
import java.io.IOException;
import java.util.List;
import com.redhat.ceylon.common.FileUtil;
import com.redhat.ceylon.common.tool.Tool;
import com.redhat.ceylon.common.tools.CeylonTool;
public abstract class NewSubTool implements Tool {
private File directory;
public void setDirectory(File directory) {
this.directory = directory;
}
public File getDirectory() {
return this.directory;
}
void mkBaseDir(File cwd) throws IOException {
if (directory != null) {
File actualDir = FileUtil.applyCwd(cwd, directory);
if (actualDir.exists() && !actualDir.isDirectory()) {
throw new IOException(Messages.msg("path.exists.and.not.dir", directory));
} else if (!actualDir.exists()) {
if (!FileUtil.mkdirs(actualDir)) {
throw new IOException(Messages.msg("could.not.mkdir", directory));
}
}
}
}
public abstract List getVariables();
public abstract List getResources(Environment env);
@Override
public void initialize(CeylonTool mainTool) {
}
@Override
public final void run() throws Exception {
// Projects are never run as tools
throw new RuntimeException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy