vOOice/VoiceInk/Services/ScreenCaptureService.swift

153 lines
5.4 KiB
Swift

import Foundation
import AppKit
import Vision
import os
import ScreenCaptureKit
class ScreenCaptureService: ObservableObject {
@Published var isCapturing = false
@Published var lastCapturedText: String?
private let logger = Logger(
subsystem: "com.prakashjoshipax.voiceink",
category: "aienhancement"
)
private func getActiveWindowInfo() -> (title: String, ownerName: String, windowID: CGWindowID)? {
let windowListInfo = CGWindowListCopyWindowInfo([.optionOnScreenOnly], kCGNullWindowID) as? [[String: Any]] ?? []
if let frontWindow = windowListInfo.first(where: { info in
let layer = info[kCGWindowLayer as String] as? Int32 ?? 0
return layer == 0
}) {
guard let windowID = frontWindow[kCGWindowNumber as String] as? CGWindowID,
let ownerName = frontWindow[kCGWindowOwnerName as String] as? String,
let title = frontWindow[kCGWindowName as String] as? String else {
return nil
}
return (title: title, ownerName: ownerName, windowID: windowID)
}
return nil
}
func captureActiveWindow() async -> NSImage? {
guard let windowInfo = getActiveWindowInfo() else {
return nil
}
do {
let content = try await SCShareableContent.excludingDesktopWindows(false, onScreenWindowsOnly: true)
guard let targetWindow = content.windows.first(where: { $0.windowID == windowInfo.windowID }) else {
return nil
}
let filter = SCContentFilter(desktopIndependentWindow: targetWindow)
let configuration = SCStreamConfiguration()
configuration.width = Int(targetWindow.frame.width) * 2
configuration.height = Int(targetWindow.frame.height) * 2
let cgImage = try await SCScreenshotManager.captureImage(contentFilter: filter, configuration: configuration)
return NSImage(cgImage: cgImage, size: NSSize(width: cgImage.width, height: cgImage.height))
} catch {
logger.notice("📸 Screen capture failed: \(error.localizedDescription, privacy: .public)")
return nil
}
}
func extractText(from image: NSImage, completion: @escaping (String?) -> Void) {
guard let cgImage = image.cgImage(forProposedRect: nil, context: nil, hints: nil) else {
completion(nil)
return
}
let requestHandler = VNImageRequestHandler(cgImage: cgImage, options: [:])
let request = VNRecognizeTextRequest { request, error in
if let error = error {
self.logger.notice("📸 Text recognition failed: \(error.localizedDescription, privacy: .public)")
completion(nil)
return
}
guard let observations = request.results as? [VNRecognizedTextObservation] else {
completion(nil)
return
}
let text = observations.compactMap { observation in
observation.topCandidates(1).first?.string
}.joined(separator: "\n")
completion(text.isEmpty ? nil : text)
}
request.recognitionLevel = VNRequestTextRecognitionLevel.accurate
request.usesLanguageCorrection = true
request.automaticallyDetectsLanguage = true
do {
try requestHandler.perform([request])
} catch {
logger.notice("📸 Text recognition failed: \(error.localizedDescription, privacy: .public)")
completion(nil)
}
}
func captureAndExtractText() async -> String? {
guard !isCapturing else {
return nil
}
isCapturing = true
defer {
DispatchQueue.main.async {
self.isCapturing = false
}
}
guard let windowInfo = getActiveWindowInfo() else {
logger.notice("📸 No active window found")
return nil
}
logger.notice("📸 Capturing: \(windowInfo.title, privacy: .public) (\(windowInfo.ownerName, privacy: .public))")
var contextText = """
Active Window: \(windowInfo.title)
Application: \(windowInfo.ownerName)
"""
if let capturedImage = await captureActiveWindow() {
let extractedText = await withCheckedContinuation({ continuation in
extractText(from: capturedImage) { text in
continuation.resume(returning: text)
}
})
if let extractedText = extractedText, !extractedText.isEmpty {
contextText += "Window Content:\n\(extractedText)"
let preview = String(extractedText.prefix(100))
logger.notice("📸 Text extracted: \(preview, privacy: .public)\(extractedText.count > 100 ? "..." : "")")
} else {
contextText += "Window Content:\nNo text detected via OCR"
logger.notice("📸 No text extracted from window")
}
await MainActor.run {
self.lastCapturedText = contextText
}
return contextText
}
logger.notice("📸 Window capture failed")
return nil
}
}