2021-01-09 10:34:22 +01:00
|
|
|
/*******************************************************************************
|
2021-01-09 12:43:02 +01:00
|
|
|
* Copyright (c) 2012 IT Just working
|
|
|
|
* Copyright (c) 2020 MINRES Technologies GmbH
|
2021-01-09 10:34:22 +01:00
|
|
|
* 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.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Map.Entry;
|
|
|
|
import java.util.NavigableMap;
|
|
|
|
import java.util.TreeMap;
|
|
|
|
|
|
|
|
import com.minres.scviewer.database.EventKind;
|
|
|
|
import com.minres.scviewer.database.HierNode;
|
|
|
|
import com.minres.scviewer.database.IEvent;
|
|
|
|
import com.minres.scviewer.database.IWaveform;
|
|
|
|
import com.minres.scviewer.database.WaveformType;
|
|
|
|
import com.minres.scviewer.database.tx.ITxEvent;
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/**
|
|
|
|
* The Class AbstractTxStream.
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
abstract class AbstractTxStream extends HierNode implements IWaveform {
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/** The id. */
|
2021-01-09 10:34:22 +01:00
|
|
|
private Long id;
|
2021-01-09 12:43:02 +01:00
|
|
|
|
|
|
|
/** The loader. */
|
2021-01-09 10:34:22 +01:00
|
|
|
protected TextDbLoader loader;
|
2021-01-09 12:43:02 +01:00
|
|
|
|
|
|
|
/** The events. */
|
2021-01-09 10:34:22 +01:00
|
|
|
TreeMap<Long, IEvent[]> events = new TreeMap<>();
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/** The concurrency calculated. */
|
2021-01-09 10:34:22 +01:00
|
|
|
boolean concurrencyCalculated = false;
|
2021-01-09 12:43:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiates a new abstract tx stream.
|
|
|
|
*
|
|
|
|
* @param loader the loader
|
|
|
|
* @param id the id
|
|
|
|
* @param name the name
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
public AbstractTxStream(TextDbLoader loader, Long id, String name) {
|
|
|
|
super(name);
|
2021-01-09 12:43:02 +01:00
|
|
|
this.loader = loader;
|
|
|
|
this.id = id;
|
2021-01-09 10:34:22 +01:00
|
|
|
}
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/**
|
|
|
|
* Adds the event.
|
|
|
|
*
|
|
|
|
* @param evt the evt
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
public void addEvent(ITxEvent evt) {
|
2021-01-09 12:43:02 +01:00
|
|
|
if (!events.containsKey(evt.getTime()))
|
|
|
|
events.put(evt.getTime(), new IEvent[] { evt });
|
2021-01-09 10:34:22 +01:00
|
|
|
else {
|
|
|
|
IEvent[] evts = events.get(evt.getTime());
|
2021-01-09 12:43:02 +01:00
|
|
|
IEvent[] newEvts = Arrays.copyOf(evts, evts.length + 1);
|
|
|
|
newEvts[evts.length] = evt;
|
2021-01-09 10:34:22 +01:00
|
|
|
events.put(evt.getTime(), newEvts);
|
|
|
|
}
|
|
|
|
}
|
2021-01-09 12:43:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the events.
|
|
|
|
*
|
|
|
|
* @return the events
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
@Override
|
|
|
|
public NavigableMap<Long, IEvent[]> getEvents() {
|
2021-01-09 12:43:02 +01:00
|
|
|
if (!concurrencyCalculated)
|
|
|
|
calculateConcurrency();
|
2021-01-09 10:34:22 +01:00
|
|
|
return events;
|
|
|
|
}
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/**
|
|
|
|
* Gets the events at time.
|
|
|
|
*
|
|
|
|
* @param time the time
|
|
|
|
* @return the events at time
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
@Override
|
|
|
|
public IEvent[] getEventsAtTime(Long time) {
|
2021-01-09 12:43:02 +01:00
|
|
|
if (!concurrencyCalculated)
|
|
|
|
calculateConcurrency();
|
2021-01-09 10:34:22 +01:00
|
|
|
return events.get(time);
|
|
|
|
}
|
2021-01-09 12:43:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the events before time.
|
|
|
|
*
|
|
|
|
* @param time the time
|
|
|
|
* @return the events before time
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
@Override
|
|
|
|
public IEvent[] getEventsBeforeTime(Long time) {
|
2021-01-09 12:43:02 +01:00
|
|
|
if (!concurrencyCalculated)
|
2021-01-09 10:34:22 +01:00
|
|
|
calculateConcurrency();
|
2021-01-09 12:43:02 +01:00
|
|
|
Entry<Long, IEvent[]> e = events.floorEntry(time);
|
|
|
|
if (e == null)
|
|
|
|
return new IEvent[] {};
|
|
|
|
else
|
|
|
|
return events.floorEntry(time).getValue();
|
2021-01-09 10:34:22 +01:00
|
|
|
}
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/**
|
|
|
|
* Gets the type.
|
|
|
|
*
|
|
|
|
* @return the type
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
@Override
|
|
|
|
public WaveformType getType() {
|
|
|
|
return WaveformType.TRANSACTION;
|
|
|
|
}
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/**
|
|
|
|
* Gets the id.
|
|
|
|
*
|
|
|
|
* @return the id
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
@Override
|
|
|
|
public Long getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2021-01-09 12:43:02 +01:00
|
|
|
/**
|
|
|
|
* Calculate concurrency.
|
|
|
|
*/
|
2021-01-09 10:34:22 +01:00
|
|
|
synchronized void calculateConcurrency() {
|
2021-01-09 12:43:02 +01:00
|
|
|
if (concurrencyCalculated)
|
|
|
|
return;
|
2021-01-09 10:34:22 +01:00
|
|
|
ArrayList<Long> rowendtime = new ArrayList<>();
|
2021-01-09 12:43:02 +01:00
|
|
|
events.entrySet().stream().forEach(entry -> {
|
2021-01-09 10:34:22 +01:00
|
|
|
IEvent[] values = entry.getValue();
|
2021-01-09 12:43:02 +01:00
|
|
|
Arrays.asList(values).stream().filter(e -> e.getKind() == EventKind.BEGIN).forEach(evt -> {
|
|
|
|
Tx tx = (Tx) ((TxEvent) evt).getTransaction();
|
2021-01-09 10:34:22 +01:00
|
|
|
int rowIdx = 0;
|
2021-01-09 12:43:02 +01:00
|
|
|
for (; rowIdx < rowendtime.size() && rowendtime.get(rowIdx) > tx.getBeginTime(); rowIdx++)
|
|
|
|
;
|
|
|
|
if (rowendtime.size() <= rowIdx)
|
2021-01-09 10:34:22 +01:00
|
|
|
rowendtime.add(tx.getEndTime());
|
|
|
|
else
|
|
|
|
rowendtime.set(rowIdx, tx.getEndTime());
|
|
|
|
tx.setConcurrencyIndex(rowIdx);
|
|
|
|
});
|
|
|
|
});
|
2021-01-09 12:43:02 +01:00
|
|
|
concurrencyCalculated = true;
|
2021-01-09 10:34:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|