/** * 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. */ package org.apache.cassandra.net; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.net.InetAddress; import java.util.Hashtable; import java.util.Map; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import org.apache.cassandra.io.ICompactSerializer; import org.apache.cassandra.service.StorageService; public class Header { private static ICompactSerializer<Header> serializer_; private static AtomicInteger idGen_ = new AtomicInteger(0); static { serializer_ = new HeaderSerializer(); } static ICompactSerializer<Header> serializer() { return serializer_; } private InetAddress from_; private String type_; private StorageService.Verb verb_; private String messageId_; protected Map<String, byte[]> details_; Header(String id, InetAddress from, String messageType, StorageService.Verb verb) { assert id != null; assert from != null; assert messageType != null; assert verb != null; messageId_ = id; from_ = from; type_ = messageType; verb_ = verb; } Header(String id, InetAddress from, String messageType, StorageService.Verb verb, Map<String, byte[]> details) { this(id, from, messageType, verb); details_ = details; } Header(InetAddress from, String messageType, StorageService.Verb verb) { this(Integer.toString(idGen_.incrementAndGet()), from, messageType, verb); } InetAddress getFrom() { return from_; } String getMessageType() { return type_; } StorageService.Verb getVerb() { return verb_; } String getMessageId() { return messageId_; } byte[] getDetail(Object key) { if (details_==null) return null; return details_.get(key); } void setDetail(String key, byte[] value) { if (details_==null) details_ = new Hashtable<String, byte[]>(2); details_.put(key, value); } } class HeaderSerializer implements ICompactSerializer<Header> { public void serialize(Header t, DataOutputStream dos) throws IOException { dos.writeUTF(t.getMessageId()); CompactEndPointSerializationHelper.serialize(t.getFrom(), dos); dos.writeUTF(t.getMessageType()); dos.writeInt(t.getVerb().ordinal()); /* Serialize the message header */ if (t.details_==null) { dos.writeInt(0); } else { int size = t.details_.size(); dos.writeInt(size); Set<String> keys = t.details_.keySet(); for( String key : keys ) { dos.writeUTF(key); byte[] value = t.details_.get(key); dos.writeInt(value.length); dos.write(value); } } } public Header deserialize(DataInputStream dis) throws IOException { String id = dis.readUTF(); InetAddress from = CompactEndPointSerializationHelper.deserialize(dis); String type = dis.readUTF(); int verbOrdinal = dis.readInt(); /* Deserializing the message header */ int size = dis.readInt(); Map<String, byte[]> details = null; if (size>0) { details = new Hashtable<String, byte[]>(size); for ( int i = 0; i < size; ++i ) { String key = dis.readUTF(); int length = dis.readInt(); byte[] bytes = new byte[length]; dis.readFully(bytes); details.put(key, bytes); } } return new Header(id, from, type, StorageService.VERBS[verbOrdinal], details); } }