NetMonitor.swift 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // NetMonitor.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 26/09/21.
  6. //
  7. import Foundation
  8. import Network
  9. public enum ConnectionType {
  10. case wifi
  11. case ethernet
  12. case cellular
  13. case unknown
  14. }
  15. class NetMonitor {
  16. static public let shared = NetMonitor()
  17. private var monitor: NWPathMonitor
  18. private var queue = DispatchQueue.global()
  19. var netOn: Bool = true
  20. var connType: ConnectionType = .wifi
  21. private init() {
  22. self.monitor = NWPathMonitor()
  23. self.queue = DispatchQueue.global(qos: .background)
  24. self.monitor.start(queue: queue)
  25. }
  26. func startMonitoring() {
  27. self.monitor.pathUpdateHandler = { path in
  28. self.netOn = path.status == .satisfied
  29. self.connType = self.checkConnectionTypeForPath(path)
  30. }
  31. }
  32. func stopMonitoring() {
  33. self.monitor.cancel()
  34. }
  35. func checkConnectionTypeForPath(_ path: NWPath) -> ConnectionType {
  36. if path.usesInterfaceType(.wifi) {
  37. return .wifi
  38. } else if path.usesInterfaceType(.wiredEthernet) {
  39. return .ethernet
  40. } else if path.usesInterfaceType(.cellular) {
  41. return .cellular
  42. }
  43. return .unknown
  44. }
  45. }