Search in sources :

Example 1 with K2JSTranslator

use of org.jetbrains.kotlin.js.facade.K2JSTranslator in project kotlin by JetBrains.

the class K2JSCompiler method doExecute.

@NotNull
@Override
protected ExitCode doExecute(@NotNull K2JSCompilerArguments arguments, @NotNull CompilerConfiguration configuration, @NotNull Disposable rootDisposable) {
    final MessageCollector messageCollector = configuration.getNotNull(CLIConfigurationKeys.MESSAGE_COLLECTOR_KEY);
    if (arguments.freeArgs.isEmpty()) {
        if (arguments.version) {
            return OK;
        }
        messageCollector.report(CompilerMessageSeverity.ERROR, "Specify at least one source file or directory", NO_LOCATION);
        return COMPILATION_ERROR;
    }
    ContentRootsKt.addKotlinSourceRoots(configuration, arguments.freeArgs);
    KotlinCoreEnvironment environmentForJS = KotlinCoreEnvironment.createForProduction(rootDisposable, configuration, EnvironmentConfigFiles.JS_CONFIG_FILES);
    Project project = environmentForJS.getProject();
    List<KtFile> sourcesFiles = environmentForJS.getSourceFiles();
    environmentForJS.getConfiguration().put(CLIConfigurationKeys.ALLOW_KOTLIN_PACKAGE, arguments.allowKotlinPackage);
    if (!checkKotlinPackageUsage(environmentForJS, sourcesFiles))
        return ExitCode.COMPILATION_ERROR;
    if (arguments.outputFile == null) {
        messageCollector.report(CompilerMessageSeverity.ERROR, "Specify output file via -output", CompilerMessageLocation.NO_LOCATION);
        return ExitCode.COMPILATION_ERROR;
    }
    if (messageCollector.hasErrors()) {
        return ExitCode.COMPILATION_ERROR;
    }
    if (sourcesFiles.isEmpty()) {
        messageCollector.report(CompilerMessageSeverity.ERROR, "No source files", CompilerMessageLocation.NO_LOCATION);
        return COMPILATION_ERROR;
    }
    if (arguments.verbose) {
        reportCompiledSourcesList(messageCollector, sourcesFiles);
    }
    File outputFile = new File(arguments.outputFile);
    configuration.put(CommonConfigurationKeys.MODULE_NAME, FileUtil.getNameWithoutExtension(outputFile));
    JsConfig config = new LibrarySourcesConfig(project, configuration);
    if (config.checkLibFilesAndReportErrors(new JsConfig.Reporter() {

        @Override
        public void error(@NotNull String message) {
            messageCollector.report(CompilerMessageSeverity.ERROR, message, CompilerMessageLocation.NO_LOCATION);
        }

        @Override
        public void warning(@NotNull String message) {
            messageCollector.report(CompilerMessageSeverity.STRONG_WARNING, message, CompilerMessageLocation.NO_LOCATION);
        }
    })) {
        return COMPILATION_ERROR;
    }
    AnalyzerWithCompilerReport analyzerWithCompilerReport = analyzeAndReportErrors(messageCollector, sourcesFiles, config);
    if (analyzerWithCompilerReport.hasErrors()) {
        return COMPILATION_ERROR;
    }
    ProgressIndicatorAndCompilationCanceledStatus.checkCanceled();
    AnalysisResult analysisResult = analyzerWithCompilerReport.getAnalysisResult();
    assert analysisResult instanceof JsAnalysisResult : "analysisResult should be instance of JsAnalysisResult, but " + analysisResult;
    JsAnalysisResult jsAnalysisResult = (JsAnalysisResult) analysisResult;
    File outputPrefixFile = null;
    if (arguments.outputPrefix != null) {
        outputPrefixFile = new File(arguments.outputPrefix);
        if (!outputPrefixFile.exists()) {
            messageCollector.report(CompilerMessageSeverity.ERROR, "Output prefix file '" + arguments.outputPrefix + "' not found", CompilerMessageLocation.NO_LOCATION);
            return ExitCode.COMPILATION_ERROR;
        }
    }
    File outputPostfixFile = null;
    if (arguments.outputPostfix != null) {
        outputPostfixFile = new File(arguments.outputPostfix);
        if (!outputPostfixFile.exists()) {
            messageCollector.report(CompilerMessageSeverity.ERROR, "Output postfix file '" + arguments.outputPostfix + "' not found", CompilerMessageLocation.NO_LOCATION);
            return ExitCode.COMPILATION_ERROR;
        }
    }
    MainCallParameters mainCallParameters = createMainCallParameters(arguments.main);
    TranslationResult translationResult;
    K2JSTranslator translator = new K2JSTranslator(config);
    try {
        //noinspection unchecked
        translationResult = translator.translate(sourcesFiles, mainCallParameters, jsAnalysisResult);
    } catch (Exception e) {
        throw ExceptionUtilsKt.rethrow(e);
    }
    ProgressIndicatorAndCompilationCanceledStatus.checkCanceled();
    AnalyzerWithCompilerReport.Companion.reportDiagnostics(translationResult.getDiagnostics(), messageCollector);
    if (!(translationResult instanceof TranslationResult.Success))
        return ExitCode.COMPILATION_ERROR;
    TranslationResult.Success successResult = (TranslationResult.Success) translationResult;
    OutputFileCollection outputFiles = successResult.getOutputFiles(outputFile, outputPrefixFile, outputPostfixFile);
    if (outputFile.isDirectory()) {
        messageCollector.report(CompilerMessageSeverity.ERROR, "Cannot open output file '" + outputFile.getPath() + "': is a directory", CompilerMessageLocation.NO_LOCATION);
        return ExitCode.COMPILATION_ERROR;
    }
    File outputDir = outputFile.getParentFile();
    if (outputDir == null) {
        outputDir = outputFile.getAbsoluteFile().getParentFile();
    }
    ProgressIndicatorAndCompilationCanceledStatus.checkCanceled();
    OutputUtilsKt.writeAll(outputFiles, outputDir, messageCollector);
    return OK;
}
Also used : MainCallParameters(org.jetbrains.kotlin.js.facade.MainCallParameters) JsConfig(org.jetbrains.kotlin.js.config.JsConfig) AnalyzerWithCompilerReport(org.jetbrains.kotlin.cli.common.messages.AnalyzerWithCompilerReport) K2JSTranslator(org.jetbrains.kotlin.js.facade.K2JSTranslator) LibrarySourcesConfig(org.jetbrains.kotlin.js.config.LibrarySourcesConfig) JsAnalysisResult(org.jetbrains.kotlin.js.analyzer.JsAnalysisResult) AnalysisResult(org.jetbrains.kotlin.analyzer.AnalysisResult) Project(com.intellij.openapi.project.Project) JsAnalysisResult(org.jetbrains.kotlin.js.analyzer.JsAnalysisResult) OutputFileCollection(org.jetbrains.kotlin.backend.common.output.OutputFileCollection) KotlinCoreEnvironment(org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment) MessageCollector(org.jetbrains.kotlin.cli.common.messages.MessageCollector) KtFile(org.jetbrains.kotlin.psi.KtFile) TranslationResult(org.jetbrains.kotlin.js.facade.TranslationResult) VirtualFile(com.intellij.openapi.vfs.VirtualFile) KtFile(org.jetbrains.kotlin.psi.KtFile) File(java.io.File) NotNull(org.jetbrains.annotations.NotNull)

