diff --git a/end-to-end-applications/java/transport_fare/.gitignore b/end-to-end-applications/java/transport_fare/.gitignore new file mode 100644 index 00000000..53ecbad3 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/.gitignore @@ -0,0 +1,35 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# Ignore Gradle project-specific cache directory +.gradle + +# Ignore Gradle build output directory +build + +.idea +*.iml + +# Unignore the gradle wrapper +!gradle/wrapper/gradle-wrapper.jar \ No newline at end of file diff --git a/end-to-end-applications/java/transport_fare/README.md b/end-to-end-applications/java/transport_fare/README.md new file mode 100644 index 00000000..0e63a636 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/README.md @@ -0,0 +1,24 @@ +# Hello world - Java HTTP example + + +### Add Kafka subscription + +```shell +curl localhost:9070/subscriptions --json '{ + "source": "kafka://my-cluster/badgein", + "sink": "service://CardTracker/badgeIn", + "options": {"auto.offset.reset": "latest"} +}' + +curl localhost:9070/subscriptions --json '{ + "source": "kafka://my-cluster/badgeout", + "sink": "service://CardTracker/badgeOut", + "options": {"auto.offset.reset": "latest"} +}' +``` + +```shell +echo 'card-321:"Liverpool Street"' | kafka-console-producer --bootstrap-server localhost:9092 --topic badgein --property "parse.key=true" --property "key.separator=:" + +echo 'card-31:"Baker Street"' | kafka-console-producer --bootstrap-server localhost:9092 --topic badgeout --property "parse.key=true" --property "key.separator=:" +``` diff --git a/end-to-end-applications/java/transport_fare/build.gradle.kts b/end-to-end-applications/java/transport_fare/build.gradle.kts new file mode 100644 index 00000000..bdca1abb --- /dev/null +++ b/end-to-end-applications/java/transport_fare/build.gradle.kts @@ -0,0 +1,30 @@ +import java.net.URI + +plugins { + java + application +} + +repositories { + mavenCentral() +} + +val restateVersion = "1.1.0" + +dependencies { + annotationProcessor("dev.restate:sdk-api-gen:$restateVersion") + + // Restate SDK + implementation("dev.restate:sdk-api:$restateVersion") + implementation("dev.restate:sdk-http-vertx:$restateVersion") + // To use Jackson to read/write state entries (optional) + implementation("dev.restate:sdk-serde-jackson:$restateVersion") + + // Logging (optional) + implementation("org.apache.logging.log4j:log4j-core:2.20.0") +} + +// Set main class +application { + mainClass.set("my.example.Greeter") +} \ No newline at end of file diff --git a/end-to-end-applications/java/transport_fare/docker-compose.yaml b/end-to-end-applications/java/transport_fare/docker-compose.yaml new file mode 100644 index 00000000..8ec0094e --- /dev/null +++ b/end-to-end-applications/java/transport_fare/docker-compose.yaml @@ -0,0 +1,55 @@ +version: '3' +services: + broker: + image: confluentinc/cp-kafka:7.5.0 + container_name: broker + ports: + - "9092:9092" + - "9101:9101" + environment: + KAFKA_BROKER_ID: 1 + KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT + KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092 + KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 + KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0 + KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1 + KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1 + KAFKA_PROCESS_ROLES: broker,controller + KAFKA_NODE_ID: 1 + KAFKA_CONTROLLER_QUORUM_VOTERS: 1@broker:29093 + KAFKA_LISTENERS: PLAINTEXT://broker:29092,CONTROLLER://broker:29093,PLAINTEXT_HOST://0.0.0.0:9092 + KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT + KAFKA_CONTROLLER_LISTENER_NAMES: CONTROLLER + KAFKA_LOG_DIRS: /tmp/kraft-combined-logs + CLUSTER_ID: MkU3OEVBNTcwNTJENDM2Qk + + init-kafka: + image: confluentinc/cp-kafka:7.5.0 + depends_on: + - broker + entrypoint: [ '/bin/sh', '-c' ] + command: | + " + # blocks until kafka is reachable + kafka-topics --bootstrap-server broker:29092 --list + echo -e 'Creating kafka topics' + kafka-topics --bootstrap-server broker:29092 --create --if-not-exists --topic badgein --replication-factor 1 --partitions 1 + kafka-topics --bootstrap-server broker:29092 --create --if-not-exists --topic badgeout --replication-factor 1 --partitions 1 + + echo -e 'Successfully created the following topics:' + kafka-topics --bootstrap-server broker:29092 --list + " + +# rest-proxy: +# image: confluentinc/cp-kafka-rest:7.5.0 +# ports: +# - 8088:8088 +# hostname: rest-proxy +# container_name: rest-proxy +# environment: +# KAFKA_REST_HOST_NAME: rest-proxy +# KAFKA_REST_LISTENERS: "http://0.0.0.0:8088" +# KAFKA_REST_BOOTSTRAP_SERVERS: "broker:29092" +# KAFKA_REST_ACCESS_CONTROL_ALLOW_ORIGIN: "*" +# KAFKA_REST_ACCESS_CONTROL_ALLOW_METHODS: "OPTIONS,GET,POST,PUT,DELETE" +# KAFKA_REST_ACCESS_CONTROL_ALLOW_HEADERS: "origin,content-type,accept,authorization" diff --git a/end-to-end-applications/java/transport_fare/gradle/wrapper/gradle-wrapper.jar b/end-to-end-applications/java/transport_fare/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000..033e24c4 Binary files /dev/null and b/end-to-end-applications/java/transport_fare/gradle/wrapper/gradle-wrapper.jar differ diff --git a/end-to-end-applications/java/transport_fare/gradle/wrapper/gradle-wrapper.properties b/end-to-end-applications/java/transport_fare/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..62f495df --- /dev/null +++ b/end-to-end-applications/java/transport_fare/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/end-to-end-applications/java/transport_fare/gradlew b/end-to-end-applications/java/transport_fare/gradlew new file mode 100755 index 00000000..fcb6fca1 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/gradlew @@ -0,0 +1,248 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# 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 +# +# https://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. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/end-to-end-applications/java/transport_fare/gradlew.bat b/end-to-end-applications/java/transport_fare/gradlew.bat new file mode 100644 index 00000000..6689b85b --- /dev/null +++ b/end-to-end-applications/java/transport_fare/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/end-to-end-applications/java/transport_fare/restate-conf.toml b/end-to-end-applications/java/transport_fare/restate-conf.toml new file mode 100644 index 00000000..eba591c8 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/restate-conf.toml @@ -0,0 +1,4 @@ +[[ingress.kafka-clusters]] +name = "my-cluster" +brokers = ["PLAINTEXT://localhost:9092"] + diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/App.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/App.java new file mode 100644 index 00000000..091f25d5 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/App.java @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2024 - Restate Software, Inc., Restate GmbH + * + * This file is part of the Restate examples, + * which is released under the MIT license. + * + * You can find a copy of the license in the file LICENSE + * in the root directory of this repository or package or at + * https://github.com/restatedev/examples/ + */ + +package dev.restate.example.subwayfare; + +import dev.restate.sdk.http.vertx.RestateHttpEndpointBuilder; + +public class App { + + public static void main(String[] args) { + RestateHttpEndpointBuilder.builder() + .bind(new CardTracker()) + .buildAndListen(9081); + } +} diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/CardTracker.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/CardTracker.java new file mode 100644 index 00000000..3222b16d --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/CardTracker.java @@ -0,0 +1,106 @@ +package dev.restate.example.subwayfare; + +import dev.restate.example.subwayfare.apis.CardStatusServiceApi; +import dev.restate.sdk.JsonSerdes; +import dev.restate.sdk.ObjectContext; +import dev.restate.sdk.SharedObjectContext; +import dev.restate.sdk.annotation.Handler; +import dev.restate.sdk.annotation.Shared; +import dev.restate.sdk.annotation.VirtualObject; +import dev.restate.sdk.common.StateKey; +import dev.restate.sdk.serde.jackson.JacksonSerdes; + +import java.util.Optional; + +import static dev.restate.example.subwayfare.apis.Utils.threeAm; + +@VirtualObject +public class CardTracker { + + @Handler + public String badgeIn(ObjectContext ctx, String station) { + final String cardRef = ctx.key(); + + // authorize card if we haven't done that today + final boolean authorized = ctx.get(AUTHORIZED).orElseGet(() -> { + boolean success = Payments.authorizeCard(ctx, cardRef); + ctx.set(AUTHORIZED, success); + + if (!success) { + // make call to status cache to block this card at the gates + ctx.run("block card", () -> CardStatusServiceApi.tagCardAsBlocked(cardRef)); + } + + return success; + }); + if (!authorized) { + return "BLOCKED"; + } + + // start this journey + ctx.set(ONGOING_JOURNEY, station); + + // ensure this journey finishes by end of operations + CardTrackerClient.fromContext(ctx, cardRef) + .send(threeAm()) + .endOfDay(); + + return "OK"; + } + + @Handler + public String badgeOut(ObjectContext ctx, String exitStation) { + final String cardRef = ctx.key(); + + final Optional startingStation = ctx.get(ONGOING_JOURNEY); + if (startingStation.isEmpty()) { + return "BLOCKED"; + } + ctx.clear(ONGOING_JOURNEY); + + final DailyFare fare = ctx.get(FARE).orElseGet(DailyFare::new); + final long tripPrice = fare.addTrip(startingStation.get(), exitStation); + ctx.set(FARE, fare); + + return tryCharge(ctx, cardRef, tripPrice) ? "OK" : "BLOCKED"; + } + + @Handler + public void endOfDay(ObjectContext ctx) { + ctx.get(ONGOING_JOURNEY).ifPresent((String startStation) -> { + String cardRef = ctx.key(); + DailyFare fare = ctx.get(FARE).orElseGet(DailyFare::new); + long addedCharge = fare.makeDaily(); + tryCharge(ctx, cardRef, addedCharge); + ctx.clear(ONGOING_JOURNEY); + }); + + ctx.clear(FARE); + } + + @Shared + public boolean isBlocked(SharedObjectContext ctx) { + return !ctx.get(AUTHORIZED).orElse(true); + } + + @Handler + public void unblock(ObjectContext ctx) { + ctx.clear(AUTHORIZED); + } + + private boolean tryCharge(ObjectContext ctx, String cardRef, long amountCents) { + if (amountCents == 0) { + return true; + } + boolean paymentSuccess = Payments.chargeCard(ctx, cardRef, amountCents); + if (!paymentSuccess) { + ctx.set(AUTHORIZED, false); + ctx.run("block card", () -> CardStatusServiceApi.tagCardAsBlocked(cardRef)); + } + return paymentSuccess; + } + + private static final StateKey AUTHORIZED = StateKey.of("authorized", JsonSerdes.BOOLEAN); + private static final StateKey ONGOING_JOURNEY = StateKey.of("journey_start", JsonSerdes.STRING); + private static final StateKey FARE = StateKey.of("fare", JacksonSerdes.of(DailyFare.class)); +} diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/DailyFare.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/DailyFare.java new file mode 100644 index 00000000..59162989 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/DailyFare.java @@ -0,0 +1,40 @@ +package dev.restate.example.subwayfare; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; + +public class DailyFare { + + private static final long SHORT_TRIP = 210; + private static final long LONG_TRIP = 210; + + private static final long MAX_DAILY = 830; + + private long currentDaily; + + public DailyFare() { + this.currentDaily = 0L; + } + + @JsonCreator + public DailyFare(@JsonProperty("currentDaily") long currentDaily) { + this.currentDaily = currentDaily; + } + + public long getCurrentDaily() { + return currentDaily; + } + + public long addTrip(String startStating, String endStation) { + long tripCost = SHORT_TRIP; + long diff = Math.min(MAX_DAILY - currentDaily, tripCost); + currentDaily += diff; + return diff; + } + + public long makeDaily() { + long diff = MAX_DAILY - currentDaily; + currentDaily = MAX_DAILY; + return diff; + } +} diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/Payments.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/Payments.java new file mode 100644 index 00000000..fbeb9fdc --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/Payments.java @@ -0,0 +1,45 @@ +package dev.restate.example.subwayfare; + +import dev.restate.example.subwayfare.apis.PaymentApi; +import dev.restate.sdk.Context; +import java.time.Duration; + +import static dev.restate.sdk.JsonSerdes.BOOLEAN; + +public class Payments { + + private static final int AUTH_ATTEMPTS = 3; + private static final int ATTEMPT_DELAY = 60_000; // 1 min + + + public static boolean authorizeCard(Context ctx, String cardRef) { + + for (int attempt = 1, delay = ATTEMPT_DELAY; attempt <= AUTH_ATTEMPTS; attempt++, delay *= 2) { + + boolean authorized = ctx.run("auth attempt " + attempt, BOOLEAN, + () -> PaymentApi.runAuthorization(cardRef)); + + if (authorized) { + return true; + } + ctx.sleep(Duration.ofMillis(delay)); + } + return false; + } + + public static boolean chargeCard(Context ctx, String cardRef, long amountCents) { + for (int attempt = 1, delay = ATTEMPT_DELAY; attempt <= AUTH_ATTEMPTS; attempt++, delay *= 2) { + + boolean success = ctx.run("charge attempt " + attempt, BOOLEAN, + () -> PaymentApi.makePayment(cardRef, amountCents)); + + if (success) { + return true; + } + ctx.sleep(Duration.ofMillis(delay)); + } + return false; + } + + +} diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/CardStatusServiceApi.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/CardStatusServiceApi.java new file mode 100644 index 00000000..43e3048d --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/CardStatusServiceApi.java @@ -0,0 +1,8 @@ +package dev.restate.example.subwayfare.apis; + +public class CardStatusServiceApi { + + public static void tagCardAsBlocked(String cardRef) { + Utils.threadSleep(20); + } +} diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/PaymentApi.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/PaymentApi.java new file mode 100644 index 00000000..b38702d9 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/PaymentApi.java @@ -0,0 +1,44 @@ +package dev.restate.example.subwayfare.apis; + +import java.io.IOException; + +public final class PaymentApi { + + public static boolean runAuthorization(String cardRef) throws IOException { + if (cardRef.endsWith("1")) { + return true; + } + + if (cardRef.endsWith("9")) { + return false; + } + if (cardRef.endsWith("8")) { + Utils.threadSleep(10_000); + return true; + } + + final long delay = (long) (1000 + Math.random() * 1000); + Utils.threadSleep(delay); + + return true; + } + + public static boolean makePayment(String cardRef, long amountCents) throws IOException { + if (cardRef.endsWith("1")) { + return true; + } + + if (cardRef.endsWith("9")) { + return false; + } + if (cardRef.endsWith("8")) { + Utils.threadSleep(10_000); + return true; + } + + final long delay = (long) (1000 + Math.random() * 1000); + Utils.threadSleep(delay); + + return true; + } +} diff --git a/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/Utils.java b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/Utils.java new file mode 100644 index 00000000..39037496 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/java/dev/restate/example/subwayfare/apis/Utils.java @@ -0,0 +1,32 @@ +package dev.restate.example.subwayfare.apis; + +import java.time.*; +import java.time.temporal.ChronoUnit; +import java.time.temporal.TemporalUnit; +import java.util.TimeZone; +import java.util.concurrent.TimeUnit; + +public final class Utils { + + public static void threadSleep(long millis) { + try { + Thread.sleep(millis); + } catch (InterruptedException e) { + Thread.currentThread().interrupt(); + } + } + + public static Duration threeAm() { + final LocalTime threeAm = LocalTime.of(3, 0); + + final LocalDate dayOfEnd = LocalDateTime.now().getHour() < 3 + ? LocalDate.now() + : LocalDate.now().plusDays(1); + + LocalDateTime endOfService = LocalDateTime.of(dayOfEnd, threeAm); + final long millis = LocalDateTime.now().until(endOfService, ChronoUnit.MILLIS); + return Duration.of(millis, ChronoUnit.MILLIS); + } + + private Utils() {} +} diff --git a/end-to-end-applications/java/transport_fare/src/main/resources/log4j2.properties b/end-to-end-applications/java/transport_fare/src/main/resources/log4j2.properties new file mode 100644 index 00000000..536d1d39 --- /dev/null +++ b/end-to-end-applications/java/transport_fare/src/main/resources/log4j2.properties @@ -0,0 +1,26 @@ +# Set to debug or trace if log4j initialization is failing +status = warn + +# Console appender configuration +appender.console.type = Console +appender.console.name = consoleLogger +appender.console.layout.type = PatternLayout +appender.console.layout.pattern = %d{yyyy-MM-dd HH:mm:ss} %-5p %notEmpty{[%X{restateInvocationTarget}]}%notEmpty{[%X{restateInvocationId}]} %c - %m%n + +# Filter out logging during replay +appender.console.filter.replay.type = ContextMapFilter +appender.console.filter.replay.onMatch = DENY +appender.console.filter.replay.onMismatch = NEUTRAL +appender.console.filter.replay.0.type = KeyValuePair +appender.console.filter.replay.0.key = restateInvocationStatus +appender.console.filter.replay.0.value = REPLAYING + +# Restate logs to debug level +logger.app.name = dev.restate +logger.app.level = info +logger.app.additivity = false +logger.app.appenderRef.console.ref = consoleLogger + +# Root logger +rootLogger.level = info +rootLogger.appenderRef.stdout.ref = consoleLogger \ No newline at end of file