blob: ca53e421437c7f353cfa6f295874f11530271ff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package vexriscv.plugin
import java.util
import vexriscv.{ReportService, VexRiscv}
import org.yaml.snakeyaml.{DumperOptions, Yaml}
/**
* Created by spinalvm on 09.06.17.
*/
class YamlPlugin(path : String) extends Plugin[VexRiscv] with ReportService{
val content = new util.HashMap[String, Object]()
def add(that : (String,Object)) : Unit = content.put(that._1,that._2)
override def setup(pipeline: VexRiscv): Unit = {
}
override def build(pipeline: VexRiscv): Unit = {
val options = new DumperOptions()
options.setWidth(50)
options.setIndent(4)
options.setCanonical(true)
options.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK)
val yaml = new Yaml()
yaml.dump(content, new java.io.FileWriter(path))
}
}
|