aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2019-01-28 16:22:20 +0530
committerRoopesh Chander <roop@roopc.net>2019-01-28 17:27:08 +0530
commitb0bb2e993a9bb41a39b4bbccb6d6bc6577c7407b (patch)
treeb0ab78836a80b16914c4ccb863301ab577acb645
parentPersistent Keepalive detail should read 'every n seconds' (diff)
downloadwireguard-apple-b0bb2e993a9bb41a39b4bbccb6d6bc6577c7407b.tar.xz
wireguard-apple-b0bb2e993a9bb41a39b4bbccb6d6bc6577c7407b.zip
Runtime info: Make bytecount and timestamp info prettier
Signed-off-by: Roopesh Chander <roop@roopc.net>
-rw-r--r--WireGuard/WireGuard/Base.lproj/Localizable.strings13
-rw-r--r--WireGuard/WireGuard/UI/TunnelViewModel.swift64
2 files changed, 71 insertions, 6 deletions
diff --git a/WireGuard/WireGuard/Base.lproj/Localizable.strings b/WireGuard/WireGuard/Base.lproj/Localizable.strings
index 60bd6fb..328861f 100644
--- a/WireGuard/WireGuard/Base.lproj/Localizable.strings
+++ b/WireGuard/WireGuard/Base.lproj/Localizable.strings
@@ -94,6 +94,19 @@
"tunnelEditPlaceholderTextOff" = "Off";
"tunnelPeerPersistentKeepaliveValue (%d)" = "every %d seconds";
+"tunnelHandshakeTimestampNow" = "Now";
+"tunnelHandshakeTimestampSystemClockBackward" = "(System clock is backward)";
+"tunnelHandshakeTimestampAgo (%@)" = "%@ ago";
+"tunnelHandshakeTimestampYear (%d)" = "%d year";
+"tunnelHandshakeTimestampYears (%d)" = "%d years";
+"tunnelHandshakeTimestampDay (%d)" = "%d day";
+"tunnelHandshakeTimestampDays (%d)" = "%d days";
+"tunnelHandshakeTimestampHour (%d)" = "%d hour";
+"tunnelHandshakeTimestampHours (%d)" = "%d hours";
+"tunnelHandshakeTimestampMinute (%d)" = "%d minute";
+"tunnelHandshakeTimestampMinutes (%d)" = "%d minutes";
+"tunnelHandshakeTimestampSecond (%d)" = "%d second";
+"tunnelHandshakeTimestampSeconds (%d)" = "%d seconds";
// Error alerts while creating / editing a tunnel configuration
diff --git a/WireGuard/WireGuard/UI/TunnelViewModel.swift b/WireGuard/WireGuard/UI/TunnelViewModel.swift
index 805e03d..5fbe20d 100644
--- a/WireGuard/WireGuard/UI/TunnelViewModel.swift
+++ b/WireGuard/WireGuard/UI/TunnelViewModel.swift
@@ -254,17 +254,14 @@ class TunnelViewModel {
if let persistentKeepAlive = config.persistentKeepAlive {
scratchpad[.persistentKeepAlive] = tr(format: "tunnelPeerPersistentKeepaliveValue (%d)", persistentKeepAlive)
}
- // TODO(roopc): These next 3 fields should be prettier
- // - bytes() in https://git.zx2c4.com/WireGuard/tree/src/tools/show.c#n185
- // - ago() in https://git.zx2c4.com/WireGuard/tree/src/tools/show.c#n158
if let rxBytes = config.rxBytes {
- scratchpad[.rxBytes] = String(rxBytes)
+ scratchpad[.rxBytes] = prettyBytes(rxBytes)
}
if let txBytes = config.txBytes {
- scratchpad[.txBytes] = String(txBytes)
+ scratchpad[.txBytes] = prettyBytes(txBytes)
}
if let lastHandshakeTime = config.lastHandshakeTime {
- scratchpad[.lastHandshakeTime] = lastHandshakeTime.description
+ scratchpad[.lastHandshakeTime] = prettyTimeAgo(timestamp: lastHandshakeTime)
}
updateExcludePrivateIPsFieldState()
}
@@ -512,3 +509,58 @@ extension TunnelViewModel {
#endif
}
}
+
+private func prettyBytes(_ bytes: UInt64) -> String {
+ switch bytes {
+ case 0..<1024:
+ return "\(bytes) B"
+ case 1024 ..< (1024 * 1024):
+ return String(format: "%.2f", Double(bytes) / 1024) + " KiB"
+ case 1024 ..< (1024 * 1024 * 1024):
+ return String(format: "%.2f", Double(bytes) / (1024 * 1024)) + " MiB"
+ case 1024 ..< (1024 * 1024 * 1024 * 1024):
+ return String(format: "%.2f", Double(bytes) / (1024 * 1024 * 1024)) + " GiB"
+ default:
+ return String(format: "%.2f", Double(bytes) / (1024 * 1024 * 1024 * 1024)) + " TiB"
+ }
+}
+
+private func prettyTimeAgo(timestamp: Date) -> String {
+ let now = Date()
+ let timeInterval = Int64(now.timeIntervalSince(timestamp))
+ switch timeInterval {
+ case ..<0: return tr("tunnelHandshakeTimestampSystemClockBackward")
+ case 0: return tr("tunnelHandshakeTimestampNow")
+ default:
+ return tr(format: "tunnelHandshakeTimestampAgo (%@)", prettyTime(secondsLeft: timeInterval))
+ }
+}
+
+private func prettyTime(secondsLeft: Int64) -> String {
+ var left = secondsLeft
+ var timeStrings = [String]()
+ let years = left / (365 * 24 * 60 * 60)
+ left = left % (365 * 24 * 60 * 60)
+ let days = left / (24 * 60 * 60)
+ left = left % (24 * 60 * 60)
+ let hours = left / (60 * 60)
+ left = left % (60 * 60)
+ let minutes = left / 60
+ let seconds = left % 60
+ if years > 0 {
+ timeStrings.append(years == 1 ? tr(format: "tunnelHandshakeTimestampYear (%d)", years) : tr(format: "tunnelHandshakeTimestampYears (%d)", years))
+ }
+ if days > 0 {
+ timeStrings.append(days == 1 ? tr(format: "tunnelHandshakeTimestampDay (%d)", days) : tr(format: "tunnelHandshakeTimestampDays (%d)", days))
+ }
+ if hours > 0 {
+ timeStrings.append(hours == 1 ? tr(format: "tunnelHandshakeTimestampHour (%d)", hours) : tr(format: "tunnelHandshakeTimestampHours (%d)", hours))
+ }
+ if minutes > 0 {
+ timeStrings.append(minutes == 1 ? tr(format: "tunnelHandshakeTimestampMinute (%d)", minutes) : tr(format: "tunnelHandshakeTimestampMinutes (%d)", minutes))
+ }
+ if seconds > 0 {
+ timeStrings.append(seconds == 1 ? tr(format: "tunnelHandshakeTimestampSecond (%d)", seconds) : tr(format: "tunnelHandshakeTimestampSeconds (%d)", seconds))
+ }
+ return timeStrings.joined(separator: ", ")
+}