Client for EPICS Archive Appliance
Utilities for interacting with an EPICS
Archiver Appliance
server.
With the exception of aaget --how plot ...
PV name strings are passed through
verbatim, and may include AA binning operators.
See the Processing of data
section for a list.
For fidelity, data is retrieved in the binary protobuf encoding native to AA.
Intended to supplant https://github.com/epicsdeb/carchivetools
Building
Dependencies from the python ecosystem (eg. pip)
- python >= 3.7
- aiohttp >= 3.7.0 (and perhaps earlier)
- numpy >= 1.7
- Cython >= 0.20
- setuptools >= 40.9.0
- h5py (optional)
Dependencies from outside the python ecosystem (eg. rpm, deb, etc.)
- Working C++11 toolchain
- protobuf compiler, protobuf-lite library, and headers for >= 3.0
- These compiler and library versions must match
apt-get install protobuf-compiler libprotobuf-dev
yum install protobuf-compiler libprotobuf-devel
dnf install protobuf-compiler libprotobuf-devel
brew install protobuf
(Getting protobuf on windows is difficult...
See for an example using vcpkg.)
Build and install with pip
virtualenv aa
. aa/bin/activate
pip install -U pip
pip install Cython
./setup.py sdist
pip install dist/aaclient-*.tar.gz
aaget -h
Alternately, for in-place usage (eg. evaluation or troubleshooting).
./setup.py build_ext -i
python -m aaclient.cmd.get -h
In either case a configuration file is required.
cp aaclient.conf.example aaclient.conf
Command Line Interface
This package provides several CLI tools for interacting with
an Archiver Appliance server.
See the example configuration file.
aagrep
Searching for PVs
Running aagrep
without arguments will attempt to print a full
list of PV names being archived.
Otherwise query patterns (wildcard or regexp) will be applied.
If multiple patterns are provided, the output will be all
PV names which matched any pattern.
$ aagrep RH
CO2:RH-I
aaget
Printing data
Query data from a set of PV names for a certain time range
and print the results.
$ aaget --start='-1 h' --end=now CO2:RH-I
01-30 07:50:11.958813 CO2:RH-I 45.10040283203125
01-30 08:13:04.816086 CO2:RH-I 44.56939697265625
01-30 08:40:41.527406 CO2:RH-I 44.06585693359375
Queries like aaget
, with results written to a HDF5 file
instead of being printed to screen.
$ aah5 --start='-1 h' --end=now out.h5 CO2:RH-I
INFO:__main__:'CO2:RH-I' : (3, 1)
$ h5ls -r out.h5
/ Group
/CO2:RH-I Group
/CO2:RH-I/meta Dataset {3/Inf}
/CO2:RH-I/value Dataset {3/Inf, 1/Inf}
Alternate entry points.
aaget
-> python -m aaclient.cmd.get
aagrep
-> python -m aaclient.cmd.grep
aah5
-> python -m aaclient.cmd.h5
API
The API behind the CLI executables is (primarily) asyncio based.
import asyncio
from aaclient import getArchive
async def demo():
A= await getArchive()
with A:
V,M = await A.raw('CO2:CO2-I', T0='-12 h')
print(V.shape, M.shape)
asyncio.run(demo())
The entry point for API usage is aaclient.getArchive()
,
which returns an object inheriting from aaclient.IArchive
.
Streaming
The aaclient.IArchive.raw_iter()
method allows for incremental
retrieval of arbitrarily large data for long time range.
Async. iteration will yield samples in batches.
Blocking API
A blocking (threaded) API is also provided as a convenience
for interactive usage.
from matplotlib.pyplot import *
from aaclient.threading import getArchive
A=getArchive()
V,M = A.plot('CO2:CO2-I', T0='-7 d', count=1000)
figure()
plot_date(M.time_mpl, V[:,0], '-')
grid(True)
figure()
V,M = A.raw('CO2:CO2-I', T0='-12 h')
plot_date(M.time_mpl, V[:,0], '-')
grid(True)
show()