Skip to content
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

Custom Lambda Runtime #276

Open
wants to merge 59 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
7ea939b
Bump base version
armanbilge Sep 25, 2022
26b1622
Shuffle build for custom runtime
armanbilge Sep 25, 2022
95efe18
http4s and cloudformation only depend on kernel
armanbilge Sep 25, 2022
be96317
WIP: added runtime skeleton, needs error handling
scott-thomson239 Sep 26, 2022
ebf5e97
fixed context creation from environment variables
scott-thomson239 Sep 27, 2022
6f990ad
added comments to unimplemented parts
scott-thomson239 Sep 28, 2022
f6a904b
used new cats effect Env instead of custom env var solution
scott-thomson239 Sep 29, 2022
defb679
added function to obtain LambdaRequest from response and added error …
scott-thomson239 Oct 2, 2022
c95cecb
renamed module and fixed handler error handling
scott-thomson239 Oct 3, 2022
2de1748
changed hander fiber to not raise error after cancellation
scott-thomson239 Oct 4, 2022
b7e6054
created custom invocation response header models
scott-thomson239 Oct 6, 2022
b07406c
tests work in progress
scott-thomson239 Oct 12, 2022
0eb162e
fixed all but one test
scott-thomson239 Oct 13, 2022
24c4261
added test to verify runtime can handle invocation errors correctly
scott-thomson239 Oct 15, 2022
602460b
fixed failing tests, although tests need refactored
scott-thomson239 Oct 16, 2022
25403d0
refactored tests
scott-thomson239 Oct 17, 2022
a65d045
added init error handling and tests
scott-thomson239 Oct 19, 2022
206ec6a
fixed failing test
scott-thomson239 Oct 20, 2022
aa06238
general clean up
scott-thomson239 Oct 20, 2022
39562d6
fix missing import
scott-thomson239 Oct 20, 2022
108c2cb
ran scalafmt
scott-thomson239 Oct 20, 2022
016df57
ran sbt githubWorkflowGenerate
scott-thomson239 Oct 20, 2022
7ce4f85
added file headers
scott-thomson239 Oct 20, 2022
fe73a65
added .settings(commonSettings) to lambdaRuntime and lambdaKernel
scott-thomson239 Oct 22, 2022
ed8cb7d
Merge branch 'main' into feature/custom-lambda-runtime
scott-thomson239 Oct 22, 2022
f2b7151
ran sbt githubWorkflowGenerate
scott-thomson239 Oct 22, 2022
0cf6033
fix type erasure warning
scott-thomson239 Oct 22, 2022
e3f8553
Merge branch 'main' into feature/custom-lambda-runtime
armanbilge Oct 22, 2022
7c69d9e
fix for potential type inference problem in expect method and correct…
scott-thomson239 Oct 23, 2022
cfd8f0a
modified sbtLambda in build.sbt to include lambdaKernel.js in scripte…
scott-thomson239 Oct 23, 2022
accb4b6
forgot to format buld.sbt oops
scott-thomson239 Oct 23, 2022
6acf432
updated natchez-core in lambdaKernel and updated scalajs plugin to 1.…
scott-thomson239 Oct 23, 2022
2449d3e
fix for 'withFilter is not a member of IO' error
scott-thomson239 Oct 23, 2022
9d79651
added snapshot resolver to sbt-lambda build.sbt
scott-thomson239 Oct 23, 2022
3c4974c
added lambdaKernel and lambdaRuntime to build.sbt unidocs
scott-thomson239 Oct 23, 2022
2548296
test to see if removing rethrow from IOSetup solves compiler error
scott-thomson239 Oct 23, 2022
35d797f
added MatrixExclude for 2.12/native
scott-thomson239 Oct 23, 2022
93d55aa
changed cats-effect-kernel to cats-effect in lambdaKernel and removed…
scott-thomson239 Oct 23, 2022
af3b527
Make lambda headers package-private
armanbilge Nov 30, 2022
f3022e4
Parse/decode in single op
armanbilge Nov 30, 2022
d630597
More package private models
armanbilge Nov 30, 2022
366248a
Build error body from `Throwable`
armanbilge Nov 30, 2022
ab6fa05
Define `EntityEncoder` for `LmabdaErrorBody`
armanbilge Nov 30, 2022
54c3032
Reduce noise
armanbilge Dec 4, 2022
b5e3019
Simplifications
armanbilge Dec 4, 2022
d6de562
Use `Uri` for `lambdaRuntimeApi`
armanbilge Dec 4, 2022
13aa8e9
Running lambda returns `Nothing`
armanbilge Dec 4, 2022
3517cb7
Refactor `processEvents`
armanbilge Dec 4, 2022
ffa7bb3
`deadlineTimeInMs` -> `deadlineTime`
armanbilge Dec 4, 2022
f1f7a2c
Header names are ci strings
armanbilge Dec 4, 2022
f83a9de
Do not leak input in sanitized error msg
armanbilge Dec 4, 2022
c700129
Fix compile
armanbilge Dec 4, 2022
9a49c7d
Use `embedError`
armanbilge Dec 6, 2022
d53f8be
refactored to have environment variables read in the initialization p…
scott-thomson239 Dec 6, 2022
f284899
readded Nothing instead of Unit in LambdaRuntime
scott-thomson239 Dec 6, 2022
3da24a9
fixed failing tests from refactoring initialization phase
scott-thomson239 Dec 6, 2022
8cdfc9b
remove accidental encoder import
scott-thomson239 Dec 6, 2022
541704e
reverted to using F[Nothing] as output type
scott-thomson239 Dec 7, 2022
89d1c69
changed init error test env to better reflect real behaviour
scott-thomson239 Dec 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 39 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@ jobs:
os: [ubuntu-latest]
scala: [2.12.17, 3.1.3, 2.13.9]
java: [corretto@8, corretto@11]
project: [rootJS, rootJVM]
project: [rootJS, rootJVM, rootNative]
exclude:
- scala: 2.12.17
java: corretto@11
- scala: 3.1.3
java: corretto@11
- project: rootJS
java: corretto@11
- project: rootNative
java: corretto@11
- project: rootJS
scala: 2.12.17
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -108,6 +110,10 @@ jobs:
if: matrix.project == 'rootJS'
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' Test/scalaJSLinkerResult

