Sample CodemacOSReviewed 2026-07-21View on Apple Developer

Filtering Network Traffic

At a glance

Item Summary
Purpose Use the Network Extension framework to allow or deny network connections.
App architecture A Swift sample with the source-visible chain AppDelegateViewControllerFilterDataProviderNetworkExtension / Network APIs.
Main patterns Protocol-oriented abstraction, Delegate or data-source callbacks
Project style 5 scanned source file(s) across Swift, organized around ranked entry, type, and file boundaries.
Execution model Source-visible boundaries: DispatchQueue.main.async; none alone proves a background thread.
State/event model Source-visible mechanisms: NotificationCenter.
Key frameworks/packages NetworkExtension, os, Cocoa, Foundation, Network; these are source dependencies, not architecture labels.

Project structure

Source bundle/
├── SimpleFirewallExtension/
│   ├── main.swift
│   ├── IPCConnection.swift
│   ├── FilterDataProvider.swift
│   └── Info.plist
├── SimpleFirewall/
│   ├── AppDelegate.swift
│   ├── ViewController.swift
│   ├── Base.lproj/
│   │   └── Main.storyboard
│   ├── Info.plist
│   └── SimpleFirewall.entitlements
├── Configuration/
│   └── SampleCode.xcconfig
└── SimpleFirewall.xcodeproj/
    ├── .xcodesamplecode.plist
    └── project.pbxproj

Structure observations

  • Architecturally prominent files are ranked from entry points and role-named declarations; resource-only paths are omitted.
  • Primary languages: Swift.
  • The verified tree contains 8 project/configuration file(s) and 8 source declaration(s).

Overall architecture

Reference code

SimpleFirewall/AppDelegate.swift:10 — architecture anchor

@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {

}

Interpretation

The arrows summarize the source-visible entry, role-named types or folders, and framework direction; when nodes come from structural folders, the sequence is a high-level interpretation rather than proof that every adjacent node calls the next. Ownership is claimed only where the next section cites a stored property or assignment. The diagram is intentionally limited to the dominant path into Network Extension.

Ownership and state

Ownership evidence

SimpleFirewallExtension/IPCConnection.swift:34 — stored dependency or nearest verified ownership anchor

class IPCConnection: NSObject {
    // ...
    var listener: NSXPCListener?
    // ...
}
Owner Object or state Relationship Mutation authority
IPCConnection NSXPCListener (listener) stores or receives App/module collaborators
IPCConnection NSXPCConnection (currentConnection) stores or receives App/module collaborators
IPCConnection AppCommunication (delegate) holds a non-owning reference The referenced object’s lifecycle is owned elsewhere
IPCConnection IPCConnection (shared) creates and retains Initialized by the owner; the binding is immutable

Composition arrows indicate a source-visible construction expression or locally owned value state; aggregation means the owner stores or receives a dependency without proving exclusive lifetime ownership.

Concurrency, scheduling, and thread safety

Evidence limit: actor isolation, async/await, or Task creation does not by itself prove background-thread execution; Sendable conformance alone does not prove thread-safe mutation.

Concern Source mechanism Verified placement or handoff Evidence
Queue scheduling DispatchQueue.main.async The source addresses the main dispatch queue. SimpleFirewall/ViewController.swift:205

@MainActor/MainActor.run, DispatchQueue.main, and RunLoop.main are reported as distinct isolation, queue, and event-loop mechanisms. A plain Task is kept separate from Task.detached; neither is labeled as a background thread.

Reference code

SimpleFirewall/ViewController.swift:205 — representative execution boundary

                DispatchQueue.main.async {
                    // ...
                        os_log("Failed to disable the filter configuration: %@", error.localizedDescription)
                    // ...
                }

State propagation, frameworks, and dependencies

Evidence limit: an import proves a source-level compilation dependency at the cited line; it does not prove runtime use, architectural adoption, or whether a Swift package is a direct application dependency.

Category Mechanism or module Verified role Evidence
State propagation NotificationCenter NotificationCenter distributes named process-local events. SimpleFirewall/ViewController.swift:116
Source import NetworkExtension The cited file imports this module; runtime use and architectural role are not inferred. SimpleFirewall/ViewController.swift:9
Source import os The cited file imports this module; runtime use and architectural role are not inferred. SimpleFirewall/ViewController.swift:11
Source import Cocoa The cited file imports this module; runtime use and architectural role are not inferred. SimpleFirewall/AppDelegate.swift:8
Source import Foundation The cited file imports this module; runtime use and architectural role are not inferred. SimpleFirewallExtension/IPCConnection.swift:8
Source import Network The cited file imports this module; runtime use and architectural role are not inferred. SimpleFirewallExtension/IPCConnection.swift:10
Source import SystemExtensions The cited file imports this module; runtime use and architectural role are not inferred. SimpleFirewall/ViewController.swift:10

