我正在尝试使用带有swift的系统配置框架读取macos上的网络接口配置。我得到一个CFPropertyList,实际上是一个CFDictionary。每个字典条目都包含一个CFArray。通过CFShow我能够验证我得到了预期的数据。我实际上不能做的是访问字典值。使用CFGetTypeId时,我得到的值与CFArrayGetTypeID()返回的值不同。
以下是我试图从属性列表中获取的IP地址:

import SystemConfiguration

func readIP() {

    let cfName = "Demo" as CFString
    let dynamicStore = SCDynamicStoreCreate(nil, cfName, nil, nil)

    let key = "State:/Network/Interface/en0/IPv4" as CFString

    guard let plist: CFPropertyList = SCDynamicStoreCopyValue(dynamicStore, key) else {return}

    print("CFShow(plist):")
    CFShow(plist)

    print("Key: \(key):")
    print("Value: \(plist)")

    let typeIdPList = CFGetTypeID(plist)
    let typeIdDictionary = CFDictionaryGetTypeID()

    print("typeIdPList: \(typeIdPList)")
    print("typeIdDictionary: \(typeIdDictionary)")

    guard typeIdPList == typeIdDictionary else {return}

    let cfDict: CFDictionary = plist as! CFDictionary

    let rawPointerToKeyAddresses = Unmanaged.passUnretained(kSCPropNetIPv4Addresses).toOpaque()
    var rawPointerToValue: UnsafeRawPointer?
    guard CFDictionaryGetValueIfPresent(cfDict, rawPointerToKeyAddresses, &rawPointerToValue) == true else {return}

    let anyRef: CFTypeRef = rawPointerToValue as CFTypeRef

    print("Value:")
    CFShow(anyRef)

    let typeIdValue = CFGetTypeID(anyRef)
    let typeIdArray = CFArrayGetTypeID()

    print("typeIdValue: \(typeIdValue)")
    print("typeIdArray: \(typeIdArray)")

    let cfArray: CFArray = anyRef as! CFArray
    let typeId = CFGetTypeID(cfArray)
    print("typeId: \(typeId)")

    let desc = CFCopyDescription(anyRef)
    let typeDesc = CFCopyTypeIDDescription(CFGetTypeID(anyRef))

    print("CFTypeRef description: \(desc!)")
    print("CFTypeRef type description: \(typeDesc!)")
}

输出如下:
CFShow(plist):
<CFBasicHash 0x610000069500 [0x7fffc4383da0]>{type = immutable dict, count = 3, entries =>
    0 : Addresses = <CFArray 0x610000069440 [0x7fffc4383da0]>{type = immutable, count = 1, values = (
    0 : <CFString 0x610000028980 [0x7fffc4383da0]>{contents = "192.168.139.24"}
)}
    1 : <CFString 0x610000044c20 [0x7fffc4383da0]>{contents = "BroadcastAddresses"} = <CFArray 0x610000069480 [0x7fffc4383da0]>{type = immutable, count = 1, values = (
    0 : <CFString 0x610000044c50 [0x7fffc4383da0]>{contents = "192.168.139.255"}
)}
    2 : <CFString 0x7fffc429d300 [0x7fffc4383da0]>{contents = "SubnetMasks"} = <CFArray 0x6100000694c0 [0x7fffc4383da0]>{type = immutable, count = 1, values = (
    0 : <CFString 0x6100000289a0 [0x7fffc4383da0]>{contents = "255.255.255.0"}
)}
}
Key: State:/Network/Interface/en0/IPv4:
Value: {
    Addresses =     (
        "192.168.139.24"
    );
    BroadcastAddresses =     (
        "192.168.139.255"
    );
    SubnetMasks =     (
        "255.255.255.0"
    );
}
typeIdPList: 18
typeIdDictionary: 18
Value:
0x0000610000069440
typeIdValue: 1
typeIdArray: 19
typeId: 1
CFTypeRef description: 0x0000610000069440
CFTypeRef type description: CFType

最佳答案

CFPropertyList已经支持订阅,因此不需要使用CFDictionary和原始指针,您可以将代码简化为

let cfName = "Demo" as CFString
let dynamicStore = SCDynamicStoreCreate(nil, cfName, nil, nil)
let key = "State:/Network/Interface/en0/IPv4" as CFString

guard let plist = SCDynamicStoreCopyValue(dynamicStore, key) else {return}
print(plist)

if let addresses = plist[kSCPropNetIPv4Addresses] as? [String] {
    print(addresses)
}

但是如果你真的很好奇如何让你的
基于方法的工作:问题是
let anyRef: CFTypeRef = rawPointerToValue as CFTypeRef

将指针值包装为CFDictionary(又名CFArray)。
你想要的是投射指针:
let anyRef = unsafeBitCast(rawPointerToValue!, to: CFTypeRef.self)
guard CFGetTypeID(anyRef) == CFArrayGetTypeID() else { return }
let cfArray = anyRef as! CFArray
// ...

另一种(等效的)指针转换方法是
let anyRef = Unmanaged<CFTypeRef>.fromOpaque(rawPointerToValue!).takeUnretainedValue()

10-07 22:08