Avatar
Kishikawa Katsumi 11/12/2024 12:57 AM
public struct Header { public let protocolId: UInt32 public let structureSize: UInt16 public internal(set) var creditCharge: UInt16 public let status: UInt32 ... public init( creditCharge: UInt16 = 1, command: Command, creditRequest: UInt16 = 0, flags: Flags = [], nextCommand: UInt32 = 0, messageId: UInt64, treeId: UInt32 = 0, sessionId: UInt64 ) { self.protocolId = 0x424D53FE self.structureSize = 64 self.creditCharge = creditCharge self.status = 0 self.command = command.rawValue ... } init(data: Data) { let reader = ByteReader(data) protocolId = reader.read() structureSize = reader.read() creditCharge = reader.read() status = reader.read() ... } 最初の例は簡単に書いたのでプロパティの定義と初期化を一緒にしましたが、実際はこのようにinitで定数になっているので、受信のときは受け取ったバイナリから初期化されます。その場合でもprotocolIdやstructureSizeを利用者が個別に変更したいというユースケースはないはずです。 (edited)