com.hazelcast.map.impl.querycache.event.BatchEventData Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2018, Hazelcast, 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.hazelcast.map.impl.querycache.event;
import com.hazelcast.map.impl.event.EventData;
import com.hazelcast.map.impl.querycache.event.sequence.Sequenced;
import com.hazelcast.nio.Address;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.BinaryInterface;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import static com.hazelcast.map.impl.querycache.event.QueryCacheEventDataBuilder.newQueryCacheEventDataBuilder;
import static com.hazelcast.util.Preconditions.checkNotNegative;
import static com.hazelcast.util.Preconditions.checkNotNull;
/**
* Holder for a collection of {@link QueryCacheEventData}.
*
* @see QueryCacheEventData
*/
@BinaryInterface
public class BatchEventData implements Sequenced, EventData {
private String source;
private Collection events;
private transient int partitionId;
public BatchEventData() {
}
public BatchEventData(Collection events, String source, int partitionId) {
this.events = checkNotNull(events, "events cannot be null");
this.source = checkNotNull(source, "source cannot be null");
this.partitionId = checkNotNegative(partitionId, "partitionId cannot be negative");
}
public void add(QueryCacheEventData entry) {
events.add(entry);
}
public Collection getEvents() {
return events;
}
public boolean isEmpty() {
return events.isEmpty();
}
public int size() {
return events.size();
}
@Override
public int getPartitionId() {
return partitionId;
}
@Override
public String getSource() {
return source;
}
@Override
public String getMapName() {
throw new UnsupportedOperationException();
}
@Override
public Address getCaller() {
throw new UnsupportedOperationException();
}
@Override
public int getEventType() {
throw new UnsupportedOperationException();
}
@Override
public long getSequence() {
throw new UnsupportedOperationException();
}
@Override
public void setSequence(long sequence) {
throw new UnsupportedOperationException();
}
@Override
public void writeData(ObjectDataOutput out) throws IOException {
Collection events = this.events;
out.writeUTF(source);
out.writeInt(events.size());
for (QueryCacheEventData eventData : events) {
eventData.writeData(out);
}
}
@Override
public void readData(ObjectDataInput in) throws IOException {
source = in.readUTF();
int size = in.readInt();
if (size > 0) {
this.events = new ArrayList(size);
}
Collection events = this.events;
for (int i = 0; i < size; i++) {
QueryCacheEventData eventData = newQueryCacheEventDataBuilder(true).build();
eventData.readData(in);
events.add(eventData);
}
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof BatchEventData)) {
return false;
}
BatchEventData that = (BatchEventData) o;
return events != null ? events.equals(that.events) : that.events == null;
}
@Override
public int hashCode() {
return events != null ? events.hashCode() : 0;
}
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("BatchEventData{");
for (QueryCacheEventData event : events) {
stringBuilder.append(event);
}
stringBuilder.append("}");
return stringBuilder.toString();
}
}