Skip to content

Latest commit

 

History

History
227 lines (156 loc) · 7.87 KB

overview_software_architecture.rst

File metadata and controls

227 lines (156 loc) · 7.87 KB

Software Architecture

The main goal of PyNWB is to enable users and developers to efficiently interact with the NWB data format, format files, and specifications. The following figures provide an overview of the high-level architecture of PyNWB and functionality of the various components.

PyNWB Software Architecture

Overview of the high-level software architecture of PyNWB (click to enlarge).

PyNWB Software Architecture Functions

We choose a modular design for PyNWB to enable flexibility and separate the various aspects of the NWB:N ecosystem (click to enlarge).

Main Concepts

PyNWB Software Architecture Concepts

Overview of the main concepts/classes in PyNWB and their location in the overall software architecture (click to enlarge).

Container

Builder

Spec

Note

A data_type (or more specifically a neurodata_type in the context of NWB) defines a reusable type in a format specification that can be referenced and used elsewhere in other specifications. The specification of the NWB format is basically a collection of neurodata_types, e.g.: NWBFile defines a GroupSpec for the top-level group of an NWB format file which includes TimeSeries, ElectrodeGroup, ImagingPlane and many other neurodata_types . When creating a specification, two main keys are used to include and define new neurodata_types

  • neurodata_type_inc is used to include an existing type and
  • neurodata_type_def is used to define a new type

I.e, if both keys are defined then we create a new type that uses/inherits an existing type as a base.

ObjectMapper

  • Maintains the mapping between Container attributes and Spec components

  • Provides a way of converting between Container and Builder

  • ObjectMappers are constructed using a Spec

  • Ideally, one ObjectMapper for each data type

  • Things an ObjectMapper should do:

    • Given a Builder, return a Container representation
    • Given a Container, return a Builder representation
  • PyNWB has many of these -- one for each type in NWB schema

  • Main Module: :py:mod:`hdmf.build.objectmapper`

PyNWB Software Architecture Main Concepts

Relationship between Container, Builder, ObjectMapper, and Spec

Additional Concepts

Namespace, NamespaceCatalog, NamespaceBuilder

TypeMap

  • Map between data types, Container classes (i.e. a Python class object) and corresponding ObjectMapper classes

  • Constructed from a NamespaceCatalog

  • Things a TypeMap does:

    • Given an NWB data type, return the associated Container class
    • Given a Container class, return the associated ObjectMapper
  • PyNWB has two of these classes:

  • PyNWB provides a “global” instance of TypeMap created at runtime

  • TypeMaps can be merged, which is useful when combining extensions

BuildManager

PyNWB Software Architecture BuildManager and TypeMap

Overview of BuildManager (and TypeMap) (click to enlarge).

HDMFIO

PyNWB Software Architecture FormIO

Overview of HDMFIO (click to enlarge).