1 /* 2 * Copyright (C) 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.car.telemetry.publisher; 18 19 import android.annotation.NonNull; 20 import android.annotation.Nullable; 21 import android.app.StatsManager; 22 import android.app.StatsManager.StatsUnavailableException; 23 24 /** Implementation for {@link StatsManagerProxy} */ 25 public class StatsManagerImpl implements StatsManagerProxy { 26 private final StatsManager mStatsManager; 27 StatsManagerImpl(@onNull StatsManager statsManager)28 public StatsManagerImpl(@NonNull StatsManager statsManager) { 29 mStatsManager = statsManager; 30 } 31 32 @Override 33 @Nullable getReports(long configKey)34 public byte[] getReports(long configKey) throws StatsUnavailableException { 35 return mStatsManager.getReports(configKey); 36 } 37 38 @Override addConfig(long configKey, @NonNull byte[] data)39 public void addConfig(long configKey, @NonNull byte[] data) throws StatsUnavailableException { 40 mStatsManager.addConfig(configKey, data); 41 } 42 43 @Override removeConfig(long configKey)44 public void removeConfig(long configKey) throws StatsUnavailableException { 45 mStatsManager.removeConfig(configKey); 46 } 47 48 @Override 49 @Nullable getStatsMetadata()50 public byte[] getStatsMetadata() throws StatsUnavailableException { 51 return mStatsManager.getStatsMetadata(); 52 } 53 } 54