forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTableDefinition.java
More file actions
182 lines (153 loc) · 4.62 KB
/
Copy pathTableDefinition.java
File metadata and controls
182 lines (153 loc) · 4.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
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 definition.
*/
public abstract class TableDefinition implements Serializable {
private static final long serialVersionUID = -374760330662959529L;
private final Type type;
private final Schema schema;
/**
* The table type.
*/
public enum Type {
/**
* A normal BigQuery table. Instances of {@code TableDefinition} for this type are implemented
* by {@link StandardTableDefinition}.
*/
TABLE,
/**
* A virtual table defined by a SQL query. Instances of {@code TableDefinition} 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 TableDefinition} for this type
* are implemented by {@link ExternalTableDefinition}.
*
* @see <a href="https://cloud.google.com/bigquery/federated-data-sources">Federated Data
* Sources</a>
*/
EXTERNAL
}
/**
* Base builder for table definitions.
*
* @param <T> the table definition class
* @param <B> the table definition builder
*/
public abstract static class Builder<T extends TableDefinition, B extends Builder<T, B>> {
private Type type;
private Schema schema;
Builder(Type type) {
this.type = type;
}
Builder(TableDefinition 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();
}
TableDefinition(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(TableDefinition tableDefinition) {
return Objects.equals(toPb(), tableDefinition.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 TableDefinition> T fromPb(Table tablePb) {
switch (Type.valueOf(tablePb.getType())) {
case TABLE:
return (T) StandardTableDefinition.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");
}
}
}