/* * Copyright 2011-2014 Proofpoint, Inc. * * 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.proofpoint.event.collector.combiner; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.common.collect.ImmutableList; import java.net.URI; import java.util.List; import static com.google.common.base.Preconditions.checkNotNull; import static java.lang.System.currentTimeMillis; public class CombinedStoredObject { private final URI location; private final long updatedTimestamp; private final List<StoredObject> sourceParts; @JsonCreator public CombinedStoredObject( @JsonProperty("location") URI location, @JsonProperty("updatedTimestamp") long updatedTimestamp, @JsonProperty("sourceParts") List<StoredObject> sourceParts) { this.location = location; this.updatedTimestamp = updatedTimestamp; this.sourceParts = ImmutableList.copyOf(sourceParts); } @JsonProperty public URI getLocation() { return location; } @JsonProperty public long getUpdatedTimestamp() { return updatedTimestamp; } @JsonProperty public List<StoredObject> getSourceParts() { return sourceParts; } @Override public String toString() { return location.toString(); } public long getSize() { long size = 0; for (StoredObject part : sourceParts) { size += part.getSize(); } return size; } public CombinedStoredObject update(List<StoredObject> sourceParts) { checkNotNull(sourceParts, "sourceParts is null"); return new CombinedStoredObject(location, currentTimeMillis(), sourceParts); } public CombinedStoredObject addPart(StoredObject sourcePart) { return update(concat(sourceParts, sourcePart)); } private static <T> ImmutableList<T> concat(Iterable<T> base, T item) { return ImmutableList.<T>builder().addAll(base).add(item).build(); } }