summaryrefslogtreecommitdiffstats
path: root/third_party/rust/uniffi_bindgen/src/bindings/swift/templates/MapTemplate.swift
blob: 05713aca266639ef0e4ce874f13c16efbd7721bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
fileprivate struct {{ ffi_converter_name }}: FfiConverterRustBuffer {
    public static func write(_ value: {{ type_name }}, into buf: inout [UInt8]) {
        let len = Int32(value.count)
        writeInt(&buf, len)
        for (key, value) in value {
            {{ key_type|write_fn }}(key, into: &buf)
            {{ value_type|write_fn }}(value, into: &buf)
        }
    }

    public static func read(from buf: inout (data: Data, offset: Data.Index)) throws -> {{ type_name }} {
        let len: Int32 = try readInt(&buf)
        var dict = {{ type_name }}()
        dict.reserveCapacity(Int(len))
        for _ in 0..<len {
            let key = try {{ key_type|read_fn }}(from: &buf)
            let value = try {{ value_type|read_fn }}(from: &buf)
            dict[key] = value
        }
        return dict
    }
}