All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.sourceSections.SourceSectionsPlugin.kt Maven / Gradle / Ivy

/*
 * Copyright 2010-2017 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.jetbrains.kotlin.sourceSections

import com.intellij.mock.MockProject
import com.intellij.openapi.project.Project
import org.jetbrains.kotlin.compiler.plugin.CliOption
import org.jetbrains.kotlin.compiler.plugin.CliOptionProcessingException
import org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor
import org.jetbrains.kotlin.compiler.plugin.ComponentRegistrar
import org.jetbrains.kotlin.config.CompilerConfiguration
import org.jetbrains.kotlin.config.CompilerConfigurationKey
import org.jetbrains.kotlin.extensions.PreprocessedVirtualFileFactoryExtension
import org.jetbrains.kotlin.extensions.PreprocessedVirtualFileFactoryExtension.Companion

object SourceSectionsConfigurationKeys {
    val SECTIONS_OPTION: CompilerConfigurationKey> =
            CompilerConfigurationKey.create("allowed section name")
}

class SourceSectionsCommandLineProcessor : CommandLineProcessor {
    companion object {
        val SECTIONS_OPTION = CliOption("allowedSection", "", "Allowed section name",
                                          required = true, allowMultipleOccurrences = true)

        val PLUGIN_ID = "org.jetbrains.kotlin.sourceSections"
    }

    override val pluginId = PLUGIN_ID
    override val pluginOptions = listOf(SECTIONS_OPTION)

    override fun processOption(option: CliOption, value: String, configuration: CompilerConfiguration) = when (option) {
        SECTIONS_OPTION -> {
            val paths = configuration.getList(SourceSectionsConfigurationKeys.SECTIONS_OPTION).toMutableList()
            paths.add(value)
            configuration.put(SourceSectionsConfigurationKeys.SECTIONS_OPTION, paths)
        }
        else -> throw CliOptionProcessingException("Unknown option: ${option.name}")
    }
}

class SourceSectionsComponentRegistrar : ComponentRegistrar {
    override fun registerProjectComponents(project: MockProject, configuration: CompilerConfiguration) {
        val sections = configuration.get(SourceSectionsConfigurationKeys.SECTIONS_OPTION) ?: return
        registerAllowedSourceSections(project, sections)
    }
}

fun registerAllowedSourceSections(project: Project, sections: List) {
    if (!sections.isEmpty()) {
        PreprocessedVirtualFileFactoryExtension.registerExtension(project, FilteredSectionsVirtualFileExtension(sections.toHashSet()))
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy