/******************************************************************************* * Copyright (c) 2012 IT Just working. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IT Just working - initial API and implementation *******************************************************************************/ package com.minres.scviewer.database.text; import java.io.InputStream; import java.util.Collection; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.TreeMap; import com.minres.scviewer.database.AssociationType; import com.minres.scviewer.database.DataType; import com.minres.scviewer.database.HierNode; import com.minres.scviewer.database.ITxAttributeType; import com.minres.scviewer.database.ITxAttribute; import com.minres.scviewer.database.IWaveformDb; import com.minres.scviewer.database.ITxGenerator; import com.minres.scviewer.database.IHierNode; import com.minres.scviewer.database.ITxStream; import com.minres.scviewer.database.InputFormatException; import com.minres.scviewer.database.EventTime import com.minres.scviewer.database.RelationType public class TextDb extends HierNode implements IWaveformDb{ private EventTime maxTime; def streams = [] def relationTypes=[:] public TextDb() { super("TextDb"); } public String getFullName() { return getName(); } @Override public EventTime getMaxTime() { return maxTime; } public ITxStream getStreamByName(String name){ streams.find{ITxStream stream-> stream.fullName == name } } public List getAllWaves() { return new LinkedList(streams); } public List getChildNodes() { return childs.sort{it.name}; } public Map getGeneratorsById() { TreeMap res = new TreeMap(); streams.each{TxStream stream -> stream.generators.each{res.put(it.id, id)} } return res; } void clear(){ streams = [] maxTime=new EventTime(0, "ns") } void load(File file) throws InputFormatException { this.name = file.name; parseInput(file) } private def parseInput(File input){ def streamsById = [:] def generatorsById = [:] def transactionsById = [:] TxGenerator generator Tx transaction boolean endTransaction=false def matcher input.eachLine { line -> def tokens = line.split(/\s+/) switch(tokens[0]){ case "scv_tr_stream": case "scv_tr_generator": case "begin_attribute": case "end_attribute": if ((matcher = line =~ /^scv_tr_stream\s+\(ID (\d+),\s+name\s+"([^"]+)",\s+kind\s+"([^"]+)"\)$/)) { def id = Integer.parseInt(matcher[0][1]) def stream = new TxStream(id, this, matcher[0][2], matcher[0][3]) streams<transaction.beginTime?maxTime:transaction.beginTime endTransaction=false break case "tx_end"://matcher = line =~ /^tx_end\s+(\d+)\s+(\d+)\s+(\d+)\s+([munpf]?s)/ def id = Integer.parseInt(tokens[1]) transaction = transactionsById[id] assert Integer.parseInt(tokens[2])==transaction.generator.id transaction.endTime = new EventTime(Integer.parseInt(tokens[3]), tokens[4]) transaction.generator.end_attrs_idx=0; maxTime = maxTime>transaction.endTime?maxTime:transaction.endTime endTransaction=true break case "tx_record_attribute"://matcher = line =~ /^tx_record_attribute\s+(\d+)\s+"([^"]+)"\s+(\S+)\s*=\s*(.+)$/ def id = Integer.parseInt(tokens[1]) transactionsById[id].attributes< def hier = stream.fullName.split(/\./) IHierNode node = this hier.each { name -> def n1 = node.childNodes.find{it.name == name} if(name == hier[-1]){ //leaf if(n1!=null) { if(n1 instanceof HierNode){ node.childNodes.remove(n1) stream.childNodes.addAll(n1.childNodes) } else { throw new InputFormatException() } } stream.name=name node.childNodes<