package org.apache.cassandra.streaming; /* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. * */ import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import org.apache.cassandra.io.ICompactSerializer; public class StreamHeader { private static ICompactSerializer<StreamHeader> serializer; static { serializer = new StreamHeaderSerializer(); } public static ICompactSerializer<StreamHeader> serializer() { return serializer; } public final String table; /** file being sent on initial stream */ public final PendingFile file; /** session is tuple of (host, sessionid) */ public final long sessionId; /** files to add to the session */ public final Collection<PendingFile> pendingFiles; public StreamHeader(String table, long sessionId, PendingFile file) { this(table, sessionId, file, Collections.<PendingFile>emptyList()); } public StreamHeader(String table, long sessionId, PendingFile first, Collection<PendingFile> pendingFiles) { this.table = table; this.sessionId = sessionId; this.file = first; this.pendingFiles = pendingFiles; } private static class StreamHeaderSerializer implements ICompactSerializer<StreamHeader> { public void serialize(StreamHeader sh, DataOutputStream dos) throws IOException { dos.writeUTF(sh.table); dos.writeLong(sh.sessionId); PendingFile.serializer().serialize(sh.file, dos); dos.writeInt(sh.pendingFiles.size()); for(PendingFile file : sh.pendingFiles) { PendingFile.serializer().serialize(file, dos); } } public StreamHeader deserialize(DataInputStream dis) throws IOException { String table = dis.readUTF(); long sessionId = dis.readLong(); PendingFile file = PendingFile.serializer().deserialize(dis); int size = dis.readInt(); List<PendingFile> pendingFiles = new ArrayList<PendingFile>(size); for (int i = 0; i < size; i++) { pendingFiles.add(PendingFile.serializer().deserialize(dis)); } return new StreamHeader(table, sessionId, file, pendingFiles); } } }