Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

api: Add java.time.Duration overloads to CallOptions, AbstractStub #11562

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ab97045
SynchronizationContextTest changes for scheduleFixedDelay with Duration
SreeramdasLavanya Sep 20, 2024
fef4c92
Revert "SynchronizationContextTest changes for scheduleFixedDelay wit…
SreeramdasLavanya Sep 20, 2024
6a713ed
SynchronizationContextTest changes for scheduleFixedDelay with Duration
SreeramdasLavanya Sep 20, 2024
db6c21f
SynchronizationContextTest checkstyle issues updated for issue10245
SreeramdasLavanya Sep 23, 2024
778cfb4
Merge branch 'grpc:master' into master
SreeramdasLavanya Sep 23, 2024
328bcbf
Merge branch 'grpc:master' into master
SreeramdasLavanya Sep 24, 2024
6a66054
Merge branch 'grpc:master' into master
SreeramdasLavanya Sep 26, 2024
84a37e9
Issue 10245 fix for long, TimeUnit to java.time.Duration to API's
SreeramdasLavanya Sep 26, 2024
c1090b7
Issue 10245 - Fixed Checkstyle issues
SreeramdasLavanya Sep 26, 2024
6c56aae
Issue 10245 - Fixed Checkstyle issues
SreeramdasLavanya Sep 26, 2024
4113845
Merge branch 'grpc:master' into master
SreeramdasLavanya Oct 1, 2024
4531bc2
Issue 10245 - Reverted java.time.Duration changes for Deadline and De…
SreeramdasLavanya Oct 2, 2024
09c3509
Merge branch 'grpc:master' into master
SreeramdasLavanya Oct 8, 2024
bd5a80a
Issue 10245 - Implementation for Duration.toNanos() changes
SreeramdasLavanya Oct 8, 2024
e64f659
grpc-api/stub: Implementation for InternalTimeUtil under grpc-api module
SreeramdasLavanya Oct 9, 2024
0b6c594
grpc-api/stub: Added JUnit for the InternalTimeUtils changes
SreeramdasLavanya Oct 9, 2024
4d0aa82
Merge branch 'master' into FixIssue10245
SreeramdasLavanya Oct 9, 2024
62a88ec
Merge branch 'grpc:master' into master
SreeramdasLavanya Oct 9, 2024
b905dfa
Merge branch 'master' into FixIssue10245
SreeramdasLavanya Oct 9, 2024
eb66fe5
grpc-api/stub: Modified JUnit for the InternalTimeUtils changes
SreeramdasLavanya Oct 9, 2024
e76d673
grpc-api: Whitespace formatting for unrelated code
SreeramdasLavanya Oct 15, 2024
f01209b
grpc-api: Whitespace formatting for unrelated code and Reverted stati…
SreeramdasLavanya Oct 16, 2024
de2e185
grpc-api: Reverted static import for InternalTimeUtils.convert method
SreeramdasLavanya Oct 16, 2024
7207da8
grpc-api/stub: Renamed InternalTimeUtils to TimeUtils and its effecte…
SreeramdasLavanya Oct 16, 2024
bf6c521
grpc-api: Formatted whitespaces
SreeramdasLavanya Oct 17, 2024
af01908
grpc-api/stub: Renamed convert() method to convertToNanos()
SreeramdasLavanya Oct 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions api/src/main/java/io/grpc/CallOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@
package io.grpc;

import static com.google.common.base.Preconditions.checkArgument;
import static io.grpc.InternalTimeUtils.convert;

import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
Expand Down Expand Up @@ -176,6 +178,10 @@ public CallOptions withDeadlineAfter(long duration, TimeUnit unit) {
return withDeadline(Deadline.after(duration, unit));
}

public CallOptions withDeadlineAfter(Duration duration) {
return withDeadlineAfter(convert(duration), TimeUnit.NANOSECONDS);
}

/**
* Returns the deadline or {@code null} if the deadline is not set.
*/
Expand Down
30 changes: 30 additions & 0 deletions api/src/main/java/io/grpc/InternalTimeUtils.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* Copyright 2024 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* 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 io.grpc;

import java.time.Duration;

@Internal
Copy link
Contributor

Choose a reason for hiding this comment

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

@internal is used to mark certain classes as should not be used by user code. This class being just a util helper, there is no need to mark it as Internal. Also drop the Internal prefix from the class and file name and make it just TimeUtils.

