passepartout-apple/Passepartout/App/Views/DebugLogView.swift

165 lines
5.0 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// DebugLogView.swift
// Passepartout
//
// Created by Davide De Rosa on 2/19/22.
// Copyright (c) 2022 Davide De Rosa. All rights reserved.
//
// https://github.com/passepartoutvpn
//
// This file is part of Passepartout.
//
// Passepartout is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Passepartout is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import SwiftUI
import Combine
2022-06-23 21:31:01 +00:00
import PassepartoutLibrary
2022-04-12 13:09:14 +00:00
struct DebugLogView: View {
private let title: String
2022-04-12 13:09:14 +00:00
private let url: URL
private let timer: AnyPublisher<Date, Never>
@State private var logLines: [String] = []
@State private var isSharing = false
private let maxBytes = UInt64(Constants.Log.maxBytes)
2022-04-12 13:09:14 +00:00
private let appName = Constants.Global.appName
private let appVersion = Constants.Global.appVersionString
private let shareFilename = Unlocalized.Issues.Filenames.debugLog
init(title: String, url: URL, refreshInterval: TimeInterval?) {
self.title = title
2022-04-12 13:09:14 +00:00
self.url = url
if let refreshInterval = refreshInterval {
timer = Timer.TimerPublisher(interval: refreshInterval, runLoop: .main, mode: .common)
.autoconnect()
.eraseToAnyPublisher()
} else {
timer = Empty(outputType: Date.self, failureType: Never.self)
.eraseToAnyPublisher()
}
2022-04-12 13:09:14 +00:00
}
var body: some View {
ScrollViewReader { scrollProxy in
ScrollView(showsIndicators: true) {
contentView
}.onAppear {
2022-04-12 13:09:14 +00:00
refreshLog(scrollingToLatestWith: scrollProxy)
}
}
#if targetEnvironment(macCatalyst)
.toolbar {
Button(action: copyDebugLog) {
themeCopyImage.asSystemImage
}.disabled(logLines.isEmpty)
}
#else
.toolbar {
if !isSharing {
Button(action: shareDebugLog) {
themeShareImage.asSystemImage
}.disabled(logLines.isEmpty)
} else {
ProgressView()
}
2022-04-12 13:09:14 +00:00
}.sheet(isPresented: $isSharing, content: sharingActivityView)
#endif
.edgesIgnoringSafeArea([.leading, .trailing])
.onReceive(timer, perform: refreshLog)
.navigationTitle(title)
.themeDebugLogStyle()
2022-04-12 13:09:14 +00:00
}
private var contentView: some View {
LazyVStack {
ForEach(logLines.indices, id: \.self) {
Text(logLines[$0])
.frame(maxWidth: .infinity, alignment: .leading)
}
}//.padding()
// TODO: layout, a slight padding would be nice, but it glitches on first touch
2022-04-12 13:09:14 +00:00
}
private func refreshLog(scrollingToLatestWith scrollProxy: ScrollViewProxy?) {
logLines = url.trailingLines(bytes: maxBytes)
if let scrollProxy = scrollProxy {
scrollToLatestUpdate(scrollProxy)
}
}
private func refreshLog(_: Date) {
refreshLog(scrollingToLatestWith: nil)
}
}
2022-04-12 13:09:14 +00:00
extension DebugLogView {
2022-04-12 13:09:14 +00:00
private func shareDebugLog() {
guard !logLines.isEmpty else {
assertionFailure("Log is empty, why could it share?")
return
}
isSharing = true
}
2022-04-12 13:09:14 +00:00
private func sharingActivityView() -> some View {
ActivityView(activityItems: sharingItems)
}
private var sharingItems: [Any] {
let raw = logLines.joined(separator: "\n")
let data = DebugLog(content: raw)
.decoratedData(appName, appVersion)
2022-04-12 13:09:14 +00:00
let path = NSTemporaryDirectory().appending(shareFilename)
let url = URL(fileURLWithPath: path)
do {
try data.write(to: url)
return [url]
} catch {
// highly unlikely to happen
assertionFailure("Unable to save temporary debug log file: \(error)")
return []
}
}
}
extension DebugLogView {
private func copyDebugLog() {
guard !logLines.isEmpty else {
assertionFailure("Log is empty, why could it copy?")
return
}
let raw = logLines.joined(separator: "\n")
let content = DebugLog(content: raw)
.decoratedString(appName, appVersion)
Utils.copyToPasteboard(content)
}
}
2022-04-12 13:09:14 +00:00
extension DebugLogView {
private func scrollToLatestUpdate(_ proxy: ScrollViewProxy) {
proxy.maybeScrollTo(logLines.count - 1, anchor: .bottomLeading)
}
}