/** * 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 com.facebook.infrastructure.dht; import com.facebook.infrastructure.io.ICompactSerializer; import com.facebook.infrastructure.net.CompactEndPointSerializationHelper; import com.facebook.infrastructure.net.EndPoint; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; /** * This encapsulates information of the list of * ranges that a target node requires in order to * be bootstrapped. This will be bundled in a * BootstrapMetadataMessage and sent to nodes that * are going to handoff the data. */ class BootstrapMetadata { private static ICompactSerializer<BootstrapMetadata> serializer_; static { serializer_ = new BootstrapMetadataSerializer(); } protected static ICompactSerializer<BootstrapMetadata> serializer() { return serializer_; } protected final EndPoint target_; protected final List<Range> ranges_; BootstrapMetadata(EndPoint target, List<Range> ranges) { assert target != null; assert ranges != null; target_ = target; ranges_ = ranges; } public String toString() { StringBuilder sb = new StringBuilder(""); sb.append(target_); sb.append("------->"); for ( Range range : ranges_ ) { sb.append(range); sb.append(" "); } return sb.toString(); } } class BootstrapMetadataSerializer implements ICompactSerializer<BootstrapMetadata> { public void serialize(BootstrapMetadata bsMetadata, DataOutputStream dos) throws IOException { CompactEndPointSerializationHelper.serialize(bsMetadata.target_, dos); int size = (bsMetadata.ranges_ == null) ? 0 : bsMetadata.ranges_.size(); dos.writeInt(size); for ( Range range : bsMetadata.ranges_ ) { Range.serializer().serialize(range, dos); } } public BootstrapMetadata deserialize(DataInputStream dis) throws IOException { EndPoint target = CompactEndPointSerializationHelper.deserialize(dis); int size = dis.readInt(); List<Range> ranges = (size == 0) ? null : new ArrayList<Range>(); for( int i = 0; i < size; ++i ) { ranges.add(Range.serializer().deserialize(dis)); } return new BootstrapMetadata( target, ranges ); } }