-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate some logic from generated code into the runtime library #475
Changes from all commits
768b98c
eb9c8f1
351e28c
7c11415
7f3bd22
4b82096
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
versionOverrides: {} | ||
acceptedBreaks: | ||
"0.12.1": | ||
com.palantir.dialogue:dialogue-apache-hc4-client: [] | ||
com.palantir.dialogue:dialogue-blocking-channels: [] | ||
com.palantir.dialogue:dialogue-core: [] | ||
com.palantir.dialogue:dialogue-httpurlconnection-client: [] | ||
com.palantir.dialogue:dialogue-java-client: [] | ||
com.palantir.dialogue:dialogue-okhttp-client: [] | ||
com.palantir.dialogue:dialogue-serde: [] | ||
com.palantir.dialogue:dialogue-target: | ||
- code: "java.method.addedToInterface" | ||
old: null | ||
new: "method com.palantir.dialogue.Clients com.palantir.dialogue.ConjureRuntime::clients()" | ||
justification: "alpha software, runtime not meant for extension" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
type: improvement | ||
improvement: | ||
description: Migrate some logic from generated code into the runtime library | ||
links: | ||
- https://github.com/palantir/dialogue/pull/475 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* (c) Copyright 2020 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.palantir.conjure.java.dialogue.serde; | ||
|
||
import com.google.common.util.concurrent.Futures; | ||
import com.google.common.util.concurrent.ListenableFuture; | ||
import com.google.common.util.concurrent.MoreExecutors; | ||
import com.palantir.dialogue.Channel; | ||
import com.palantir.dialogue.Clients; | ||
import com.palantir.dialogue.Deserializer; | ||
import com.palantir.dialogue.Endpoint; | ||
import com.palantir.dialogue.RemoteExceptions; | ||
import com.palantir.dialogue.Request; | ||
|
||
/** Package private internal API. */ | ||
enum DefaultClients implements Clients { | ||
INSTANCE; | ||
|
||
@Override | ||
public <T> ListenableFuture<T> call( | ||
Channel channel, Endpoint endpoint, Request request, Deserializer<T> deserializer) { | ||
return Futures.transform( | ||
channel.execute(endpoint, request), deserializer::deserialize, MoreExecutors.directExecutor()); | ||
} | ||
|
||
@Override | ||
public <T> T block(ListenableFuture<T> future) { | ||
// TODO(ckozak): remove RemoteExceptions from the codegen target module. | ||
return RemoteExceptions.getUnchecked(future); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
import com.google.common.collect.ImmutableList; | ||
import com.google.errorprone.annotations.CanIgnoreReturnValue; | ||
import com.palantir.dialogue.BodySerDe; | ||
import com.palantir.dialogue.Clients; | ||
import com.palantir.dialogue.ConjureRuntime; | ||
import com.palantir.dialogue.PlainSerDe; | ||
import com.palantir.logsafe.Preconditions; | ||
|
@@ -52,6 +53,11 @@ public PlainSerDe plainSerDe() { | |
return ConjurePlainSerDe.INSTANCE; | ||
} | ||
|
||
@Override | ||
public Clients clients() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thoughts on naming? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like it! |
||
return DefaultClients.INSTANCE; | ||
} | ||
|
||
public static final class Builder { | ||
|
||
private final List<Encoding> encodings = new ArrayList<>(); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* (c) Copyright 2020 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.palantir.conjure.java.dialogue.serde; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.ArgumentMatchers.eq; | ||
import static org.mockito.Mockito.when; | ||
|
||
import com.google.common.util.concurrent.ListenableFuture; | ||
import com.google.common.util.concurrent.SettableFuture; | ||
import com.palantir.dialogue.Channel; | ||
import com.palantir.dialogue.Deserializer; | ||
import com.palantir.dialogue.Endpoint; | ||
import com.palantir.dialogue.Request; | ||
import com.palantir.dialogue.Response; | ||
import java.util.concurrent.ExecutionException; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does this project not use junit-jupiter? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. correct |
||
public final class DefaultClientsTest { | ||
|
||
@Mock | ||
private Channel channel; | ||
|
||
@Mock | ||
private Endpoint endpoint; | ||
|
||
@Mock | ||
private Response response; | ||
|
||
@Mock | ||
private Deserializer<String> deserializer; | ||
|
||
@Test | ||
public void testCall() throws ExecutionException, InterruptedException { | ||
Request request = Request.builder().build(); | ||
when(deserializer.deserialize(eq(response))).thenReturn("value"); | ||
SettableFuture<Response> responseFuture = SettableFuture.create(); | ||
when(channel.execute(eq(endpoint), eq(request))).thenReturn(responseFuture); | ||
ListenableFuture<String> result = DefaultClients.INSTANCE.call(channel, endpoint, request, deserializer); | ||
assertThat(result).isNotDone(); | ||
responseFuture.set(response); | ||
assertThat(result).isDone(); | ||
assertThat(result.get()).isEqualTo("value"); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* (c) Copyright 2020 Palantir Technologies Inc. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.palantir.dialogue; | ||
|
||
import com.google.common.util.concurrent.ListenableFuture; | ||
import java.util.concurrent.Future; | ||
|
||
/** | ||
* Provides functionality for generated code to make both blocking and asynchronous calls without | ||
* duplicating logic. | ||
*/ | ||
public interface Clients { | ||
|
||
/** | ||
* Makes a request to the specified {@link Endpoint} and deserializes the response using a provided deserializer. | ||
*/ | ||
<T> ListenableFuture<T> call(Channel channel, Endpoint endpoint, Request request, Deserializer<T> deserializer); | ||
|
||
/** | ||
* Similar to {@link com.google.common.util.concurrent.Futures#getUnchecked(Future)}, except with custom handling | ||
* for conjure exceptions and cancellation on interruption. | ||
*/ | ||
<T> T block(ListenableFuture<T> future); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the serde package+module don't make a great deal of sense for the entire runtime object, but I'm not going to couple changing that with this PR.