diff options
author | 2025-01-28 14:07:47 -0800 | |
---|---|---|
committer | 2025-01-28 14:07:47 -0800 | |
commit | 0af50eb34063f95c8d820da0739aab1b03644935 (patch) | |
tree | 5fa549e709e3b5a5f280b60a9e8767f733f3e8ef | |
parent | 6c1a7411b2667ef912193477a92e5bfa8828e925 (diff) | |
parent | fdb35b5b03de4f28ba542a9e730cbff9c1eb36ef (diff) |
Merge "TableLogBuffer: Default columnPrefix to ""." into main
14 files changed, 54 insertions, 132 deletions
diff --git a/packages/SystemUI/plugin/src/com/android/systemui/plugins/log/TableLogBufferBase.kt b/packages/SystemUI/plugin/src/com/android/systemui/plugins/log/TableLogBufferBase.kt index 50b3f78a49bc..8a962f9078e6 100644 --- a/packages/SystemUI/plugin/src/com/android/systemui/plugins/log/TableLogBufferBase.kt +++ b/packages/SystemUI/plugin/src/com/android/systemui/plugins/log/TableLogBufferBase.kt @@ -25,34 +25,34 @@ interface TableLogBufferBase { * * For Java overloading. */ - fun logChange(prefix: String, columnName: String, value: String?) { + fun logChange(prefix: String = "", columnName: String, value: String?) { logChange(prefix, columnName, value, isInitial = false) } /** Logs a String? change. */ - fun logChange(prefix: String, columnName: String, value: String?, isInitial: Boolean) + fun logChange(prefix: String = "", columnName: String, value: String?, isInitial: Boolean) /** * Logs a Boolean change. * * For Java overloading. */ - fun logChange(prefix: String, columnName: String, value: Boolean) { + fun logChange(prefix: String = "", columnName: String, value: Boolean) { logChange(prefix, columnName, value, isInitial = false) } /** Logs a Boolean change. */ - fun logChange(prefix: String, columnName: String, value: Boolean, isInitial: Boolean) + fun logChange(prefix: String = "", columnName: String, value: Boolean, isInitial: Boolean) /** * Logs an Int? change. * * For Java overloading. */ - fun logChange(prefix: String, columnName: String, value: Int?) { + fun logChange(prefix: String = "", columnName: String, value: Int?) { logChange(prefix, columnName, value, isInitial = false) } /** Logs an Int? change. */ - fun logChange(prefix: String, columnName: String, value: Int?, isInitial: Boolean) + fun logChange(prefix: String = "", columnName: String, value: Int?, isInitial: Boolean) } diff --git a/packages/SystemUI/src/com/android/systemui/log/table/Diffable.kt b/packages/SystemUI/src/com/android/systemui/log/table/Diffable.kt index baa07c14ae04..9fddbfb16d4d 100644 --- a/packages/SystemUI/src/com/android/systemui/log/table/Diffable.kt +++ b/packages/SystemUI/src/com/android/systemui/log/table/Diffable.kt @@ -65,7 +65,7 @@ interface Diffable<T> { */ fun <T : Diffable<T>> Flow<T>.logDiffsForTable( tableLogBuffer: TableLogBuffer, - columnPrefix: String, + columnPrefix: String = "", initialValue: T, ): Flow<T> { // Fully log the initial value to the table. @@ -87,7 +87,7 @@ fun <T : Diffable<T>> Flow<T>.logDiffsForTable( /** See [logDiffsForTable(TableLogBuffer, String, T)]. */ fun Flow<Boolean>.logDiffsForTable( tableLogBuffer: TableLogBuffer, - columnPrefix: String, + columnPrefix: String = "", columnName: String, initialValue: Boolean, ): Flow<Boolean> { @@ -106,7 +106,7 @@ fun Flow<Boolean>.logDiffsForTable( /** See [logDiffsForTable(TableLogBuffer, String, T)]. */ fun Flow<Int>.logDiffsForTable( tableLogBuffer: TableLogBuffer, - columnPrefix: String, + columnPrefix: String = "", columnName: String, initialValue: Int, ): Flow<Int> { @@ -125,7 +125,7 @@ fun Flow<Int>.logDiffsForTable( /** See [logDiffsForTable(TableLogBuffer, String, T)]. */ fun Flow<Int?>.logDiffsForTable( tableLogBuffer: TableLogBuffer, - columnPrefix: String, + columnPrefix: String = "", columnName: String, initialValue: Int?, ): Flow<Int?> { @@ -144,7 +144,7 @@ fun Flow<Int?>.logDiffsForTable( /** See [logDiffsForTable(TableLogBuffer, String, T)]. */ fun Flow<String?>.logDiffsForTable( tableLogBuffer: TableLogBuffer, - columnPrefix: String, + columnPrefix: String = "", columnName: String, initialValue: String?, ): Flow<String?> { @@ -163,7 +163,7 @@ fun Flow<String?>.logDiffsForTable( /** See [logDiffsForTable(TableLogBuffer, String, T)]. */ fun <T> Flow<List<T>>.logDiffsForTable( tableLogBuffer: TableLogBuffer, - columnPrefix: String, + columnPrefix: String = "", columnName: String, initialValue: List<T>, ): Flow<List<T>> { diff --git a/packages/SystemUI/src/com/android/systemui/log/table/TableLogBuffer.kt b/packages/SystemUI/src/com/android/systemui/log/table/TableLogBuffer.kt index 89a599a77b40..3d1623b2d5b6 100644 --- a/packages/SystemUI/src/com/android/systemui/log/table/TableLogBuffer.kt +++ b/packages/SystemUI/src/com/android/systemui/log/table/TableLogBuffer.kt @@ -124,7 +124,7 @@ class TableLogBuffer( * the separator token for parsing, so it can't be present in any part of the column name. */ @Synchronized - fun <T : Diffable<T>> logDiffs(columnPrefix: String, prevVal: T, newVal: T) { + fun <T : Diffable<T>> logDiffs(columnPrefix: String = "", prevVal: T, newVal: T) { val row = tempRow row.timestamp = systemClock.currentTimeMillis() row.columnPrefix = columnPrefix @@ -136,6 +136,7 @@ class TableLogBuffer( /** * Logs change(s) to the buffer using [rowInitializer]. * + * @param columnPrefix see [logDiffs]. * @param rowInitializer a function that will be called immediately to store relevant data on * the row. * @param isInitial true if this change represents the starting value for a particular column @@ -145,9 +146,9 @@ class TableLogBuffer( */ @Synchronized fun logChange( - columnPrefix: String, + columnPrefix: String = "", isInitial: Boolean = false, - rowInitializer: (TableRowLogger) -> Unit + rowInitializer: (TableRowLogger) -> Unit, ) { val row = tempRow row.timestamp = systemClock.currentTimeMillis() diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/data/repository/AirplaneModeRepository.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/data/repository/AirplaneModeRepository.kt index 9f1395a30610..f82e681de76f 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/data/repository/AirplaneModeRepository.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/data/repository/AirplaneModeRepository.kt @@ -81,12 +81,7 @@ constructor( awaitClose { observer.isListening = false } } .distinctUntilChanged() - .logDiffsForTable( - logger, - columnPrefix = "", - columnName = "isAirplaneMode", - initialValue = false, - ) + .logDiffsForTable(logger, columnName = "isAirplaneMode", initialValue = false) .stateIn( scope, started = SharingStarted.WhileSubscribed(), diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/ui/viewmodel/AirplaneModeViewModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/ui/viewmodel/AirplaneModeViewModel.kt index bd18f4bd1f56..2cef54f9cf5c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/ui/viewmodel/AirplaneModeViewModel.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/airplane/ui/viewmodel/AirplaneModeViewModel.kt @@ -59,7 +59,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( logger, - columnPrefix = "", columnName = "isAirplaneModeIconVisible", initialValue = false, ) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/DemoMobileConnectionRepository.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/DemoMobileConnectionRepository.kt index be3977ecd4ba..410389a8d94c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/DemoMobileConnectionRepository.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/DemoMobileConnectionRepository.kt @@ -64,9 +64,8 @@ class DemoMobileConnectionRepository( _carrierId .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_CARRIER_ID, - _carrierId.value, + initialValue = _carrierId.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _carrierId.value) @@ -75,9 +74,8 @@ class DemoMobileConnectionRepository( _inflateSignalStrength .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = "inflate", - _inflateSignalStrength.value, + initialValue = _inflateSignalStrength.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _inflateSignalStrength.value) @@ -89,9 +87,8 @@ class DemoMobileConnectionRepository( _isEmergencyOnly .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_EMERGENCY, - _isEmergencyOnly.value, + initialValue = _isEmergencyOnly.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _isEmergencyOnly.value) @@ -100,9 +97,8 @@ class DemoMobileConnectionRepository( _isRoaming .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_ROAMING, - _isRoaming.value, + initialValue = _isRoaming.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _isRoaming.value) @@ -111,9 +107,8 @@ class DemoMobileConnectionRepository( _operatorAlphaShort .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_OPERATOR, - _operatorAlphaShort.value, + initialValue = _operatorAlphaShort.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _operatorAlphaShort.value) @@ -122,9 +117,8 @@ class DemoMobileConnectionRepository( _isInService .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_IS_IN_SERVICE, - _isInService.value, + initialValue = _isInService.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _isInService.value) @@ -133,21 +127,15 @@ class DemoMobileConnectionRepository( _isNonTerrestrial .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_IS_NTN, - _isNonTerrestrial.value, + initialValue = _isNonTerrestrial.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _isNonTerrestrial.value) private val _isGsm = MutableStateFlow(false) override val isGsm = _isGsm - .logDiffsForTable( - tableLogBuffer, - columnPrefix = "", - columnName = COL_IS_GSM, - _isGsm.value, - ) + .logDiffsForTable(tableLogBuffer, columnName = COL_IS_GSM, initialValue = _isGsm.value) .stateIn(scope, SharingStarted.WhileSubscribed(), _isGsm.value) private val _cdmaLevel = MutableStateFlow(CellSignalStrength.SIGNAL_STRENGTH_NONE_OR_UNKNOWN) @@ -155,9 +143,8 @@ class DemoMobileConnectionRepository( _cdmaLevel .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_CDMA_LEVEL, - _cdmaLevel.value, + initialValue = _cdmaLevel.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _cdmaLevel.value) @@ -166,9 +153,8 @@ class DemoMobileConnectionRepository( _primaryLevel .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_PRIMARY_LEVEL, - _primaryLevel.value, + initialValue = _primaryLevel.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _primaryLevel.value) @@ -177,23 +163,22 @@ class DemoMobileConnectionRepository( _satelliteLevel .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_SATELLITE_LEVEL, - _satelliteLevel.value, + initialValue = _satelliteLevel.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _satelliteLevel.value) private val _dataConnectionState = MutableStateFlow(DataConnectionState.Disconnected) override val dataConnectionState = _dataConnectionState - .logDiffsForTable(tableLogBuffer, columnPrefix = "", _dataConnectionState.value) + .logDiffsForTable(tableLogBuffer, initialValue = _dataConnectionState.value) .stateIn(scope, SharingStarted.WhileSubscribed(), _dataConnectionState.value) private val _dataActivityDirection = MutableStateFlow(DataActivityModel(hasActivityIn = false, hasActivityOut = false)) override val dataActivityDirection = _dataActivityDirection - .logDiffsForTable(tableLogBuffer, columnPrefix = "", _dataActivityDirection.value) + .logDiffsForTable(tableLogBuffer, initialValue = _dataActivityDirection.value) .stateIn(scope, SharingStarted.WhileSubscribed(), _dataActivityDirection.value) private val _carrierNetworkChangeActive = MutableStateFlow(false) @@ -201,9 +186,8 @@ class DemoMobileConnectionRepository( _carrierNetworkChangeActive .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_CARRIER_NETWORK_CHANGE, - _carrierNetworkChangeActive.value, + initialValue = _carrierNetworkChangeActive.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), _carrierNetworkChangeActive.value) @@ -211,7 +195,7 @@ class DemoMobileConnectionRepository( MutableStateFlow(ResolvedNetworkType.UnknownNetworkType) override val resolvedNetworkType = _resolvedNetworkType - .logDiffsForTable(tableLogBuffer, columnPrefix = "", _resolvedNetworkType.value) + .logDiffsForTable(tableLogBuffer, initialValue = _resolvedNetworkType.value) .stateIn(scope, SharingStarted.WhileSubscribed(), _resolvedNetworkType.value) override val numberOfLevels = diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/FullMobileConnectionRepository.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/FullMobileConnectionRepository.kt index 21a34108a32b..5094bc7e083a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/FullMobileConnectionRepository.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/FullMobileConnectionRepository.kt @@ -73,7 +73,6 @@ class FullMobileConnectionRepository( _isCarrierMerged .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = "isCarrierMerged", initialValue = startingIsCarrierMerged, ) @@ -128,9 +127,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.isEmergencyOnly } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_EMERGENCY, - activeRepo.value.isEmergencyOnly.value, + initialValue = activeRepo.value.isEmergencyOnly.value, ) .stateIn( scope, @@ -143,9 +141,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.isRoaming } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_ROAMING, - activeRepo.value.isRoaming.value, + initialValue = activeRepo.value.isRoaming.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.isRoaming.value) @@ -154,9 +151,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.operatorAlphaShort } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_OPERATOR, - activeRepo.value.operatorAlphaShort.value, + initialValue = activeRepo.value.operatorAlphaShort.value, ) .stateIn( scope, @@ -169,9 +165,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.isInService } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_IS_IN_SERVICE, - activeRepo.value.isInService.value, + initialValue = activeRepo.value.isInService.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.isInService.value) @@ -180,9 +175,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.isNonTerrestrial } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_IS_NTN, - activeRepo.value.isNonTerrestrial.value, + initialValue = activeRepo.value.isNonTerrestrial.value, ) .stateIn( scope, @@ -195,9 +189,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.isGsm } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_IS_GSM, - activeRepo.value.isGsm.value, + initialValue = activeRepo.value.isGsm.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.isGsm.value) @@ -206,9 +199,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.cdmaLevel } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_CDMA_LEVEL, - activeRepo.value.cdmaLevel.value, + initialValue = activeRepo.value.cdmaLevel.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.cdmaLevel.value) @@ -217,9 +209,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.primaryLevel } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_PRIMARY_LEVEL, - activeRepo.value.primaryLevel.value, + initialValue = activeRepo.value.primaryLevel.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.primaryLevel.value) @@ -228,9 +219,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.satelliteLevel } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_SATELLITE_LEVEL, - activeRepo.value.satelliteLevel.value, + initialValue = activeRepo.value.satelliteLevel.value, ) .stateIn(scope, SharingStarted.WhileSubscribed(), activeRepo.value.satelliteLevel.value) @@ -239,8 +229,7 @@ class FullMobileConnectionRepository( .flatMapLatest { it.dataConnectionState } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", - activeRepo.value.dataConnectionState.value, + initialValue = activeRepo.value.dataConnectionState.value, ) .stateIn( scope, @@ -253,8 +242,7 @@ class FullMobileConnectionRepository( .flatMapLatest { it.dataActivityDirection } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", - activeRepo.value.dataActivityDirection.value, + initialValue = activeRepo.value.dataActivityDirection.value, ) .stateIn( scope, @@ -267,9 +255,8 @@ class FullMobileConnectionRepository( .flatMapLatest { it.carrierNetworkChangeActive } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = COL_CARRIER_NETWORK_CHANGE, - activeRepo.value.carrierNetworkChangeActive.value, + initialValue = activeRepo.value.carrierNetworkChangeActive.value, ) .stateIn( scope, @@ -282,8 +269,7 @@ class FullMobileConnectionRepository( .flatMapLatest { it.resolvedNetworkType } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", - activeRepo.value.resolvedNetworkType.value, + initialValue = activeRepo.value.resolvedNetworkType.value, ) .stateIn( scope, @@ -296,7 +282,6 @@ class FullMobileConnectionRepository( .flatMapLatest { it.dataEnabled } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = "dataEnabled", initialValue = activeRepo.value.dataEnabled.value, ) @@ -307,7 +292,6 @@ class FullMobileConnectionRepository( .flatMapLatest { it.inflateSignalStrength } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = "inflate", initialValue = activeRepo.value.inflateSignalStrength.value, ) @@ -322,7 +306,6 @@ class FullMobileConnectionRepository( .flatMapLatest { it.allowNetworkSliceIndicator } .logDiffsForTable( tableLogBuffer, - columnPrefix = "", columnName = "allowSlice", initialValue = activeRepo.value.allowNetworkSliceIndicator.value, ) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/MobileConnectionsRepositoryImpl.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/MobileConnectionsRepositoryImpl.kt index 6337110c014f..d3369033942e 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/MobileConnectionsRepositoryImpl.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/MobileConnectionsRepositoryImpl.kt @@ -380,7 +380,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( tableLogger, - columnPrefix = "", columnName = "defaultConnectionIsValidated", initialValue = false, ) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/MobileIconInteractor.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/MobileIconInteractor.kt index 36de2c13489a..a1f7a81e258a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/MobileIconInteractor.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/domain/interactor/MobileIconInteractor.kt @@ -238,7 +238,6 @@ class MobileIconInteractorImpl( .distinctUntilChanged() .logDiffsForTable( tableLogBuffer = tableLogBuffer, - columnPrefix = "", initialValue = DefaultIcon(defaultMobileIconGroup.value), ) .stateIn( diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/MobileIconViewModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/MobileIconViewModel.kt index be9d8f7a4a72..171e4f59b0e5 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/MobileIconViewModel.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/ui/viewmodel/MobileIconViewModel.kt @@ -191,7 +191,6 @@ private class CellularIconViewModel( .distinctUntilChanged() .logDiffsForTable( iconInteractor.tableLogBuffer, - columnPrefix = "", columnName = "visible", initialValue = false, ) @@ -249,7 +248,6 @@ private class CellularIconViewModel( .distinctUntilChanged() .logDiffsForTable( iconInteractor.tableLogBuffer, - columnPrefix = "", columnName = "showNetworkTypeIcon", initialValue = false, ) @@ -293,7 +291,6 @@ private class CellularIconViewModel( iconInteractor.isRoaming .logDiffsForTable( iconInteractor.tableLogBuffer, - columnPrefix = "", columnName = "roaming", initialValue = false, ) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/domain/interactor/DeviceBasedSatelliteInteractor.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/domain/interactor/DeviceBasedSatelliteInteractor.kt index 88b480223048..569e02cc67bd 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/domain/interactor/DeviceBasedSatelliteInteractor.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/satellite/domain/interactor/DeviceBasedSatelliteInteractor.kt @@ -63,12 +63,7 @@ constructor( flowOf(false) } .distinctUntilChanged() - .logDiffsForTable( - tableLog, - columnPrefix = "", - columnName = COL_ALLOWED, - initialValue = false, - ) + .logDiffsForTable(tableLog, columnName = COL_ALLOWED, initialValue = false) .stateIn(scope, SharingStarted.WhileSubscribed(), false) /** See [SatelliteConnectionState] for relevant states */ @@ -80,11 +75,7 @@ constructor( flowOf(SatelliteConnectionState.Off) } .distinctUntilChanged() - .logDiffsForTable( - tableLog, - columnPrefix = "", - initialValue = SatelliteConnectionState.Off, - ) + .logDiffsForTable(tableLog, initialValue = SatelliteConnectionState.Off) .stateIn(scope, SharingStarted.WhileSubscribed(), SatelliteConnectionState.Off) /** 0-4 description of the connection strength */ @@ -95,7 +86,7 @@ constructor( flowOf(0) } .distinctUntilChanged() - .logDiffsForTable(tableLog, columnPrefix = "", columnName = COL_LEVEL, initialValue = 0) + .logDiffsForTable(tableLog, columnName = COL_LEVEL, initialValue = 0) .stateIn(scope, SharingStarted.WhileSubscribed(), 0) val isSatelliteProvisioned = repo.isSatelliteProvisioned @@ -119,12 +110,7 @@ constructor( isOosAndNotEmergencyAndNotSatellite.all { it } } .distinctUntilChanged() - .logDiffsForTable( - tableLog, - columnPrefix = "", - columnName = COL_ALL_OOS, - initialValue = true, - ) + .logDiffsForTable(tableLog, columnName = COL_ALL_OOS, initialValue = true) /** When all connections are considered OOS, satellite connectivity is potentially valid */ val areAllConnectionsOutOfService = @@ -152,12 +138,7 @@ constructor( flowOf(false) } .distinctUntilChanged() - .logDiffsForTable( - tableLog, - columnPrefix = "", - columnName = COL_FULL_OOS, - initialValue = true, - ) + .logDiffsForTable(tableLog, columnName = COL_FULL_OOS, initialValue = true) .stateIn(scope, SharingStarted.WhileSubscribed(), true) /** True if any known mobile network is currently using a non terrestrial network */ diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/HomeStatusBarViewModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/HomeStatusBarViewModel.kt index 5acedf129184..a59d95f27c38 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/HomeStatusBarViewModel.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/HomeStatusBarViewModel.kt @@ -195,7 +195,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( tableLogBuffer = tableLogger, - columnPrefix = "", columnName = COL_LOCK_TO_OCCLUDED, initialValue = false, ) @@ -228,7 +227,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( tableLogBuffer = tableLogger, - columnPrefix = "", columnName = COL_ALLOWED_BY_SCENE, initialValue = false, ) @@ -248,7 +246,6 @@ constructor( } .logDiffsForTable( tableLogBuffer = tableLogger, - columnPrefix = "", columnName = COL_NOTIF_LIGHTS_OUT, initialValue = false, ) @@ -306,7 +303,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( tableLogBuffer = tableLogger, - columnPrefix = "", columnName = COL_VISIBLE, initialValue = false, ) @@ -350,7 +346,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( tableLogBuffer = tableLogger, - columnPrefix = "", columnName = COL_SHOW_OPERATOR_NAME, initialValue = false, ) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/WifiRepositoryImpl.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/WifiRepositoryImpl.kt index 115de28c5920..f9bba9d624f1 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/WifiRepositoryImpl.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/data/repository/prod/WifiRepositoryImpl.kt @@ -300,19 +300,14 @@ constructor( wifiPickerTrackerInfo .map { it.state == WifiManager.WIFI_STATE_ENABLED } .distinctUntilChanged() - .logDiffsForTable( - tableLogger, - columnPrefix = "", - columnName = COL_NAME_IS_ENABLED, - initialValue = false, - ) + .logDiffsForTable(tableLogger, columnName = COL_NAME_IS_ENABLED, initialValue = false) .stateIn(scope, SharingStarted.Eagerly, false) override val wifiNetwork: StateFlow<WifiNetworkModel> = wifiPickerTrackerInfo .map { it.primaryNetwork } .distinctUntilChanged() - .logDiffsForTable(tableLogger, columnPrefix = "", initialValue = WIFI_NETWORK_DEFAULT) + .logDiffsForTable(tableLogger, initialValue = WIFI_NETWORK_DEFAULT) .stateIn(scope, SharingStarted.Eagerly, WIFI_NETWORK_DEFAULT) override val secondaryNetworks: StateFlow<List<WifiNetworkModel>> = @@ -321,7 +316,6 @@ constructor( .distinctUntilChanged() .logDiffsForTable( tableLogger, - columnPrefix = "", columnName = "secondaryNetworks", initialValue = emptyList(), ) @@ -400,12 +394,7 @@ constructor( wifiPickerTrackerInfo .map { it.isDefault } .distinctUntilChanged() - .logDiffsForTable( - tableLogger, - columnPrefix = "", - columnName = COL_NAME_IS_DEFAULT, - initialValue = false, - ) + .logDiffsForTable(tableLogger, columnName = COL_NAME_IS_DEFAULT, initialValue = false) .stateIn(scope, SharingStarted.Eagerly, false) override val wifiActivity: StateFlow<DataActivityModel> = diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/ui/viewmodel/WifiViewModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/ui/viewmodel/WifiViewModel.kt index f9556d2e8003..986068bc00bc 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/ui/viewmodel/WifiViewModel.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/wifi/ui/viewmodel/WifiViewModel.kt @@ -89,7 +89,7 @@ constructor( else -> WifiIcon.Hidden } } - .logDiffsForTable(wifiTableLogBuffer, columnPrefix = "", initialValue = WifiIcon.Hidden) + .logDiffsForTable(wifiTableLogBuffer, initialValue = WifiIcon.Hidden) .stateIn( scope, started = SharingStarted.WhileSubscribed(), |