2020-11-16 16:52:38 +00:00
|
|
|
/*
|
2023-01-07 00:40:40 +00:00
|
|
|
* Copyright 2023 Google Inc. All rights reserved.
|
2020-11-16 16:52:38 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-05-29 18:56:33 +00:00
|
|
|
#if !os(WASI)
|
2021-05-14 17:59:28 +00:00
|
|
|
import Foundation
|
2022-05-29 18:56:33 +00:00
|
|
|
#else
|
|
|
|
import SwiftOverlayShims
|
|
|
|
#endif
|
2021-05-14 17:59:28 +00:00
|
|
|
|
|
|
|
/// FlatBufferGRPCMessage protocol that should allow us to invoke
|
|
|
|
/// initializers directly from the GRPC generated code
|
2020-02-24 17:27:41 +00:00
|
|
|
public protocol FlatBufferGRPCMessage {
|
2020-11-16 16:52:38 +00:00
|
|
|
|
|
|
|
/// Raw pointer which would be pointing to the beginning of the readable bytes
|
|
|
|
var rawPointer: UnsafeMutableRawPointer { get }
|
|
|
|
|
|
|
|
/// Size of readable bytes in the buffer
|
|
|
|
var size: Int { get }
|
|
|
|
|
|
|
|
init(byteBuffer: ByteBuffer)
|
2020-02-24 17:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Message is a wrapper around Buffers to to able to send Flatbuffers `Buffers` through the
|
|
|
|
/// GRPC library
|
2021-02-03 23:01:18 +00:00
|
|
|
public struct Message<T: FlatBufferObject>: FlatBufferGRPCMessage {
|
2020-11-16 16:52:38 +00:00
|
|
|
internal var buffer: ByteBuffer
|
|
|
|
|
|
|
|
/// Returns the an object of type T that would be read from the buffer
|
|
|
|
public var object: T {
|
|
|
|
T.init(
|
|
|
|
buffer,
|
2021-09-27 18:59:19 +00:00
|
|
|
o: Int32(buffer.read(def: UOffset.self, position: buffer.reader)) +
|
|
|
|
Int32(buffer.reader))
|
2020-11-16 16:52:38 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 18:59:19 +00:00
|
|
|
public var rawPointer: UnsafeMutableRawPointer {
|
|
|
|
buffer.memory.advanced(by: buffer.reader) }
|
2020-11-16 16:52:38 +00:00
|
|
|
|
|
|
|
public var size: Int { Int(buffer.size) }
|
|
|
|
|
|
|
|
/// Initializes the message with the type Flatbuffer.Bytebuffer that is transmitted over
|
|
|
|
/// GRPC
|
|
|
|
/// - Parameter byteBuffer: Flatbuffer ByteBuffer object
|
|
|
|
public init(byteBuffer: ByteBuffer) {
|
|
|
|
buffer = byteBuffer
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Initializes the message by copying the buffer to the message to be sent.
|
|
|
|
/// from the builder
|
|
|
|
/// - Parameter builder: FlatbufferBuilder that has the bytes created in
|
|
|
|
/// - Note: Use `builder.finish(offset)` before passing the builder without prefixing anything to it
|
|
|
|
public init(builder: inout FlatBufferBuilder) {
|
|
|
|
buffer = builder.sizedBuffer
|
|
|
|
builder.clear()
|
|
|
|
}
|
2020-02-24 17:27:41 +00:00
|
|
|
}
|