org.xeustechnologies.jtar
Class Octal

java.lang.Object
  extended by org.xeustechnologies.jtar.Octal

public class Octal
extends java.lang.Object

Author:
Kamran Zafar

Constructor Summary
Octal()
           
 
Method Summary
static int getCheckSumOctalBytes(long value, byte[] buf, int offset, int length)
          Parse the checksum octal integer from a header buffer.
static int getLongOctalBytes(long value, byte[] buf, int offset, int length)
          Parse an octal long integer from a header buffer.
static int getOctalBytes(long value, byte[] buf, int offset, int length)
          Parse an octal integer from a header buffer.
static long parseOctal(byte[] header, int offset, int length)
          Parse an octal string from a header buffer.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Octal

public Octal()
Method Detail

parseOctal

public static long parseOctal(byte[] header,
                              int offset,
                              int length)
Parse an octal string from a header buffer. This is used for the file permission mode value.

Parameters:
header - The header buffer from which to parse.
offset - The offset into the buffer from which to parse.
length - The number of header bytes to parse.
Returns:
The long value of the octal string.

getOctalBytes

public static int getOctalBytes(long value,
                                byte[] buf,
                                int offset,
                                int length)
Parse an octal integer from a header buffer.

Parameters:
value -
buf - The header buffer from which to parse.
offset - The offset into the buffer from which to parse.
length - The number of header bytes to parse.
Returns:
The integer value of the octal bytes.

getCheckSumOctalBytes

public static int getCheckSumOctalBytes(long value,
                                        byte[] buf,
                                        int offset,
                                        int length)
Parse the checksum octal integer from a header buffer.

Parameters:
value -
buf - The header buffer from which to parse.
offset - The offset into the buffer from which to parse.
length - The number of header bytes to parse.
Returns:
The integer value of the entry's checksum.

getLongOctalBytes

public static int getLongOctalBytes(long value,
                                    byte[] buf,
                                    int offset,
                                    int length)
Parse an octal long integer from a header buffer.

Parameters:
value -
buf - The header buffer from which to parse.
offset - The offset into the buffer from which to parse.
length - The number of header bytes to parse.
Returns:
The long value of the octal bytes.


Copyright © 2012 Xeus Technologies. All Rights Reserved.