-
Notifications
You must be signed in to change notification settings - Fork 113
Update LambdaContext #345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update LambdaContext #345
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the SwiftAWSLambdaRuntime open source project | ||
// | ||
// Copyright (c) 2017-2022 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 Dispatch | ||
import Logging | ||
import NIOCore | ||
|
||
// MARK: - Context | ||
|
||
/// Lambda runtime context. | ||
/// The Lambda runtime generates and passes the `LambdaContext` to the Lambda handler as an argument. | ||
public struct NewLambdaContext: CustomDebugStringConvertible, Sendable { | ||
final class _Storage: Sendable { | ||
let requestID: String | ||
let traceID: String | ||
let invokedFunctionARN: String | ||
let deadline: DispatchWallTime | ||
let cognitoIdentity: String? | ||
let clientContext: String? | ||
let logger: Logger | ||
|
||
init( | ||
requestID: String, | ||
traceID: String, | ||
invokedFunctionARN: String, | ||
deadline: DispatchWallTime, | ||
cognitoIdentity: String?, | ||
clientContext: String?, | ||
logger: Logger | ||
) { | ||
self.requestID = requestID | ||
self.traceID = traceID | ||
self.invokedFunctionARN = invokedFunctionARN | ||
self.deadline = deadline | ||
self.cognitoIdentity = cognitoIdentity | ||
self.clientContext = clientContext | ||
self.logger = logger | ||
} | ||
} | ||
|
||
private var storage: _Storage | ||
|
||
/// The request ID, which identifies the request that triggered the function invocation. | ||
public var requestID: String { | ||
self.storage.requestID | ||
} | ||
|
||
/// The AWS X-Ray tracing header. | ||
public var traceID: String { | ||
self.storage.traceID | ||
} | ||
|
||
/// The ARN of the Lambda function, version, or alias that's specified in the invocation. | ||
public var invokedFunctionARN: String { | ||
self.storage.invokedFunctionARN | ||
} | ||
|
||
/// The timestamp that the function times out. | ||
public var deadline: DispatchWallTime { | ||
self.storage.deadline | ||
} | ||
|
||
/// For invocations from the AWS Mobile SDK, data about the Amazon Cognito identity provider. | ||
public var cognitoIdentity: String? { | ||
self.storage.cognitoIdentity | ||
} | ||
|
||
/// For invocations from the AWS Mobile SDK, data about the client application and device. | ||
public var clientContext: String? { | ||
self.storage.clientContext | ||
} | ||
|
||
/// `Logger` to log with. | ||
/// | ||
/// - note: The `LogLevel` can be configured using the `LOG_LEVEL` environment variable. | ||
public var logger: Logger { | ||
self.storage.logger | ||
} | ||
|
||
init( | ||
requestID: String, | ||
traceID: String, | ||
invokedFunctionARN: String, | ||
deadline: DispatchWallTime, | ||
cognitoIdentity: String? = nil, | ||
clientContext: String? = nil, | ||
logger: Logger | ||
) { | ||
self.storage = _Storage( | ||
requestID: requestID, | ||
traceID: traceID, | ||
invokedFunctionARN: invokedFunctionARN, | ||
deadline: deadline, | ||
cognitoIdentity: cognitoIdentity, | ||
clientContext: clientContext, | ||
logger: logger | ||
) | ||
} | ||
|
||
public func getRemainingTime() -> TimeAmount { | ||
let deadline = self.deadline.millisSinceEpoch | ||
let now = DispatchWallTime.now().millisSinceEpoch | ||
|
||
let remaining = deadline - now | ||
return .milliseconds(remaining) | ||
} | ||
|
||
public var debugDescription: String { | ||
"\(Self.self)(requestID: \(self.requestID), traceID: \(self.traceID), invokedFunctionARN: \(self.invokedFunctionARN), cognitoIdentity: \(self.cognitoIdentity ?? "nil"), clientContext: \(self.clientContext ?? "nil"), deadline: \(self.deadline))" | ||
} | ||
|
||
/// This interface is not part of the public API and must not be used by adopters. This API is not part of semver versioning. | ||
public static func __forTestsOnly( | ||
requestID: String, | ||
traceID: String, | ||
invokedFunctionARN: String, | ||
timeout: DispatchTimeInterval, | ||
logger: Logger, | ||
eventLoop: EventLoop | ||
) -> NewLambdaContext { | ||
NewLambdaContext( | ||
requestID: requestID, | ||
traceID: traceID, | ||
invokedFunctionARN: invokedFunctionARN, | ||
deadline: .now() + timeout, | ||
logger: logger | ||
) | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.