-
Notifications
You must be signed in to change notification settings - Fork 28
1. Software Architecture
The figure below illustrates the overall runtime architecture of CARP Mobile Sensing (CAMS). The architecture consists of three main layers:
- Client Manager (middle layer) – the main runtime layer of CAMS
- Deployment Services and Data Manager (top layer) - accessing deployment configurations and uploading data
- Sampling Packages (bottom layer) - a set of sampling packages accessing data from the underlying layers
CAMS builds on top of a set of Flutter plugins that access sensors and services in the underlying OS, external wearable devices, and cloud-based services. This architecture is designed to achieve the non-functional software architecture goals of being highly extensible, cross-platform, and maintainable.
This is the "core" CAMS runtime and comprises the following core runtime components:
-
The
SmartPhoneClientManager
is the core runtime of CAMS. It is a singleton. It holds a set of registries, controllers, and services which support the execution of data sampling:- DeploymentService - the deployment service this client is using, i.e., the service handling study deployment configurations
- DataManagerRegistry - a registry of available DataManagers.
- SamplingPackageRegistry - a registry of available SamplingPackages
- DataTransformerSchemaRegistry - a registry of available DataTransformerSchemas
- DeviceController - a controller of connected Devices
- AppTaskController - a controller of AppTasks
- NotificationController - a controller of the OS-level notification system
runs one or more StudyDeploymentController
, which is based on adding a study to the SmartPhoneClientManager.
-
The
StudyDeploymentController
can be configured by specifying aDataEndPoint
(which again loads an appropriateDataManager
), if any data transformation (incl. privacy protection) should be applied, along with settings for obtaining permissions automatically and sending notifications. Once configured, aStudyDeploymentExecutor
is responsible for executing the study deployment. -
The
StudyDeploymentController
use a set of registries to look up an appropriate data manager, relevant sampling packages, data transformers, and sensing probes for executing the sensing study deployment protocol.
The service layer (top layer) holds
-
The Deployment Service, which is able to manage and deploy the
StudyProtocol
. -
Data manager services, which knows how to store, save, or upload data (e.g., to a SQLiteDataManager).
The sampling layer (bottom layer) holds
-
A set of
SamplingPackage
s, which can collect a specific type of measure. CAMS comes with two built-in sampling packages (theDeviceSamplingPackage
andSensorSamplingPackage
), but most sampling packages are available as external packages which are used in the app, as needed. In this way, an app only needs permissions to access probes (and hence sensors), which are needed in a specific app. A sampling package can also collect data from external devices (e.g., the Polar heart rate monitors) and in this case, the sampling package holds a DeviceManager which knows how to handle devices on runtime. Such devices can also be online services, such as a WeatherServiceManager. Thecarp_context_package
is an example of an externally loaded sampling package, which are available on pub.dev. -
Each sampling package contains one or more
Probe
s, which can access the underlying sensor and collect the data. Access to sensor data is typically done using a Flutter plugin. Note that these Flutter plugins are external to CAMS and is loaded as needed by the sampling package. For example, thecarp_context_package
make use of theweather
plugin to access weather data (as a web service).