문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
javascript:performance:closurecompiler [2012/10/23 17:20] kwon37xi [문제점] |
javascript:performance:closurecompiler [2015/06/18 11:19] (현재) kwon37xi [설치 사용] |
||
---|---|---|---|
줄 1: | 줄 1: | ||
====== Google Javascript Closure Compiler ====== | ====== Google Javascript Closure Compiler ====== | ||
- | * [[https://developers.google.com/ | + | * [[https://github.com/google/ |
+ | * [[https:// | ||
===== 역할 ===== | ===== 역할 ===== | ||
줄 13: | 줄 14: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | |||
===== 설치 사용 ===== | ===== 설치 사용 ===== | ||
* [[http:// | * [[http:// | ||
줄 25: | 줄 27: | ||
* [[https:// | * [[https:// | ||
* '' | * '' | ||
- | * '' | + | * '' |
* '' | * '' | ||
* 적용< | * 적용< | ||
줄 31: | 줄 33: | ||
</ | </ | ||
* Options | * Options | ||
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
===== Ant 연동 ===== | ===== Ant 연동 ===== | ||
* [[http:// | * [[http:// | ||
* [[http:// | * [[http:// | ||
+ | * '' | ||
<code xml> | <code xml> | ||
<?xml version=" | <?xml version=" | ||
줄 72: | 줄 74: | ||
</ | </ | ||
+ | |||
+ | ===== Closure Compiler API ===== | ||
+ | * [[https:// | ||
+ | * 혹은 '' | ||
+ | * 일괄 Minify 예<code java> | ||
+ | import java.io.*; | ||
+ | import java.nio.charset.Charset; | ||
+ | import java.nio.file.*; | ||
+ | import java.nio.file.attribute.BasicFileAttributes; | ||
+ | import java.util.ArrayList; | ||
+ | import java.util.List; | ||
+ | |||
+ | import com.google.javascript.jscomp.*; | ||
+ | import com.google.javascript.jscomp.Compiler; | ||
+ | |||
+ | public class BatchJsMinify { | ||
+ | private static final String[] EXCLUDE_PATTERNS = { " | ||
+ | private static final CompilationLevel DEFAULT_COMPILATION_LEVEL = CompilationLevel.SIMPLE_OPTIMIZATIONS; | ||
+ | |||
+ | private String srcDirName; | ||
+ | private final File srcDir; | ||
+ | |||
+ | private String destDirName; | ||
+ | private final File destDir; | ||
+ | |||
+ | private com.google.javascript.jscomp.Compiler compiler = new Compiler();; | ||
+ | private CompilerOptions options = new CompilerOptions(); | ||
+ | private WarningLevel warningLevel = WarningLevel.QUIET; | ||
+ | |||
+ | public BatchJsMinify(String srcDirName, String destDirName) { | ||
+ | this.srcDirName = srcDirName; | ||
+ | this.destDirName = destDirName; | ||
+ | srcDir = new File(srcDirName); | ||
+ | destDir = new File(destDirName); | ||
+ | |||
+ | if (!srcDir.exists() || !srcDir.isDirectory()) { | ||
+ | throw new IllegalArgumentException(srcDirName + " must exist and be a directory." | ||
+ | } | ||
+ | |||
+ | destDir.mkdirs(); | ||
+ | } | ||
+ | |||
+ | public void compile() throws IOException { | ||
+ | options.setCodingConvention(CodingConventions.getDefault()); | ||
+ | options.setOutputCharset(" | ||
+ | |||
+ | warningLevel.setOptionsForWarningLevel(options); | ||
+ | DEFAULT_COMPILATION_LEVEL.setOptionsForCompilationLevel(options); | ||
+ | |||
+ | final List< | ||
+ | |||
+ | if (jsSourceFiles == null || jsSourceFiles.size() == 0) { | ||
+ | System.out.println(" | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | final List< | ||
+ | |||
+ | compiler.disableThreads(); | ||
+ | final Result result = compiler.compile(defaultExterns, | ||
+ | |||
+ | if (result.success) { | ||
+ | writeToFile(jsSourceFiles); | ||
+ | } else { | ||
+ | printErrors(result); | ||
+ | } | ||
+ | |||
+ | } | ||
+ | |||
+ | private void printErrors(Result result) { | ||
+ | for (JSError error : result.errors) { | ||
+ | System.err.println(" | ||
+ | } | ||
+ | } | ||
+ | |||
+ | private List< | ||
+ | final List< | ||
+ | Files.walkFileTree(Paths.get(srcDirName), | ||
+ | @Override | ||
+ | public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) | ||
+ | throws IOException { | ||
+ | String filename = file.toString(); | ||
+ | |||
+ | if (filename.endsWith(" | ||
+ | final SourceFile sourceFile = SourceFile.fromFile(file.toFile(), | ||
+ | jsSourceFiles.add(sourceFile); | ||
+ | } | ||
+ | return FileVisitResult.CONTINUE; | ||
+ | } | ||
+ | }); | ||
+ | return jsSourceFiles; | ||
+ | } | ||
+ | |||
+ | private void writeToFile(List< | ||
+ | final String[] minified = compiler.toSourceArray(); | ||
+ | |||
+ | for (int i = 0; i < jsSourceFiles.size(); | ||
+ | final SourceFile sourceFile = jsSourceFiles.get(i); | ||
+ | String fileRestPath = sourceFile.getOriginalPath().replace(srcDirName, | ||
+ | final File destFile = new File(destDir, | ||
+ | destFile.getParentFile().mkdirs(); | ||
+ | |||
+ | System.out.println(" | ||
+ | |||
+ | try (BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(destFile), | ||
+ | writer.write(minified[i]); | ||
+ | } catch (IOException e) { | ||
+ | throw new IllegalStateException(" | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ |