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

org.jetbrains.kotlin.incremental.BuildInfo.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-Beta1
Show newest version
/*
 * Copyright 2010-2016 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.incremental

import org.jetbrains.kotlin.cli.common.messages.MessageCollector
import org.jetbrains.kotlin.incremental.AbiSnapshotImpl.Companion.readAbiSnapshot
import org.jetbrains.kotlin.incremental.AbiSnapshotImpl.Companion.writeAbiSnapshot
import org.jetbrains.kotlin.incremental.util.ExceptionLocation
import org.jetbrains.kotlin.incremental.util.reportException
import java.io.*

data class BuildInfo(val startTS: Long, val dependencyToAbiSnapshot: Map = mapOf()) : Serializable {
    companion object {
        private fun ObjectInputStream.readBuildInfo() : BuildInfo {
            val ts = readLong()
            val size = readInt()
            val abiSnapshots = HashMap(size)
            repeat(size) {
                val identifier = readUTF()
                val snapshot = readAbiSnapshot()
                abiSnapshots.put(identifier, snapshot)
            }
            return BuildInfo(ts, abiSnapshots)
        }

        private fun ObjectOutputStream.writeBuildInfo(buildInfo: BuildInfo) {
            writeLong(buildInfo.startTS)
            writeInt(buildInfo.dependencyToAbiSnapshot.size)
            for ((identifier, abiSnapshot) in buildInfo.dependencyToAbiSnapshot) {
                writeUTF(identifier)
                writeAbiSnapshot(abiSnapshot)
            }
        }

        fun read(file: File, messageCollector: MessageCollector): BuildInfo? {
            return try {
                ObjectInputStream(FileInputStream(file)).use {
                    it.readBuildInfo()
                }
            } catch (e: Exception) {
                messageCollector.reportException(e, ExceptionLocation.INCREMENTAL_COMPILATION)
                null
            }
        }

        fun write(icContext: IncrementalCompilationContext, buildInfo: BuildInfo, file: File) {
            icContext.transaction.write(file.toPath()) {
                ObjectOutputStream(FileOutputStream(file)).use {
                    it.writeBuildInfo(buildInfo)
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy