Skip to content
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

Implemented ChangeRequest. #587

Merged
merged 3 commits into from
Jan 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
324 changes: 324 additions & 0 deletions gcloud-java-dns/src/main/java/com/google/gcloud/dns/ChangeRequest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,324 @@
/*
* 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.dns;

import static com.google.common.base.Preconditions.checkNotNull;

import com.google.api.services.dns.model.ResourceRecordSet;
import com.google.common.base.Function;
import com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;

import org.joda.time.DateTime;
import org.joda.time.format.ISODateTimeFormat;

import java.io.Serializable;
import java.util.LinkedList;
import java.util.List;
import java.util.Objects;

/**
* A class representing an atomic update to a collection of {@link DnsRecord}s within a {@code
* ManagedZone}.
*
* @see <a href="https://cloud.google.com/dns/api/v1/changes">Google Cloud DNS documentation</a>
*/
public class ChangeRequest implements Serializable {

private static final Function<ResourceRecordSet, DnsRecord> FROM_PB_FUNCTION =
new Function<com.google.api.services.dns.model.ResourceRecordSet, DnsRecord>() {
@Override
public DnsRecord apply(com.google.api.services.dns.model.ResourceRecordSet pb) {
return DnsRecord.fromPb(pb);
}
};
private static final Function<DnsRecord, ResourceRecordSet> TO_PB_FUNCTION =
new Function<DnsRecord, ResourceRecordSet>() {
@Override
public com.google.api.services.dns.model.ResourceRecordSet apply(DnsRecord error) {
return error.toPb();
}
};
private static final long serialVersionUID = -8703939628990291682L;
private final List<DnsRecord> additions;
private final List<DnsRecord> deletions;
private final String id;
private final Long startTimeMillis;
private final Status status;

/**
* This enumerates the possible states of a {@code ChangeRequest}.
*
* @see <a href="https://cloud.google.com/dns/api/v1/changes#resource">Google Cloud DNS
* documentation</a>
*/
public enum Status {
PENDING,
DONE
}

/**
* A builder for {@code ChangeRequest}s.
*/
public static class Builder {

private List<DnsRecord> additions = new LinkedList<>();
private List<DnsRecord> deletions = new LinkedList<>();
private String id;
private Long startTimeMillis;
private Status status;

private Builder(ChangeRequest cr) {
this.additions = Lists.newLinkedList(cr.additions());
this.deletions = Lists.newLinkedList(cr.deletions());
this.id = cr.id();
this.startTimeMillis = cr.startTimeMillis();
this.status = cr.status();
}

private Builder() {
}

/**
* Sets a collection of {@link DnsRecord}s which are to be added to the zone upon executing this
* {@code ChangeRequest}.
*/
public Builder additions(List<DnsRecord> additions) {

This comment was marked as spam.

This comment was marked as spam.

this.additions = Lists.newLinkedList(checkNotNull(additions));
return this;
}

/**
* Sets a collection of {@link DnsRecord}s which are to be deleted from the zone upon executing
* this {@code ChangeRequest}.
*/
public Builder deletions(List<DnsRecord> deletions) {
this.deletions = Lists.newLinkedList(checkNotNull(deletions));
return this;
}

/**
* Adds a {@link DnsRecord} to be <strong>added</strong> to the zone upon executing this {@code
* ChangeRequest}.
*/
public Builder add(DnsRecord record) {
this.additions.add(checkNotNull(record));
return this;
}

/**
* Adds a {@link DnsRecord} to be <strong>deleted</strong> to the zone upon executing this
* {@code ChangeRequest}.
*/
public Builder delete(DnsRecord record) {
this.deletions.add(checkNotNull(record));
return this;
}

/**
* Clears the collection of {@link DnsRecord}s which are to be added to the zone upon executing
* this {@code ChangeRequest}.
*/
public Builder clearAdditions() {
this.additions.clear();
return this;
}

/**
* Clears the collection of {@link DnsRecord}s which are to be deleted from the zone upon
* executing this {@code ChangeRequest}.
*/
public Builder clearDeletions() {
this.deletions.clear();
return this;
}

/**
* Removes a single {@link DnsRecord} from the collection of records to be
* <strong>added</strong> to the zone upon executing this {@code ChangeRequest}.
*/
public Builder removeAddition(DnsRecord record) {
this.additions.remove(record);
return this;
}

/**
* Removes a single {@link DnsRecord} from the collection of records to be
* <strong>deleted</strong> from the zone upon executing this {@code ChangeRequest}.
*/
public Builder removeDeletion(DnsRecord record) {
this.deletions.remove(record);
return this;
}

/**
* Associates a server-assigned id to this {@code ChangeRequest}.

This comment was marked as spam.

This comment was marked as spam.

*/
Builder id(String id) {
this.id = checkNotNull(id);
return this;
}

/**
* Sets the time when this {@code ChangeRequest} was started by a server.
*/
Builder startTimeMillis(long startTimeMillis) {
this.startTimeMillis = startTimeMillis;
return this;
}

/**
* Sets the current status of this {@code ChangeRequest}.
*/
Builder status(Status status) {
this.status = checkNotNull(status);
return this;
}

/**
* Creates a {@code ChangeRequest} instance populated by the values associated with this
* builder.
*/
public ChangeRequest build() {
return new ChangeRequest(this);
}
}

private ChangeRequest(Builder builder) {
this.additions = ImmutableList.copyOf(builder.additions);
this.deletions = ImmutableList.copyOf(builder.deletions);
this.id = builder.id;
this.startTimeMillis = builder.startTimeMillis;
this.status = builder.status;
}

/**
* Returns an empty builder for the {@code ChangeRequest} class.
*/
public static Builder builder() {
return new Builder();
}

/**
* Creates a builder populated with values of this {@code ChangeRequest}.
*/
public Builder toBuilder() {
return new Builder(this);
}

/**
* Returns the list of {@link DnsRecord}s to be added to the zone upon submitting this {@code
* ChangeRequest}.
*/
public List<DnsRecord> additions() {
return additions;
}

/**
* Returns the list of {@link DnsRecord}s to be deleted from the zone upon submitting this {@code
* ChangeRequest}.
*/
public List<DnsRecord> deletions() {
return deletions;
}

/**
* Returns the id assigned to this {@code ChangeRequest} by the server.
*/
public String id() {
return id;
}

/**
* Returns the time when this {@code ChangeRequest} was started by the server.
*/
public Long startTimeMillis() {
return startTimeMillis;
}

/**
* Returns the status of this {@code ChangeRequest}.
*/
public Status status() {
return status;
}

com.google.api.services.dns.model.Change toPb() {
com.google.api.services.dns.model.Change pb =
new com.google.api.services.dns.model.Change();
// set id
if (id() != null) {
pb.setId(id());
}
// set timestamp
if (startTimeMillis() != null) {
pb.setStartTime(ISODateTimeFormat.dateTime().withZoneUTC().print(startTimeMillis()));
}
// set status
if (status() != null) {
pb.setStatus(status().name().toLowerCase());
}
// set a list of additions
pb.setAdditions(Lists.transform(additions(), TO_PB_FUNCTION));
// set a list of deletions
pb.setDeletions(Lists.transform(deletions(), TO_PB_FUNCTION));
return pb;
}

static ChangeRequest fromPb(com.google.api.services.dns.model.Change pb) {
Builder builder = builder();
if (pb.getId() != null) {
builder.id(pb.getId());
}
if (pb.getStartTime() != null) {
builder.startTimeMillis(DateTime.parse(pb.getStartTime()).getMillis());
}
if (pb.getStatus() != null) {
// we are assuming that status indicated in pb is a lower case version of the enum name
builder.status(ChangeRequest.Status.valueOf(pb.getStatus().toUpperCase()));
}
if (pb.getDeletions() != null) {
builder.deletions(Lists.transform(pb.getDeletions(), FROM_PB_FUNCTION));
}
if (pb.getAdditions() != null) {
builder.additions(Lists.transform(pb.getAdditions(), FROM_PB_FUNCTION));
}
return builder.build();
}

@Override
public boolean equals(Object other) {
return (other instanceof ChangeRequest) && toPb().equals(((ChangeRequest) other).toPb());
}

@Override
public int hashCode() {
return Objects.hash(additions, deletions, id, startTimeMillis, status);
}

@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("additions", additions)
.add("deletions", deletions)
.add("id", id)
.add("startTimeMillis", startTimeMillis)
.add("status", status)
.toString();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -273,14 +273,14 @@ com.google.api.services.dns.model.ResourceRecordSet toPb() {
}

static DnsRecord fromPb(com.google.api.services.dns.model.ResourceRecordSet pb) {
Builder b = builder(pb.getName(), Type.valueOf(pb.getType()));
Builder builder = builder(pb.getName(), Type.valueOf(pb.getType()));
if (pb.getRrdatas() != null) {
b.records(pb.getRrdatas());
builder.records(pb.getRrdatas());
}
if (pb.getTtl() != null) {
b.ttl(pb.getTtl());
builder.ttl(pb.getTtl());
}
return b.build();
return builder.build();
}

@Override
Expand Down
Loading