summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/com/github/junrar/rarfile/UnixOwnersHeader.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.fox.ttcomics/src/main/java/com/github/junrar/rarfile/UnixOwnersHeader.java')
-rw-r--r--org.fox.ttcomics/src/main/java/com/github/junrar/rarfile/UnixOwnersHeader.java93
1 files changed, 93 insertions, 0 deletions
diff --git a/org.fox.ttcomics/src/main/java/com/github/junrar/rarfile/UnixOwnersHeader.java b/org.fox.ttcomics/src/main/java/com/github/junrar/rarfile/UnixOwnersHeader.java
new file mode 100644
index 0000000..192ba7a
--- /dev/null
+++ b/org.fox.ttcomics/src/main/java/com/github/junrar/rarfile/UnixOwnersHeader.java
@@ -0,0 +1,93 @@
+package com.github.junrar.rarfile;
+
+import com.github.junrar.io.Raw;
+
+
+public class UnixOwnersHeader
+extends SubBlockHeader
+{
+ //private Log //logger = LogFactory.getLog(UnixOwnersHeader.class);
+ private int ownerNameSize;
+ private int groupNameSize;
+ private String owner;
+ private String group;
+
+ public UnixOwnersHeader(SubBlockHeader sb, byte[] uoHeader) {
+ super(sb);
+ int pos = 0;
+ ownerNameSize = Raw.readShortLittleEndian(uoHeader, pos)&0xFFFF;
+ pos+=2;
+ groupNameSize = Raw.readShortLittleEndian(uoHeader, pos)&0xFFFF;
+ pos+=2;
+ if(pos+ownerNameSize<uoHeader.length){
+ byte[] ownerBuffer = new byte[ownerNameSize];
+ System.arraycopy(uoHeader, pos, ownerBuffer, 0, ownerNameSize);
+ owner = new String(ownerBuffer);
+ }
+ pos+=ownerNameSize;
+ if(pos+groupNameSize<uoHeader.length){
+ byte[] groupBuffer = new byte[groupNameSize];
+ System.arraycopy(uoHeader, pos, groupBuffer, 0, groupNameSize);
+ group = new String(groupBuffer);
+ }
+ }
+ /**
+ * @return the group
+ */
+ public String getGroup() {
+ return group;
+ }
+ /**
+ * @param group the group to set
+ */
+ public void setGroup(String group) {
+ this.group = group;
+ }
+ /**
+ * @return the groupNameSize
+ */
+ public int getGroupNameSize() {
+ return groupNameSize;
+ }
+ /**
+ * @param groupNameSize the groupNameSize to set
+ */
+ public void setGroupNameSize(int groupNameSize) {
+ this.groupNameSize = groupNameSize;
+ }
+ /**
+ * @return the owner
+ */
+ public String getOwner() {
+ return owner;
+ }
+ /**
+ * @param owner the owner to set
+ */
+ public void setOwner(String owner) {
+ this.owner = owner;
+ }
+ /**
+ * @return the ownerNameSize
+ */
+ public int getOwnerNameSize() {
+ return ownerNameSize;
+ }
+ /**
+ * @param ownerNameSize the ownerNameSize to set
+ */
+ public void setOwnerNameSize(int ownerNameSize) {
+ this.ownerNameSize = ownerNameSize;
+ }
+
+ /* (non-Javadoc)
+ * @see de.innosystec.unrar.rarfile.SubBlockHeader#print()
+ */
+ public void print(){
+ super.print();
+ //logger.info("ownerNameSize: "+ownerNameSize);
+ //logger.info("owner: "+owner);
+ //logger.info("groupNameSize: "+groupNameSize);
+ //logger.info("group: "+group);
+ }
+}