Example 2 with K2JSTranslator

use of org.jetbrains.kotlin.js.facade.K2JSTranslator in project kotlin by JetBrains.

the class BasicTest method translateFiles.

private void translateFiles(@NotNull List<KtFile> jetFiles, @NotNull File outputFile, @NotNull MainCallParameters mainCallParameters, @NotNull JsConfig config) throws Exception {
    K2JSTranslator translator = new K2JSTranslator(config);
    TranslationResult translationResult = translator.translate(jetFiles, mainCallParameters);
    if (!(translationResult instanceof TranslationResult.Success)) {
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        PrintingMessageCollector collector = new PrintingMessageCollector(new PrintStream(outputStream), MessageRenderer.PLAIN_FULL_PATHS, true);
        AnalyzerWithCompilerReport.Companion.reportDiagnostics(translationResult.getDiagnostics(), collector);
        String messages = new String(outputStream.toByteArray(), "UTF-8");
        throw new AssertionError("The following errors occurred compiling test:\n" + messages);
    }
    TranslationResult.Success successResult = (TranslationResult.Success) translationResult;
    OutputFileCollection outputFiles = successResult.getOutputFiles(outputFile, getOutputPrefixFile(), getOutputPostfixFile());
    File outputDir = outputFile.getParentFile();
    assert outputDir != null : "Parent file for output file should not be null, outputFilePath: " + outputFile.getPath();
    OutputUtilsKt.writeAllTo(outputFiles, outputDir);
    processJsProgram(successResult.getProgram(), jetFiles);
}
Also used : PrintStream(java.io.PrintStream) OutputFileCollection(org.jetbrains.kotlin.backend.common.output.OutputFileCollection) K2JSTranslator(org.jetbrains.kotlin.js.facade.K2JSTranslator) ByteArrayOutputStream(java.io.ByteArrayOutputStream) TranslationResult(org.jetbrains.kotlin.js.facade.TranslationResult) VirtualFile(com.intellij.openapi.vfs.VirtualFile) PsiFile(com.intellij.psi.PsiFile) JsTestUtils.convertFileNameToDotJsFile(org.jetbrains.kotlin.js.test.utils.JsTestUtils.convertFileNameToDotJsFile) KtFile(org.jetbrains.kotlin.psi.KtFile) File(java.io.File) PrintingMessageCollector(org.jetbrains.kotlin.cli.common.messages.PrintingMessageCollector)

Aggregations

VirtualFile (com.intellij.openapi.vfs.VirtualFile)2 File (java.io.File)2 OutputFileCollection (org.jetbrains.kotlin.backend.common.output.OutputFileCollection)2 K2JSTranslator (org.jetbrains.kotlin.js.facade.K2JSTranslator)2 TranslationResult (org.jetbrains.kotlin.js.facade.TranslationResult)2 KtFile (org.jetbrains.kotlin.psi.KtFile)2 Project (com.intellij.openapi.project.Project)1 PsiFile (com.intellij.psi.PsiFile)1 ByteArrayOutputStream (java.io.ByteArrayOutputStream)1 PrintStream (java.io.PrintStream)1 NotNull (org.jetbrains.annotations.NotNull)1 AnalysisResult (org.jetbrains.kotlin.analyzer.AnalysisResult)1 AnalyzerWithCompilerReport (org.jetbrains.kotlin.cli.common.messages.AnalyzerWithCompilerReport)1 MessageCollector (org.jetbrains.kotlin.cli.common.messages.MessageCollector)1 PrintingMessageCollector (org.jetbrains.kotlin.cli.common.messages.PrintingMessageCollector)1 KotlinCoreEnvironment (org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment)1 JsAnalysisResult (org.jetbrains.kotlin.js.analyzer.JsAnalysisResult)1 JsConfig (org.jetbrains.kotlin.js.config.JsConfig)1 LibrarySourcesConfig (org.jetbrains.kotlin.js.config.LibrarySourcesConfig)1 MainCallParameters (org.jetbrains.kotlin.js.facade.MainCallParameters)1