aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/tools/dotc/core/pickling/TastyPickler.scala
blob: ee0e5a8fa22c09469f27c93292a09c1961a15b36 (plain) (tree)
1
2
3
4
5
6
7
8
9







                         
                     


                    
                                                                                  

                              
                                 


                                               


                                                           







                                                   
                                      


















                                                           
                                                                                                                                                                   


             
package dotty.tools
package dotc
package core
package pickling

import PickleFormat._
import collection.mutable
import TastyBuffer._
import java.util.UUID

class TastyPickler {
      
  private val sections = new mutable.ArrayBuffer[(TastyName.NameRef, TastyBuffer)]
  
  private val headerBuffer = {
    val buf = new TastyBuffer(28)
    for (ch <- header) buf.writeByte(ch.toByte)
    buf.writeNat(MajorVersion)
    buf.writeNat(MinorVersion)
    val uuid = UUID.randomUUID()
    buf.writeUncompressedLong(uuid.getMostSignificantBits)
    buf.writeUncompressedLong(uuid.getLeastSignificantBits)
    buf
  }

  val nameBuffer = new NameBuffer
  
  def newSection(name: String, buf: TastyBuffer) = 
    sections += ((nameBuffer.nameIndex(name), buf))
  
  def assembleParts(): Array[Byte] = {
    def lengthWithLength(buf: TastyBuffer) = {
      buf.assemble()
      buf.length + natSize(buf.length)
    }
    val totalSize = 
      headerBuffer.length + 
      lengthWithLength(nameBuffer) + {
        for ((nameRef, buf) <- sections) yield
          natSize(nameRef.index) + lengthWithLength(buf)
      }.sum
    val all = new TastyBuffer(totalSize)
    all.writeBytes(headerBuffer.bytes, headerBuffer.length)
    all.writeNat(nameBuffer.length)
    all.writeBytes(nameBuffer.bytes, nameBuffer.length)
    for ((nameRef, buf) <- sections) {
      all.writeNat(nameRef.index)
      all.writeNat(buf.length)
      all.writeBytes(buf.bytes, buf.length)
    }
    assert(all.length == totalSize && all.bytes.length == totalSize, s"totalSize = $totalSize, all.length = ${all.length}, all.bytes.length = ${all.bytes.length}")
    all.bytes
  }
}