public final class InternalTimeUtils {

Check warning on line 22 in api/src/main/java/io/grpc/InternalTimeUtils.java

View check run for this annotation

Codecov / codecov/patch

api/src/main/java/io/grpc/InternalTimeUtils.java#L22

Added line #L22 was not covered by tests
public static long convert(Duration duration) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Code coverage is not detecting that this method is used from tests for some reason. I don't know if it is unable to detect static import of a function. Can you try removing the static import of InternalTimeUtils.convert in the test class, and import the class only, and use InternalTimeUtils.convert( in the test code and see if the Codecov warning goes away.

try {
return duration.toNanos();
} catch (ArithmeticException tooBig) {
return duration.isNegative() ? Long.MIN_VALUE : Long.MAX_VALUE;
}
}
}
11 changes: 10 additions & 1 deletion api/src/main/java/io/grpc/SynchronizationContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static io.grpc.InternalTimeUtils.convert;

import java.lang.Thread.UncaughtExceptionHandler;
import java.time.Duration;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.Executor;
Expand Down Expand Up @@ -193,6 +195,13 @@ public String toString() {
return new ScheduledHandle(runnable, future);
}

public final ScheduledHandle scheduleWithFixedDelay(
final Runnable task, Duration initialDelay, Duration delay,
ScheduledExecutorService timerService) {
return scheduleWithFixedDelay(task, convert(initialDelay), convert(delay),
TimeUnit.NANOSECONDS, timerService);
}


private static class ManagedRunnable implements Runnable {
final Runnable task;
Expand Down Expand Up @@ -246,4 +255,4 @@ public boolean isPending() {
return !(runnable.hasStarted || runnable.isCancelled);
}
}
}
}
9 changes: 9 additions & 0 deletions api/src/test/java/io/grpc/CallOptionsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import com.google.common.base.Objects;
import io.grpc.ClientStreamTracer.StreamInfo;
import io.grpc.internal.SerializingExecutor;
import java.time.Duration;
import java.util.concurrent.Executor;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -150,6 +151,14 @@ public void withDeadlineAfter() {
assertAbout(deadline()).that(actual).isWithin(10, MILLISECONDS).of(expected);
}

@Test
public void withDeadlineAfterDuration() {
Deadline actual = CallOptions.DEFAULT.withDeadlineAfter(Duration.ofMinutes(1L)).getDeadline();
Deadline expected = Deadline.after(1, MINUTES);

assertAbout(deadline()).that(actual).isWithin(10, MILLISECONDS).of(expected);
}

@Test
public void toStringMatches_noDeadline_default() {
String actual = allSet
Expand Down
56 changes: 56 additions & 0 deletions api/src/test/java/io/grpc/InternalTimeUtilsTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* Copyright 2024 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* 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 io.grpc;

import static io.grpc.InternalTimeUtils.convert;
import static org.junit.Assert.assertEquals;

import java.time.Duration;
import org.junit.Test;

public class InternalTimeUtilsTest {

@Test
public void testConvertNormalDuration() {
Duration duration = Duration.ofSeconds(10);
long expected = 10 * 1_000_000_000L;

assertEquals(expected, convert(duration));
}

@Test
public void testConvertNegativeDuration() {
Duration duration = Duration.ofSeconds(-3);
long expected = -3 * 1_000_000_000L;

assertEquals(expected, convert(duration));
}

@Test
public void testConvertTooLargeDuration() {
Duration duration = Duration.ofSeconds(Long.MAX_VALUE / 1_000_000_000L + 1);

assertEquals(Long.MAX_VALUE, convert(duration));
}

@Test
public void testConvertTooLargeNegativeDuration() {
Duration duration = Duration.ofSeconds(Long.MIN_VALUE / 1_000_000_000L - 1);

assertEquals(Long.MIN_VALUE, convert(duration));
}
}
163 changes: 95 additions & 68 deletions api/src/test/java/io/grpc/SynchronizationContextTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

import com.google.common.util.concurrent.testing.TestingExecutors;
import io.grpc.SynchronizationContext.ScheduledHandle;
import java.time.Duration;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.LinkedBlockingQueue;
Expand Down Expand Up @@ -72,7 +73,7 @@ public void uncaughtException(Thread t, Throwable e) {

@Mock
private Runnable task3;
Copy link
Contributor

Choose a reason for hiding this comment

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

Remove formatting changes in all unrelated places.

Copy link
Contributor

Choose a reason for hiding this comment

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

Can you take care of this comment? @SreeramdasLavanya

Copy link
Contributor

Choose a reason for hiding this comment

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

Whitespace formatting changes are still there in this fie.


@After public void tearDown() {
assertThat(uncaughtErrors).isEmpty();
}
Expand Down Expand Up @@ -105,36 +106,36 @@ public void multiThread() throws Exception {
final AtomicReference<Thread> task2Thread = new AtomicReference<>();

doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) {
task1Thread.set(Thread.currentThread());
task1Running.countDown();
try {
assertTrue(task1Proceed.await(5, TimeUnit.SECONDS));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
return null;
@Override
public Void answer(InvocationOnMock invocation) {
task1Thread.set(Thread.currentThread());
task1Running.countDown();
try {
assertTrue(task1Proceed.await(5, TimeUnit.SECONDS));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}).when(task1).run();
return null;
}
}).when(task1).run();

doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) {
task2Thread.set(Thread.currentThread());
return null;
}
}).when(task2).run();
@Override
public Void answer(InvocationOnMock invocation) {
task2Thread.set(Thread.currentThread());
return null;
}
}).when(task2).run();