- name: nativeLink
if: matrix.project == 'rootNative'
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' Test/nativeLink

- name: Test
if: matrix.scala != '2.12.17'
run: sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' test
Expand All @@ -126,11 +132,11 @@ jobs:

- name: Make target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
run: mkdir -p target lambda-cloudformation-custom-resource/.js/target lambda-http4s/.jvm/target unidocs/target .js/target core/.js/target examples/.js/target lambda-http4s/.js/target core/.jvm/target .jvm/target lambda/js/target .native/target examples/.jvm/target lambda/jvm/target sbt-lambda/target lambda-cloudformation-custom-resource/.jvm/target project/target
run: mkdir -p lambda-kernel/.jvm/target target lambda-cloudformation-custom-resource/.js/target lambda-http4s/.jvm/target unidocs/target .js/target core/.js/target examples/.js/target lambda-http4s/.js/target core/.jvm/target .jvm/target lambda/js/target lambda-kernel/.js/target .native/target lambda-kernel/.native/target examples/.jvm/target lambda/jvm/target feral-lambda-runtime/.jvm/target sbt-lambda/target feral-lambda-runtime/.native/target lambda-cloudformation-custom-resource/.jvm/target feral-lambda-runtime/.js/target project/target

- name: Compress target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
run: tar cf targets.tar target lambda-cloudformation-custom-resource/.js/target lambda-http4s/.jvm/target unidocs/target .js/target core/.js/target examples/.js/target lambda-http4s/.js/target core/.jvm/target .jvm/target lambda/js/target .native/target examples/.jvm/target lambda/jvm/target sbt-lambda/target lambda-cloudformation-custom-resource/.jvm/target project/target
run: tar cf targets.tar lambda-kernel/.jvm/target target lambda-cloudformation-custom-resource/.js/target lambda-http4s/.jvm/target unidocs/target .js/target core/.js/target examples/.js/target lambda-http4s/.js/target core/.jvm/target .jvm/target lambda/js/target lambda-kernel/.js/target .native/target lambda-kernel/.native/target examples/.jvm/target lambda/jvm/target feral-lambda-runtime/.jvm/target sbt-lambda/target feral-lambda-runtime/.native/target lambda-cloudformation-custom-resource/.jvm/target feral-lambda-runtime/.js/target project/target