receive(on:) describes downstream delivery scheduling, while subscribe(on:) describes upstream subscription/request/cancel scheduling. An import Combine alone establishes neither behavior nor a Store, reducer, Redux, or other application architecture.

Class and protocol design

SimpleFirewallExtension/IPCConnection.swift:13 — representative type boundary

@objc protocol ProviderCommunication {

    func register(_ completionHandler: @escaping (Bool) -> Void)
}
Type Responsibility Depends on or conforms to
AppDelegate Receives callback-driven events NSObject, NSApplicationDelegate
ViewController View lifecycle, callbacks, and feature coordination NSViewController
FilterDataProvider Supplies a capability or framework resource NEFilterDataProvider
ProviderCommunication Defines a capability or collaboration contract Concrete collaborators/imported frameworks
AppCommunication Defines a capability or collaboration contract Concrete collaborators/imported frameworks
FlowInfoKey Defines a closed set of feature states or choices String
IPCConnection Owns feature behavior and collaborator lifecycle NSObject
Status Defines a closed set of feature states or choices Concrete collaborators/imported frameworks

The source explicitly defines local protocol relationships: ViewControllerAppCommunication, IPCConnectionProviderCommunication.

Access control

Symbol Access Verified effect Likely rationale
extensionMachServiceName (SimpleFirewallExtension/IPCConnection.swift:46) private Use is restricted to the lexical declaration and same-file extensions allowed by Swift. Inference: hide an implementation step that is not part of the collaboration surface.
main (SimpleFirewallExtension/main.swift:8) implicit internal No explicit modifier means the Swift declaration is internal to the module. Inference: app-target collaboration needs no exported library surface.

Reference code

SimpleFirewallExtension/IPCConnection.swift:46 — representative boundary

    private func extensionMachServiceName(from bundle: Bundle) -> String {
        // ...
                fatalError("Mach service name is missing from the Info.plist")
        // ...
    }

Swift declarations without a modifier are internal; explicit private, fileprivate, private(set), public, or open entries above are interpreted by language semantics. Objective-C/C samples instead rely on header and implementation boundaries, which are not equivalent to Swift lexical privacy.

Logic ownership and placement

Logic Owning type or file Placement rationale
View lifecycle, callbacks, and feature coordination ViewController The source’s Controller suffix makes this role explicit.
Receives callback-driven events AppDelegate The source’s Delegate suffix makes this role explicit.
Supplies a capability or framework resource FilterDataProvider The source’s Provider suffix makes this role explicit.

Design patterns

Pattern Source evidence Purpose or tradeoff
Protocol-oriented abstraction SimpleFirewall/ViewController.swift:323 A local protocol and concrete conformance create an explicit capability boundary.
Delegate or data-source callbacks SimpleFirewall/AppDelegate.swift:11 Callback protocols invert event delivery back into the sample’s owner.

Naming conventions

  • Types: Controller: ViewController; Delegate: AppDelegate; Provider: FilterDataProvider.
  • Protocols: ProviderCommunication, AppCommunication.
  • Methods: register, promptUser, extensionMachServiceName, startListener, listener, viewWillAppear, viewWillDisappear, updateStatus.
  • Files: SimpleFirewall/AppDelegate.swift, SimpleFirewallExtension/IPCConnection.swift, SimpleFirewall/ViewController.swift, SimpleFirewallExtension/FilterDataProvider.swift.

Architecture takeaways

  • AppDelegate is the main source-visible entry or composition anchor for this sample.
  • Framework work reaches NetworkExtension, Cocoa, Network, SystemExtensions through a deliberately small high-level chain; the detailed API graph remains inside the cited implementation files.
  • Stored-property evidence identifies lifecycle collaboration; it does not by itself prove exclusive object ownership.
  • Access-control conclusions separate verified language visibility from the likely design rationale.
  • Local protocol relationships provide an explicit substitution boundary.

Source map

Source file Relevant symbols
SimpleFirewall/AppDelegate.swift Cited implementation, Cocoa, AppDelegate
SimpleFirewallExtension/IPCConnection.swift Cited implementation, ProviderCommunication, Foundation, Network, AppCommunication, FlowInfoKey, IPCConnection
SimpleFirewallExtension/main.swift main, Feature implementation
SimpleFirewall/ViewController.swift Cited implementation, DispatchQueue.main.async, NotificationCenter, NetworkExtension, os, SystemExtensions, ViewController, Status
SimpleFirewallExtension/FilterDataProvider.swift FilterDataProvider