Thread sideThread = new Thread() {
@Override
public void run() {
syncContext.executeLater(task1);
task1Added.countDown();
syncContext.drain();
sideThreadDone.countDown();
}
};
@Override
public void run() {
syncContext.executeLater(task1);
task1Added.countDown();
syncContext.drain();
sideThreadDone.countDown();
}
};
sideThread.start();

assertTrue(task1Added.await(5, TimeUnit.SECONDS));
Expand Down Expand Up @@ -162,26 +163,26 @@ public void throwIfNotInThisSynchronizationContext() throws Exception {
final CountDownLatch task1Proceed = new CountDownLatch(1);

doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) {
task1Running.countDown();
syncContext.throwIfNotInThisSynchronizationContext();
try {
assertTrue(task1Proceed.await(5, TimeUnit.SECONDS));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
taskSuccess.set(true);
return null;
@Override
public Void answer(InvocationOnMock invocation) {
task1Running.countDown();
syncContext.throwIfNotInThisSynchronizationContext();
try {
assertTrue(task1Proceed.await(5, TimeUnit.SECONDS));
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}).when(task1).run();
taskSuccess.set(true);
return null;
}
}).when(task1).run();

Thread sideThread = new Thread() {
@Override
public void run() {
syncContext.execute(task1);
}
};
@Override
public void run() {
syncContext.execute(task1);
}
};
sideThread.start();

assertThat(task1Running.await(5, TimeUnit.SECONDS)).isTrue();
Expand Down Expand Up @@ -215,11 +216,11 @@ public void taskThrows() {
InOrder inOrder = inOrder(task1, task2, task3);
final RuntimeException e = new RuntimeException("Simulated");
doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) {
throw e;
}
}).when(task2).run();
@Override
public Void answer(InvocationOnMock invocation) {
throw e;
}
}).when(task2).run();
syncContext.executeLater(task1);
syncContext.executeLater(task2);
syncContext.executeLater(task3);
Expand All @@ -246,6 +247,24 @@ public void schedule() {
verify(task1).run();
}

@Test
public void scheduleWithFixedDelayDuration() {
MockScheduledExecutorService executorService = new MockScheduledExecutorService();
ScheduledHandle handle =
syncContext.scheduleWithFixedDelay(task1, Duration.ofSeconds(10),
Duration.ofSeconds(10), executorService);

assertThat(executorService.delay)
.isEqualTo(executorService.unit.convert(10, TimeUnit.SECONDS));
assertThat(handle.isPending()).isTrue();
verify(task1, never()).run();

executorService.command.run();

assertThat(handle.isPending()).isFalse();
verify(task1).run();
}

@Test
public void scheduleDueImmediately() {
MockScheduledExecutorService executorService = new MockScheduledExecutorService();
Expand Down Expand Up @@ -288,28 +307,28 @@ public void scheduledHandle_cancelRacesWithTimerExpiration() throws Exception {
final CountDownLatch sideThreadDone = new CountDownLatch(1);

doAnswer(new Answer<Void>() {
@Override
public Void answer(InvocationOnMock invocation) {
task1Running.countDown();
try {
ScheduledHandle task2Handle;
assertThat(task2Handle = task2HandleQueue.poll(5, TimeUnit.SECONDS)).isNotNull();
task2Handle.cancel();
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
task1Done.set(true);
return null;
@Override
public Void answer(InvocationOnMock invocation) {
task1Running.countDown();
try {
ScheduledHandle task2Handle;
assertThat(task2Handle = task2HandleQueue.poll(5, TimeUnit.SECONDS)).isNotNull();
task2Handle.cancel();
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}).when(task1).run();
task1Done.set(true);
return null;
}
}).when(task1).run();

Thread sideThread = new Thread() {
@Override
public void run() {
syncContext.execute(task1);
sideThreadDone.countDown();
}
};
@Override
public void run() {
syncContext.execute(task1);
sideThreadDone.countDown();
}
};

ScheduledHandle handle = syncContext.schedule(task2, 10, TimeUnit.NANOSECONDS, executorService);
// This will execute and block in task1
Expand Down Expand Up @@ -357,5 +376,13 @@ static class MockScheduledExecutorService extends ForwardingScheduledExecutorSer
this.unit = unit;
return future = super.schedule(command, delay, unit);
}

@Override public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long intialDelay,
long delay, TimeUnit unit) {
this.command = command;
this.delay = delay;
this.unit = unit;
return future = super.scheduleWithFixedDelay(command, intialDelay, delay, unit);
}
}
}
}
Loading