Package com.sap.hadoop.ds.streams.Streams

Examples of com.sap.hadoop.ds.streams.Streams.ByteArrayOS.reset()


 
  private void write(Writable w) throws BaseException, IOException
  {
    DataOStream dos = Streams.dos.get();
    ByteArrayOS bos = dos.getUnderlyingStream();
    bos.reset();
    w.write(dos);
    ensureCapacity(bos.len());
    int i = currentSize * 2;
    System.arraycopy(bos.bytearray(), 0, bytes, bytesUsed, bos.len());
    offsetsArray[i] = bytesUsed;
View Full Code Here


 
  private int writeKey(Writable w) throws BaseException, IOException
  {
    DataOStream dos = Streams.dos.get();
    ByteArrayOS bos = dos.getUnderlyingStream();
    bos.reset();
    w.write(dos);
    ensureCapacity(bos.len(), true);
    int i = currentSize * 2;
    System.arraycopy(bos.bytearray(), 0, bytes, bytesUsed, bos.len());
    keyOffsetsArray[i] = bytesUsed;
View Full Code Here

      valueOffsetsArray[i+1] = 0;
      return;
    }
    DataOStream dos = Streams.dos.get();
    ByteArrayOS bos = dos.getUnderlyingStream();
    bos.reset();
    w.write(dos);
    ensureCapacity(bos.len(), false);
    System.arraycopy(bos.bytearray(), 0, bytes, bytesUsed, bos.len());
    valueOffsetsArray[i] = bytesUsed;
    valueOffsetsArray[i+1] = bos.len();
View Full Code Here

    LockUtils.lock(lock.readLock());
    try
    {
      DataOStream dos = Streams.dos.get();
      ByteArrayOS bos = dos.getUnderlyingStream();
      bos.reset();
      w.write(dos);
      TempEntryPosition te = new TempEntryPosition(bos.bytearray(), bos.len());
      int posRet[] = position(te);
      int pos = posRet[1];
      return (posRet[0] == 1) ? startOffset + pos : -1;
View Full Code Here

   
    try
    {
      DataOStream dos = Streams.dos.get();
      ByteArrayOS bos = dos.getUnderlyingStream();
      bos.reset();
      key.write(dos);
      int p = splitList.getPartition(bos.bytearray(), 0, bos.len());
      ByteBasedSortedMap mp = bringInMemory(p);
     
      try
View Full Code Here

    LockUtils.lock(lock.readLock());
    try
    {
      DataOStream dos = Streams.dos.get();
      ByteArrayOS bos = dos.getUnderlyingStream();
      bos.reset();
      w.write(dos);
      int p = splitList.getPartition(bos.bytearray(), 0, bos.len());
      ByteBasedSortedMap mp = partitions.get(p);
      return mp.getIndex(w);
    }
View Full Code Here

    LockUtils.lock(lock.readLock());
    try
    {
      DataOStream dos = Streams.dos.get();
      ByteArrayOS bos = dos.getUnderlyingStream();
      bos.reset();
      key.write(dos);
      int p = splitList.getPartition(bos.bytearray(), 0, bos.len());
      ByteBasedSortedMap mp = partitions.get(p);
      return mp.getValue(key, value);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.