Ejemplo n.º 1
0
 /**
  * Write out this instance on the passed in <code>out</code> stream. We write it as a protobuf.
  *
  * @param out
  * @throws IOException
  * @see #read(DataInputStream)
  */
 void write(final DataOutputStream out) throws IOException {
   HFileProtos.FileInfoProto.Builder builder = HFileProtos.FileInfoProto.newBuilder();
   for (Map.Entry<byte[], byte[]> e : this.map.entrySet()) {
     HBaseProtos.BytesBytesPair.Builder bbpBuilder = HBaseProtos.BytesBytesPair.newBuilder();
     bbpBuilder.setFirst(ZeroCopyLiteralByteString.wrap(e.getKey()));
     bbpBuilder.setSecond(ZeroCopyLiteralByteString.wrap(e.getValue()));
     builder.addMapEntry(bbpBuilder.build());
   }
   out.write(ProtobufUtil.PB_MAGIC);
   builder.build().writeDelimitedTo(out);
 }