- name: Upload target directories
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
Expand Down Expand Up @@ -209,6 +215,16 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (2.12.17, rootNative)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.17-rootNative

- name: Inflate target directories (2.12.17, rootNative)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.1.3, rootJS)
uses: actions/download-artifact@v2
with:
Expand All @@ -229,6 +245,16 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.1.3, rootNative)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3-rootNative

- name: Inflate target directories (3.1.3, rootNative)
run: |
tar xf targets.tar
rm targets.tar

- name: Download target directories (2.13.9, rootJS)
uses: actions/download-artifact@v2
with:
Expand All @@ -249,6 +275,16 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (2.13.9, rootNative)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.9-rootNative

- name: Inflate target directories (2.13.9, rootNative)
run: |
tar xf targets.tar
rm targets.tar

- name: Import signing key
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE == ''
run: echo $PGP_SECRET | base64 -di | gpg --import
Expand Down
67 changes: 51 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

name := "feral"

ThisBuild / tlBaseVersion := "0.1"
ThisBuild / tlBaseVersion := "0.2"
ThisBuild / startYear := Some(2021)

ThisBuild / developers := List(
Expand Down Expand Up @@ -56,14 +56,16 @@ val Scala213 = "2.13.9"
val Scala3 = "3.1.3"
ThisBuild / crossScalaVersions := Seq(Scala212, Scala3, Scala213)

val catsEffectVersion = "3.3.14"
val catsEffectVersion = "3.4.0-RC1"
val circeVersion = "0.14.3"
val fs2Version = "3.3.0"
val http4sVersion = "0.23.16"
val natchezVersion = "0.1.6"
val munitVersion = "0.7.29"
val munitCEVersion = "1.0.7"
val scalacheckEffectVersion = "1.0.4"
val munitVersion = "1.0.0-M6"
val munitCEVersion = "2.0.0-M3"
val scalacheckEffectVersion = "2.0.0-M2"

ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

lazy val commonSettings = Seq(
crossScalaVersions := Seq(Scala3, Scala213)
Expand All @@ -72,6 +74,8 @@ lazy val commonSettings = Seq(
lazy val root =
tlCrossRootProject.aggregate(
core,
lambdaKernel,
lambdaRuntime,
lambda,
sbtLambda,
lambdaHttp4s,
Expand All @@ -91,25 +95,56 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
)
.settings(commonSettings)

lazy val lambda = crossProject(JSPlatform, JVMPlatform)
.in(file("lambda"))
lazy val lambdaKernel = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("lambda-kernel"))
.settings(
name := "feral-lambda",
name := "feral-lambda-kernel",
libraryDependencies ++= Seq(
"org.tpolecat" %%% "natchez-core" % natchezVersion,
"org.typelevel" %%% "cats-effect-kernel" % catsEffectVersion,
"com.armanbilge" %%% "natchez-core" % "0.1.6-SNAPSHOT",
"io.circe" %%% "circe-scodec" % circeVersion,
"io.circe" %%% "circe-jawn" % circeVersion,
"org.scodec" %%% "scodec-bits" % "1.1.34",
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test,
"org.typelevel" %%% "munit-cats-effect-3" % munitCEVersion % Test,
"org.typelevel" %%% "munit-cats-effect" % munitCEVersion % Test,
"io.circe" %%% "circe-literal" % circeVersion % Test
)
)
.platformsSettings(JSPlatform, NativePlatform)(
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.4.0"
)
)

lazy val lambdaRuntime = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("feral-lambda-runtime"))
.settings(
name := "feral-lambda-runtime",
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-effect" % catsEffectVersion,
"io.circe" %%% "circe-jawn" % circeVersion,
"org.http4s" %%% "http4s-client" % http4sVersion,
"org.http4s" %%% "http4s-circe" % http4sVersion
)
)
.dependsOn(lambdaKernel)

