blob: 173699ae3cbf05f6c6b9cf05aa72aaf9cbc96025 [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 android.health.connect.datatypes.AggregationType.AggregationTypeIdentifier.DISTANCE_RECORD_DISTANCE_TOTAL;
import static com.android.server.healthconnect.storage.utils.StorageUtils.REAL;
import static com.android.server.healthconnect.storage.utils.StorageUtils.getCursorDouble;
import android.annotation.NonNull;
import android.content.ContentValues;
import android.database.Cursor;
import android.health.connect.datatypes.AggregationType;
import android.health.connect.datatypes.RecordTypeIdentifier;
import android.health.connect.internal.datatypes.DistanceRecordInternal;
import android.util.Pair;
import com.android.server.healthconnect.storage.request.AggregateParams;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* Helper class for DistanceRecord.
*
* @hide
*/
public final class DistanceRecordHelper extends IntervalRecordHelper<DistanceRecordInternal> {
private static final String DISTANCE_RECORD_TABLE_NAME = "distance_record_table";
private static final String DISTANCE_COLUMN_NAME = "distance";
public DistanceRecordHelper() {
super(RecordTypeIdentifier.RECORD_TYPE_DISTANCE);
}
@Override
@NonNull
public String getMainTableName() {
return DISTANCE_RECORD_TABLE_NAME;
}
@Override
AggregateParams getAggregateParams(AggregationType<?> aggregateRequest) {
switch (aggregateRequest.getAggregationTypeIdentifier()) {
case DISTANCE_RECORD_DISTANCE_TOTAL:
return new AggregateParams(
DISTANCE_RECORD_TABLE_NAME,
new ArrayList(Arrays.asList(DISTANCE_COLUMN_NAME)),
Double.class);
default:
return null;
}
}
@Override
void populateSpecificRecordValue(
@NonNull Cursor cursor, @NonNull DistanceRecordInternal distanceRecord) {
distanceRecord.setDistance(getCursorDouble(cursor, DISTANCE_COLUMN_NAME));
}
@Override
void populateSpecificContentValues(
@NonNull ContentValues contentValues, @NonNull DistanceRecordInternal distanceRecord) {
contentValues.put(DISTANCE_COLUMN_NAME, distanceRecord.getDistance());
}
@Override
@NonNull
protected List<Pair<String, String>> getIntervalRecordColumnInfo() {
return Collections.singletonList(new Pair<>(DISTANCE_COLUMN_NAME, REAL));
}
}