Search in sources :

Example 6 with ClassWithJavascript

use of org.stjs.generator.ClassWithJavascript in project st-js by st-js.

the class DependencyTest method testFieldStaticDep.

@Test
public void testFieldStaticDep() {
    generate(Dep7s.class);
    generate(Dep7b.class);
    ClassWithJavascript jsClass = stjsClass(Dep7b.class);
    assertNotNull(jsClass);
    assertDependency(jsClass.getDirectDependencyMap(), Dep7s.class, DependencyType.STATIC);
}
Also used : ClassWithJavascript(org.stjs.generator.ClassWithJavascript) AbstractStjsTest(org.stjs.generator.utils.AbstractStjsTest) Test(org.junit.Test)

Example 7 with ClassWithJavascript

use of org.stjs.generator.ClassWithJavascript in project st-js by st-js.

the class DependencyTest method testExtendsDep.

@Test
public void testExtendsDep() {
    generate(Dep6Parent.class);
    generate(Dep6Child.class);
    ClassWithJavascript jsClass = stjsClass(Dep6Child.class);
    assertNotNull(jsClass);
    assertDependency(jsClass.getDirectDependencyMap(), Dep6Parent.class, DependencyType.EXTENDS);
}
Also used : ClassWithJavascript(org.stjs.generator.ClassWithJavascript) AbstractStjsTest(org.stjs.generator.utils.AbstractStjsTest) Test(org.junit.Test)

Example 8 with ClassWithJavascript

use of org.stjs.generator.ClassWithJavascript in project st-js by st-js.

the class DependencyTest method testNewDep.

@Test
public void testNewDep() {
    generate(Dep7s.class);
    generate(Dep8.class);
    ClassWithJavascript jsClass = stjsClass(Dep8.class);
    assertNotNull(jsClass);
    assertDependency(jsClass.getDirectDependencyMap(), Dep7s.class, DependencyType.STATIC);
}
Also used : ClassWithJavascript(org.stjs.generator.ClassWithJavascript) AbstractStjsTest(org.stjs.generator.utils.AbstractStjsTest) Test(org.junit.Test)

Example 9 with ClassWithJavascript

use of org.stjs.generator.ClassWithJavascript in project st-js by st-js.

the class DependencyTest method testOtherDep.

@Test
public void testOtherDep() {
    generate(Dep10p.class);
    generate(Dep10.class);
    ClassWithJavascript jsClass = stjsClass(Dep10.class);
    assertNotNull(jsClass);
    assertDependency(jsClass.getDirectDependencyMap(), Dep10p.class, DependencyType.OTHER);
}
Also used : ClassWithJavascript(org.stjs.generator.ClassWithJavascript) AbstractStjsTest(org.stjs.generator.utils.AbstractStjsTest) Test(org.junit.Test)

Example 10 with ClassWithJavascript

use of org.stjs.generator.ClassWithJavascript in project st-js by st-js.

the class AbstractSTJSMojo method packFiles.

/**
 * packs all the files in a single file
 *
 * @param generator
 *            a {@link org.stjs.generator.Generator} object.
 * @param gendir
 *            a {@link org.stjs.generator.GenerationDirectory} object.
 * @throws org.apache.maven.plugin.MojoFailureException
 * @throws org.apache.maven.plugin.MojoExecutionException
 */
