1 /* 2 * Copyright (C) 2015 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.google.currysrc.api.output; 17 18 import com.google.currysrc.api.process.ast.PackageMatcher; 19 20 import org.eclipse.jdt.core.dom.CompilationUnit; 21 22 import java.io.File; 23 24 /** 25 * Generate the output source file name from a CompilationUnit's package information. 26 */ 27 public final class BasicOutputSourceFileGenerator implements OutputSourceFileGenerator { 28 29 private final File baseDir; 30 31 public BasicOutputSourceFileGenerator(File baseDir) { 32 this.baseDir = baseDir; 33 } 34 35 @Override 36 public File generate(CompilationUnit cu, File inputFile) { 37 String sourceFileName = inputFile.getName(); 38 String fqn = PackageMatcher.getPackageName(cu); 39 String packageSubDir = fqn.replace(".", File.separator); 40 return new File(new File(baseDir, packageSubDir), sourceFileName); 41 } 42 } 43