2024-01-10 18:54:00 +01:00
|
|
|
/* Copyright (C) 2015-2024 Andreas Shimokawa, Carsten Pfeiffer
|
2017-03-10 14:53:19 +01:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
2024-01-10 18:54:00 +01:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2015-07-27 23:49:53 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.model;
|
|
|
|
|
2016-07-27 23:34:13 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.devices.SampleProvider;
|
|
|
|
|
2016-08-27 20:14:42 +02:00
|
|
|
/**
|
|
|
|
* The all-in-one interface for a sample measured by a device with
|
|
|
|
* one or more sensors.
|
|
|
|
*
|
|
|
|
* Each sample is the result of one or more measurements. The values are set for
|
|
|
|
* a specific point in time (see @{link #getTimestamp()}).
|
|
|
|
*
|
|
|
|
* If the sample relates to a user activity (e.g. sleeping, walking, running, ...)
|
|
|
|
* then the activity is provided through @{link #getKind()}.
|
|
|
|
*
|
|
|
|
* Methods will return @{link #NOT_MEASURED} in case no value is available for this
|
|
|
|
* sample.
|
|
|
|
*
|
|
|
|
* The frequency of samples, i.e. the how many samples are recorded per minute, is not specified
|
|
|
|
* and may vary.
|
|
|
|
*/
|
2016-07-27 23:34:13 +02:00
|
|
|
public interface ActivitySample extends TimeStamped {
|
|
|
|
|
|
|
|
int NOT_MEASURED = -1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the provider of the data.
|
|
|
|
*
|
|
|
|
* @return who created the sample data
|
|
|
|
*/
|
|
|
|
SampleProvider getProvider();
|
|
|
|
|
2015-07-27 23:49:53 +02:00
|
|
|
/**
|
|
|
|
* Returns the raw activity kind value as recorded by the SampleProvider
|
|
|
|
*/
|
2016-02-29 20:54:39 +01:00
|
|
|
int getRawKind();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-05-01 23:56:14 +02:00
|
|
|
/**
|
|
|
|
* Returns the activity kind value as recorded by the SampleProvider
|
|
|
|
*
|
|
|
|
* @see ActivityKind
|
|
|
|
*/
|
|
|
|
int getKind();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the raw intensity value as recorded by the SampleProvider
|
|
|
|
*/
|
2016-02-29 20:54:39 +01:00
|
|
|
int getRawIntensity();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-05-01 23:56:14 +02:00
|
|
|
/**
|
|
|
|
* Returns the normalized intensity value between 0 and 1
|
|
|
|
*/
|
|
|
|
float getIntensity();
|
2015-07-27 23:49:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of steps performed during the period of this sample
|
|
|
|
*/
|
2016-02-29 20:54:39 +01:00
|
|
|
int getSteps();
|
2016-07-27 23:34:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the heart rate measured at the corresponding timestamp.
|
|
|
|
* The value is returned in heart beats per minute, in the range from
|
|
|
|
* 0-255, where 255 is an illegal value (e.g. due to a bad measurement)
|
|
|
|
*
|
|
|
|
* @return the heart rate value in beats per minute, or -1 if none
|
|
|
|
*/
|
|
|
|
int getHeartRate();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the heart rate value of this sample. Typically only used in
|
|
|
|
* generic db migration.
|
|
|
|
*
|
|
|
|
* @param value the value in bpm
|
|
|
|
*/
|
|
|
|
void setHeartRate(int value);
|
2015-07-27 23:49:53 +02:00
|
|
|
}
|