lazy val lambda = crossProject(JSPlatform, JVMPlatform)
.in(file("lambda"))
.settings(
name := "feral-lambda",
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test,
"org.typelevel" %%% "munit-cats-effect" % munitCEVersion % Test,
"io.circe" %%% "circe-literal" % circeVersion % Test
)
)
.settings(commonSettings)
.jsSettings(
libraryDependencies ++= Seq(
"io.circe" %%% "circe-scalajs" % circeVersion,
"io.github.cquiroz" %%% "scala-java-time" % "2.4.0"
"io.circe" %%% "circe-scalajs" % circeVersion
)
)
.jvmSettings(
Expand All @@ -119,7 +154,7 @@ lazy val lambda = crossProject(JSPlatform, JVMPlatform)
"io.circe" %%% "circe-fs2" % "0.14.0"
)
)
.dependsOn(core)
.dependsOn(core, lambdaKernel)

lazy val sbtLambda = project
.in(file("sbt-lambda"))
Expand Down Expand Up @@ -147,7 +182,7 @@ lazy val lambdaHttp4s = crossProject(JSPlatform, JVMPlatform)
)
)
.settings(commonSettings)
.dependsOn(lambda % "compile->compile;test->test")
.dependsOn(lambdaKernel % "compile->compile;test->test")

lazy val lambdaCloudFormationCustomResource = crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Pure)
Expand All @@ -164,15 +199,15 @@ lazy val lambdaCloudFormationCustomResource = crossProject(JSPlatform, JVMPlatfo
"org.http4s" %%% "http4s-circe" % http4sVersion,
"org.http4s" %%% "http4s-dsl" % http4sVersion % Test,
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test,
"org.typelevel" %%% "munit-cats-effect-3" % munitCEVersion % Test,
"org.typelevel" %%% "munit-cats-effect" % munitCEVersion % Test,
"org.typelevel" %%% "scalacheck-effect" % scalacheckEffectVersion % Test,
"org.typelevel" %%% "scalacheck-effect-munit" % scalacheckEffectVersion % Test,
"com.eed3si9n.expecty" %%% "expecty" % "0.16.0" % Test,
"io.circe" %%% "circe-testing" % circeVersion % Test
)
)
.settings(commonSettings)
.dependsOn(lambda)
.dependsOn(lambdaKernel)

lazy val examples = crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Pure)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package feral.lambda.runtime

import io.circe.Encoder

final class LambdaErrorRequest(val errorMessage: String, val errorType: String, val stackTrace: List[String])

