From 0ca5e1c6486a3ff9e6ab5ae6d11c65ff86d3e364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Mon, 17 Jul 2023 13:08:01 +0800 Subject: [PATCH] Improve dashboard --- .../java/io/nekohasekai/sfa/bg/BoxService.kt | 4 +- .../sfa/ui/main/DashboardFragment.kt | 13 +- .../main/res/layout/fragment_dashboard.xml | 432 +++++++++++++++--- app/src/main/res/values/strings.xml | 9 +- 4 files changed, 383 insertions(+), 75 deletions(-) diff --git a/app/src/main/java/io/nekohasekai/sfa/bg/BoxService.kt b/app/src/main/java/io/nekohasekai/sfa/bg/BoxService.kt index 49698ff..88cbdfc 100644 --- a/app/src/main/java/io/nekohasekai/sfa/bg/BoxService.kt +++ b/app/src/main/java/io/nekohasekai/sfa/bg/BoxService.kt @@ -133,7 +133,7 @@ class BoxService( newService.start() boxService = newService - + commandServer?.setService(boxService) status.postValue(Status.Started) } catch (e: Exception) { stopAndAlert(Alert.StartService, e.message) @@ -148,6 +148,7 @@ class BoxService( pfd.close() fileDescriptor = null } + commandServer?.setService(null) boxService?.apply { runCatching { close() @@ -175,6 +176,7 @@ class BoxService( pfd.close() fileDescriptor = null } + commandServer?.setService(null) boxService?.apply { runCatching { close() diff --git a/app/src/main/java/io/nekohasekai/sfa/ui/main/DashboardFragment.kt b/app/src/main/java/io/nekohasekai/sfa/ui/main/DashboardFragment.kt index 0c25b03..7dc312a 100644 --- a/app/src/main/java/io/nekohasekai/sfa/ui/main/DashboardFragment.kt +++ b/app/src/main/java/io/nekohasekai/sfa/ui/main/DashboardFragment.kt @@ -1,6 +1,7 @@ package io.nekohasekai.sfa.ui.main import android.os.Bundle +import android.util.Log import android.view.LayoutInflater import android.view.View import android.view.ViewGroup @@ -64,7 +65,7 @@ class DashboardFragment : Fragment(), CommandClientHandler { binding.profileList.addItemDecoration(divider) activity.serviceStatus.observe(viewLifecycleOwner) { - binding.statusCard.isVisible = it == Status.Starting || it == Status.Started + binding.statusContainer.isVisible = it == Status.Starting || it == Status.Started when (it) { Status.Stopped -> { binding.fab.setImageResource(R.drawable.ic_play_arrow_24) @@ -164,6 +165,16 @@ class DashboardFragment : Fragment(), CommandClientHandler { lifecycleScope.launch(Dispatchers.Main) { binding.memoryText.text = Libbox.formatBytes(message.memory) binding.goroutinesText.text = message.goroutines.toString() + val trafficAvailable = message.trafficAvailable + binding.trafficContainer.isVisible = trafficAvailable + if (trafficAvailable) { + binding.inboundConnectionsText.text = message.connectionsIn.toString() + binding.outboundConnectionsText.text = message.connectionsOut.toString() + binding.uplinkText.text = Libbox.formatBytes(message.uplink) + "/s" + binding.downlinkText.text = Libbox.formatBytes(message.downlink) + "/s" + binding.uplinkTotalText.text = Libbox.formatBytes(message.uplinkTotal) + binding.downlinkTotalText.text = Libbox.formatBytes(message.downlinkTotal) + } } } diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index 2335678..58ea2a5 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -11,121 +11,409 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" - android:visibility="gone" android:text="@string/profile_empty" - android:textSize="20sp" /> + android:textSize="20sp" + android:visibility="gone" /> - + android:layout_height="match_parent"> - + android:layout_height="match_parent" + android:orientation="vertical" + android:padding="16dp"> - - - - + android:visibility="gone" + tools:visibility="visible"> + android:orientation="horizontal"> - + android:layout_weight="1"> - + + + + + + + + + + + + + + + + android:layout_weight="1"> + + + + + + + + + + + + + + + android:layout_height="wrap_content" + android:orientation="vertical" + android:visibility="gone" + tools:visibility="visible"> - + android:layout_marginTop="16dp" + android:orientation="horizontal"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + android:layout_marginTop="16dp" + android:orientation="horizontal"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + android:layout_marginTop="16dp" + tools:visibility="visible"> - - - - - - tools:itemCount="3" - tools:listitem="@layout/view_profile_item" /> + + + + + - + - + - + + + Start command server Create service Start service - Status + Memory Goroutines + Inbound Connections + Outbound Connections + Uplink + Downlink + Uplink Total + Downlink Total + Profile Version Core