-
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.
feat(client): support list queries in Java client (#5682)
- Loading branch information
Showing
8 changed files
with
398 additions
and
0 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
68 changes: 68 additions & 0 deletions
68
ksqldb-api-client/src/main/java/io/confluent/ksql/api/client/QueryInfo.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,68 @@ | ||
/* | ||
* 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.api.client; | ||
|
||
import java.util.Optional; | ||
|
||
/** | ||
* Metadata for a ksqlDB query. | ||
*/ | ||
public interface QueryInfo { | ||
|
||
enum QueryType { | ||
PERSISTENT, | ||
PUSH | ||
} | ||
|
||
/** | ||
* @return the type of this query | ||
*/ | ||
QueryType getQueryType(); | ||
|
||
/** | ||
* Returns the ID of this query, used for control operations such as terminating the query. | ||
* | ||
* @return the ID of this query | ||
*/ | ||
String getId(); | ||
|
||
/** | ||
* Returns the KSQL statement text corresponding to this query. This text may not be exactly the | ||
* statement submitted in order to start the query, but submitting this statement will result | ||
* in exactly this query. | ||
* | ||
* @return the KSQL statement text | ||
*/ | ||
String getSql(); | ||
|
||
/** | ||
* Returns the name of the sink ksqlDB stream or table that this query writes to, if this query is | ||
* persistent. If this query is a push query, then the returned optional will be empty. | ||
* | ||
* @return the sink ksqlDB stream or table name, if applicable | ||
*/ | ||
Optional<String> getSink(); | ||
|
||
/** | ||
* Returns the name of the Kafka topic that backs the sink ksqlDB stream or table that this query | ||
* writes to, if this query is persistent. If this query is a push query, then the returned | ||
* optional will be empty. | ||
* | ||
* @return the sink Kafka topic name, if applicable | ||
*/ | ||
Optional<String> getSinkTopic(); | ||
|
||
} |
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
100 changes: 100 additions & 0 deletions
100
ksqldb-api-client/src/main/java/io/confluent/ksql/api/client/impl/QueryInfoImpl.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,100 @@ | ||
/* | ||
* 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.api.client.impl; | ||
|
||
import io.confluent.ksql.api.client.QueryInfo; | ||
import java.util.Objects; | ||
import java.util.Optional; | ||
|
||
public class QueryInfoImpl implements QueryInfo { | ||
|
||
private final QueryType queryType; | ||
private final String id; | ||
private final String sql; | ||
private final Optional<String> sinkName; | ||
private final Optional<String> sinkTopicName; | ||
|
||
QueryInfoImpl( | ||
final QueryType queryType, | ||
final String id, | ||
final String sql, | ||
final Optional<String> sinkName, | ||
final Optional<String> sinkTopicName | ||
) { | ||
this.queryType = Objects.requireNonNull(queryType); | ||
this.id = Objects.requireNonNull(id); | ||
this.sql = Objects.requireNonNull(sql); | ||
this.sinkName = Objects.requireNonNull(sinkName); | ||
this.sinkTopicName = Objects.requireNonNull(sinkTopicName); | ||
} | ||
|
||
@Override | ||
public QueryType getQueryType() { | ||
return queryType; | ||
} | ||
|
||
@Override | ||
public String getId() { | ||
return id; | ||
} | ||
|
||
@Override | ||
public String getSql() { | ||
return sql; | ||
} | ||
|
||
@Override | ||
public Optional<String> getSink() { | ||
return sinkName; | ||
} | ||
|
||
@Override | ||
public Optional<String> getSinkTopic() { | ||
return sinkTopicName; | ||
} | ||
|
||
@Override | ||
public boolean equals(final Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
final QueryInfoImpl queryInfo = (QueryInfoImpl) o; | ||
return queryType == queryInfo.queryType | ||
&& id.equals(queryInfo.id) | ||
&& sql.equals(queryInfo.sql) | ||
&& sinkName.equals(queryInfo.sinkName) | ||
&& sinkTopicName.equals(queryInfo.sinkTopicName); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(queryType, id, sql, sinkName, sinkTopicName); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "QueryInfo{" | ||
+ "queryType=" + queryType | ||
+ ", id='" + id + '\'' | ||
+ ", sql='" + sql + '\'' | ||
+ ", sinkName=" + sinkName | ||
+ ", sinkTopicName=" + sinkTopicName | ||
+ '}'; | ||
} | ||
} |
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
Oops, something went wrong.