forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileWatcherProtocol.swift
More file actions
32 lines (27 loc) · 875 Bytes
/
FileWatcherProtocol.swift
File metadata and controls
32 lines (27 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import Foundation
import LanguageServerProtocol
public protocol FileWatcherProtocol {
func startWatching() -> Bool
func stopWatching()
}
public typealias PublisherType = (([FileEvent]) -> Void)
public protocol DirectoryWatcherProtocol: FileWatcherProtocol {
func addPaths(_ paths: [URL])
func removePaths(_ paths: [URL])
func paths() -> [URL]
}
public protocol FileWatcherFactory {
func createFileWatcher(
fileURL: URL,
dispatchQueue: DispatchQueue?,
onFileModified: (() -> Void)?,
onFileDeleted: (() -> Void)?,
onFileRenamed: (() -> Void)?
) -> FileWatcherProtocol
func createDirectoryWatcher(
watchedPaths: [URL],
changePublisher: @escaping PublisherType,
publishInterval: TimeInterval,
directoryChangePublisher: PublisherType?
) -> DirectoryWatcherProtocol
}