Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f09d1188 authored by Hridya Valsaraju's avatar Hridya Valsaraju
Browse files

Create libstoragehealthdefault

Bug: 68388678
Test: vts-tradefed run vts -m VtsHalHealthV2_0

libstoragehealthdefault contains dummy implementations
of methods which pull storage health information.

Change-Id: I182b43f32f59420eed132c56129545557d9a08fc
parent 2b520838
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
// Copyright 2018 The Android Open Source Project

cc_library_static {
    srcs: ["StorageHealthDefault.cpp"],
    name: "libhealthstoragedefault",
    vendor_available: true,
    cflags: ["-Werror"],
    shared_libs: [
        "android.hardware.health@2.0",
    ],
}
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2018 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.
 */
#include "include/StorageHealthDefault.h"

void get_storage_info(std::vector<struct StorageInfo>&) {
    // Use defaults.
}

void get_disk_stats(std::vector<struct DiskStats>&) {
    // Use defaults
}
+34 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2018 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.
 */
#ifndef ANDROID_HARDWARE_HEALTH_V2_0_STORAGE_HEALTH_H
#define ANDROID_HARDWARE_HEALTH_V2_0_STORAGE_HEALTH_H

#include <android/hardware/health/2.0/types.h>

using android::hardware::health::V2_0::StorageInfo;
using android::hardware::health::V2_0::DiskStats;

/*
 * Get storage information.
 */
void get_storage_info(std::vector<struct StorageInfo>& info);

/*
 * Get disk statistics.
 */
void get_disk_stats(std::vector<struct DiskStats>& stats);

#endif  // ANDROID_HARDWARE_HEALTH_V2_0_STORAGE_HEALTH_H