39
PVManager Gabriele Carcassi Feb 18 2010

PVManager

  • Upload
    miya

  • View
    31

  • Download
    0

Embed Size (px)

DESCRIPTION

PVManager. Gabriele Carcassi Feb 18 2010. PVManager goals. Simplify data collection and aggregation Simplify (UI) development Re-use code as much as possible. So you want to write a UI…. channel.addListener (new Listener() { public void doSomething (Event evt ) { - PowerPoint PPT Presentation

Citation preview

Page 1: PVManager

PVManagerGabriele Carcassi

Feb 18 2010

Page 2: PVManager

PVManager goals

Simplify data collection and aggregation Simplify (UI) development Re-use code as much as possible

Page 3: PVManager

So you want to write a UI…

channel.addListener(new Listener() { public void doSomething(Event evt) { myWidget.setFoo(evt.getWhatever()); }}

TOOLKIT IS SINGLE THREADED!

Page 4: PVManager

So you want to write a UI…

channel.addListener(new Listener() { public void doSomething(Event evt) { Toolkit.execute(new Runnable() { myWidget.setFoo(evt.getWhatever()); } }}

LACK OF SYNCHRONIZATION!

Page 5: PVManager

So you want to write a UI…

channel.addListener(new Listener() { public void doSomething(Event evt) { Toolkit.execute(new Runnable() { synchronized(evt) { myWidget.setFoo(evt.getWhatever()); } } }}

NO CHANGE BY ANOTHER THREADDURING/BETWEEN NOTIFICATIONS!

Page 6: PVManager

So you want to write a UI…

channel.addListener(new Listener() { public void doSomething(Event evt) { Toolkit.execute(new Runnable() { synchronized(evt) { myCopy = copy(evt.getWhatever()); myWidget.setFoo(myCopy); } } }}

SHOULD NOT UPDATE UI AT THE SAME RATEAS DATA ON THE NETWORK!

LACKING DISCONNECTION ANDRECONNECTION NOTIFICATIONS!

NEED TO QUERY METADATAON CONNECTION!

AGGREAGATE EVENTS!

CACHE!

Page 7: PVManager

Wish one could write

PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

pv.addPVValueChangeListener(new PVValueChangeListener() { public void pvValueChanged() { myWidget.setFoo( pv.getValue().getMoo()); } });

Page 8: PVManager

UI subsystem requirements

Single threaded Notification must be done on event thread Data objects must be changed on the event

thread only (avoid inconsistencies and simplify responding to events)

Work must be offloaded to other threads as much as possible (to prevent unresponsiveness)

Refresh rate up to 50Hz (faster is useless and counter productive)

Page 9: PVManager

Channel Access

Multi threaded Notification done on connection

threads Data objects changed on connection

threads Rate is not limited: aggregated can

be KHz

Page 10: PVManager

Collect, aggregate and notify

Need to collect the data at the source rate Collector could be a queue, a cache, a timed cache Aggregate the data at the UI rate, and notify on UI thread

Notifier Collector Monitor

Page 11: PVManager

Transform and calculate

While we are on other thread, we compose and calculate what we need (single array for a table, FFT of a waveform, statistics, prepare synch’ed arrays, …)

Notifier Collector Monitor

CachePV FunctionPV Function

Page 12: PVManager

UI or not UI

Everything you can do in the UI you should be able to do at the command line

PVManager can work without a UI (notification is simply done on the timer thread)• Command line clients• Logging/archiving• Republish the data through PVData/PVAccess

PVManager is a standalone library• pvmanager.sourceforge.net

Page 13: PVManager

3 APIs for the price of one

Data interfaces: where to put the data• Decoupled from the other two. Needed so that the client

can focus more on what he needs and can work with both EPICS V3 and EPICS V.

• Other talk Building blocks API: perform computation

• API based on interfaces, you can add your pieces though the goal is to have most of them already there

Expression API: define what you want to read• Internal DSL (Doman Specific Language), type safe

Page 14: PVManager

BUILDING BLOCKS API

Page 15: PVManager

User objects

Notifier Collector Monitor

CachePV FunctionPV Function

Page 16: PVManager

PV<T>

Defines:• void add/removePVValueChangeListener

(PVValueChangeListener listener);• String getName() ;• T getValue();• void close();• boolean isClosed();

PVValueChangeListener defines:• void pvValueChanged();

Page 17: PVManager

Under the hood

Notifier Collector Monitor

CachePV FunctionPV Function

Page 18: PVManager

Function<T>

Defines:• T getValue();• Class<T> getType()

A function object returns a value of a particular type.• Argument number and types are determined by the

constructor of an actual function.

Page 19: PVManager

Under the hood

Notifier Collector Monitor

CachePV FunctionPV Function

Page 20: PVManager

Collector<T> extends Function<List<T>>

Defines:• void collect();• List<T> getValue();

Collects a bunch of values of the same type Typically takes a Function<T> as argument

• On a collect call, will take a new value• On getValue returns a number of values

Could be a queue (values returned only once) or a cache (returns the last n values, last 30 sec of values)

Page 21: PVManager

Under the hood

Notifier Collector Monitor

CachePV FunctionPV Function

Page 22: PVManager

ValueCache<T> extends Function<T>

Defines:• void setValue(T);

You can put a value in (and read a value out)

Page 23: PVManager

Under the hood

Notifier Collector Monitor

CachePV FunctionPV Function

Page 24: PVManager

DataSource

Defines:• void connect(DataRecipe recipe);• void disconnect(DataRecipe recipe);

DataRecipe defines:• Map<Collector, Map<String, ValueCache>>

getChannelsPerCollectors() For each collector, list of channels with their caches To update a channel:

• Lock Collector, update cache, Collector.collect()

Page 25: PVManager

Under the hood

Notifier Collector Monitor

CachePV FunctionPV Function

Page 26: PVManager

Notification

ThreadSwitch defines:• void post(Runnable run);

It allows to execute a piece of code on a target thread

Notifier defines:• Notifier(PV<T> pv, Function<T> function, ThreadSwitch

onThread);• void notifyPv();

On notifyPV() calculates the new value, switches thread and sets the pv’s value.

Page 27: PVManager

EXPRESSION API

Page 28: PVManager

PVManager

Example:• PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

Defines:• static <T> PVManagerExpression<T>

read(SourceRateExpression<T> pvExpression);• static <T> PVManagerExpression<T>

read(DesiredRateExpression<T> pvExpression);

Page 29: PVManager

PVManagerExpression<T>

Defines:• PVManagerExpression<T> from(DataSource

connectionManager) • PVManagerExpression<T> andNotify(ThreadSwitch

onThread)• PV<T> atHz(double rate)

Default DataSource and ThreadSwitch can be specified

Page 30: PVManager

Source/DesiredRateExpression<T>

Two different types for the two different data rates The collectors change Source to Desired:

• static <T> DesiredRateExpression<List<T>> queueOf(SourceRateExpression<T> expression)

External libraries for either types or operations defines static constructors for expressions:• static SourceRateExpression<VDouble> vDouble(String

name)• static <T> DesiredRateExpression<List<T>>

listOf(List<DesiredRateExpression<T>> expressions)

Page 31: PVManager

Example (again)

PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

pv.addPVValueChangeListener(new PVValueChangeListener() { public void pvValueChanged() { myWidget.setFoo( pv.getValue().getMoo()); } });

List<String>

Page 32: PVManager

Example (again)

PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

pv.addPVValueChangeListener(new PVValueChangeListener() { public void pvValueChanged() { myWidget.setFoo( pv.getValue().getMoo()); } });

List<SourceRateExpression<VDouble>>

Which implies creating the caches for all channels

Page 33: PVManager

Example (again)

PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

pv.addPVValueChangeListener(new PVValueChangeListener() { public void pvValueChanged() { myWidget.setFoo( pv.getValue().getMoo()); } });

List<DesiredRateExpression<VStatistics>>

Creates all the collectors, and the functions that calculate the statistics

Page 34: PVManager

Example (again)

PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

pv.addPVValueChangeListener(new PVValueChangeListener() { public void pvValueChanged() { myWidget.setFoo( pv.getValue().getMoo()); } });

DesiredRateExpression<List<VStatistics>>

Creates the function that assembles the list

Page 35: PVManager

Example (again)

PV<List<VStatistics>> pv = PVManager.read( listOf(statisticsOf(vDouble(pvNames)))) .atHz(10);

pv.addPVValueChangeListener(new PVValueChangeListener() { public void pvValueChanged() { myWidget.setFoo(pv.getValue().getMoo()); } });

PV<List<VStatistics>>

Creates the Notifier, the DataRecipe, passes it to the DataSource, …

Page 36: PVManager

Low complexity point

The API is very expressive• You can combine operators, the syntax is very compact,

you specify things once But it does not hide choices

• You need to specify all transformations, including how to go from source rate to desired rate

It hides the complexity of the implementation of your choices• The API actually does something!

Page 37: PVManager

Eclipse/CSS integration

The library is packaged in org.csstudio.utility.pvmanager• Extension point based on DataSource• The activator configures the default ThreadSwitch to use

SWT and default DataSource to use a CompositeDataSource made up of all extensions point

All other plugins can simply use PVManager.read() Other plugins for extension points

• org.csstudio.utility.pvmanager.sim for simulated data• org.csstudio.utility.pvmanager.epics for epics v3

Page 38: PVManager

What’s done

SimulationDataSource• Same syntax for channels as utility.pv.som

JCADataSource• Supports VDouble, VInt, VString and VEnum

Probe was ported to use PVManager (in BNL branch)

OrbitViewer prototype built on PVManager

Page 39: PVManager

What’s need to be done

JCADataSource• Mass connection can be optimized to scale better

Operators• Will need to understand which operators are useful, how to

define them for “maximum combination power”• Allow to easily define “custom functions”• Add other common operators

- A CALC operator?- A histogram operator?- An FFT operator?- …