mirror of
https://github.com/swift-server/swift-aws-lambda-runtime.git
synced 2026-06-02 07:27:33 +00:00
- Use the new Swift 6 `@available` macro to remove requirement on `.platform` in Package.swift. - DRY: define the swift settings once for all in `Package.swift` ### Motivation: - Remove the requirement to build on macOS 15 in `Package.swift`. This allows library builders and end users to be more flexible on their dependency requirements. - The code is optionally compiled on macOS 15 and Linux, but SPM don't enforce it anymore. - Avoid repeating ourself. Be sure the same settings are applied on all targets. ### Modifications: - Create a `var swiftSetting: [SwiftSettings]` and reuse it for all targets. - Use `AvailabilityMacro=LambdaSwift 2.0:macOS 15.0` - Add this on top of the majority struct / classes ```swift #if swift(>=6.1) @available(LambdaSwift 2.0, *) #endif ``` ### Result: When using Swift 6.1, there is no more SPM dependency on macOS 15
46 lines
1.4 KiB
Swift
46 lines
1.4 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the SwiftAWSLambdaRuntime open source project
|
|
//
|
|
// Copyright (c) 2024 Apple Inc. and the SwiftAWSLambdaRuntime project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of SwiftAWSLambdaRuntime project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import NIOCore
|
|
|
|
@usableFromInline
|
|
package protocol LambdaRuntimeClientResponseStreamWriter: LambdaResponseStreamWriter {
|
|
func write(_ buffer: ByteBuffer, hasCustomHeaders: Bool) async throws
|
|
func finish() async throws
|
|
func writeAndFinish(_ buffer: ByteBuffer) async throws
|
|
func reportError(_ error: any Error) async throws
|
|
}
|
|
|
|
@usableFromInline
|
|
@available(LambdaSwift 2.0, *)
|
|
package protocol LambdaRuntimeClientProtocol {
|
|
associatedtype Writer: LambdaRuntimeClientResponseStreamWriter
|
|
|
|
func nextInvocation() async throws -> (Invocation, Writer)
|
|
}
|
|
|
|
@usableFromInline
|
|
@available(LambdaSwift 2.0, *)
|
|
package struct Invocation: Sendable {
|
|
@usableFromInline
|
|
package var metadata: InvocationMetadata
|
|
@usableFromInline
|
|
package var event: ByteBuffer
|
|
|
|
package init(metadata: InvocationMetadata, event: ByteBuffer) {
|
|
self.metadata = metadata
|
|
self.event = event
|
|
}
|
|
}
|