diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 6c9d27e..bd8e261 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,14 +1,14 @@
# syntax=docker/dockerfile:1
FROM debian:bookworm-slim
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && apt-get install -y --no-install-recommends \
libxkbcommon0 \
ca-certificates \
ca-certificates-java \
make \
curl \
git \
- openjdk-17-jdk \
+ openjdk-17-jdk-headless \
unzip \
libc++1 \
vim \
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index b56c3d0..e8285b7 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.1.0-alpha.4"
+ ".": "0.1.0-alpha.5"
}
\ No newline at end of file
diff --git a/.stats.yml b/.stats.yml
index 6a8c142..dd47305 100644
--- a/.stats.yml
+++ b/.stats.yml
@@ -1 +1 @@
-configured_endpoints: 13
+configured_endpoints: 14
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 05ba197..7d8aff0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,27 @@
# Changelog
+## 0.1.0-alpha.5 (2024-11-11)
+
+Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
+
+### Features
+
+* **api:** manual updates ([#42](https://github.com/openlayer-ai/openlayer-java/issues/42)) ([90b8621](https://github.com/openlayer-ai/openlayer-java/commit/90b8621b2a9cd61dac108272689fd0ac91892e98))
+* **api:** manual updates ([#43](https://github.com/openlayer-ai/openlayer-java/issues/43)) ([197d1e4](https://github.com/openlayer-ai/openlayer-java/commit/197d1e408bb880f11dde24d4af04b0b6102a05cd))
+* **api:** update via SDK Studio ([#40](https://github.com/openlayer-ai/openlayer-java/issues/40)) ([d739c0c](https://github.com/openlayer-ai/openlayer-java/commit/d739c0cf10da747b6116db07064f4211e138fbca))
+* **api:** update via SDK Studio ([#41](https://github.com/openlayer-ai/openlayer-java/issues/41)) ([115a8bb](https://github.com/openlayer-ai/openlayer-java/commit/115a8bb76b4cc1deb9abccd7ff9341c9e7507db2))
+
+
+### Bug Fixes
+
+* update stream data example ([01a6acb](https://github.com/openlayer-ai/openlayer-java/commit/01a6acb859853b961556dcc7e51b91a40def3461))
+
+
+### Chores
+
+* custom code changes ([#44](https://github.com/openlayer-ai/openlayer-java/issues/44)) ([d1a94e9](https://github.com/openlayer-ai/openlayer-java/commit/d1a94e9d34778ca922ce580a0d887201881114ee))
+* rebuild project due to codegen change ([#45](https://github.com/openlayer-ai/openlayer-java/issues/45)) ([546951e](https://github.com/openlayer-ai/openlayer-java/commit/546951ef157f61e22168e8bc3caee9e437c27a53))
+
## 0.1.0-alpha.4 (2024-09-23)
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/openlayer-ai/openlayer-java/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
diff --git a/README.md b/README.md
index e6302e0..69a94ea 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0-alpha.4)
+[](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.1.0-alpha.5)
@@ -27,7 +27,7 @@ The REST API documentation can be foundĀ on [openlayer.com](https://openlayer.co
```kotlin
-implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.4")
+implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.5")
```
#### Maven
@@ -36,7 +36,7 @@ implementation("com.openlayer.api:openlayer-java:0.1.0-alpha.4")
com.openlayer.api
openlayer-java
- 0.1.0-alpha.4
+ 0.1.0-alpha.5
```
@@ -77,7 +77,7 @@ import com.openlayer.api.models.InferencePipelineDataStreamResponse;
import java.util.List;
InferencePipelineDataStreamParams params = InferencePipelineDataStreamParams.builder()
- .rows(List.of(InferencePipelineDataStreamParams.Row.builder().build()))
+ .inferencePipelineId("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e")
.config(InferencePipelineDataStreamParams.Config.ofLlmData(InferencePipelineDataStreamParams.Config.LlmData.builder()
.outputColumnName("output")
.costColumnName("cost")
@@ -85,8 +85,9 @@ InferencePipelineDataStreamParams params = InferencePipelineDataStreamParams.bui
.numOfTokenColumnName("tokens")
.timestampColumnName("timestamp")
.build()))
+ .row(List.of(InferencePipelineDataStreamParams.Row.builder().build()))
.build();
-InferencePipelineDataStreamResponse inferencePipelineDataStreamResponse = client.inferencePipelines().data().stream(params);
+InferencePipelineDataStreamResponse response = client.inferencePipelines().data().stream(params);
```
---
@@ -118,7 +119,7 @@ InferencePipelineDataStreamParams params = InferencePipelineDataStreamParams.bui
When receiving a response, the Openlayer Java SDK will deserialize it into instances of the typed model classes. In rare cases, the API may return a response property that doesn't match the expected Java type. If you directly access the mistaken property, the SDK will throw an unchecked `OpenlayerInvalidDataException` at runtime. If you would prefer to check in advance that that response is completely well-typed, call `.validate()` on the returned model.
```java
-InferencePipelineDataStreamResponse inferencePipelineDataStreamResponse = client.inferencePipelines().data().stream().validate();
+InferencePipelineDataStreamResponse response = client.inferencePipelines().data().stream().validate();
```
### Response properties as JSON
@@ -148,7 +149,7 @@ if (field.isMissing()) {
Sometimes, the server response may include additional properties that are not yet available in this library's types. You can access them using the model's `_additionalProperties` method:
```java
-JsonValue secret = inferencePipelineDataStreamResponse._additionalProperties().get("secret_field");
+JsonValue secret = projectCreateResponse._additionalProperties().get("secret_field");
```
---
diff --git a/build.gradle.kts b/build.gradle.kts
index 7683e5f..02d2b80 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -4,7 +4,7 @@ plugins {
allprojects {
group = "com.openlayer.api"
- version = "0.1.0-alpha.4" // x-release-please-version
+ version = "0.1.0-alpha.5" // x-release-please-version
}
diff --git a/buildSrc/src/main/kotlin/openlayer.java.gradle.kts b/buildSrc/src/main/kotlin/openlayer.java.gradle.kts
index 53e6330..32a150e 100644
--- a/buildSrc/src/main/kotlin/openlayer.java.gradle.kts
+++ b/buildSrc/src/main/kotlin/openlayer.java.gradle.kts
@@ -19,6 +19,7 @@ configure {
importOrder()
removeUnusedImports()
palantirJavaFormat()
+ toggleOffOn()
}
}
diff --git a/buildSrc/src/main/kotlin/openlayer.kotlin.gradle.kts b/buildSrc/src/main/kotlin/openlayer.kotlin.gradle.kts
index 5c12826..b0bd08a 100644
--- a/buildSrc/src/main/kotlin/openlayer.kotlin.gradle.kts
+++ b/buildSrc/src/main/kotlin/openlayer.kotlin.gradle.kts
@@ -16,6 +16,7 @@ kotlin {
configure {
kotlin {
ktfmt().kotlinlangStyle()
+ toggleOffOn()
}
}
diff --git a/openlayer-java-client-okhttp/build.gradle.kts b/openlayer-java-client-okhttp/build.gradle.kts
index 2788dd9..a295ce5 100644
--- a/openlayer-java-client-okhttp/build.gradle.kts
+++ b/openlayer-java-client-okhttp/build.gradle.kts
@@ -6,7 +6,6 @@ plugins {
dependencies {
api(project(":openlayer-java-core"))
- implementation("com.google.guava:guava:33.0.0-jre")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
testImplementation(kotlin("test"))
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
index 13779b0..f7db194 100644
--- a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
+++ b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OkHttpClient.kt
@@ -1,8 +1,7 @@
package com.openlayer.api.client.okhttp
-import com.google.common.collect.ListMultimap
-import com.google.common.collect.MultimapBuilder
import com.openlayer.api.core.RequestOptions
+import com.openlayer.api.core.http.Headers
import com.openlayer.api.core.http.HttpClient
import com.openlayer.api.core.http.HttpMethod
import com.openlayer.api.core.http.HttpRequest
@@ -16,7 +15,6 @@ import java.time.Duration
import java.util.concurrent.CompletableFuture
import okhttp3.Call
import okhttp3.Callback
-import okhttp3.Headers
import okhttp3.HttpUrl
import okhttp3.HttpUrl.Companion.toHttpUrl
import okhttp3.MediaType
@@ -66,7 +64,6 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
request.body?.run { future.whenComplete { _, _ -> close() } }
val call = getClient(requestOptions).newCall(request.toRequest())
-
call.enqueue(
object : Callback {
override fun onResponse(call: Call, response: Response) {
@@ -90,13 +87,15 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
private fun HttpRequest.toRequest(): Request {
var body: RequestBody? = body?.toRequestBody()
- // OkHttpClient always requires a request body for PUT and POST methods
+ // OkHttpClient always requires a request body for PUT and POST methods.
if (body == null && (method == HttpMethod.PUT || method == HttpMethod.POST)) {
body = "".toRequestBody()
}
val builder = Request.Builder().url(toUrl()).method(method.name, body)
- headers.forEach(builder::header)
+ headers.names().forEach { name ->
+ headers.values(name).forEach { builder.header(name, it) }
+ }
return builder.build()
}
@@ -108,7 +107,9 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
val builder = baseUrl.newBuilder()
pathSegments.forEach(builder::addPathSegment)
- queryParams.forEach(builder::addQueryParameter)
+ queryParams.keys().forEach { key ->
+ queryParams.values(key).forEach { builder.addQueryParameter(key, it) }
+ }
return builder.toString()
}
@@ -118,21 +119,13 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
val length = contentLength()
return object : RequestBody() {
- override fun contentType(): MediaType? {
- return mediaType
- }
+ override fun contentType(): MediaType? = mediaType
- override fun contentLength(): Long {
- return length
- }
+ override fun contentLength(): Long = length
- override fun isOneShot(): Boolean {
- return !repeatable()
- }
+ override fun isOneShot(): Boolean = !repeatable()
- override fun writeTo(sink: BufferedSink) {
- writeTo(sink.outputStream())
- }
+ override fun writeTo(sink: BufferedSink) = writeTo(sink.outputStream())
}
}
@@ -140,33 +133,20 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
val headers = headers.toHeaders()
return object : HttpResponse {
- override fun statusCode(): Int {
- return code
- }
+ override fun statusCode(): Int = code
- override fun headers(): ListMultimap {
- return headers
- }
+ override fun headers(): Headers = headers
- override fun body(): InputStream {
- return body!!.byteStream()
- }
+ override fun body(): InputStream = body!!.byteStream()
- override fun close() {
- body!!.close()
- }
+ override fun close() = body!!.close()
}
}
- private fun Headers.toHeaders(): ListMultimap {
- val headers =
- MultimapBuilder.treeKeys(String.CASE_INSENSITIVE_ORDER)
- .arrayListValues()
- .build()
-
- forEach { pair -> headers.put(pair.first, pair.second) }
-
- return headers
+ private fun okhttp3.Headers.toHeaders(): Headers {
+ val headersBuilder = Headers.builder()
+ forEach { (name, value) -> headersBuilder.put(name, value) }
+ return headersBuilder.build()
}
companion object {
@@ -176,7 +156,7 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
class Builder {
private var baseUrl: HttpUrl? = null
- // default timeout is 1 minute
+ // The default timeout is 1 minute.
private var timeout: Duration = Duration.ofSeconds(60)
private var proxy: Proxy? = null
@@ -186,8 +166,8 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
fun proxy(proxy: Proxy?) = apply { this.proxy = proxy }
- fun build(): OkHttpClient {
- return OkHttpClient(
+ fun build(): OkHttpClient =
+ OkHttpClient(
okhttp3.OkHttpClient.Builder()
.connectTimeout(timeout)
.readTimeout(timeout)
@@ -197,6 +177,5 @@ private constructor(private val okHttpClient: okhttp3.OkHttpClient, private val
.build(),
checkNotNull(baseUrl) { "`baseUrl` is required but was not set" },
)
- }
}
}
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
index 1dff803..6369d21 100644
--- a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
+++ b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClient.kt
@@ -6,6 +6,8 @@ import com.fasterxml.jackson.databind.json.JsonMapper
import com.openlayer.api.client.OpenlayerClient
import com.openlayer.api.client.OpenlayerClientImpl
import com.openlayer.api.core.ClientOptions
+import com.openlayer.api.core.http.Headers
+import com.openlayer.api.core.http.QueryParams
import java.net.Proxy
import java.time.Clock
import java.time.Duration
@@ -23,7 +25,7 @@ class OpenlayerOkHttpClient private constructor() {
private var clientOptions: ClientOptions.Builder = ClientOptions.builder()
private var baseUrl: String = ClientOptions.PRODUCTION_URL
- // default timeout for client is 1 minute
+ // The default timeout for the client is 1 minute.
private var timeout: Duration = Duration.ofSeconds(60)
private var proxy: Proxy? = null
@@ -36,6 +38,8 @@ class OpenlayerOkHttpClient private constructor() {
fun clock(clock: Clock) = apply { clientOptions.clock(clock) }
+ fun headers(headers: Headers) = apply { clientOptions.headers(headers) }
+
fun headers(headers: Map>) = apply {
clientOptions.headers(headers)
}
@@ -46,11 +50,73 @@ class OpenlayerOkHttpClient private constructor() {
clientOptions.putHeaders(name, values)
}
+ fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
+
fun putAllHeaders(headers: Map>) = apply {
clientOptions.putAllHeaders(headers)
}
- fun removeHeader(name: String) = apply { clientOptions.removeHeader(name) }
+ fun replaceHeaders(name: String, value: String) = apply {
+ clientOptions.replaceHeaders(name, value)
+ }
+
+ fun replaceHeaders(name: String, values: Iterable) = apply {
+ clientOptions.replaceHeaders(name, values)
+ }
+
+ fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
+
+ fun replaceAllHeaders(headers: Map>) = apply {
+ clientOptions.replaceAllHeaders(headers)
+ }
+
+ fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
+
+ fun removeAllHeaders(names: Set) = apply { clientOptions.removeAllHeaders(names) }
+
+ fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }
+
+ fun queryParams(queryParams: Map>) = apply {
+ clientOptions.queryParams(queryParams)
+ }
+
+ fun putQueryParam(key: String, value: String) = apply {
+ clientOptions.putQueryParam(key, value)
+ }
+
+ fun putQueryParams(key: String, values: Iterable) = apply {
+ clientOptions.putQueryParams(key, values)
+ }
+
+ fun putAllQueryParams(queryParams: QueryParams) = apply {
+ clientOptions.putAllQueryParams(queryParams)
+ }
+
+ fun putAllQueryParams(queryParams: Map>) = apply {
+ clientOptions.putAllQueryParams(queryParams)
+ }
+
+ fun replaceQueryParams(key: String, value: String) = apply {
+ clientOptions.replaceQueryParams(key, value)
+ }
+
+ fun replaceQueryParams(key: String, values: Iterable) = apply {
+ clientOptions.replaceQueryParams(key, values)
+ }
+
+ fun replaceAllQueryParams(queryParams: QueryParams) = apply {
+ clientOptions.replaceAllQueryParams(queryParams)
+ }
+
+ fun replaceAllQueryParams(queryParams: Map>) = apply {
+ clientOptions.replaceAllQueryParams(queryParams)
+ }
+
+ fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
+
+ fun removeAllQueryParams(keys: Set) = apply {
+ clientOptions.removeAllQueryParams(keys)
+ }
fun timeout(timeout: Duration) = apply { this.timeout = timeout }
@@ -66,8 +132,8 @@ class OpenlayerOkHttpClient private constructor() {
fun fromEnv() = apply { clientOptions.fromEnv() }
- fun build(): OpenlayerClient {
- return OpenlayerClientImpl(
+ fun build(): OpenlayerClient =
+ OpenlayerClientImpl(
clientOptions
.httpClient(
OkHttpClient.builder()
@@ -78,6 +144,5 @@ class OpenlayerOkHttpClient private constructor() {
)
.build()
)
- }
}
}
diff --git a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
index 0866f95..3bd8ace 100644
--- a/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
+++ b/openlayer-java-client-okhttp/src/main/kotlin/com/openlayer/api/client/okhttp/OpenlayerOkHttpClientAsync.kt
@@ -6,6 +6,8 @@ import com.fasterxml.jackson.databind.json.JsonMapper
import com.openlayer.api.client.OpenlayerClientAsync
import com.openlayer.api.client.OpenlayerClientAsyncImpl
import com.openlayer.api.core.ClientOptions
+import com.openlayer.api.core.http.Headers
+import com.openlayer.api.core.http.QueryParams
import java.net.Proxy
import java.time.Clock
import java.time.Duration
@@ -23,7 +25,7 @@ class OpenlayerOkHttpClientAsync private constructor() {
private var clientOptions: ClientOptions.Builder = ClientOptions.builder()
private var baseUrl: String = ClientOptions.PRODUCTION_URL
- // default timeout for client is 1 minute
+ // The default timeout for the client is 1 minute.
private var timeout: Duration = Duration.ofSeconds(60)
private var proxy: Proxy? = null
@@ -36,6 +38,8 @@ class OpenlayerOkHttpClientAsync private constructor() {
fun clock(clock: Clock) = apply { clientOptions.clock(clock) }
+ fun headers(headers: Headers) = apply { clientOptions.headers(headers) }
+
fun headers(headers: Map>) = apply {
clientOptions.headers(headers)
}
@@ -46,11 +50,73 @@ class OpenlayerOkHttpClientAsync private constructor() {
clientOptions.putHeaders(name, values)
}
+ fun putAllHeaders(headers: Headers) = apply { clientOptions.putAllHeaders(headers) }
+
fun putAllHeaders(headers: Map>) = apply {
clientOptions.putAllHeaders(headers)
}
- fun removeHeader(name: String) = apply { clientOptions.removeHeader(name) }
+ fun replaceHeaders(name: String, value: String) = apply {
+ clientOptions.replaceHeaders(name, value)
+ }
+
+ fun replaceHeaders(name: String, values: Iterable) = apply {
+ clientOptions.replaceHeaders(name, values)
+ }
+
+ fun replaceAllHeaders(headers: Headers) = apply { clientOptions.replaceAllHeaders(headers) }
+
+ fun replaceAllHeaders(headers: Map>) = apply {
+ clientOptions.replaceAllHeaders(headers)
+ }
+
+ fun removeHeaders(name: String) = apply { clientOptions.removeHeaders(name) }
+
+ fun removeAllHeaders(names: Set) = apply { clientOptions.removeAllHeaders(names) }
+
+ fun queryParams(queryParams: QueryParams) = apply { clientOptions.queryParams(queryParams) }
+
+ fun queryParams(queryParams: Map>) = apply {
+ clientOptions.queryParams(queryParams)
+ }
+
+ fun putQueryParam(key: String, value: String) = apply {
+ clientOptions.putQueryParam(key, value)
+ }
+
+ fun putQueryParams(key: String, values: Iterable) = apply {
+ clientOptions.putQueryParams(key, values)
+ }
+
+ fun putAllQueryParams(queryParams: QueryParams) = apply {
+ clientOptions.putAllQueryParams(queryParams)
+ }
+
+ fun putAllQueryParams(queryParams: Map>) = apply {
+ clientOptions.putAllQueryParams(queryParams)
+ }
+
+ fun replaceQueryParams(key: String, value: String) = apply {
+ clientOptions.replaceQueryParams(key, value)
+ }
+
+ fun replaceQueryParams(key: String, values: Iterable) = apply {
+ clientOptions.replaceQueryParams(key, values)
+ }
+
+ fun replaceAllQueryParams(queryParams: QueryParams) = apply {
+ clientOptions.replaceAllQueryParams(queryParams)
+ }
+
+ fun replaceAllQueryParams(queryParams: Map>) = apply {
+ clientOptions.replaceAllQueryParams(queryParams)
+ }
+
+ fun removeQueryParams(key: String) = apply { clientOptions.removeQueryParams(key) }
+
+ fun removeAllQueryParams(keys: Set) = apply {
+ clientOptions.removeAllQueryParams(keys)
+ }
fun timeout(timeout: Duration) = apply { this.timeout = timeout }
@@ -66,8 +132,8 @@ class OpenlayerOkHttpClientAsync private constructor() {
fun fromEnv() = apply { clientOptions.fromEnv() }
- fun build(): OpenlayerClientAsync {
- return OpenlayerClientAsyncImpl(
+ fun build(): OpenlayerClientAsync =
+ OpenlayerClientAsyncImpl(
clientOptions
.httpClient(
OkHttpClient.builder()
@@ -78,6 +144,5 @@ class OpenlayerOkHttpClientAsync private constructor() {
)
.build()
)
- }
}
}
diff --git a/openlayer-java-core/build.gradle.kts b/openlayer-java-core/build.gradle.kts
index 20066b7..1c5b4ba 100644
--- a/openlayer-java-core/build.gradle.kts
+++ b/openlayer-java-core/build.gradle.kts
@@ -6,7 +6,6 @@ plugins {
dependencies {
api("com.fasterxml.jackson.core:jackson-core:2.14.3")
api("com.fasterxml.jackson.core:jackson-databind:2.14.3")
- api("com.google.guava:guava:33.0.0-jre")
implementation("com.fasterxml.jackson.core:jackson-annotations:2.14.3")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.14.3")
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
index 3a24286..f9c3b57 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClient.kt
@@ -1,7 +1,5 @@
// File generated from our OpenAPI spec by Stainless.
-@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
-
package com.openlayer.api.client
import com.openlayer.api.models.*
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
index 7d8847c..620db2d 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsync.kt
@@ -1,7 +1,5 @@
// File generated from our OpenAPI spec by Stainless.
-@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
-
package com.openlayer.api.client
import com.openlayer.api.models.*
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
index d3c13ec..869906f 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientAsyncImpl.kt
@@ -3,30 +3,41 @@
package com.openlayer.api.client
import com.openlayer.api.core.ClientOptions
-import com.openlayer.api.core.http.HttpResponse.Handler
-import com.openlayer.api.errors.OpenlayerError
+import com.openlayer.api.core.getPackageVersion
import com.openlayer.api.models.*
import com.openlayer.api.services.async.*
-import com.openlayer.api.services.errorHandler
class OpenlayerClientAsyncImpl
constructor(
private val clientOptions: ClientOptions,
) : OpenlayerClientAsync {
- private val errorHandler: Handler = errorHandler(clientOptions.jsonMapper)
+ private val clientOptionsWithUserAgent =
+ if (clientOptions.headers.names().contains("User-Agent")) clientOptions
+ else
+ clientOptions
+ .toBuilder()
+ .putHeader("User-Agent", "${javaClass.simpleName}/Java ${getPackageVersion()}")
+ .build()
+ // Pass the original clientOptions so that this client sets its own User-Agent.
private val sync: OpenlayerClient by lazy { OpenlayerClientImpl(clientOptions) }
- private val projects: ProjectServiceAsync by lazy { ProjectServiceAsyncImpl(clientOptions) }
+ private val projects: ProjectServiceAsync by lazy {
+ ProjectServiceAsyncImpl(clientOptionsWithUserAgent)
+ }
- private val commits: CommitServiceAsync by lazy { CommitServiceAsyncImpl(clientOptions) }
+ private val commits: CommitServiceAsync by lazy {
+ CommitServiceAsyncImpl(clientOptionsWithUserAgent)
+ }
private val inferencePipelines: InferencePipelineServiceAsync by lazy {
- InferencePipelineServiceAsyncImpl(clientOptions)
+ InferencePipelineServiceAsyncImpl(clientOptionsWithUserAgent)
}
- private val storage: StorageServiceAsync by lazy { StorageServiceAsyncImpl(clientOptions) }
+ private val storage: StorageServiceAsync by lazy {
+ StorageServiceAsyncImpl(clientOptionsWithUserAgent)
+ }
override fun sync(): OpenlayerClient = sync
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
index 29a6187..47335ac 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/client/OpenlayerClientImpl.kt
@@ -3,30 +3,35 @@
package com.openlayer.api.client
import com.openlayer.api.core.ClientOptions
-import com.openlayer.api.core.http.HttpResponse.Handler
-import com.openlayer.api.errors.OpenlayerError
+import com.openlayer.api.core.getPackageVersion
import com.openlayer.api.models.*
import com.openlayer.api.services.blocking.*
-import com.openlayer.api.services.errorHandler
class OpenlayerClientImpl
constructor(
private val clientOptions: ClientOptions,
) : OpenlayerClient {
- private val errorHandler: Handler = errorHandler(clientOptions.jsonMapper)
+ private val clientOptionsWithUserAgent =
+ if (clientOptions.headers.names().contains("User-Agent")) clientOptions
+ else
+ clientOptions
+ .toBuilder()
+ .putHeader("User-Agent", "${javaClass.simpleName}/Java ${getPackageVersion()}")
+ .build()
+ // Pass the original clientOptions so that this client sets its own User-Agent.
private val async: OpenlayerClientAsync by lazy { OpenlayerClientAsyncImpl(clientOptions) }
- private val projects: ProjectService by lazy { ProjectServiceImpl(clientOptions) }
+ private val projects: ProjectService by lazy { ProjectServiceImpl(clientOptionsWithUserAgent) }
- private val commits: CommitService by lazy { CommitServiceImpl(clientOptions) }
+ private val commits: CommitService by lazy { CommitServiceImpl(clientOptionsWithUserAgent) }
private val inferencePipelines: InferencePipelineService by lazy {
- InferencePipelineServiceImpl(clientOptions)
+ InferencePipelineServiceImpl(clientOptionsWithUserAgent)
}
- private val storage: StorageService by lazy { StorageServiceImpl(clientOptions) }
+ private val storage: StorageService by lazy { StorageServiceImpl(clientOptionsWithUserAgent) }
override fun async(): OpenlayerClientAsync = async
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
index ed353b4..9dbd51c 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/ClientOptions.kt
@@ -3,24 +3,29 @@
package com.openlayer.api.core
import com.fasterxml.jackson.databind.json.JsonMapper
-import com.google.common.collect.ArrayListMultimap
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
import com.openlayer.api.core.http.HttpClient
+import com.openlayer.api.core.http.PhantomReachableClosingHttpClient
+import com.openlayer.api.core.http.QueryParams
import com.openlayer.api.core.http.RetryingHttpClient
import java.time.Clock
class ClientOptions
private constructor(
+ private val originalHttpClient: HttpClient,
@get:JvmName("httpClient") val httpClient: HttpClient,
@get:JvmName("jsonMapper") val jsonMapper: JsonMapper,
@get:JvmName("clock") val clock: Clock,
@get:JvmName("baseUrl") val baseUrl: String,
- @get:JvmName("apiKey") val apiKey: String?,
- @get:JvmName("headers") val headers: ListMultimap,
- @get:JvmName("queryParams") val queryParams: ListMultimap,
+ @get:JvmName("headers") val headers: Headers,
+ @get:JvmName("queryParams") val queryParams: QueryParams,
@get:JvmName("responseValidation") val responseValidation: Boolean,
+ @get:JvmName("maxRetries") val maxRetries: Int,
+ @get:JvmName("apiKey") val apiKey: String?,
) {
+ fun toBuilder() = Builder().from(this)
+
companion object {
const val PRODUCTION_URL = "https://api.openlayer.com/v1"
@@ -33,60 +38,115 @@ private constructor(
class Builder {
private var httpClient: HttpClient? = null
- private var jsonMapper: JsonMapper? = null
+ private var jsonMapper: JsonMapper = jsonMapper()
private var clock: Clock = Clock.systemUTC()
private var baseUrl: String = PRODUCTION_URL
- private var headers: MutableMap> = mutableMapOf()
- private var queryParams: MutableMap> = mutableMapOf()
+ private var headers: Headers.Builder = Headers.builder()
+ private var queryParams: QueryParams.Builder = QueryParams.builder()
private var responseValidation: Boolean = false
private var maxRetries: Int = 2
private var apiKey: String? = null
+ @JvmSynthetic
+ internal fun from(clientOptions: ClientOptions) = apply {
+ httpClient = clientOptions.originalHttpClient
+ jsonMapper = clientOptions.jsonMapper
+ clock = clientOptions.clock
+ baseUrl = clientOptions.baseUrl
+ headers = clientOptions.headers.toBuilder()
+ queryParams = clientOptions.queryParams.toBuilder()
+ responseValidation = clientOptions.responseValidation
+ maxRetries = clientOptions.maxRetries
+ apiKey = clientOptions.apiKey
+ }
+
fun httpClient(httpClient: HttpClient) = apply { this.httpClient = httpClient }
fun jsonMapper(jsonMapper: JsonMapper) = apply { this.jsonMapper = jsonMapper }
+ fun clock(clock: Clock) = apply { this.clock = clock }
+
fun baseUrl(baseUrl: String) = apply { this.baseUrl = baseUrl }
- fun clock(clock: Clock) = apply { this.clock = clock }
+ fun headers(headers: Headers) = apply {
+ this.headers.clear()
+ putAllHeaders(headers)
+ }
fun headers(headers: Map>) = apply {
this.headers.clear()
putAllHeaders(headers)
}
- fun putHeader(name: String, value: String) = apply {
- this.headers.getOrPut(name) { mutableListOf() }.add(value)
+ fun putHeader(name: String, value: String) = apply { headers.put(name, value) }
+
+ fun putHeaders(name: String, values: Iterable) = apply { headers.put(name, values) }
+
+ fun putAllHeaders(headers: Headers) = apply { this.headers.putAll(headers) }
+
+ fun putAllHeaders(headers: Map>) = apply {
+ this.headers.putAll(headers)
}
- fun putHeaders(name: String, values: Iterable) = apply {
- this.headers.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun replaceHeaders(name: String, value: String) = apply { headers.replace(name, value) }
+
+ fun replaceHeaders(name: String, values: Iterable) = apply {
+ headers.replace(name, values)
}
- fun putAllHeaders(headers: Map>) = apply {
- headers.forEach(this::putHeaders)
+ fun replaceAllHeaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
+
+ fun replaceAllHeaders(headers: Map>) = apply {
+ this.headers.replaceAll(headers)
}
- fun removeHeader(name: String) = apply { this.headers.put(name, mutableListOf()) }
+ fun removeHeaders(name: String) = apply { headers.remove(name) }
+
+ fun removeAllHeaders(names: Set) = apply { headers.removeAll(names) }
+
+ fun queryParams(queryParams: QueryParams) = apply {
+ this.queryParams.clear()
+ putAllQueryParams(queryParams)
+ }
fun queryParams(queryParams: Map>) = apply {
this.queryParams.clear()
putAllQueryParams(queryParams)
}
- fun putQueryParam(name: String, value: String) = apply {
- this.queryParams.getOrPut(name) { mutableListOf() }.add(value)
+ fun putQueryParam(key: String, value: String) = apply { queryParams.put(key, value) }
+
+ fun putQueryParams(key: String, values: Iterable) = apply {
+ queryParams.put(key, values)
}
- fun putQueryParams(name: String, values: Iterable) = apply {
- this.queryParams.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun putAllQueryParams(queryParams: QueryParams) = apply {
+ this.queryParams.putAll(queryParams)
}
fun putAllQueryParams(queryParams: Map>) = apply {
- queryParams.forEach(this::putQueryParams)
+ this.queryParams.putAll(queryParams)
+ }
+
+ fun replaceQueryParams(key: String, value: String) = apply {
+ queryParams.replace(key, value)
}
- fun removeQueryParam(name: String) = apply { this.queryParams.put(name, mutableListOf()) }
+ fun replaceQueryParams(key: String, values: Iterable) = apply {
+ queryParams.replace(key, values)
+ }
+
+ fun replaceAllQueryParams(queryParams: QueryParams) = apply {
+ this.queryParams.replaceAll(queryParams)
+ }
+
+ fun replaceAllQueryParams(queryParams: Map>) = apply {
+ this.queryParams.replaceAll(queryParams)
+ }
+
+ fun removeQueryParams(key: String) = apply { queryParams.remove(key) }
+
+ fun removeAllQueryParams(keys: Set) = apply { queryParams.removeAll(keys) }
fun responseValidation(responseValidation: Boolean) = apply {
this.responseValidation = responseValidation
@@ -101,33 +161,40 @@ private constructor(
fun build(): ClientOptions {
checkNotNull(httpClient) { "`httpClient` is required but was not set" }
- val headers = ArrayListMultimap.create()
- val queryParams = ArrayListMultimap.create()
+ val headers = Headers.builder()
+ val queryParams = QueryParams.builder()
headers.put("X-Stainless-Lang", "java")
headers.put("X-Stainless-Arch", getOsArch())
headers.put("X-Stainless-OS", getOsName())
headers.put("X-Stainless-OS-Version", getOsVersion())
headers.put("X-Stainless-Package-Version", getPackageVersion())
+ headers.put("X-Stainless-Runtime", "JRE")
headers.put("X-Stainless-Runtime-Version", getJavaVersion())
- if (!apiKey.isNullOrEmpty()) {
- headers.put("Authorization", "Bearer ${apiKey}")
+ apiKey?.let {
+ if (!it.isEmpty()) {
+ headers.put("Authorization", "Bearer $it")
+ }
}
- this.headers.forEach(headers::replaceValues)
- this.queryParams.forEach(queryParams::replaceValues)
+ headers.replaceAll(this.headers.build())
+ queryParams.replaceAll(this.queryParams.build())
return ClientOptions(
- RetryingHttpClient.builder()
- .httpClient(httpClient!!)
- .clock(clock)
- .maxRetries(maxRetries)
- .build(),
- jsonMapper ?: jsonMapper(),
+ httpClient!!,
+ PhantomReachableClosingHttpClient(
+ RetryingHttpClient.builder()
+ .httpClient(httpClient!!)
+ .clock(clock)
+ .maxRetries(maxRetries)
+ .build()
+ ),
+ jsonMapper,
clock,
baseUrl,
- apiKey,
- headers.toUnmodifiable(),
- queryParams.toUnmodifiable(),
+ headers.build(),
+ queryParams.build(),
responseValidation,
+ maxRetries,
+ apiKey,
)
}
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/HttpRequestBodies.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/HttpRequestBodies.kt
similarity index 96%
rename from openlayer-java-core/src/main/kotlin/com/openlayer/api/services/HttpRequestBodies.kt
rename to openlayer-java-core/src/main/kotlin/com/openlayer/api/core/HttpRequestBodies.kt
index 3e8a1c1..8838f20 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/services/HttpRequestBodies.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/HttpRequestBodies.kt
@@ -1,11 +1,8 @@
@file:JvmName("HttpRequestBodies")
-package com.openlayer.api.services
+package com.openlayer.api.core
import com.fasterxml.jackson.databind.json.JsonMapper
-import com.openlayer.api.core.Enum
-import com.openlayer.api.core.JsonValue
-import com.openlayer.api.core.MultipartFormValue
import com.openlayer.api.core.http.HttpRequestBody
import com.openlayer.api.errors.OpenlayerException
import java.io.ByteArrayOutputStream
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/PhantomReachable.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/PhantomReachable.kt
new file mode 100644
index 0000000..ad26316
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/PhantomReachable.kt
@@ -0,0 +1,46 @@
+@file:JvmName("PhantomReachable")
+
+package com.openlayer.api.core
+
+import com.openlayer.api.errors.OpenlayerException
+import java.lang.reflect.InvocationTargetException
+
+/**
+ * Closes [closeable] when [observed] becomes only phantom reachable.
+ *
+ * This is a wrapper around a Java 9+ [java.lang.ref.Cleaner], or a no-op in older Java versions.
+ */
+@JvmSynthetic
+internal fun closeWhenPhantomReachable(observed: Any, closeable: AutoCloseable) {
+ check(observed !== closeable) {
+ "`observed` cannot be the same object as `closeable` because it would never become phantom reachable"
+ }
+ closeWhenPhantomReachable?.let { it(observed, closeable::close) }
+}
+
+private val closeWhenPhantomReachable: ((Any, AutoCloseable) -> Unit)? by lazy {
+ try {
+ val cleanerClass = Class.forName("java.lang.ref.Cleaner")
+ val cleanerCreate = cleanerClass.getMethod("create")
+ val cleanerRegister =
+ cleanerClass.getMethod("register", Any::class.java, Runnable::class.java)
+ val cleanerObject = cleanerCreate.invoke(null);
+
+ { observed, closeable ->
+ try {
+ cleanerRegister.invoke(cleanerObject, observed, Runnable { closeable.close() })
+ } catch (e: ReflectiveOperationException) {
+ if (e is InvocationTargetException) {
+ when (val cause = e.cause) {
+ is RuntimeException,
+ is Error -> throw cause
+ }
+ }
+ throw OpenlayerException("Unexpected reflective invocation failure", e)
+ }
+ }
+ } catch (e: ReflectiveOperationException) {
+ // We're running Java 8, which has no Cleaner.
+ null
+ }
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
index bc0d02a..552568d 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Properties.kt
@@ -34,14 +34,9 @@ fun getOsName(): String {
}
}
-fun getOsVersion(): String {
- return System.getProperty("os.version", "unknown")
-}
+fun getOsVersion(): String = System.getProperty("os.version", "unknown")
-fun getPackageVersion(): String {
- return Properties::class.java.`package`.implementationVersion ?: "unknown"
-}
+fun getPackageVersion(): String =
+ Properties::class.java.`package`.implementationVersion ?: "unknown"
-fun getJavaVersion(): String {
- return System.getProperty("java.version", "unknown")
-}
+fun getJavaVersion(): String = System.getProperty("java.version", "unknown")
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
index 8f46e25..7c5ab9d 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Utils.kt
@@ -2,60 +2,25 @@
package com.openlayer.api.core
-import com.google.common.collect.ImmutableListMultimap
-import com.google.common.collect.ListMultimap
-import com.google.common.collect.Multimaps
import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.util.Collections
+import java.util.SortedMap
@JvmSynthetic
-internal fun T?.getOrThrow(name: String): T {
- if (this == null) {
- throw OpenlayerInvalidDataException("'${name}' is not present")
- }
-
- return this
-}
-
-@JvmSynthetic
-internal fun List.toUnmodifiable(): List {
- if (isEmpty()) {
- return Collections.emptyList()
- }
-
- return Collections.unmodifiableList(this)
-}
+internal fun T?.getOrThrow(name: String): T =
+ this ?: throw OpenlayerInvalidDataException("`${name}` is not present")
@JvmSynthetic
-internal fun Map.toUnmodifiable(): Map {
- if (isEmpty()) {
- return Collections.emptyMap()
- }
-
- return Collections.unmodifiableMap(this)
-}
+internal fun List.toImmutable(): List =
+ if (isEmpty()) Collections.emptyList() else Collections.unmodifiableList(toList())
@JvmSynthetic
-internal fun ListMultimap.toUnmodifiable(): ListMultimap {
- if (isEmpty()) {
- return ImmutableListMultimap.of()
- }
-
- return Multimaps.unmodifiableListMultimap(this)
-}
+internal fun Map.toImmutable(): Map =
+ if (isEmpty()) Collections.emptyMap() else Collections.unmodifiableMap(toMap())
@JvmSynthetic
-internal fun ListMultimap.getRequiredHeader(header: String): String {
- val value =
- entries()
- .stream()
- .filter { entry -> entry.key.equals(header, ignoreCase = true) }
- .map { entry -> entry.value }
- .findFirst()
- if (!value.isPresent) {
- throw OpenlayerInvalidDataException("Could not find $header header")
- }
- return value.get()
-}
+internal fun , V> SortedMap.toImmutable(): SortedMap =
+ if (isEmpty()) Collections.emptySortedMap()
+ else Collections.unmodifiableSortedMap(toSortedMap(comparator()))
internal interface Enum
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
index 12b454f..fc2653e 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/Values.kt
@@ -142,6 +142,8 @@ sealed class JsonField {
// This filter should not be used directly and should instead use the @ExcludeMissing annotation
class IsMissing {
override fun equals(other: Any?): Boolean = other is JsonMissing
+
+ override fun hashCode(): Int = Objects.hash()
}
class Deserializer(private val type: JavaType? = null) :
@@ -387,7 +389,7 @@ private constructor(
override fun toString() = values.toString()
companion object {
- @JsonCreator @JvmStatic fun of(values: List) = JsonArray(values.toUnmodifiable())
+ @JsonCreator @JvmStatic fun of(values: List) = JsonArray(values.toImmutable())
}
}
@@ -413,7 +415,7 @@ private constructor(
companion object {
@JsonCreator
@JvmStatic
- fun of(values: Map) = JsonObject(values.toUnmodifiable())
+ fun of(values: Map) = JsonObject(values.toImmutable())
}
}
@@ -479,9 +481,8 @@ internal constructor(
}
}
- override fun toString(): String {
- return "MultipartFormValue(name='$name', contentType=$contentType, filename=$filename, value=${valueToString()})"
- }
+ override fun toString(): String =
+ "MultipartFormValue{name=$name, contentType=$contentType, filename=$filename, value=${valueToString()}}"
private fun valueToString(): String =
when (value) {
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/EmptyHandler.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/EmptyHandler.kt
new file mode 100644
index 0000000..f59baa6
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/EmptyHandler.kt
@@ -0,0 +1,12 @@
+@file:JvmName("EmptyHandler")
+
+package com.openlayer.api.core.handlers
+
+import com.openlayer.api.core.http.HttpResponse
+import com.openlayer.api.core.http.HttpResponse.Handler
+
+@JvmSynthetic internal fun emptyHandler(): Handler = EmptyHandlerInternal
+
+private object EmptyHandlerInternal : Handler {
+ override fun handle(response: HttpResponse): Void? = null
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/ErrorHandler.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/ErrorHandler.kt
new file mode 100644
index 0000000..5e44208
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/ErrorHandler.kt
@@ -0,0 +1,125 @@
+@file:JvmName("ErrorHandler")
+
+package com.openlayer.api.core.handlers
+
+import com.fasterxml.jackson.databind.json.JsonMapper
+import com.openlayer.api.core.http.Headers
+import com.openlayer.api.core.http.HttpResponse
+import com.openlayer.api.core.http.HttpResponse.Handler
+import com.openlayer.api.errors.BadRequestException
+import com.openlayer.api.errors.InternalServerException
+import com.openlayer.api.errors.NotFoundException
+import com.openlayer.api.errors.OpenlayerError
+import com.openlayer.api.errors.PermissionDeniedException
+import com.openlayer.api.errors.RateLimitException
+import com.openlayer.api.errors.UnauthorizedException
+import com.openlayer.api.errors.UnexpectedStatusCodeException
+import com.openlayer.api.errors.UnprocessableEntityException
+import java.io.ByteArrayInputStream
+import java.io.InputStream
+
+@JvmSynthetic
+internal fun errorHandler(jsonMapper: JsonMapper): Handler {
+ val handler = jsonHandler(jsonMapper)
+
+ return object : Handler {
+ override fun handle(response: HttpResponse): OpenlayerError =
+ try {
+ handler.handle(response)
+ } catch (e: Exception) {
+ OpenlayerError.builder().build()
+ }
+ }
+}
+
+@JvmSynthetic
+internal fun Handler.withErrorHandler(errorHandler: Handler): Handler =
+ object : Handler {
+ override fun handle(response: HttpResponse): T {
+ when (val statusCode = response.statusCode()) {
+ in 200..299 -> {
+ return this@withErrorHandler.handle(response)
+ }
+ 400 -> {
+ val buffered = response.buffered()
+ throw BadRequestException(
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ 401 -> {
+ val buffered = response.buffered()
+ throw UnauthorizedException(
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ 403 -> {
+ val buffered = response.buffered()
+ throw PermissionDeniedException(
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ 404 -> {
+ val buffered = response.buffered()
+ throw NotFoundException(
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ 422 -> {
+ val buffered = response.buffered()
+ throw UnprocessableEntityException(
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ 429 -> {
+ val buffered = response.buffered()
+ throw RateLimitException(
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ in 500..599 -> {
+ val buffered = response.buffered()
+ throw InternalServerException(
+ statusCode,
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ else -> {
+ val buffered = response.buffered()
+ throw UnexpectedStatusCodeException(
+ statusCode,
+ buffered.headers(),
+ stringHandler().handle(buffered),
+ errorHandler.handle(buffered),
+ )
+ }
+ }
+ }
+ }
+
+private fun HttpResponse.buffered(): HttpResponse {
+ val body = body().readBytes()
+
+ return object : HttpResponse {
+ override fun statusCode(): Int = this@buffered.statusCode()
+
+ override fun headers(): Headers = this@buffered.headers()
+
+ override fun body(): InputStream = ByteArrayInputStream(body)
+
+ override fun close() = this@buffered.close()
+ }
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/JsonHandler.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/JsonHandler.kt
new file mode 100644
index 0000000..6babe3b
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/JsonHandler.kt
@@ -0,0 +1,21 @@
+@file:JvmName("JsonHandler")
+
+package com.openlayer.api.core.handlers
+
+import com.fasterxml.jackson.databind.json.JsonMapper
+import com.fasterxml.jackson.module.kotlin.jacksonTypeRef
+import com.openlayer.api.core.http.HttpResponse
+import com.openlayer.api.core.http.HttpResponse.Handler
+import com.openlayer.api.errors.OpenlayerException
+
+@JvmSynthetic
+internal inline fun jsonHandler(jsonMapper: JsonMapper): Handler =
+ object : Handler {
+ override fun handle(response: HttpResponse): T {
+ try {
+ return jsonMapper.readValue(response.body(), jacksonTypeRef())
+ } catch (e: Exception) {
+ throw OpenlayerException("Error reading response", e)
+ }
+ }
+ }
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/StringHandler.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/StringHandler.kt
new file mode 100644
index 0000000..d0f697d
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/handlers/StringHandler.kt
@@ -0,0 +1,13 @@
+@file:JvmName("StringHandler")
+
+package com.openlayer.api.core.handlers
+
+import com.openlayer.api.core.http.HttpResponse
+import com.openlayer.api.core.http.HttpResponse.Handler
+
+@JvmSynthetic internal fun stringHandler(): Handler = StringHandlerInternal
+
+private object StringHandlerInternal : Handler {
+ override fun handle(response: HttpResponse): String =
+ response.body().readBytes().toString(Charsets.UTF_8)
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt
deleted file mode 100644
index 79dd3d8..0000000
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/BinaryResponseContent.kt
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.openlayer.api.core.http
-
-import java.io.IOException
-import java.io.InputStream
-import java.io.OutputStream
-import java.lang.AutoCloseable
-import java.util.Optional
-
-interface BinaryResponseContent : AutoCloseable {
-
- fun contentType(): Optional
-
- fun body(): InputStream
-
- @Throws(IOException::class) fun writeTo(outputStream: OutputStream)
-}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/Headers.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/Headers.kt
new file mode 100644
index 0000000..8b934c1
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/Headers.kt
@@ -0,0 +1,92 @@
+package com.openlayer.api.core.http
+
+import com.openlayer.api.core.toImmutable
+import java.util.TreeMap
+
+class Headers
+private constructor(
+ private val map: Map>,
+ @get:JvmName("size") val size: Int
+) {
+
+ fun isEmpty(): Boolean = map.isEmpty()
+
+ fun names(): Set = map.keys
+
+ fun values(name: String): List = map[name].orEmpty()
+
+ fun toBuilder(): Builder = Builder().putAll(map)
+
+ companion object {
+
+ @JvmStatic fun builder() = Builder()
+ }
+
+ class Builder {
+
+ private val map: MutableMap> =
+ TreeMap(String.CASE_INSENSITIVE_ORDER)
+ private var size: Int = 0
+
+ fun put(name: String, value: String) = apply {
+ map.getOrPut(name) { mutableListOf() }.add(value)
+ size++
+ }
+
+ fun put(name: String, values: Iterable) = apply { values.forEach { put(name, it) } }
+
+ fun putAll(headers: Map>) = apply { headers.forEach(::put) }
+
+ fun putAll(headers: Headers) = apply {
+ headers.names().forEach { put(it, headers.values(it)) }
+ }
+
+ fun remove(name: String) = apply { size -= map.remove(name).orEmpty().size }
+
+ fun removeAll(names: Set) = apply { names.forEach(::remove) }
+
+ fun clear() = apply {
+ map.clear()
+ size = 0
+ }
+
+ fun replace(name: String, value: String) = apply {
+ remove(name)
+ put(name, value)
+ }
+
+ fun replace(name: String, values: Iterable) = apply {
+ remove(name)
+ put(name, values)
+ }
+
+ fun replaceAll(headers: Map>) = apply {
+ headers.forEach(::replace)
+ }
+
+ fun replaceAll(headers: Headers) = apply {
+ headers.names().forEach { replace(it, headers.values(it)) }
+ }
+
+ fun build() =
+ Headers(
+ map.mapValuesTo(TreeMap(String.CASE_INSENSITIVE_ORDER)) { (_, values) ->
+ values.toImmutable()
+ }
+ .toImmutable(),
+ size
+ )
+ }
+
+ override fun hashCode(): Int = map.hashCode()
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return other is Headers && map == other.map
+ }
+
+ override fun toString(): String = "Headers{map=$map}"
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
index e6fb4bc..bed23ad 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpClient.kt
@@ -1,3 +1,5 @@
+@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
+
package com.openlayer.api.core.http
import com.openlayer.api.core.RequestOptions
@@ -6,11 +8,13 @@ import java.util.concurrent.CompletableFuture
interface HttpClient : AutoCloseable {
+ @JvmOverloads
fun execute(
request: HttpRequest,
requestOptions: RequestOptions = RequestOptions.none(),
): HttpResponse
+ @JvmOverloads
fun executeAsync(
request: HttpRequest,
requestOptions: RequestOptions = RequestOptions.none(),
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
index 243c19a..1acfcbc 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpRequest.kt
@@ -1,23 +1,21 @@
package com.openlayer.api.core.http
-import com.google.common.collect.ArrayListMultimap
-import com.google.common.collect.ListMultimap
-import com.google.common.collect.Multimap
-import com.google.common.collect.MultimapBuilder
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.toImmutable
class HttpRequest
private constructor(
@get:JvmName("method") val method: HttpMethod,
@get:JvmName("url") val url: String?,
@get:JvmName("pathSegments") val pathSegments: List,
- @get:JvmName("queryParams") val queryParams: ListMultimap,
- @get:JvmName("headers") val headers: ListMultimap,
+ @get:JvmName("headers") val headers: Headers,
+ @get:JvmName("queryParams") val queryParams: QueryParams,
@get:JvmName("body") val body: HttpRequestBody?,
) {
+ fun toBuilder(): Builder = Builder().from(this)
+
override fun toString(): String =
- "HttpRequest {method=$method, pathSegments=$pathSegments, queryParams=$queryParams, headers=$headers, body=$body}"
+ "HttpRequest{method=$method, url=$url, pathSegments=$pathSegments, headers=$headers, queryParams=$queryParams, body=$body}"
companion object {
@JvmStatic fun builder() = Builder()
@@ -27,65 +25,120 @@ private constructor(
private var method: HttpMethod? = null
private var url: String? = null
- private var pathSegments: MutableList = ArrayList()
- private var queryParams: ListMultimap = ArrayListMultimap.create()
+ private var pathSegments: MutableList = mutableListOf()
+ private var headers: Headers.Builder = Headers.builder()
+ private var queryParams: QueryParams.Builder = QueryParams.builder()
private var body: HttpRequestBody? = null
- private var headers: ListMultimap =
- MultimapBuilder.treeKeys(String.CASE_INSENSITIVE_ORDER).arrayListValues().build()
+
+ @JvmSynthetic
+ internal fun from(request: HttpRequest) = apply {
+ method = request.method
+ url = request.url
+ pathSegments = request.pathSegments.toMutableList()
+ headers = request.headers.toBuilder()
+ queryParams = request.queryParams.toBuilder()
+ body = request.body
+ }
fun method(method: HttpMethod) = apply { this.method = method }
fun url(url: String) = apply { this.url = url }
- fun addPathSegment(pathSegment: String) = apply { this.pathSegments.add(pathSegment) }
+ fun addPathSegment(pathSegment: String) = apply { pathSegments.add(pathSegment) }
fun addPathSegments(vararg pathSegments: String) = apply {
- for (pathSegment in pathSegments) {
- this.pathSegments.add(pathSegment)
- }
+ this.pathSegments.addAll(pathSegments)
}
- fun putQueryParam(name: String, value: String) = apply {
- this.queryParams.replaceValues(name, listOf(value))
+ fun headers(headers: Headers) = apply {
+ this.headers.clear()
+ putAllHeaders(headers)
}
- fun putQueryParams(name: String, values: Iterable) = apply {
- this.queryParams.replaceValues(name, values)
+ fun headers(headers: Map>) = apply {
+ this.headers.clear()
+ putAllHeaders(headers)
}
- fun putAllQueryParams(queryParams: Map>) = apply {
- queryParams.forEach(this::putQueryParams)
+ fun putHeader(name: String, value: String) = apply { headers.put(name, value) }
+
+ fun putHeaders(name: String, values: Iterable) = apply { headers.put(name, values) }
+
+ fun putAllHeaders(headers: Headers) = apply { this.headers.putAll(headers) }
+
+ fun putAllHeaders(headers: Map>) = apply {
+ this.headers.putAll(headers)
}
- fun putAllQueryParams(queryParams: Multimap) = apply {
- queryParams.asMap().forEach(this::putQueryParams)
+ fun replaceHeaders(name: String, value: String) = apply { headers.replace(name, value) }
+
+ fun replaceHeaders(name: String, values: Iterable) = apply {
+ headers.replace(name, values)
}
- fun putHeader(name: String, value: String) = apply {
- this.headers.replaceValues(name, listOf(value))
+ fun replaceAllHeaders(headers: Headers) = apply { this.headers.replaceAll(headers) }
+
+ fun replaceAllHeaders(headers: Map>) = apply {
+ this.headers.replaceAll(headers)
}
- fun putHeaders(name: String, values: Iterable) = apply {
- this.headers.replaceValues(name, values)
+ fun removeHeaders(name: String) = apply { headers.remove(name) }
+
+ fun removeAllHeaders(names: Set) = apply { headers.removeAll(names) }
+
+ fun queryParams(queryParams: QueryParams) = apply {
+ this.queryParams.clear()
+ putAllQueryParams(queryParams)
}
- fun putAllHeaders(headers: Map>) = apply {
- headers.forEach(this::putHeaders)
+ fun queryParams(queryParams: Map>) = apply {
+ this.queryParams.clear()
+ putAllQueryParams(queryParams)
}
- fun putAllHeaders(headers: Multimap) = apply {
- headers.asMap().forEach(this::putHeaders)
+ fun putQueryParam(key: String, value: String) = apply { queryParams.put(key, value) }
+
+ fun putQueryParams(key: String, values: Iterable) = apply {
+ queryParams.put(key, values)
}
+ fun putAllQueryParams(queryParams: QueryParams) = apply {
+ this.queryParams.putAll(queryParams)
+ }
+
+ fun putAllQueryParams(queryParams: Map>) = apply {
+ this.queryParams.putAll(queryParams)
+ }
+
+ fun replaceQueryParams(key: String, value: String) = apply {
+ queryParams.replace(key, value)
+ }
+
+ fun replaceQueryParams(key: String, values: Iterable) = apply {
+ queryParams.replace(key, values)
+ }
+
+ fun replaceAllQueryParams(queryParams: QueryParams) = apply {
+ this.queryParams.replaceAll(queryParams)
+ }
+
+ fun replaceAllQueryParams(queryParams: Map>) = apply {
+ this.queryParams.replaceAll(queryParams)
+ }
+
+ fun removeQueryParams(key: String) = apply { queryParams.remove(key) }
+
+ fun removeAllQueryParams(keys: Set) = apply { queryParams.removeAll(keys) }
+
fun body(body: HttpRequestBody) = apply { this.body = body }
fun build(): HttpRequest =
HttpRequest(
checkNotNull(method) { "`method` is required but was not set" },
url,
- pathSegments.toUnmodifiable(),
- queryParams.toUnmodifiable(),
- headers,
+ pathSegments.toImmutable(),
+ headers.build(),
+ queryParams.build(),
body,
)
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
index 5c5f3ce..098bc98 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/HttpResponse.kt
@@ -1,6 +1,5 @@
package com.openlayer.api.core.http
-import com.google.common.collect.ListMultimap
import java.io.InputStream
import java.lang.AutoCloseable
@@ -8,7 +7,7 @@ interface HttpResponse : AutoCloseable {
fun statusCode(): Int
- fun headers(): ListMultimap
+ fun headers(): Headers
fun body(): InputStream
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/PhantomReachableClosingHttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/PhantomReachableClosingHttpClient.kt
new file mode 100644
index 0000000..ab4266e
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/PhantomReachableClosingHttpClient.kt
@@ -0,0 +1,21 @@
+package com.openlayer.api.core.http
+
+import com.openlayer.api.core.RequestOptions
+import com.openlayer.api.core.closeWhenPhantomReachable
+import java.util.concurrent.CompletableFuture
+
+internal class PhantomReachableClosingHttpClient(private val httpClient: HttpClient) : HttpClient {
+ init {
+ closeWhenPhantomReachable(this, httpClient)
+ }
+
+ override fun execute(request: HttpRequest, requestOptions: RequestOptions): HttpResponse =
+ httpClient.execute(request, requestOptions)
+
+ override fun executeAsync(
+ request: HttpRequest,
+ requestOptions: RequestOptions
+ ): CompletableFuture = httpClient.executeAsync(request, requestOptions)
+
+ override fun close() = httpClient.close()
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/QueryParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/QueryParams.kt
new file mode 100644
index 0000000..4a53fb0
--- /dev/null
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/QueryParams.kt
@@ -0,0 +1,86 @@
+package com.openlayer.api.core.http
+
+import com.openlayer.api.core.toImmutable
+
+class QueryParams
+private constructor(
+ private val map: Map>,
+ @get:JvmName("size") val size: Int
+) {
+
+ fun isEmpty(): Boolean = map.isEmpty()
+
+ fun keys(): Set = map.keys
+
+ fun values(key: String): List = map[key].orEmpty()
+
+ fun toBuilder(): Builder = Builder().putAll(map)
+
+ companion object {
+
+ @JvmStatic fun builder() = Builder()
+ }
+
+ class Builder {
+
+ private val map: MutableMap> = mutableMapOf()
+ private var size: Int = 0
+
+ fun put(key: String, value: String) = apply {
+ map.getOrPut(key) { mutableListOf() }.add(value)
+ size++
+ }
+
+ fun put(key: String, values: Iterable) = apply { values.forEach { put(key, it) } }
+
+ fun putAll(queryParams: Map>) = apply {
+ queryParams.forEach(::put)
+ }
+
+ fun putAll(queryParams: QueryParams) = apply {
+ queryParams.keys().forEach { put(it, queryParams.values(it)) }
+ }
+
+ fun replace(key: String, value: String) = apply {
+ remove(key)
+ put(key, value)
+ }
+
+ fun replace(key: String, values: Iterable) = apply {
+ remove(key)
+ put(key, values)
+ }
+
+ fun replaceAll(queryParams: Map>) = apply {
+ queryParams.forEach(::replace)
+ }
+
+ fun replaceAll(queryParams: QueryParams) = apply {
+ queryParams.keys().forEach { replace(it, queryParams.values(it)) }
+ }
+
+ fun remove(key: String) = apply { size -= map.remove(key).orEmpty().size }
+
+ fun removeAll(keys: Set) = apply { keys.forEach(::remove) }
+
+ fun clear() = apply {
+ map.clear()
+ size = 0
+ }
+
+ fun build() =
+ QueryParams(map.mapValues { (_, values) -> values.toImmutable() }.toImmutable(), size)
+ }
+
+ override fun hashCode(): Int = map.hashCode()
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return other is QueryParams && map == other.map
+ }
+
+ override fun toString(): String = "QueryParams{map=$map}"
+}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
index a90d6f4..56feff5 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/core/http/RetryingHttpClient.kt
@@ -1,8 +1,5 @@
-@file:JvmSynthetic
-
package com.openlayer.api.core.http
-import com.google.common.util.concurrent.MoreExecutors
import com.openlayer.api.core.RequestOptions
import com.openlayer.api.errors.OpenlayerIoException
import java.io.IOException
@@ -38,14 +35,22 @@ private constructor(
return httpClient.execute(request, requestOptions)
}
- maybeAddIdempotencyHeader(request)
+ var modifiedRequest = maybeAddIdempotencyHeader(request)
+
+ // Don't send the current retry count in the headers if the caller set their own value.
+ val shouldSendRetryCount =
+ !modifiedRequest.headers.names().contains("X-Stainless-Retry-Count")
var retries = 0
while (true) {
+ if (shouldSendRetryCount) {
+ modifiedRequest = setRetryCountHeader(modifiedRequest, retries)
+ }
+
val response =
try {
- val response = httpClient.execute(request, requestOptions)
+ val response = httpClient.execute(modifiedRequest, requestOptions)
if (++retries > maxRetries || !shouldRetry(response)) {
return response
}
@@ -72,12 +77,23 @@ private constructor(
return httpClient.executeAsync(request, requestOptions)
}
- maybeAddIdempotencyHeader(request)
+ val modifiedRequest = maybeAddIdempotencyHeader(request)
+
+ // Don't send the current retry count in the headers if the caller set their own value.
+ val shouldSendRetryCount =
+ !modifiedRequest.headers.names().contains("X-Stainless-Retry-Count")
var retries = 0
- fun wrap(future: CompletableFuture): CompletableFuture {
- return future
+ fun executeWithRetries(
+ request: HttpRequest,
+ requestOptions: RequestOptions,
+ ): CompletableFuture {
+ val requestWithRetryCount =
+ if (shouldSendRetryCount) setRetryCountHeader(request, retries) else request
+
+ return httpClient
+ .executeAsync(requestWithRetryCount, requestOptions)
.handleAsync(
fun(
response: HttpResponse?,
@@ -97,39 +113,46 @@ private constructor(
val backoffMillis = getRetryBackoffMillis(retries, response)
return sleepAsync(backoffMillis.toMillis()).thenCompose {
- wrap(httpClient.executeAsync(request, requestOptions))
+ executeWithRetries(requestWithRetryCount, requestOptions)
}
},
- MoreExecutors.directExecutor()
- )
+ ) {
+ // Run in the same thread.
+ it.run()
+ }
.thenCompose(Function.identity())
}
- return wrap(httpClient.executeAsync(request, requestOptions))
+ return executeWithRetries(modifiedRequest, requestOptions)
}
- override fun close() {
- httpClient.close()
- }
+ override fun close() = httpClient.close()
- private fun isRetryable(request: HttpRequest): Boolean {
+ private fun isRetryable(request: HttpRequest): Boolean =
// Some requests, such as when a request body is being streamed, cannot be retried because
// the body data aren't available on subsequent attempts.
- return request.body?.repeatable() ?: true
- }
+ request.body?.repeatable() ?: true
+
+ private fun setRetryCountHeader(request: HttpRequest, retries: Int): HttpRequest =
+ request.toBuilder().replaceHeaders("X-Stainless-Retry-Count", retries.toString()).build()
private fun idempotencyKey(): String = "stainless-java-retry-${UUID.randomUUID()}"
- private fun maybeAddIdempotencyHeader(request: HttpRequest) {
- if (idempotencyHeader != null && !request.headers.containsKey(idempotencyHeader)) {
- // Set a header to uniquely identify the request when retried
- request.headers.put(idempotencyHeader, idempotencyKey())
+ private fun maybeAddIdempotencyHeader(request: HttpRequest): HttpRequest {
+ if (idempotencyHeader == null || request.headers.names().contains(idempotencyHeader)) {
+ return request
}
+
+ return request
+ .toBuilder()
+ // Set a header to uniquely identify the request when retried.
+ .putHeader(idempotencyHeader, idempotencyKey())
+ .build()
}
private fun shouldRetry(response: HttpResponse): Boolean {
// Note: this is not a standard header
- val shouldRetryHeader = response.headers().get("x-should-retry").getOrNull(0)
+ val shouldRetryHeader = response.headers().values("X-Should-Retry").getOrNull(0)
val statusCode = response.statusCode()
return when {
@@ -149,11 +172,10 @@ private constructor(
}
}
- private fun shouldRetry(throwable: Throwable): Boolean {
+ private fun shouldRetry(throwable: Throwable): Boolean =
// Only retry IOException and OpenlayerIoException, other exceptions are not intended to be
// retried.
- return throwable is IOException || throwable is OpenlayerIoException
- }
+ throwable is IOException || throwable is OpenlayerIoException
private fun getRetryBackoffMillis(retries: Int, response: HttpResponse?): Duration {
// About the Retry-After header:
@@ -162,11 +184,11 @@ private constructor(
?.headers()
?.let { headers ->
headers
- .get("Retry-After-Ms")
+ .values("Retry-After-Ms")
.getOrNull(0)
?.toFloatOrNull()
?.times(TimeUnit.MILLISECONDS.toNanos(1))
- ?: headers.get("Retry-After").getOrNull(0)?.let { retryAfter ->
+ ?: headers.values("Retry-After").getOrNull(0)?.let { retryAfter ->
retryAfter.toFloatOrNull()?.times(TimeUnit.SECONDS.toNanos(1))
?: try {
ChronoUnit.MILLIS.between(
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
index f51b5d2..cddebd0 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/BadRequestException.kt
@@ -1,13 +1,9 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class BadRequestException
-constructor(
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = 400
-
- fun error(): OpenlayerError = error
-}
+class BadRequestException(
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(400, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
index b0c6a67..ba8c911 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/InternalServerException.kt
@@ -1,14 +1,10 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class InternalServerException
-constructor(
- private val statusCode: Int,
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = statusCode
-
- fun error(): OpenlayerError = error
-}
+class InternalServerException(
+ statusCode: Int,
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(statusCode, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
index 9efe856..0786e63 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/NotFoundException.kt
@@ -1,13 +1,9 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class NotFoundException
-constructor(
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = 404
-
- fun error(): OpenlayerError = error
-}
+class NotFoundException(
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(404, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
index 59250fe..582b268 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerError.kt
@@ -7,34 +7,34 @@ import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.toImmutable
import java.util.Objects
@JsonDeserialize(builder = OpenlayerError.Builder::class)
@NoAutoDetect
class OpenlayerError
-constructor(
- private val additionalProperties: Map,
+private constructor(
+ @JsonAnyGetter
+ @get:JvmName("additionalProperties")
+ val additionalProperties: Map,
) {
- @JsonAnyGetter fun additionalProperties(): Map = additionalProperties
-
- fun toBuilder() = Builder()
-
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
- return other is OpenlayerError && this.additionalProperties == other.additionalProperties
+ return /* spotless:off */ other is OpenlayerError && this.additionalProperties == other.additionalProperties /* spotless:on */
}
override fun hashCode(): Int {
- return Objects.hash(additionalProperties)
+ return /* spotless:off */ Objects.hash(additionalProperties) /* spotless:on */
}
override fun toString() = "OpenlayerError{additionalProperties=$additionalProperties}"
+ fun toBuilder() = Builder().from(this)
+
companion object {
@JvmStatic fun builder() = Builder()
@@ -44,22 +44,31 @@ constructor(
private var additionalProperties: MutableMap = mutableMapOf()
- fun from(error: OpenlayerError) = apply { additionalProperties(error.additionalProperties) }
+ @JvmSynthetic
+ internal fun from(openlayerError: OpenlayerError) = apply {
+ additionalProperties = openlayerError.additionalProperties.toMutableMap()
+ }
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
- this.additionalProperties.putAll(additionalProperties)
+ putAllAdditionalProperties(additionalProperties)
}
@JsonAnySetter
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
- this.additionalProperties.put(key, value)
+ additionalProperties.put(key, value)
}
fun putAllAdditionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
- fun build(): OpenlayerError = OpenlayerError(additionalProperties.toUnmodifiable())
+ fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }
+
+ fun removeAllAdditionalProperties(keys: Set) = apply {
+ keys.forEach(::removeAdditionalProperty)
+ }
+
+ fun build(): OpenlayerError = OpenlayerError(additionalProperties.toImmutable())
}
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
index 916e4ed..586f9be 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/OpenlayerServiceException.kt
@@ -1,15 +1,23 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
abstract class OpenlayerServiceException
@JvmOverloads
constructor(
- private val headers: ListMultimap,
- message: String? = null,
+ private val statusCode: Int,
+ private val headers: Headers,
+ private val body: String,
+ private val error: OpenlayerError,
+ message: String = "$statusCode: $error",
cause: Throwable? = null
) : OpenlayerException(message, cause) {
- abstract fun statusCode(): Int
- fun headers(): ListMultimap = headers
+ fun statusCode(): Int = statusCode
+
+ fun headers(): Headers = headers
+
+ fun body(): String = body
+
+ fun error(): OpenlayerError = error
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
index cc7f0d6..89f54d4 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/PermissionDeniedException.kt
@@ -1,13 +1,9 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class PermissionDeniedException
-constructor(
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = 403
-
- fun error(): OpenlayerError = error
-}
+class PermissionDeniedException(
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(403, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
index 5b83fd0..27bfad4 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/RateLimitException.kt
@@ -1,13 +1,9 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class RateLimitException
-constructor(
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = 429
-
- fun error(): OpenlayerError = error
-}
+class RateLimitException(
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(429, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
index f0e8f0f..ba6f77e 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnauthorizedException.kt
@@ -1,13 +1,9 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class UnauthorizedException
-constructor(
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = 401
-
- fun error(): OpenlayerError = error
-}
+class UnauthorizedException(
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(401, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
index 30e8d3a..b4cab62 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnexpectedStatusCodeException.kt
@@ -1,14 +1,10 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class UnexpectedStatusCodeException
-constructor(
- private val statusCode: Int,
- headers: ListMultimap,
- private val body: String
-) : OpenlayerServiceException(headers, "Unexpected status code: ${statusCode}") {
- override fun statusCode(): Int = statusCode
-
- fun body() = body
-}
+class UnexpectedStatusCodeException(
+ statusCode: Int,
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(statusCode, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
index 87dba98..e7d2ecd 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/errors/UnprocessableEntityException.kt
@@ -1,13 +1,9 @@
package com.openlayer.api.errors
-import com.google.common.collect.ListMultimap
+import com.openlayer.api.core.http.Headers
-class UnprocessableEntityException
-constructor(
- headers: ListMultimap,
- private val error: OpenlayerError,
-) : OpenlayerServiceException(headers, "${error}") {
- override fun statusCode(): Int = 422
-
- fun error(): OpenlayerError = error
-}
+class UnprocessableEntityException(
+ headers: Headers,
+ body: String,
+ error: OpenlayerError,
+) : OpenlayerServiceException(422, headers, body, error)
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
index 67f54ef..2f44b32 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListParams.kt
@@ -7,7 +7,8 @@ import com.openlayer.api.core.Enum
import com.openlayer.api.core.JsonField
import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.http.Headers
+import com.openlayer.api.core.http.QueryParams
import com.openlayer.api.errors.OpenlayerInvalidDataException
import com.openlayer.api.models.*
import java.util.Objects
@@ -21,8 +22,8 @@ constructor(
private val perPage: Long?,
private val status: Status?,
private val type: Type?,
- private val additionalQueryParams: Map>,
- private val additionalHeaders: Map>,
+ private val additionalHeaders: Headers,
+ private val additionalQueryParams: QueryParams,
) {
fun projectVersionId(): String = projectVersionId
@@ -37,20 +38,20 @@ constructor(
fun type(): Optional = Optional.ofNullable(type)
+ @JvmSynthetic internal fun getHeaders(): Headers = additionalHeaders
+
@JvmSynthetic
- internal fun getQueryParams(): Map> {
- val params = mutableMapOf>()
- this.includeArchived?.let { params.put("includeArchived", listOf(it.toString())) }
- this.page?.let { params.put("page", listOf(it.toString())) }
- this.perPage?.let { params.put("perPage", listOf(it.toString())) }
- this.status?.let { params.put("status", listOf(it.toString())) }
- this.type?.let { params.put("type", listOf(it.toString())) }
- params.putAll(additionalQueryParams)
- return params.toUnmodifiable()
+ internal fun getQueryParams(): QueryParams {
+ val queryParams = QueryParams.builder()
+ this.includeArchived?.let { queryParams.put("includeArchived", listOf(it.toString())) }
+ this.page?.let { queryParams.put("page", listOf(it.toString())) }
+ this.perPage?.let { queryParams.put("perPage", listOf(it.toString())) }
+ this.status?.let { queryParams.put("status", listOf(it.toString())) }
+ this.type?.let { queryParams.put("type", listOf(it.toString())) }
+ queryParams.putAll(additionalQueryParams)
+ return queryParams.build()
}
- @JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
-
fun getPathParam(index: Int): String {
return when (index) {
0 -> projectVersionId
@@ -58,41 +59,24 @@ constructor(
}
}
- fun _additionalQueryParams(): Map> = additionalQueryParams
+ fun _additionalHeaders(): Headers = additionalHeaders
- fun _additionalHeaders(): Map> = additionalHeaders
+ fun _additionalQueryParams(): QueryParams = additionalQueryParams
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
- return other is CommitTestResultListParams &&
- this.projectVersionId == other.projectVersionId &&
- this.includeArchived == other.includeArchived &&
- this.page == other.page &&
- this.perPage == other.perPage &&
- this.status == other.status &&
- this.type == other.type &&
- this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders
+ return /* spotless:off */ other is CommitTestResultListParams && this.projectVersionId == other.projectVersionId && this.includeArchived == other.includeArchived && this.page == other.page && this.perPage == other.perPage && this.status == other.status && this.type == other.type && this.additionalHeaders == other.additionalHeaders && this.additionalQueryParams == other.additionalQueryParams /* spotless:on */
}
override fun hashCode(): Int {
- return Objects.hash(
- projectVersionId,
- includeArchived,
- page,
- perPage,
- status,
- type,
- additionalQueryParams,
- additionalHeaders,
- )
+ return /* spotless:off */ Objects.hash(projectVersionId, includeArchived, page, perPage, status, type, additionalHeaders, additionalQueryParams) /* spotless:on */
}
override fun toString() =
- "CommitTestResultListParams{projectVersionId=$projectVersionId, includeArchived=$includeArchived, page=$page, perPage=$perPage, status=$status, type=$type, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders}"
+ "CommitTestResultListParams{projectVersionId=$projectVersionId, includeArchived=$includeArchived, page=$page, perPage=$perPage, status=$status, type=$type, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}"
fun toBuilder() = Builder().from(this)
@@ -110,8 +94,8 @@ constructor(
private var perPage: Long? = null
private var status: Status? = null
private var type: Type? = null
- private var additionalQueryParams: MutableMap> = mutableMapOf()
- private var additionalHeaders: MutableMap> = mutableMapOf()
+ private var additionalHeaders: Headers.Builder = Headers.builder()
+ private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
@JvmSynthetic
internal fun from(commitTestResultListParams: CommitTestResultListParams) = apply {
@@ -121,8 +105,8 @@ constructor(
this.perPage = commitTestResultListParams.perPage
this.status = commitTestResultListParams.status
this.type = commitTestResultListParams.type
- additionalQueryParams(commitTestResultListParams.additionalQueryParams)
additionalHeaders(commitTestResultListParams.additionalHeaders)
+ additionalQueryParams(commitTestResultListParams.additionalQueryParams)
}
fun projectVersionId(projectVersionId: String) = apply {
@@ -152,45 +136,103 @@ constructor(
*/
fun type(type: Type) = apply { this.type = type }
- fun additionalQueryParams(additionalQueryParams: Map>) = apply {
- this.additionalQueryParams.clear()
- putAllQueryParams(additionalQueryParams)
+ fun additionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.clear()
+ putAllAdditionalHeaders(additionalHeaders)
}
- fun putQueryParam(name: String, value: String) = apply {
- this.additionalQueryParams.getOrPut(name) { mutableListOf() }.add(value)
+ fun additionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.clear()
+ putAllAdditionalHeaders(additionalHeaders)
}
- fun putQueryParams(name: String, values: Iterable) = apply {
- this.additionalQueryParams.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun putAdditionalHeader(name: String, value: String) = apply {
+ additionalHeaders.put(name, value)
}
- fun putAllQueryParams(additionalQueryParams: Map>) = apply {
- additionalQueryParams.forEach(this::putQueryParams)
+ fun putAdditionalHeaders(name: String, values: Iterable) = apply {
+ additionalHeaders.put(name, values)
}
- fun removeQueryParam(name: String) = apply {
- this.additionalQueryParams.put(name, mutableListOf())
+ fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.putAll(additionalHeaders)
}
- fun additionalHeaders(additionalHeaders: Map>) = apply {
- this.additionalHeaders.clear()
- putAllHeaders(additionalHeaders)
+ fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.putAll(additionalHeaders)
}
- fun putHeader(name: String, value: String) = apply {
- this.additionalHeaders.getOrPut(name) { mutableListOf() }.add(value)
+ fun replaceAdditionalHeaders(name: String, value: String) = apply {
+ additionalHeaders.replace(name, value)
}
- fun putHeaders(name: String, values: Iterable) = apply {
- this.additionalHeaders.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
+ additionalHeaders.replace(name, values)
}
- fun putAllHeaders(additionalHeaders: Map>) = apply {
- additionalHeaders.forEach(this::putHeaders)
+ fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
+ fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.replaceAll(additionalHeaders)
+ }
+
+ fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
+
+ fun removeAllAdditionalHeaders(names: Set) = apply {
+ additionalHeaders.removeAll(names)
+ }
+
+ fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ this.additionalQueryParams.clear()
+ putAllAdditionalQueryParams(additionalQueryParams)
+ }
+
+ fun additionalQueryParams(additionalQueryParams: Map>) = apply {
+ this.additionalQueryParams.clear()
+ putAllAdditionalQueryParams(additionalQueryParams)
+ }
+
+ fun putAdditionalQueryParam(key: String, value: String) = apply {
+ additionalQueryParams.put(key, value)
+ }
+
+ fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
+ additionalQueryParams.put(key, values)
+ }
+
+ fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ this.additionalQueryParams.putAll(additionalQueryParams)
+ }
+
+ fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ apply {
+ this.additionalQueryParams.putAll(additionalQueryParams)
+ }
+
+ fun replaceAdditionalQueryParams(key: String, value: String) = apply {
+ additionalQueryParams.replace(key, value)
+ }
+
+ fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
+ additionalQueryParams.replace(key, values)
+ }
+
+ fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ this.additionalQueryParams.replaceAll(additionalQueryParams)
+ }
+
+ fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ apply {
+ this.additionalQueryParams.replaceAll(additionalQueryParams)
+ }
+
+ fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
+
+ fun removeAllAdditionalQueryParams(keys: Set) = apply {
+ additionalQueryParams.removeAll(keys)
+ }
fun build(): CommitTestResultListParams =
CommitTestResultListParams(
@@ -200,8 +242,8 @@ constructor(
perPage,
status,
type,
- additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
+ additionalHeaders.build(),
+ additionalQueryParams.build(),
)
}
@@ -218,7 +260,7 @@ constructor(
return true
}
- return other is Status && this.value == other.value
+ return /* spotless:off */ other is Status && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
@@ -293,7 +335,7 @@ constructor(
return true
}
- return other is Type && this.value == other.value
+ return /* spotless:off */ other is Type && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
index 9c6554a..be9a40d 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/CommitTestResultListResponse.kt
@@ -22,7 +22,7 @@ import com.openlayer.api.core.JsonMissing
import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
import com.openlayer.api.core.getOrThrow
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.toImmutable
import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.time.OffsetDateTime
import java.util.Objects
@@ -38,8 +38,6 @@ private constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
fun items(): List- = items.getRequired("items")
@JsonProperty("items") @ExcludeMissing fun _items() = items
@@ -57,26 +55,6 @@ private constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is CommitTestResultListResponse &&
- this.items == other.items &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode = Objects.hash(items, additionalProperties)
- }
- return hashCode
- }
-
- override fun toString() =
- "CommitTestResultListResponse{items=$items, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -115,8 +93,8 @@ private constructor(
fun build(): CommitTestResultListResponse =
CommitTestResultListResponse(
- items.map { it.toUnmodifiable() },
- additionalProperties.toUnmodifiable()
+ items.map { it.toImmutable() },
+ additionalProperties.toImmutable()
)
}
@@ -140,8 +118,6 @@ private constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/** Project version (commit) id. */
fun id(): String = id.getRequired("id")
@@ -236,50 +212,6 @@ private constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is Item &&
- this.id == other.id &&
- this.goal == other.goal &&
- this.goalId == other.goalId &&
- this.projectVersionId == other.projectVersionId &&
- this.inferencePipelineId == other.inferencePipelineId &&
- this.dateCreated == other.dateCreated &&
- this.dateUpdated == other.dateUpdated &&
- this.dateDataStarts == other.dateDataStarts &&
- this.dateDataEnds == other.dateDataEnds &&
- this.status == other.status &&
- this.statusMessage == other.statusMessage &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- id,
- goal,
- goalId,
- projectVersionId,
- inferencePipelineId,
- dateCreated,
- dateUpdated,
- dateDataStarts,
- dateDataEnds,
- status,
- statusMessage,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "Item{id=$id, goal=$goal, goalId=$goalId, projectVersionId=$projectVersionId, inferencePipelineId=$inferencePipelineId, dateCreated=$dateCreated, dateUpdated=$dateUpdated, dateDataStarts=$dateDataStarts, dateDataEnds=$dateDataEnds, status=$status, statusMessage=$statusMessage, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -447,7 +379,7 @@ private constructor(
dateDataEnds,
status,
statusMessage,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
@@ -464,7 +396,7 @@ private constructor(
return true
}
- return other is Status && this.value == other.value
+ return /* spotless:off */ other is Status && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
@@ -557,8 +489,6 @@ private constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/** The test id. */
fun id(): String = id.getRequired("id")
@@ -742,72 +672,6 @@ private constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is Goal &&
- this.id == other.id &&
- this.number == other.number &&
- this.name == other.name &&
- this.dateCreated == other.dateCreated &&
- this.dateUpdated == other.dateUpdated &&
- this.description == other.description &&
- this.evaluationWindow == other.evaluationWindow &&
- this.delayWindow == other.delayWindow &&
- this.type == other.type &&
- this.subtype == other.subtype &&
- this.creatorId == other.creatorId &&
- this.originProjectVersionId == other.originProjectVersionId &&
- this.thresholds == other.thresholds &&
- this.archived == other.archived &&
- this.dateArchived == other.dateArchived &&
- this.suggested == other.suggested &&
- this.commentCount == other.commentCount &&
- this.usesMlModel == other.usesMlModel &&
- this.usesValidationDataset == other.usesValidationDataset &&
- this.usesTrainingDataset == other.usesTrainingDataset &&
- this.usesReferenceDataset == other.usesReferenceDataset &&
- this.usesProductionData == other.usesProductionData &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- id,
- number,
- name,
- dateCreated,
- dateUpdated,
- description,
- evaluationWindow,
- delayWindow,
- type,
- subtype,
- creatorId,
- originProjectVersionId,
- thresholds,
- archived,
- dateArchived,
- suggested,
- commentCount,
- usesMlModel,
- usesValidationDataset,
- usesTrainingDataset,
- usesReferenceDataset,
- usesProductionData,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "Goal{id=$id, number=$number, name=$name, dateCreated=$dateCreated, dateUpdated=$dateUpdated, description=$description, evaluationWindow=$evaluationWindow, delayWindow=$delayWindow, type=$type, subtype=$subtype, creatorId=$creatorId, originProjectVersionId=$originProjectVersionId, thresholds=$thresholds, archived=$archived, dateArchived=$dateArchived, suggested=$suggested, commentCount=$commentCount, usesMlModel=$usesMlModel, usesValidationDataset=$usesValidationDataset, usesTrainingDataset=$usesTrainingDataset, usesReferenceDataset=$usesReferenceDataset, usesProductionData=$usesProductionData, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -1105,7 +969,7 @@ private constructor(
subtype,
creatorId,
originProjectVersionId,
- thresholds.map { it.toUnmodifiable() },
+ thresholds.map { it.toImmutable() },
archived,
dateArchived,
suggested,
@@ -1115,7 +979,7 @@ private constructor(
usesTrainingDataset,
usesReferenceDataset,
usesProductionData,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
@@ -1133,8 +997,6 @@ private constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/** The measurement to be evaluated. */
fun measurement(): Optional =
Optional.ofNullable(measurement.getNullable("measurement"))
@@ -1186,38 +1048,6 @@ private constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is Threshold &&
- this.measurement == other.measurement &&
- this.insightName == other.insightName &&
- this.insightParameters == other.insightParameters &&
- this.operator == other.operator &&
- this.value == other.value &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- measurement,
- insightName,
- insightParameters,
- operator,
- value,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "Threshold{measurement=$measurement, insightName=$insightName, insightParameters=$insightParameters, operator=$operator, value=$value, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -1306,10 +1136,10 @@ private constructor(
Threshold(
measurement,
insightName,
- insightParameters.map { it.toUnmodifiable() },
+ insightParameters.map { it.toImmutable() },
operator,
value,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
@@ -1317,8 +1147,8 @@ private constructor(
@JsonSerialize(using = Value.Serializer::class)
class Value
private constructor(
- private val double: Double? = null,
- private val boolean: Boolean? = null,
+ private val number: Double? = null,
+ private val bool: Boolean? = null,
private val string: String? = null,
private val strings: List? = null,
private val _json: JsonValue? = null,
@@ -1326,25 +1156,25 @@ private constructor(
private var validated: Boolean = false
- fun double(): Optional = Optional.ofNullable(double)
+ fun number(): Optional = Optional.ofNullable(number)
- fun boolean(): Optional = Optional.ofNullable(boolean)
+ fun bool(): Optional = Optional.ofNullable(bool)
fun string(): Optional = Optional.ofNullable(string)
fun strings(): Optional
> = Optional.ofNullable(strings)
- fun isDouble(): Boolean = double != null
+ fun isNumber(): Boolean = number != null
- fun isBoolean(): Boolean = boolean != null
+ fun isBool(): Boolean = bool != null
fun isString(): Boolean = string != null
fun isStrings(): Boolean = strings != null
- fun asDouble(): Double = double.getOrThrow("double")
+ fun asNumber(): Double = number.getOrThrow("number")
- fun asBoolean(): Boolean = boolean.getOrThrow("boolean")
+ fun asBool(): Boolean = bool.getOrThrow("bool")
fun asString(): String = string.getOrThrow("string")
@@ -1354,8 +1184,8 @@ private constructor(
fun accept(visitor: Visitor): T {
return when {
- double != null -> visitor.visitDouble(double)
- boolean != null -> visitor.visitBoolean(boolean)
+ number != null -> visitor.visitNumber(number)
+ bool != null -> visitor.visitBool(bool)
string != null -> visitor.visitString(string)
strings != null -> visitor.visitStrings(strings)
else -> visitor.unknown(_json)
@@ -1365,10 +1195,7 @@ private constructor(
fun validate(): Value = apply {
if (!validated) {
if (
- double == null &&
- boolean == null &&
- string == null &&
- strings == null
+ number == null && bool == null && string == null && strings == null
) {
throw OpenlayerInvalidDataException("Unknown Value: $_json")
}
@@ -1381,26 +1208,17 @@ private constructor(
return true
}
- return other is Value &&
- this.double == other.double &&
- this.boolean == other.boolean &&
- this.string == other.string &&
- this.strings == other.strings
+ return /* spotless:off */ other is Value && this.number == other.number && this.bool == other.bool && this.string == other.string && this.strings == other.strings /* spotless:on */
}
override fun hashCode(): Int {
- return Objects.hash(
- double,
- boolean,
- string,
- strings,
- )
+ return /* spotless:off */ Objects.hash(number, bool, string, strings) /* spotless:on */
}
override fun toString(): String {
return when {
- double != null -> "Value{double=$double}"
- boolean != null -> "Value{boolean=$boolean}"
+ number != null -> "Value{number=$number}"
+ bool != null -> "Value{bool=$bool}"
string != null -> "Value{string=$string}"
strings != null -> "Value{strings=$strings}"
_json != null -> "Value{_unknown=$_json}"
@@ -1410,9 +1228,9 @@ private constructor(
companion object {
- @JvmStatic fun ofDouble(double: Double) = Value(double = double)
+ @JvmStatic fun ofNumber(number: Double) = Value(number = number)
- @JvmStatic fun ofBoolean(boolean: Boolean) = Value(boolean = boolean)
+ @JvmStatic fun ofBool(bool: Boolean) = Value(bool = bool)
@JvmStatic fun ofString(string: String) = Value(string = string)
@@ -1421,9 +1239,9 @@ private constructor(
interface Visitor {
- fun visitDouble(double: Double): T
+ fun visitNumber(number: Double): T
- fun visitBoolean(boolean: Boolean): T
+ fun visitBool(bool: Boolean): T
fun visitString(string: String): T
@@ -1438,11 +1256,12 @@ private constructor(
override fun ObjectCodec.deserialize(node: JsonNode): Value {
val json = JsonValue.fromJsonNode(node)
+
tryDeserialize(node, jacksonTypeRef())?.let {
- return Value(double = it, _json = json)
+ return Value(number = it, _json = json)
}
tryDeserialize(node, jacksonTypeRef())?.let {
- return Value(boolean = it, _json = json)
+ return Value(bool = it, _json = json)
}
tryDeserialize(node, jacksonTypeRef())?.let {
return Value(string = it, _json = json)
@@ -1463,8 +1282,8 @@ private constructor(
provider: SerializerProvider
) {
when {
- value.double != null -> generator.writeObject(value.double)
- value.boolean != null -> generator.writeObject(value.boolean)
+ value.number != null -> generator.writeObject(value.number)
+ value.bool != null -> generator.writeObject(value.bool)
value.string != null -> generator.writeObject(value.string)
value.strings != null -> generator.writeObject(value.strings)
value._json != null -> generator.writeObject(value._json)
@@ -1473,7 +1292,87 @@ private constructor(
}
}
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is Threshold && this.measurement == other.measurement && this.insightName == other.insightName && this.insightParameters == other.insightParameters && this.operator == other.operator && this.value == other.value && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(measurement, insightName, insightParameters, operator, value, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "Threshold{measurement=$measurement, insightName=$insightName, insightParameters=$insightParameters, operator=$operator, value=$value, additionalProperties=$additionalProperties}"
+ }
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is Goal && this.id == other.id && this.number == other.number && this.name == other.name && this.dateCreated == other.dateCreated && this.dateUpdated == other.dateUpdated && this.description == other.description && this.evaluationWindow == other.evaluationWindow && this.delayWindow == other.delayWindow && this.type == other.type && this.subtype == other.subtype && this.creatorId == other.creatorId && this.originProjectVersionId == other.originProjectVersionId && this.thresholds == other.thresholds && this.archived == other.archived && this.dateArchived == other.dateArchived && this.suggested == other.suggested && this.commentCount == other.commentCount && this.usesMlModel == other.usesMlModel && this.usesValidationDataset == other.usesValidationDataset && this.usesTrainingDataset == other.usesTrainingDataset && this.usesReferenceDataset == other.usesReferenceDataset && this.usesProductionData == other.usesProductionData && this.additionalProperties == other.additionalProperties /* spotless:on */
}
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(id, number, name, dateCreated, dateUpdated, description, evaluationWindow, delayWindow, type, subtype, creatorId, originProjectVersionId, thresholds, archived, dateArchived, suggested, commentCount, usesMlModel, usesValidationDataset, usesTrainingDataset, usesReferenceDataset, usesProductionData, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "Goal{id=$id, number=$number, name=$name, dateCreated=$dateCreated, dateUpdated=$dateUpdated, description=$description, evaluationWindow=$evaluationWindow, delayWindow=$delayWindow, type=$type, subtype=$subtype, creatorId=$creatorId, originProjectVersionId=$originProjectVersionId, thresholds=$thresholds, archived=$archived, dateArchived=$dateArchived, suggested=$suggested, commentCount=$commentCount, usesMlModel=$usesMlModel, usesValidationDataset=$usesValidationDataset, usesTrainingDataset=$usesTrainingDataset, usesReferenceDataset=$usesReferenceDataset, usesProductionData=$usesProductionData, additionalProperties=$additionalProperties}"
+ }
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is Item && this.id == other.id && this.goal == other.goal && this.goalId == other.goalId && this.projectVersionId == other.projectVersionId && this.inferencePipelineId == other.inferencePipelineId && this.dateCreated == other.dateCreated && this.dateUpdated == other.dateUpdated && this.dateDataStarts == other.dateDataStarts && this.dateDataEnds == other.dateDataEnds && this.status == other.status && this.statusMessage == other.statusMessage && this.additionalProperties == other.additionalProperties /* spotless:on */
}
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(id, goal, goalId, projectVersionId, inferencePipelineId, dateCreated, dateUpdated, dateDataStarts, dateDataEnds, status, statusMessage, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "Item{id=$id, goal=$goal, goalId=$goalId, projectVersionId=$projectVersionId, inferencePipelineId=$inferencePipelineId, dateCreated=$dateCreated, dateUpdated=$dateUpdated, dateDataStarts=$dateDataStarts, dateDataEnds=$dateDataEnds, status=$status, statusMessage=$statusMessage, additionalProperties=$additionalProperties}"
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is CommitTestResultListResponse && this.items == other.items && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(items, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "CommitTestResultListResponse{items=$items, additionalProperties=$additionalProperties}"
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
index 62d6be9..e30f47a 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamParams.kt
@@ -20,7 +20,9 @@ import com.openlayer.api.core.JsonMissing
import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
import com.openlayer.api.core.getOrThrow
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.http.Headers
+import com.openlayer.api.core.http.QueryParams
+import com.openlayer.api.core.toImmutable
import com.openlayer.api.errors.OpenlayerInvalidDataException
import com.openlayer.api.models.*
import java.util.Objects
@@ -31,8 +33,8 @@ constructor(
private val inferencePipelineId: String,
private val config: Config,
private val rows: List,
- private val additionalQueryParams: Map>,
- private val additionalHeaders: Map>,
+ private val additionalHeaders: Headers,
+ private val additionalQueryParams: QueryParams,
private val additionalBodyProperties: Map,
) {
@@ -51,9 +53,9 @@ constructor(
)
}
- @JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
+ @JvmSynthetic internal fun getHeaders(): Headers = additionalHeaders
- @JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
+ @JvmSynthetic internal fun getQueryParams(): QueryParams = additionalQueryParams
fun getPathParam(index: Int): String {
return when (index) {
@@ -71,8 +73,6 @@ constructor(
private val additionalProperties: Map,
) {
- private var hashCode: Int = 0
-
/** Configuration for the data stream. Depends on your **Openlayer project task type**. */
@JsonProperty("config") fun config(): Config? = config
@@ -85,32 +85,6 @@ constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is InferencePipelineDataStreamBody &&
- this.config == other.config &&
- this.rows == other.rows &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- config,
- rows,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "InferencePipelineDataStreamBody{config=$config, rows=$rows, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -155,15 +129,35 @@ constructor(
fun build(): InferencePipelineDataStreamBody =
InferencePipelineDataStreamBody(
checkNotNull(config) { "`config` is required but was not set" },
- checkNotNull(rows) { "`rows` is required but was not set" }.toUnmodifiable(),
- additionalProperties.toUnmodifiable(),
+ checkNotNull(rows) { "`rows` is required but was not set" }.toImmutable(),
+ additionalProperties.toImmutable(),
)
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is InferencePipelineDataStreamBody && this.config == other.config && this.rows == other.rows && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(config, rows, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "InferencePipelineDataStreamBody{config=$config, rows=$rows, additionalProperties=$additionalProperties}"
}
- fun _additionalQueryParams(): Map> = additionalQueryParams
+ fun _additionalHeaders(): Headers = additionalHeaders
- fun _additionalHeaders(): Map> = additionalHeaders
+ fun _additionalQueryParams(): QueryParams = additionalQueryParams
fun _additionalBodyProperties(): Map = additionalBodyProperties
@@ -172,28 +166,15 @@ constructor(
return true
}
- return other is InferencePipelineDataStreamParams &&
- this.inferencePipelineId == other.inferencePipelineId &&
- this.config == other.config &&
- this.rows == other.rows &&
- this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ return /* spotless:off */ other is InferencePipelineDataStreamParams && this.inferencePipelineId == other.inferencePipelineId && this.config == other.config && this.rows == other.rows && this.additionalHeaders == other.additionalHeaders && this.additionalQueryParams == other.additionalQueryParams && this.additionalBodyProperties == other.additionalBodyProperties /* spotless:on */
}
override fun hashCode(): Int {
- return Objects.hash(
- inferencePipelineId,
- config,
- rows,
- additionalQueryParams,
- additionalHeaders,
- additionalBodyProperties,
- )
+ return /* spotless:off */ Objects.hash(inferencePipelineId, config, rows, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */
}
override fun toString() =
- "InferencePipelineDataStreamParams{inferencePipelineId=$inferencePipelineId, config=$config, rows=$rows, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "InferencePipelineDataStreamParams{inferencePipelineId=$inferencePipelineId, config=$config, rows=$rows, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
@@ -208,8 +189,8 @@ constructor(
private var inferencePipelineId: String? = null
private var config: Config? = null
private var rows: MutableList = mutableListOf()
- private var additionalQueryParams: MutableMap> = mutableMapOf()
- private var additionalHeaders: MutableMap> = mutableMapOf()
+ private var additionalHeaders: Headers.Builder = Headers.builder()
+ private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
@@ -218,8 +199,8 @@ constructor(
this.inferencePipelineId = inferencePipelineDataStreamParams.inferencePipelineId
this.config = inferencePipelineDataStreamParams.config
this.rows(inferencePipelineDataStreamParams.rows)
- additionalQueryParams(inferencePipelineDataStreamParams.additionalQueryParams)
additionalHeaders(inferencePipelineDataStreamParams.additionalHeaders)
+ additionalQueryParams(inferencePipelineDataStreamParams.additionalQueryParams)
additionalBodyProperties(inferencePipelineDataStreamParams.additionalBodyProperties)
}
@@ -257,53 +238,111 @@ constructor(
/** A list of inference data points with inputs and outputs */
fun addRow(row: Row) = apply { this.rows.add(row) }
- fun additionalQueryParams(additionalQueryParams: Map>) = apply {
- this.additionalQueryParams.clear()
- putAllQueryParams(additionalQueryParams)
+ fun additionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.clear()
+ putAllAdditionalHeaders(additionalHeaders)
}
- fun putQueryParam(name: String, value: String) = apply {
- this.additionalQueryParams.getOrPut(name) { mutableListOf() }.add(value)
+ fun additionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.clear()
+ putAllAdditionalHeaders(additionalHeaders)
}
- fun putQueryParams(name: String, values: Iterable) = apply {
- this.additionalQueryParams.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun putAdditionalHeader(name: String, value: String) = apply {
+ additionalHeaders.put(name, value)
}
- fun putAllQueryParams(additionalQueryParams: Map>) = apply {
- additionalQueryParams.forEach(this::putQueryParams)
+ fun putAdditionalHeaders(name: String, values: Iterable) = apply {
+ additionalHeaders.put(name, values)
}
- fun removeQueryParam(name: String) = apply {
- this.additionalQueryParams.put(name, mutableListOf())
+ fun putAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.putAll(additionalHeaders)
}
- fun additionalHeaders(additionalHeaders: Map>) = apply {
- this.additionalHeaders.clear()
- putAllHeaders(additionalHeaders)
+ fun putAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.putAll(additionalHeaders)
+ }
+
+ fun replaceAdditionalHeaders(name: String, value: String) = apply {
+ additionalHeaders.replace(name, value)
+ }
+
+ fun replaceAdditionalHeaders(name: String, values: Iterable) = apply {
+ additionalHeaders.replace(name, values)
+ }
+
+ fun replaceAllAdditionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.replaceAll(additionalHeaders)
+ }
+
+ fun replaceAllAdditionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.replaceAll(additionalHeaders)
}
- fun putHeader(name: String, value: String) = apply {
- this.additionalHeaders.getOrPut(name) { mutableListOf() }.add(value)
+ fun removeAdditionalHeaders(name: String) = apply { additionalHeaders.remove(name) }
+
+ fun removeAllAdditionalHeaders(names: Set) = apply {
+ additionalHeaders.removeAll(names)
+ }
+
+ fun additionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ this.additionalQueryParams.clear()
+ putAllAdditionalQueryParams(additionalQueryParams)
+ }
+
+ fun additionalQueryParams(additionalQueryParams: Map>) = apply {
+ this.additionalQueryParams.clear()
+ putAllAdditionalQueryParams(additionalQueryParams)
}
- fun putHeaders(name: String, values: Iterable) = apply {
- this.additionalHeaders.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun putAdditionalQueryParam(key: String, value: String) = apply {
+ additionalQueryParams.put(key, value)
}
- fun putAllHeaders(additionalHeaders: Map>) = apply {
- additionalHeaders.forEach(this::putHeaders)
+ fun putAdditionalQueryParams(key: String, values: Iterable) = apply {
+ additionalQueryParams.put(key, values)
}
- fun removeHeader(name: String) = apply { this.additionalHeaders.put(name, mutableListOf()) }
+ fun putAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ this.additionalQueryParams.putAll(additionalQueryParams)
+ }
+
+ fun putAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ apply {
+ this.additionalQueryParams.putAll(additionalQueryParams)
+ }
+
+ fun replaceAdditionalQueryParams(key: String, value: String) = apply {
+ additionalQueryParams.replace(key, value)
+ }
+
+ fun replaceAdditionalQueryParams(key: String, values: Iterable) = apply {
+ additionalQueryParams.replace(key, values)
+ }
+
+ fun replaceAllAdditionalQueryParams(additionalQueryParams: QueryParams) = apply {
+ this.additionalQueryParams.replaceAll(additionalQueryParams)
+ }
+
+ fun replaceAllAdditionalQueryParams(additionalQueryParams: Map>) =
+ apply {
+ this.additionalQueryParams.replaceAll(additionalQueryParams)
+ }
+
+ fun removeAdditionalQueryParams(key: String) = apply { additionalQueryParams.remove(key) }
+
+ fun removeAllAdditionalQueryParams(keys: Set) = apply {
+ additionalQueryParams.removeAll(keys)
+ }
fun additionalBodyProperties(additionalBodyProperties: Map) = apply {
this.additionalBodyProperties.clear()
- this.additionalBodyProperties.putAll(additionalBodyProperties)
+ putAllAdditionalBodyProperties(additionalBodyProperties)
}
fun putAdditionalBodyProperty(key: String, value: JsonValue) = apply {
- this.additionalBodyProperties.put(key, value)
+ additionalBodyProperties.put(key, value)
}
fun putAllAdditionalBodyProperties(additionalBodyProperties: Map) =
@@ -311,16 +350,24 @@ constructor(
this.additionalBodyProperties.putAll(additionalBodyProperties)
}
+ fun removeAdditionalBodyProperty(key: String) = apply {
+ additionalBodyProperties.remove(key)
+ }
+
+ fun removeAllAdditionalBodyProperties(keys: Set) = apply {
+ keys.forEach(::removeAdditionalBodyProperty)
+ }
+
fun build(): InferencePipelineDataStreamParams =
InferencePipelineDataStreamParams(
checkNotNull(inferencePipelineId) {
"`inferencePipelineId` is required but was not set"
},
checkNotNull(config) { "`config` is required but was not set" },
- checkNotNull(rows) { "`rows` is required but was not set" }.toUnmodifiable(),
- additionalQueryParams.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalHeaders.mapValues { it.value.toUnmodifiable() }.toUnmodifiable(),
- additionalBodyProperties.toUnmodifiable(),
+ checkNotNull(rows) { "`rows` is required but was not set" }.toImmutable(),
+ additionalHeaders.build(),
+ additionalQueryParams.build(),
+ additionalBodyProperties.toImmutable(),
)
}
@@ -405,20 +452,11 @@ constructor(
return true
}
- return other is Config &&
- this.llmData == other.llmData &&
- this.tabularClassificationData == other.tabularClassificationData &&
- this.tabularRegressionData == other.tabularRegressionData &&
- this.textClassificationData == other.textClassificationData
+ return /* spotless:off */ other is Config && this.llmData == other.llmData && this.tabularClassificationData == other.tabularClassificationData && this.tabularRegressionData == other.tabularRegressionData && this.textClassificationData == other.textClassificationData /* spotless:on */
}
override fun hashCode(): Int {
- return Objects.hash(
- llmData,
- tabularClassificationData,
- tabularRegressionData,
- textClassificationData,
- )
+ return /* spotless:off */ Objects.hash(llmData, tabularClassificationData, tabularRegressionData, textClassificationData) /* spotless:on */
}
override fun toString(): String {
@@ -473,6 +511,7 @@ constructor(
override fun ObjectCodec.deserialize(node: JsonNode): Config {
val json = JsonValue.fromJsonNode(node)
+
tryDeserialize(node, jacksonTypeRef()) { it.validate() }
?.let {
return Config(llmData = it, _json = json)
@@ -536,8 +575,6 @@ constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/** Name of the column with the total number of tokens. */
fun numOfTokenColumnName(): Optional =
Optional.ofNullable(numOfTokenColumnName.getNullable("numOfTokenColumnName"))
@@ -681,52 +718,6 @@ constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is LlmData &&
- this.numOfTokenColumnName == other.numOfTokenColumnName &&
- this.contextColumnName == other.contextColumnName &&
- this.costColumnName == other.costColumnName &&
- this.groundTruthColumnName == other.groundTruthColumnName &&
- this.inferenceIdColumnName == other.inferenceIdColumnName &&
- this.inputVariableNames == other.inputVariableNames &&
- this.latencyColumnName == other.latencyColumnName &&
- this.metadata == other.metadata &&
- this.outputColumnName == other.outputColumnName &&
- this.prompt == other.prompt &&
- this.questionColumnName == other.questionColumnName &&
- this.timestampColumnName == other.timestampColumnName &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- numOfTokenColumnName,
- contextColumnName,
- costColumnName,
- groundTruthColumnName,
- inferenceIdColumnName,
- inputVariableNames,
- latencyColumnName,
- metadata,
- outputColumnName,
- prompt,
- questionColumnName,
- timestampColumnName,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "LlmData{numOfTokenColumnName=$numOfTokenColumnName, contextColumnName=$contextColumnName, costColumnName=$costColumnName, groundTruthColumnName=$groundTruthColumnName, inferenceIdColumnName=$inferenceIdColumnName, inputVariableNames=$inputVariableNames, latencyColumnName=$latencyColumnName, metadata=$metadata, outputColumnName=$outputColumnName, prompt=$prompt, questionColumnName=$questionColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -940,14 +931,14 @@ constructor(
costColumnName,
groundTruthColumnName,
inferenceIdColumnName,
- inputVariableNames.map { it.toUnmodifiable() },
+ inputVariableNames.map { it.toImmutable() },
latencyColumnName,
metadata,
outputColumnName,
- prompt.map { it.toUnmodifiable() },
+ prompt.map { it.toImmutable() },
questionColumnName,
timestampColumnName,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
@@ -962,8 +953,6 @@ constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/** Role of the prompt. */
fun role(): Optional = Optional.ofNullable(role.getNullable("role"))
@@ -991,32 +980,6 @@ constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is Prompt &&
- this.role == other.role &&
- this.content == other.content &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- role,
- content,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "Prompt{role=$role, content=$content, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -1070,10 +1033,50 @@ constructor(
Prompt(
role,
content,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is Prompt && this.role == other.role && this.content == other.content && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(role, content, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "Prompt{role=$role, content=$content, additionalProperties=$additionalProperties}"
+ }
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is LlmData && this.numOfTokenColumnName == other.numOfTokenColumnName && this.contextColumnName == other.contextColumnName && this.costColumnName == other.costColumnName && this.groundTruthColumnName == other.groundTruthColumnName && this.inferenceIdColumnName == other.inferenceIdColumnName && this.inputVariableNames == other.inputVariableNames && this.latencyColumnName == other.latencyColumnName && this.metadata == other.metadata && this.outputColumnName == other.outputColumnName && this.prompt == other.prompt && this.questionColumnName == other.questionColumnName && this.timestampColumnName == other.timestampColumnName && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(numOfTokenColumnName, contextColumnName, costColumnName, groundTruthColumnName, inferenceIdColumnName, inputVariableNames, latencyColumnName, metadata, outputColumnName, prompt, questionColumnName, timestampColumnName, additionalProperties) /* spotless:on */
+ }
+ return hashCode
}
+
+ override fun toString() =
+ "LlmData{numOfTokenColumnName=$numOfTokenColumnName, contextColumnName=$contextColumnName, costColumnName=$costColumnName, groundTruthColumnName=$groundTruthColumnName, inferenceIdColumnName=$inferenceIdColumnName, inputVariableNames=$inputVariableNames, latencyColumnName=$latencyColumnName, metadata=$metadata, outputColumnName=$outputColumnName, prompt=$prompt, questionColumnName=$questionColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
}
@JsonDeserialize(builder = TabularClassificationData.Builder::class)
@@ -1095,8 +1098,6 @@ constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/**
* Array with the names of all categorical features in the dataset. E.g.
* ["Age", "Geography"].
@@ -1233,48 +1234,6 @@ constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is TabularClassificationData &&
- this.categoricalFeatureNames == other.categoricalFeatureNames &&
- this.classNames == other.classNames &&
- this.featureNames == other.featureNames &&
- this.inferenceIdColumnName == other.inferenceIdColumnName &&
- this.labelColumnName == other.labelColumnName &&
- this.latencyColumnName == other.latencyColumnName &&
- this.metadata == other.metadata &&
- this.predictionsColumnName == other.predictionsColumnName &&
- this.predictionScoresColumnName == other.predictionScoresColumnName &&
- this.timestampColumnName == other.timestampColumnName &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- categoricalFeatureNames,
- classNames,
- featureNames,
- inferenceIdColumnName,
- labelColumnName,
- latencyColumnName,
- metadata,
- predictionsColumnName,
- predictionScoresColumnName,
- timestampColumnName,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "TabularClassificationData{categoricalFeatureNames=$categoricalFeatureNames, classNames=$classNames, featureNames=$featureNames, inferenceIdColumnName=$inferenceIdColumnName, labelColumnName=$labelColumnName, latencyColumnName=$latencyColumnName, metadata=$metadata, predictionsColumnName=$predictionsColumnName, predictionScoresColumnName=$predictionScoresColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -1470,9 +1429,9 @@ constructor(
fun build(): TabularClassificationData =
TabularClassificationData(
- categoricalFeatureNames.map { it.toUnmodifiable() },
- classNames.map { it.toUnmodifiable() },
- featureNames.map { it.toUnmodifiable() },
+ categoricalFeatureNames.map { it.toImmutable() },
+ classNames.map { it.toImmutable() },
+ featureNames.map { it.toImmutable() },
inferenceIdColumnName,
labelColumnName,
latencyColumnName,
@@ -1480,9 +1439,29 @@ constructor(
predictionsColumnName,
predictionScoresColumnName,
timestampColumnName,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is TabularClassificationData && this.categoricalFeatureNames == other.categoricalFeatureNames && this.classNames == other.classNames && this.featureNames == other.featureNames && this.inferenceIdColumnName == other.inferenceIdColumnName && this.labelColumnName == other.labelColumnName && this.latencyColumnName == other.latencyColumnName && this.metadata == other.metadata && this.predictionsColumnName == other.predictionsColumnName && this.predictionScoresColumnName == other.predictionScoresColumnName && this.timestampColumnName == other.timestampColumnName && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(categoricalFeatureNames, classNames, featureNames, inferenceIdColumnName, labelColumnName, latencyColumnName, metadata, predictionsColumnName, predictionScoresColumnName, timestampColumnName, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "TabularClassificationData{categoricalFeatureNames=$categoricalFeatureNames, classNames=$classNames, featureNames=$featureNames, inferenceIdColumnName=$inferenceIdColumnName, labelColumnName=$labelColumnName, latencyColumnName=$latencyColumnName, metadata=$metadata, predictionsColumnName=$predictionsColumnName, predictionScoresColumnName=$predictionScoresColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
}
@JsonDeserialize(builder = TabularRegressionData.Builder::class)
@@ -1502,8 +1481,6 @@ constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/**
* Array with the names of all categorical features in the dataset. E.g.
* ["Gender", "Geography"].
@@ -1605,44 +1582,6 @@ constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is TabularRegressionData &&
- this.categoricalFeatureNames == other.categoricalFeatureNames &&
- this.featureNames == other.featureNames &&
- this.inferenceIdColumnName == other.inferenceIdColumnName &&
- this.latencyColumnName == other.latencyColumnName &&
- this.metadata == other.metadata &&
- this.predictionsColumnName == other.predictionsColumnName &&
- this.targetColumnName == other.targetColumnName &&
- this.timestampColumnName == other.timestampColumnName &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- categoricalFeatureNames,
- featureNames,
- inferenceIdColumnName,
- latencyColumnName,
- metadata,
- predictionsColumnName,
- targetColumnName,
- timestampColumnName,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "TabularRegressionData{categoricalFeatureNames=$categoricalFeatureNames, featureNames=$featureNames, inferenceIdColumnName=$inferenceIdColumnName, latencyColumnName=$latencyColumnName, metadata=$metadata, predictionsColumnName=$predictionsColumnName, targetColumnName=$targetColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -1793,17 +1732,37 @@ constructor(
fun build(): TabularRegressionData =
TabularRegressionData(
- categoricalFeatureNames.map { it.toUnmodifiable() },
- featureNames.map { it.toUnmodifiable() },
+ categoricalFeatureNames.map { it.toImmutable() },
+ featureNames.map { it.toImmutable() },
inferenceIdColumnName,
latencyColumnName,
metadata,
predictionsColumnName,
targetColumnName,
timestampColumnName,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is TabularRegressionData && this.categoricalFeatureNames == other.categoricalFeatureNames && this.featureNames == other.featureNames && this.inferenceIdColumnName == other.inferenceIdColumnName && this.latencyColumnName == other.latencyColumnName && this.metadata == other.metadata && this.predictionsColumnName == other.predictionsColumnName && this.targetColumnName == other.targetColumnName && this.timestampColumnName == other.timestampColumnName && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(categoricalFeatureNames, featureNames, inferenceIdColumnName, latencyColumnName, metadata, predictionsColumnName, targetColumnName, timestampColumnName, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "TabularRegressionData{categoricalFeatureNames=$categoricalFeatureNames, featureNames=$featureNames, inferenceIdColumnName=$inferenceIdColumnName, latencyColumnName=$latencyColumnName, metadata=$metadata, predictionsColumnName=$predictionsColumnName, targetColumnName=$targetColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
}
@JsonDeserialize(builder = TextClassificationData.Builder::class)
@@ -1824,8 +1783,6 @@ constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
/**
* List of class names indexed by label integer in the dataset. E.g.
* ["Retained", "Exited"] when 0, 1 are in your label column.
@@ -1946,46 +1903,6 @@ constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is TextClassificationData &&
- this.classNames == other.classNames &&
- this.inferenceIdColumnName == other.inferenceIdColumnName &&
- this.labelColumnName == other.labelColumnName &&
- this.latencyColumnName == other.latencyColumnName &&
- this.metadata == other.metadata &&
- this.predictionsColumnName == other.predictionsColumnName &&
- this.predictionScoresColumnName == other.predictionScoresColumnName &&
- this.textColumnName == other.textColumnName &&
- this.timestampColumnName == other.timestampColumnName &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode =
- Objects.hash(
- classNames,
- inferenceIdColumnName,
- labelColumnName,
- latencyColumnName,
- metadata,
- predictionsColumnName,
- predictionScoresColumnName,
- textColumnName,
- timestampColumnName,
- additionalProperties,
- )
- }
- return hashCode
- }
-
- override fun toString() =
- "TextClassificationData{classNames=$classNames, inferenceIdColumnName=$inferenceIdColumnName, labelColumnName=$labelColumnName, latencyColumnName=$latencyColumnName, metadata=$metadata, predictionsColumnName=$predictionsColumnName, predictionScoresColumnName=$predictionScoresColumnName, textColumnName=$textColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -2161,7 +2078,7 @@ constructor(
fun build(): TextClassificationData =
TextClassificationData(
- classNames.map { it.toUnmodifiable() },
+ classNames.map { it.toImmutable() },
inferenceIdColumnName,
labelColumnName,
latencyColumnName,
@@ -2170,9 +2087,29 @@ constructor(
predictionScoresColumnName,
textColumnName,
timestampColumnName,
- additionalProperties.toUnmodifiable(),
+ additionalProperties.toImmutable(),
)
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is TextClassificationData && this.classNames == other.classNames && this.inferenceIdColumnName == other.inferenceIdColumnName && this.labelColumnName == other.labelColumnName && this.latencyColumnName == other.latencyColumnName && this.metadata == other.metadata && this.predictionsColumnName == other.predictionsColumnName && this.predictionScoresColumnName == other.predictionScoresColumnName && this.textColumnName == other.textColumnName && this.timestampColumnName == other.timestampColumnName && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(classNames, inferenceIdColumnName, labelColumnName, latencyColumnName, metadata, predictionsColumnName, predictionScoresColumnName, textColumnName, timestampColumnName, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "TextClassificationData{classNames=$classNames, inferenceIdColumnName=$inferenceIdColumnName, labelColumnName=$labelColumnName, latencyColumnName=$latencyColumnName, metadata=$metadata, predictionsColumnName=$predictionsColumnName, predictionScoresColumnName=$predictionScoresColumnName, textColumnName=$textColumnName, timestampColumnName=$timestampColumnName, additionalProperties=$additionalProperties}"
}
}
@@ -2183,31 +2120,12 @@ constructor(
private val additionalProperties: Map,
) {
- private var hashCode: Int = 0
-
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is Row && this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode = Objects.hash(additionalProperties)
- }
- return hashCode
- }
-
- override fun toString() = "Row{additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -2234,7 +2152,26 @@ constructor(
this.additionalProperties.putAll(additionalProperties)
}
- fun build(): Row = Row(additionalProperties.toUnmodifiable())
+ fun build(): Row = Row(additionalProperties.toImmutable())
+ }
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is Row && this.additionalProperties == other.additionalProperties /* spotless:on */
}
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() = "Row{additionalProperties=$additionalProperties}"
}
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
index 087ceda..3d53c52 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDataStreamResponse.kt
@@ -13,7 +13,7 @@ import com.openlayer.api.core.JsonField
import com.openlayer.api.core.JsonMissing
import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.toImmutable
import com.openlayer.api.errors.OpenlayerInvalidDataException
import java.util.Objects
@@ -27,8 +27,6 @@ private constructor(
private var validated: Boolean = false
- private var hashCode: Int = 0
-
fun success(): Success = success.getRequired("success")
@JsonProperty("success") @ExcludeMissing fun _success() = success
@@ -46,26 +44,6 @@ private constructor(
fun toBuilder() = Builder().from(this)
- override fun equals(other: Any?): Boolean {
- if (this === other) {
- return true
- }
-
- return other is InferencePipelineDataStreamResponse &&
- this.success == other.success &&
- this.additionalProperties == other.additionalProperties
- }
-
- override fun hashCode(): Int {
- if (hashCode == 0) {
- hashCode = Objects.hash(success, additionalProperties)
- }
- return hashCode
- }
-
- override fun toString() =
- "InferencePipelineDataStreamResponse{success=$success, additionalProperties=$additionalProperties}"
-
companion object {
@JvmStatic fun builder() = Builder()
@@ -105,7 +83,7 @@ private constructor(
}
fun build(): InferencePipelineDataStreamResponse =
- InferencePipelineDataStreamResponse(success, additionalProperties.toUnmodifiable())
+ InferencePipelineDataStreamResponse(success, additionalProperties.toImmutable())
}
class Success
@@ -121,7 +99,7 @@ private constructor(
return true
}
- return other is Success && this.value == other.value
+ return /* spotless:off */ other is Success && this.value == other.value /* spotless:on */
}
override fun hashCode() = value.hashCode()
@@ -158,4 +136,24 @@ private constructor(
fun asString(): String = _value().asStringOrThrow()
}
+
+ override fun equals(other: Any?): Boolean {
+ if (this === other) {
+ return true
+ }
+
+ return /* spotless:off */ other is InferencePipelineDataStreamResponse && this.success == other.success && this.additionalProperties == other.additionalProperties /* spotless:on */
+ }
+
+ private var hashCode: Int = 0
+
+ override fun hashCode(): Int {
+ if (hashCode == 0) {
+ hashCode = /* spotless:off */ Objects.hash(success, additionalProperties) /* spotless:on */
+ }
+ return hashCode
+ }
+
+ override fun toString() =
+ "InferencePipelineDataStreamResponse{success=$success, additionalProperties=$additionalProperties}"
}
diff --git a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt
index 623bef1..709bf37 100644
--- a/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt
+++ b/openlayer-java-core/src/main/kotlin/com/openlayer/api/models/InferencePipelineDeleteParams.kt
@@ -4,7 +4,9 @@ package com.openlayer.api.models
import com.openlayer.api.core.JsonValue
import com.openlayer.api.core.NoAutoDetect
-import com.openlayer.api.core.toUnmodifiable
+import com.openlayer.api.core.http.Headers
+import com.openlayer.api.core.http.QueryParams
+import com.openlayer.api.core.toImmutable
import com.openlayer.api.models.*
import java.util.Objects
import java.util.Optional
@@ -12,8 +14,8 @@ import java.util.Optional
class InferencePipelineDeleteParams
constructor(
private val inferencePipelineId: String,
- private val additionalQueryParams: Map>,
- private val additionalHeaders: Map>,
+ private val additionalHeaders: Headers,
+ private val additionalQueryParams: QueryParams,
private val additionalBodyProperties: Map,
) {
@@ -24,9 +26,9 @@ constructor(
return Optional.ofNullable(additionalBodyProperties.ifEmpty { null })
}
- @JvmSynthetic internal fun getQueryParams(): Map> = additionalQueryParams
+ @JvmSynthetic internal fun getHeaders(): Headers = additionalHeaders
- @JvmSynthetic internal fun getHeaders(): Map> = additionalHeaders
+ @JvmSynthetic internal fun getQueryParams(): QueryParams = additionalQueryParams
fun getPathParam(index: Int): String {
return when (index) {
@@ -35,9 +37,9 @@ constructor(
}
}
- fun _additionalQueryParams(): Map> = additionalQueryParams
+ fun _additionalHeaders(): Headers = additionalHeaders
- fun _additionalHeaders(): Map> = additionalHeaders
+ fun _additionalQueryParams(): QueryParams = additionalQueryParams
fun _additionalBodyProperties(): Map = additionalBodyProperties
@@ -46,24 +48,15 @@ constructor(
return true
}
- return other is InferencePipelineDeleteParams &&
- this.inferencePipelineId == other.inferencePipelineId &&
- this.additionalQueryParams == other.additionalQueryParams &&
- this.additionalHeaders == other.additionalHeaders &&
- this.additionalBodyProperties == other.additionalBodyProperties
+ return /* spotless:off */ other is InferencePipelineDeleteParams && this.inferencePipelineId == other.inferencePipelineId && this.additionalHeaders == other.additionalHeaders && this.additionalQueryParams == other.additionalQueryParams && this.additionalBodyProperties == other.additionalBodyProperties /* spotless:on */
}
override fun hashCode(): Int {
- return Objects.hash(
- inferencePipelineId,
- additionalQueryParams,
- additionalHeaders,
- additionalBodyProperties,
- )
+ return /* spotless:off */ Objects.hash(inferencePipelineId, additionalHeaders, additionalQueryParams, additionalBodyProperties) /* spotless:on */
}
override fun toString() =
- "InferencePipelineDeleteParams{inferencePipelineId=$inferencePipelineId, additionalQueryParams=$additionalQueryParams, additionalHeaders=$additionalHeaders, additionalBodyProperties=$additionalBodyProperties}"
+ "InferencePipelineDeleteParams{inferencePipelineId=$inferencePipelineId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams, additionalBodyProperties=$additionalBodyProperties}"
fun toBuilder() = Builder().from(this)
@@ -76,15 +69,15 @@ constructor(
class Builder {
private var inferencePipelineId: String? = null
- private var additionalQueryParams: MutableMap> = mutableMapOf()
- private var additionalHeaders: MutableMap> = mutableMapOf()
+ private var additionalHeaders: Headers.Builder = Headers.builder()
+ private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()
private var additionalBodyProperties: MutableMap = mutableMapOf()
@JvmSynthetic
internal fun from(inferencePipelineDeleteParams: InferencePipelineDeleteParams) = apply {
this.inferencePipelineId = inferencePipelineDeleteParams.inferencePipelineId
- additionalQueryParams(inferencePipelineDeleteParams.additionalQueryParams)
additionalHeaders(inferencePipelineDeleteParams.additionalHeaders)
+ additionalQueryParams(inferencePipelineDeleteParams.additionalQueryParams)
additionalBodyProperties(inferencePipelineDeleteParams.additionalBodyProperties)
}
@@ -92,53 +85,111 @@ constructor(
this.inferencePipelineId = inferencePipelineId
}
- fun additionalQueryParams(additionalQueryParams: Map>) = apply {
- this.additionalQueryParams.clear()
- putAllQueryParams(additionalQueryParams)
+ fun additionalHeaders(additionalHeaders: Headers) = apply {
+ this.additionalHeaders.clear()
+ putAllAdditionalHeaders(additionalHeaders)
}
- fun putQueryParam(name: String, value: String) = apply {
- this.additionalQueryParams.getOrPut(name) { mutableListOf() }.add(value)
+ fun additionalHeaders(additionalHeaders: Map>) = apply {
+ this.additionalHeaders.clear()
+ putAllAdditionalHeaders(additionalHeaders)
}
- fun putQueryParams(name: String, values: Iterable) = apply {
- this.additionalQueryParams.getOrPut(name) { mutableListOf() }.addAll(values)
+ fun putAdditionalHeader(name: String, value: String) = apply {
+ additionalHeaders.put(name, value)
}
- fun putAllQueryParams(additionalQueryParams: Map