-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Remove TableInfo hierarchy, add TableType hierarchy #600
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c010bc8
Remove TableInfo hierarchy, add TableType hierarchy
mziccard 931b4d3
Rename TableType to TableDefinition and other minor fixes
mziccard 36d9dc3
Fix minor docs and style errors
mziccard 085903a
Rename DefaultTableDefinition to TableDefinition
mziccard 28a457e
Rename TableDefinition to StandardTableDefinition and BaseTableDefini…
mziccard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
182 changes: 182 additions & 0 deletions
182
gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/BaseTableDefinition.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,182 @@ | ||
/* | ||
* Copyright 2016 Google 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.google.gcloud.bigquery; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
|
||
import com.google.api.services.bigquery.model.Table; | ||
import com.google.common.base.MoreObjects; | ||
|
||
import java.io.Serializable; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Base class for a Google BigQuery table type. | ||
*/ | ||
public abstract class BaseTableDefinition implements Serializable { | ||
|
||
private static final long serialVersionUID = -374760330662959529L; | ||
|
||
/** | ||
* The table type. | ||
*/ | ||
public enum Type { | ||
/** | ||
* A normal BigQuery table. Instances of {@code BaseTableDefinition} for this type are | ||
* implemented by {@link TableDefinition}. | ||
*/ | ||
TABLE, | ||
|
||
/** | ||
* A virtual table defined by a SQL query. Instances of {@code BaseTableDefinition} for this | ||
* type are implemented by {@link ViewDefinition}. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/querying-data#views">Views</a> | ||
*/ | ||
VIEW, | ||
|
||
/** | ||
* A BigQuery table backed by external data. Instances of {@code BaseTableDefinition} for this | ||
* type are implemented by {@link ExternalTableDefinition}. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/federated-data-sources">Federated Data | ||
* Sources</a> | ||
*/ | ||
EXTERNAL | ||
} | ||
|
||
private final Type type; | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
private final Schema schema; | ||
|
||
/** | ||
* Base builder for table types. | ||
* | ||
* @param <T> the table type class | ||
* @param <B> the table type builder | ||
*/ | ||
public abstract static class Builder<T extends BaseTableDefinition, B extends Builder<T, B>> { | ||
|
||
private Type type; | ||
private Schema schema; | ||
|
||
Builder(Type type) { | ||
this.type = type; | ||
} | ||
|
||
Builder(BaseTableDefinition tableDefinition) { | ||
this.type = tableDefinition.type; | ||
this.schema = tableDefinition.schema; | ||
} | ||
|
||
Builder(Table tablePb) { | ||
this.type = Type.valueOf(tablePb.getType()); | ||
if (tablePb.getSchema() != null) { | ||
this.schema(Schema.fromPb(tablePb.getSchema())); | ||
} | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
B self() { | ||
return (B) this; | ||
} | ||
|
||
B type(Type type) { | ||
this.type = type; | ||
return self(); | ||
} | ||
|
||
/** | ||
* Sets the table schema. | ||
*/ | ||
public B schema(Schema schema) { | ||
this.schema = checkNotNull(schema); | ||
return self(); | ||
} | ||
|
||
/** | ||
* Creates an object. | ||
*/ | ||
public abstract T build(); | ||
} | ||
|
||
BaseTableDefinition(Builder builder) { | ||
this.type = builder.type; | ||
this.schema = builder.schema; | ||
} | ||
|
||
/** | ||
* Returns the table's type. If this table is simple table the method returns {@link Type#TABLE}. | ||
* If this table is an external table this method returns {@link Type#EXTERNAL}. If this table is | ||
* a view table this method returns {@link Type#VIEW}. | ||
*/ | ||
public Type type() { | ||
return type; | ||
} | ||
|
||
/** | ||
* Returns the table's schema. | ||
*/ | ||
public Schema schema() { | ||
return schema; | ||
} | ||
|
||
/** | ||
* Returns a builder for the object. | ||
*/ | ||
public abstract Builder toBuilder(); | ||
|
||
MoreObjects.ToStringHelper toStringHelper() { | ||
return MoreObjects.toStringHelper(this).add("type", type).add("schema", schema); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return toStringHelper().toString(); | ||
} | ||
|
||
final int baseHashCode() { | ||
return Objects.hash(type); | ||
} | ||
|
||
final boolean baseEquals(BaseTableDefinition jobConfiguration) { | ||
return Objects.equals(toPb(), jobConfiguration.toPb()); | ||
} | ||
|
||
Table toPb() { | ||
Table tablePb = new Table(); | ||
if (schema != null) { | ||
tablePb.setSchema(schema.toPb()); | ||
} | ||
tablePb.setType(type.name()); | ||
return tablePb; | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
static <T extends BaseTableDefinition> T fromPb(Table tablePb) { | ||
switch (Type.valueOf(tablePb.getType())) { | ||
case TABLE: | ||
return (T) TableDefinition.fromPb(tablePb); | ||
case VIEW: | ||
return (T) ViewDefinition.fromPb(tablePb); | ||
case EXTERNAL: | ||
return (T) ExternalTableDefinition.fromPb(tablePb); | ||
default: | ||
// never reached | ||
throw new IllegalArgumentException("Format " + tablePb.getType() + " is not supported"); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.