object LambdaErrorRequest {
def apply(errorMessage: String, errorType: String, stackTrace: List[String]) =
new LambdaErrorRequest(errorMessage, errorType, stackTrace)

implicit val encoder: Encoder[LambdaErrorRequest] =
Encoder.forProduct3("errorMessage", "errorType", "stackTrace")(e =>
(e.errorMessage, e.errorType, e.stackTrace))
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
package feral.lambda.runtime

import cats.effect.kernel.Concurrent
import io.circe._
import cats.syntax.all._
import feral.lambda.{ClientContext, ClientContextClient, ClientContextEnv, CognitoIdentity}
import io.circe.syntax.EncoderOps
import org.http4s.circe._
import org.http4s.{EntityDecoder, Headers, Response, headers}
import org.typelevel.ci.CIString
import java.util.concurrent.TimeUnit
import scala.concurrent.duration.FiniteDuration

final class LambdaRequest(
val deadlineTimeInMs: FiniteDuration,
val id: String,
val invokedFunctionArn: String,
val identity: Option[CognitoIdentity],
val clientContext: Option[ClientContext],
val body: Json
)

object LambdaRequest {
private[this] final val requestIdHeader = "Lambda-Runtime-Aws-Request-id"
private[this] final val invokedFunctionArnHeader = "Lambda-Runtime-Invoked-Function-Arn"
private[this] final val deadlineTimeHeader = "Lambda-Runtime-Deadline-Ms"
private[this] final val cognitoIdentityHeader = "Lambda-Runtime-Cognito-Identity"
private[this] final val clientContextHeader = "Lambda-Runtime-Client-Context"
def fromResponse[F[_]](response: Response[F])(implicit F: Concurrent[F]): F[LambdaRequest] = {
implicit val jsonDecoder: EntityDecoder[F, Json] = jsonDecoderIncremental
for { // TODO use custom header model for aws headers instead
id <- F.fromOption(response.headers.get(CIString(requestIdHeader)), new NoSuchElementException(requestIdHeader)).map(_.head.value)
invokedFunctionArn <- F.fromOption(response.headers.get(CIString(invokedFunctionArnHeader)), new NoSuchElementException(invokedFunctionArnHeader)).map(_.head.value)
deadlineTimeInMs <- F.fromOption(response.headers.get(CIString(deadlineTimeHeader)), new NoSuchElementException(deadlineTimeHeader)).map(_.head.value.toLong)
identity <- F.pure(response.headers.get(CIString(cognitoIdentityHeader)).flatMap(_.head.value.asJson.as[CognitoIdentity].toOption))
clientContext <- F.pure(response.headers.get(CIString(clientContextHeader)).flatMap(_.head.value.asJson.as[ClientContext].toOption))
body <- F.rethrow(jsonDecoder.decode(response, strict = false).value) // basically a reimplementation of response.as[Json] from dsl
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

response.as is not DSL, it's a core method :)

By DSL, I very specifically meant things you need to import from org.http4s.client.dsl._

} yield {
new LambdaRequest(FiniteDuration.apply(deadlineTimeInMs, TimeUnit.MILLISECONDS), id, invokedFunctionArn, identity, clientContext, body)
}
}

implicit val cognitoIdentityDecoder: Decoder[CognitoIdentity] =
Decoder.forProduct2("identity_id", "identity_pool_id")((identityId: String, poolId: String) => // field names are just a guess for just now until I find the schema
new CognitoIdentity(identityId, poolId))

implicit val clientContextDecoder: Decoder[ClientContext] = Decoder.forProduct4("client", "custom", "env", "services")(
(client: ClientContextClient, custom: JsonObject, env: ClientContextEnv, _: JsonObject) =>
new ClientContext(client, env, custom)
)

implicit val clientContextClientDecoder: Decoder[ClientContextClient] = Decoder.forProduct5("client_id", "app_title", "app_version_name", "app_version_code", "app_package_name")(
(clientId: String, appTitle: String, appVersionName: String, appVersionCode: String, appPackageName: String) =>
new ClientContextClient(clientId, appTitle, appVersionName, appVersionCode, appPackageName)
)

implicit val clientContextEnvDecoder: Decoder[ClientContextEnv] = Decoder.forProduct5("platform", "model", "make", "platform_version", "locale")(
(platform: String, model: String, make: String, platformVersion: String, locale: String) =>
new ClientContextEnv(platformVersion, platform, make, model, locale)
)
}
Loading