-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: introduce abstraction for passing window's time clauses
- Loading branch information
1 parent
795fc08
commit bc6bc8d
Showing
16 changed files
with
225 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
ksql-execution/src/main/java/io/confluent/ksql/execution/windows/WindowTimeClause.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright 2020 Confluent Inc. | ||
* | ||
* Licensed under the Confluent Community License (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.confluent.io/confluent-community-license | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package io.confluent.ksql.execution.windows; | ||
|
||
import static java.util.Objects.requireNonNull; | ||
|
||
import com.google.errorprone.annotations.Immutable; | ||
import java.time.Duration; | ||
import java.util.Objects; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
/** | ||
* Pojo for a time clause added to a window expression | ||
*/ | ||
@Immutable | ||
public class WindowTimeClause { | ||
|
||
private final long value; | ||
|
||
private final TimeUnit unit; | ||
|
||
public WindowTimeClause(final long value, final TimeUnit unit) { | ||
this.value = value; | ||
this.unit = requireNonNull(unit, "unit"); | ||
} | ||
|
||
public Duration toDuration() { | ||
return Duration.ofMillis(unit.toMillis(value)); | ||
} | ||
|
||
public String toString() { | ||
return value + " " + unit; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(value, unit); | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
|
||
final WindowTimeClause otherClause = (WindowTimeClause) o; | ||
return otherClause.value == value && otherClause.unit == unit; | ||
} | ||
} |
Oops, something went wrong.