blob: 77e232b892ab31361f63ca19a5c4323e7cc7dbe3 [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.healthconnect.storage.datatypehelpers;
import static com.android.server.healthconnect.storage.utils.StorageUtils.INTEGER;
import static com.android.server.healthconnect.storage.utils.StorageUtils.REAL;
import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorDouble;
import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorLong;
import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorUUID;
import android.annotation.NonNull;
import android.content.ContentValues;
import android.database.Cursor;
import android.health.connect.datatypes.RecordTypeIdentifier;
import android.health.connect.internal.datatypes.SpeedRecordInternal;
import android.util.Pair;
import com.android.internal.annotations.VisibleForTesting;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.UUID;
/**
* Helper class for SpeedRecord.
*
* @hide
*/
public class SpeedRecordHelper
extends SeriesRecordHelper<SpeedRecordInternal, SpeedRecordInternal.SpeedRecordSample> {
@VisibleForTesting public static final String TABLE_NAME = "SpeedRecordTable";
public static final int NUM_LOCAL_COLUMNS = 1;
private static final String SERIES_TABLE_NAME = "speed_record_table";
private static final String SPEED_COLUMN_NAME = "speed";
private static final String EPOCH_MILLIS_COLUMN_NAME = "epoch_millis";
public SpeedRecordHelper() {
super(RecordTypeIdentifier.RECORD_TYPE_SPEED);
}
@Override
String getMainTableName() {
return TABLE_NAME;
}
@Override
List<Pair<String, String>> getSeriesRecordColumnInfo() {
ArrayList<Pair<String, String>> columnInfo = new ArrayList<>(NUM_LOCAL_COLUMNS);
columnInfo.add(new Pair<>(SPEED_COLUMN_NAME, REAL));
columnInfo.add(new Pair<>(EPOCH_MILLIS_COLUMN_NAME, INTEGER));
return columnInfo;
}
@Override
String getSeriesDataTableName() {
return SERIES_TABLE_NAME;
}
/** Populates the {@code record} with values specific to datatype */
@Override
void populateSpecificValues(@NonNull Cursor seriesTableCursor, SpeedRecordInternal record) {
HashSet<SpeedRecordInternal.SpeedRecordSample> speedRecordSampleSet = new HashSet<>();
UUID uuid = getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME);
do {
speedRecordSampleSet.add(
new SpeedRecordInternal.SpeedRecordSample(
getCursorDouble(seriesTableCursor, SPEED_COLUMN_NAME),
getCursorLong(seriesTableCursor, EPOCH_MILLIS_COLUMN_NAME)));
} while (seriesTableCursor.moveToNext()
&& uuid.equals(getCursorUUID(seriesTableCursor, UUID_COLUMN_NAME)));
// In case we hit another record, move the cursor back to read next record in outer
// RecordHelper#getInternalRecords loop.
seriesTableCursor.moveToPrevious();
record.setSamples(speedRecordSampleSet);
}
@Override
void populateSampleTo(
ContentValues contentValues, SpeedRecordInternal.SpeedRecordSample speedRecord) {
contentValues.put(SPEED_COLUMN_NAME, speedRecord.getSpeed());
contentValues.put(EPOCH_MILLIS_COLUMN_NAME, speedRecord.getEpochMillis());
}
}