Functional Analysis Description Language Base Package
Project description
func_adl
Construct hierarchical data queries using SQL-like concepts in python.
func_adl
Uses an SQL like language, and extracts data and computed values from a ROOT file or an ATLAS xAOD file
and returns them in a columnar format. It is currently used as a central part of two of the ServiceX transformers.
This is the base package that has the backend-agnostic code to query hierarchical data. In all likelihood you will want to install one of the following packages:
- func_adl_xAOD: for running on an ATLAS & CMS experiment xAOD file hosted in ServiceX
- func_adl_uproot: for running on flat root files
- func_adl.xAOD.backend: for running on a local file using docker
See the documentation for more information on what expressions and capabilities are possible in each of these backends.
Extensibility
There are two several extensibility points:
EventDataset
should be sub-classed to provide an executor.EventDataset
can use Python's type system to allow for editors and other intelligent typing systems to type check expressions. The more type data present, the more the system can help.- It is possible to insert a call back at a function or method call site that will allow for modification of the
ObjectStream
or the call site'sast
.
EventDataSet
An example EventDataSet
:
class events(EventDataset):
async def execute_result_async(self, a: ast.AST, title: Optional[str] = None):
await asyncio.sleep(0.01)
return a
and some func_adl
code that uses it:
r = (events()
.SelectMany(lambda e: e.Jets('jets'))
.Select(lambda j: j.eta())
.value())
- When the
.value()
method is invoked, theexecute_result_async
with a completeast
representing the query is called. This is the point that one would send it to the backend to actually be processed. - Normally, the constructor of
events
would take in the name of the dataset to be processed, which could then be used inexecute_result_async
.
Typing EventDataset
A minor change to the declaration above, and no change to the query:
class dd_jet:
def pt(self) -> float:
...
def eta(self) -> float:
...
class dd_event:
def Jets(self, bank: str) -> Iterable[dd_jet]:
...
def EventNumber(self, bank='default') -> int
...
class events(EventDataset[dd_event]):
async def execute_result_async(self, a: ast.AST, title: Optional[str] = None):
await asyncio.sleep(0.01)
return a
This is not required, but when this is done:
- Editors that use types to give one a list of options/guesses will now light up as long as they have reasonable type-checking built in.
- If a required argument is missed, an error will be generated
- If a default argument is missed, it will be automatically filled in.
It should be noted that the type and expression follower is not very sophisticated! While it can follow method calls, it won't follow much else!
Type-based callbacks
By adding a function and a reference in the type system, arbitrary code can be executed during the traversing of the func_adl
. Keeping the query the same and the events
definition the same, we can add the info directly to the python type declarations:
def add_md_for_type(s: ObjectStream[T], a: ast.Call) -> Tuple[ObjectStream[T], ast.AST]:
return s.MetaData({'hi': 'there'}), a
class dd_event:
_func_adl_type_info = add_md_for_type
def Jets(self, bank: str) -> Iterable[dd_jet]:
...
- When the
.Jets()
method is processed, theadd_md_for_type
is called with the current object stream and the ast. add_md_for_type
here adds metadata and returns the updated stream and ast.- Nothing prevents the function from parsing the AST, removing or adding arguments, adding more complex metadata, or doing any of this depending on the arguments in the call site.
Development
After a new release has been built and passes the tests you can release it by creating a new release on github
. An action that runs when a release is "created" will send it to pypi
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file func_adl-2.4b6.tar.gz
.
File metadata
- Download URL: func_adl-2.4b6.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 335905e730699cbbab8c123c80b0b8dc200c93280fbcb13324a8f76125702675 |
|
MD5 | 99714c5915ab5c6d2b462dfae77be553 |
|
BLAKE2b-256 | b0dd96860f4caf18595ab19d9c4fb35015a13be090d283d298a6c5b1019ed681 |
File details
Details for the file func_adl-2.4b6-py3-none-any.whl
.
File metadata
- Download URL: func_adl-2.4b6-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef909dbbcc48384b4ffdea673a290bb0f5fd64505b7edf67edb652deeead0510 |
|
MD5 | d905b781fa63fbd737923df29920a794 |
|
BLAKE2b-256 | d59eaf733e02bad066c0eff25add7913cf23495511215141735298f6e9e2897f |