protected void packFiles(Generator generator, GenerationDirectory gendir) throws MojoFailureException, MojoExecutionException {
    if (!pack) {
        return;
    }
    OutputStream allSourcesFile = null;
    Writer packMapStream = null;
    ClassLoader builtProjectClassLoader = getBuiltProjectClassLoader();
    Map<String, File> currentProjectsFiles = new HashMap<String, File>();
    // pack the files
    try {
        DirectedGraph<String, DefaultEdge> dependencyGraph = new DefaultDirectedGraph<String, DefaultEdge>(DefaultEdge.class);
        File outputFile = new File(gendir.getGeneratedSourcesAbsolutePath(), project.getArtifactId() + ".js");
        allSourcesFile = new BufferedOutputStream(new FileOutputStream(outputFile));
        for (String sourceRoot : getCompileSourceRoots()) {
            File sourceDir = new File(sourceRoot);
            List<File> sources = new ArrayList<File>();
            SourceMapping mapping = new SuffixMapping(".java", ".js");
            SourceMapping stjsMapping = new SuffixMapping(".java", ".stjs");
            // take all the files
            sources = accumulateSources(gendir, sourceDir, mapping, stjsMapping, Integer.MIN_VALUE);
            for (File source : sources) {
                File absoluteTarget = (File) mapping.getTargetFiles(gendir.getGeneratedSourcesAbsolutePath(), source.getPath()).iterator().next();
                String className = getClassNameForSource(source.getPath());
                if (!absoluteTarget.exists()) {
                    getLog().debug(className + " is a bridge. Don't add it to the pack file");
                    continue;
                }
                // add this file to the hashmap to know that this class is part of the project
                currentProjectsFiles.put(className, absoluteTarget);
                if (getLog().isDebugEnabled()) {
                    getLog().debug("Packing " + absoluteTarget);
                }
                ClassWithJavascript cjs = generator.getExistingStjsClass(builtProjectClassLoader, builtProjectClassLoader.loadClass(className));
                dependencyGraph.addVertex(className);
                for (Map.Entry<ClassWithJavascript, DependencyType> dep : cjs.getDirectDependencyMap().entrySet()) {
                    if (dep.getKey() instanceof STJSClass) {
                        dependencyGraph.addVertex(dep.getKey().getJavaClassName());
                        if (dep.getValue() != DependencyType.OTHER) {
                            dependencyGraph.addEdge(dep.getKey().getJavaClassName(), className);
                        }
                    }
                }
            }
        }
        // check for cycles
        detectCycles(dependencyGraph);
        // dump all the files in the dependency order in the pack file
        SourceMapGeneratorV3 packSourceMap = (SourceMapGeneratorV3) SourceMapGeneratorFactory.getInstance(SourceMapFormat.V3);
        int currentLine = 0;
        Iterator<String> it = new TopologicalOrderIterator<String, DefaultEdge>(dependencyGraph);
        while (it.hasNext()) {
            File targetFile = currentProjectsFiles.get(it.next());
            // target file is absolute
            if (targetFile != null) {
                // for this project's files
                if (generateSourceMap) {
                    currentLine = SourceMapUtils.appendFileSkipSourceMap(gendir.getGeneratedSourcesAbsolutePath(), allSourcesFile, targetFile, currentLine, packSourceMap, sourceEncoding);
                } else {
                    Files.copy(targetFile, allSourcesFile);
                }
                allSourcesFile.flush();
            }
        }
        if (generateSourceMap) {
            File packMapFile = new File(gendir.getGeneratedSourcesAbsolutePath(), project.getArtifactId() + ".map");
            packMapStream = new BufferedWriter(new FileWriter(packMapFile));
            packSourceMap.appendTo(packMapStream, project.getArtifactId() + ".js");
            allSourcesFile.write(("//# sourceMappingURL=" + project.getArtifactId() + ".map\n").getBytes());
            allSourcesFile.flush();
        }
    } catch (Exception ex) {
        throw new MojoFailureException("Error when packing files:" + ex.getMessage(), ex);
    } finally {
        try {
            Closeables.close(allSourcesFile, true);
        } catch (IOException e) {
            LOG.log(Level.SEVERE, "IOException should not have been thrown.", e);
        }
        try {
            Closeables.close(packMapStream, true);
        } catch (IOException e) {
            LOG.log(Level.SEVERE, "IOException should not have been thrown.", e);
        }
    }
}
Also used : HashMap(java.util.HashMap) DefaultDirectedGraph(org.jgrapht.graph.DefaultDirectedGraph) BufferedOutputStream(java.io.BufferedOutputStream) OutputStream(java.io.OutputStream) FileOutputStream(java.io.FileOutputStream) FileWriter(java.io.FileWriter) ArrayList(java.util.ArrayList) TopologicalOrderIterator(org.jgrapht.traverse.TopologicalOrderIterator) STJSClass(org.stjs.generator.STJSClass) SuffixMapping(org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping) SourceMapGeneratorV3(com.google.debugging.sourcemap.SourceMapGeneratorV3) BufferedWriter(java.io.BufferedWriter) DependencyType(org.stjs.generator.name.DependencyType) URLClassLoader(java.net.URLClassLoader) BufferedOutputStream(java.io.BufferedOutputStream) MojoFailureException(org.apache.maven.plugin.MojoFailureException) DefaultEdge(org.jgrapht.graph.DefaultEdge) IOException(java.io.IOException) MultipleFileGenerationException(org.stjs.generator.MultipleFileGenerationException) DependencyResolutionRequiredException(org.apache.maven.artifact.DependencyResolutionRequiredException) JavascriptFileGenerationException(org.stjs.generator.JavascriptFileGenerationException) IOException(java.io.IOException) InclusionScanException(org.codehaus.plexus.compiler.util.scan.InclusionScanException) MojoExecutionException(org.apache.maven.plugin.MojoExecutionException) MojoFailureException(org.apache.maven.plugin.MojoFailureException) FileOutputStream(java.io.FileOutputStream) ClassWithJavascript(org.stjs.generator.ClassWithJavascript) File(java.io.File) SourceMapping(org.codehaus.plexus.compiler.util.scan.mapping.SourceMapping) Map(java.util.Map) HashMap(java.util.HashMap) Writer(java.io.Writer) BufferedWriter(java.io.BufferedWriter) FileWriter(java.io.FileWriter)

Aggregations

ClassWithJavascript (org.stjs.generator.ClassWithJavascript)16 Test (org.junit.Test)12 AbstractStjsTest (org.stjs.generator.utils.AbstractStjsTest)11 File (java.io.File)3 IOException (java.io.IOException)3 URLClassLoader (java.net.URLClassLoader)3 BridgeClass (org.stjs.generator.BridgeClass)3 URI (java.net.URI)2 ArrayList (java.util.ArrayList)2 DependencyResolutionRequiredException (org.apache.maven.artifact.DependencyResolutionRequiredException)2 MojoExecutionException (org.apache.maven.plugin.MojoExecutionException)2 MojoFailureException (org.apache.maven.plugin.MojoFailureException)2 InclusionScanException (org.codehaus.plexus.compiler.util.scan.InclusionScanException)2 SourceMapping (org.codehaus.plexus.compiler.util.scan.mapping.SourceMapping)2 SuffixMapping (org.codehaus.plexus.compiler.util.scan.mapping.SuffixMapping)2 GenerationDirectory (org.stjs.generator.GenerationDirectory)2 Generator (org.stjs.generator.Generator)2 GeneratorConfiguration (org.stjs.generator.GeneratorConfiguration)2 GeneratorConfigurationBuilder (org.stjs.generator.GeneratorConfigurationBuilder)2 JavascriptFileGenerationException (org.stjs.generator.JavascriptFileGenerationException)2