-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JobInfo hierarcy and related classes
- Loading branch information
Showing
20 changed files
with
3,705 additions
and
1 deletion.
There are no files selected for viewing
118 changes: 118 additions & 0 deletions
118
gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/BigQueryError.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,118 @@ | ||
package com.google.gcloud.bigquery; | ||
|
||
import com.google.api.services.bigquery.model.ErrorProto; | ||
import com.google.common.base.Function; | ||
import com.google.common.base.MoreObjects; | ||
|
||
import java.io.Serializable; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Google Cloud BigQuery error. | ||
*/ | ||
public class BigQueryError implements Serializable { | ||
|
||
static final Function<ErrorProto, BigQueryError> FROM_PB_FUNCTION = | ||
new Function<ErrorProto, BigQueryError>() { | ||
@Override | ||
public BigQueryError apply(ErrorProto pb) { | ||
return BigQueryError.fromPb(pb); | ||
} | ||
}; | ||
static final Function<BigQueryError, ErrorProto> TO_PB_FUNCTION = | ||
new Function<BigQueryError, ErrorProto>() { | ||
@Override | ||
public ErrorProto apply(BigQueryError error) { | ||
return error.toPb(); | ||
} | ||
}; | ||
private static final long serialVersionUID = -6566785320629096688L; | ||
|
||
private final String reason; | ||
private final String location; | ||
private final String debugInfo; | ||
private final String message; | ||
|
||
BigQueryError(String reason, String location, String message, String debugInfo) { | ||
this.reason = reason; | ||
this.location = location; | ||
this.debugInfo = debugInfo; | ||
this.message = message; | ||
} | ||
|
||
BigQueryError(String reason, String location, String message) { | ||
this.reason = reason; | ||
this.location = location; | ||
this.message = message; | ||
this.debugInfo = null; | ||
} | ||
|
||
/** | ||
* Returns short error code that summarizes the error. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/troubleshooting-errors"> | ||
* Troubleshooting Errors</a> | ||
*/ | ||
public String reason() { | ||
return reason; | ||
} | ||
|
||
/** | ||
* Returns where the error occurred, if present. | ||
*/ | ||
public String location() { | ||
return location; | ||
} | ||
|
||
String debugInfo() { | ||
return debugInfo; | ||
} | ||
|
||
/** | ||
* Returns a human-readable description of the error. | ||
*/ | ||
public String message() { | ||
return message; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(reason, location, message); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return MoreObjects.toStringHelper(this) | ||
.add("reason", reason) | ||
.add("location", location) | ||
.add("message", message) | ||
.toString(); | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
return obj instanceof BigQueryError && Objects.equals(toPb(), ((BigQueryError) obj).toPb()); | ||
} | ||
|
||
ErrorProto toPb() { | ||
ErrorProto errorPb = new ErrorProto(); | ||
if (reason != null) { | ||
errorPb.setReason(reason); | ||
} | ||
if (location != null) { | ||
errorPb.setLocation(location); | ||
} | ||
if (message != null) { | ||
errorPb.setMessage(message); | ||
} | ||
if (debugInfo != null) { | ||
errorPb.setDebugInfo(debugInfo); | ||
} | ||
return errorPb; | ||
} | ||
|
||
static BigQueryError fromPb(ErrorProto errorPb) { | ||
return new BigQueryError(errorPb.getReason(), errorPb.getLocation(), errorPb.getMessage(), | ||
errorPb.getDebugInfo()); | ||
} | ||
} |
255 changes: 255 additions & 0 deletions
255
gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/CopyJobInfo.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,255 @@ | ||
/* | ||
* Copyright 2015 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.Job; | ||
import com.google.api.services.bigquery.model.JobConfiguration; | ||
import com.google.api.services.bigquery.model.JobConfigurationTableCopy; | ||
import com.google.common.base.MoreObjects; | ||
import com.google.common.collect.ImmutableList; | ||
import com.google.common.collect.Lists; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Google BigQuery Copy Job. A Copy Job copies an existing table to another new or existing table. | ||
*/ | ||
public class CopyJobInfo extends JobInfo<JobStatistics> { | ||
|
||
private static final long serialVersionUID = 7830335512951916299L; | ||
|
||
private final List<TableId> sourceTables; | ||
private final TableId destinationTable; | ||
private final CreateDisposition createDisposition; | ||
private final WriteDisposition writeDisposition; | ||
|
||
public static final class Builder extends JobInfo.Builder<CopyJobInfo, JobStatistics, Builder> { | ||
|
||
private List<TableId> sourceTables; | ||
private TableId destinationTable; | ||
private CreateDisposition createDisposition; | ||
private WriteDisposition writeDisposition; | ||
|
||
private Builder() {} | ||
|
||
private Builder(CopyJobInfo jobInfo) { | ||
super(jobInfo); | ||
this.sourceTables = jobInfo.sourceTables; | ||
this.destinationTable = jobInfo.destinationTable; | ||
this.createDisposition = jobInfo.createDisposition; | ||
this.writeDisposition = jobInfo.writeDisposition; | ||
} | ||
|
||
private Builder(Job jobPb) { | ||
super(jobPb); | ||
JobConfigurationTableCopy copyConfigurationPb = jobPb.getConfiguration().getCopy(); | ||
this.destinationTable = TableId.fromPb(copyConfigurationPb.getDestinationTable()); | ||
if (copyConfigurationPb.getSourceTables() != null) { | ||
this.sourceTables = | ||
Lists.transform(copyConfigurationPb.getSourceTables(), TableId.FROM_PB_FUNCTION); | ||
} else { | ||
this.sourceTables = ImmutableList.of(TableId.fromPb(copyConfigurationPb.getSourceTable())); | ||
} | ||
if (copyConfigurationPb.getCreateDisposition() != null) { | ||
this.createDisposition = | ||
CreateDisposition.valueOf(copyConfigurationPb.getCreateDisposition()); | ||
} | ||
if (copyConfigurationPb.getWriteDisposition() != null) { | ||
this.writeDisposition = WriteDisposition.valueOf(copyConfigurationPb.getWriteDisposition()); | ||
} | ||
} | ||
|
||
/** | ||
* Sets the source tables to copy. | ||
*/ | ||
public Builder sourceTables(List<TableId> sourceTables) { | ||
this.sourceTables = sourceTables != null ? ImmutableList.copyOf(sourceTables) : null; | ||
return self(); | ||
} | ||
|
||
/** | ||
* Sets the destination table of the copy job. | ||
*/ | ||
public Builder destinationTable(TableId destinationTable) { | ||
this.destinationTable = destinationTable; | ||
return self(); | ||
} | ||
|
||
/** | ||
* Sets whether the job is allowed to create new tables. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.link"> | ||
* Jobs: Link Configuration</a> | ||
*/ | ||
public Builder createDisposition(CreateDisposition createDisposition) { | ||
this.createDisposition = createDisposition; | ||
return self(); | ||
} | ||
|
||
/** | ||
* Sets the action that should occur if the destination table already exists. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.link"> | ||
* Jobs: Link Configuration</a> | ||
*/ | ||
public Builder writeDisposition(WriteDisposition writeDisposition) { | ||
this.writeDisposition = writeDisposition; | ||
return self(); | ||
} | ||
|
||
@Override | ||
public CopyJobInfo build() { | ||
return new CopyJobInfo(this); | ||
} | ||
} | ||
|
||
private CopyJobInfo(Builder builder) { | ||
super(builder); | ||
this.sourceTables = checkNotNull(builder.sourceTables); | ||
this.destinationTable = checkNotNull(builder.destinationTable); | ||
this.createDisposition = builder.createDisposition; | ||
this.writeDisposition = builder.writeDisposition; | ||
} | ||
|
||
/** | ||
* Returns the source tables to copy. | ||
*/ | ||
public List<TableId> sourceTables() { | ||
return sourceTables; | ||
} | ||
|
||
/** | ||
* Returns the destination table to load the data into. | ||
*/ | ||
public TableId destinationTable() { | ||
return destinationTable; | ||
} | ||
|
||
/** | ||
* Returns whether the job is allowed to create new tables. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.copy"> | ||
* Jobs: Copy Configuration</a> | ||
*/ | ||
public CreateDisposition createDisposition() { | ||
return this.createDisposition; | ||
} | ||
|
||
/** | ||
* Returns the action that should occur if the destination table already exists. | ||
* | ||
* @see <a href="https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.copy"> | ||
* Jobs: Copy Configuration</a> | ||
*/ | ||
public WriteDisposition writeDisposition() { | ||
return writeDisposition; | ||
} | ||
|
||
@Override | ||
public Builder toBuilder() { | ||
return new Builder(this); | ||
} | ||
|
||
@Override | ||
protected MoreObjects.ToStringHelper toStringHelper() { | ||
return super.toStringHelper() | ||
.add("sourceTables", sourceTables) | ||
.add("destinationTable", destinationTable) | ||
.add("createDisposition", createDisposition) | ||
.add("writeDisposition", writeDisposition); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(super.hashCode(), sourceTables, destinationTable, createDisposition, | ||
writeDisposition); | ||
} | ||
|
||
@Override | ||
Job toPb() { | ||
Job jobPb = super.toPb(); | ||
JobConfiguration configurationPb = jobPb.getConfiguration(); | ||
JobConfigurationTableCopy copyConfigurationPb = new JobConfigurationTableCopy(); | ||
copyConfigurationPb.setDestinationTable(destinationTable.toPb()); | ||
if (sourceTables.size() == 1) { | ||
copyConfigurationPb.setSourceTable(sourceTables.get(0).toPb()); | ||
} else { | ||
copyConfigurationPb.setSourceTables(Lists.transform(sourceTables, TableId.TO_PB_FUNCTION)); | ||
} | ||
if (createDisposition != null) { | ||
copyConfigurationPb.setCreateDisposition(createDisposition.toString()); | ||
} | ||
if (writeDisposition != null) { | ||
copyConfigurationPb.setWriteDisposition(writeDisposition.toString()); | ||
} | ||
return jobPb.setConfiguration(configurationPb.setCopy(copyConfigurationPb)); | ||
} | ||
|
||
/** | ||
* Creates a builder for a BigQuery Copy Job given destination and source table. | ||
*/ | ||
public static Builder builder(TableId destinationTable, TableId sourceTable) { | ||
return builder(destinationTable, ImmutableList.of(checkNotNull(sourceTable))); | ||
} | ||
|
||
/** | ||
* Creates a builder for a BigQuery Copy Job given destination and source tables. | ||
*/ | ||
public static Builder builder(TableId destinationTable, List<TableId> sourceTables) { | ||
return new Builder().destinationTable(destinationTable).sourceTables(sourceTables); | ||
} | ||
|
||
/** | ||
* Returns a BigQuery Copy Job for the given destination and source table. Job's id is chosen by | ||
* the service. | ||
*/ | ||
public static CopyJobInfo of(TableId destinationTable, TableId sourceTable) { | ||
return builder(destinationTable, sourceTable).build(); | ||
} | ||
|
||
/** | ||
* Returns a BigQuery Copy Job for the given destination and source tables. Job's id is chosen by | ||
* the service. | ||
*/ | ||
public static CopyJobInfo of(TableId destinationTable, List<TableId> sourceTables) { | ||
return builder(destinationTable, sourceTables).build(); | ||
} | ||
|
||
/** | ||
* Returns a BigQuery Copy Job for the given destination and source table. Job's id is set to the | ||
* provided value. | ||
*/ | ||
public static CopyJobInfo of(JobId jobId, TableId destinationTable, TableId sourceTable) { | ||
return builder(destinationTable, sourceTable).jobId(jobId).build(); | ||
} | ||
|
||
/** | ||
* Returns a BigQuery Copy Job for the given destination and source tables. Job's id is set to the | ||
* provided value. | ||
*/ | ||
public static CopyJobInfo of(JobId jobId, TableId destinationTable, List<TableId> sourceTables) { | ||
return builder(destinationTable, sourceTables).jobId(jobId).build(); | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
static CopyJobInfo fromPb(Job jobPb) { | ||
return new Builder(jobPb).build(); | ||
} | ||
} |
Oops, something went wrong.