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

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


    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;
    offsetsArray[i+1] = bos.len();
    currentSize += 1;
    bytesUsed += bos.len();
    lastModified = System.nanoTime();
View Full Code Here


    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;
    keyOffsetsArray[i+1] = bos.len();
   
    int[] posRet = position(new EntryPosition(currentSize));
    int pos = posRet[1];
View Full Code Here

    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();
    bytesUsed += bos.len();
  }
 
View Full Code Here

    {
      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;
    }
    catch(IOException ie)
View Full Code Here

    {
      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
      {
        int prevSz = mp.size();
View Full Code Here

    {
      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);
    }
    catch(IOException ie)
    {
View Full Code Here

    {
      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);
    }
    catch(IOException ie)
    {
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.