Java Code Examples for org.apache.hadoop.io.WritableUtils#readCompressedStringArray()

The following examples show how to use org.apache.hadoop.io.WritableUtils#readCompressedStringArray() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProtocolStatus.java    From anthelion with Apache License 2.0 6 votes vote down vote up
public void readFields(DataInput in) throws IOException {
  byte version = in.readByte();
  switch(version) {
  case 1:
    code = in.readByte();
    lastModified = in.readLong();
    args = WritableUtils.readCompressedStringArray(in);
    break;
  case VERSION:
    code = in.readByte();
    lastModified = in.readLong();
    args = WritableUtils.readStringArray(in);
    break;
  default:
    throw new VersionMismatchException(VERSION, version);
  }
}
 
Example 2
Source File: ParseStatus.java    From anthelion with Apache License 2.0 6 votes vote down vote up
public void readFields(DataInput in) throws IOException {
   byte version = in.readByte();
   switch(version) {
   case 1:
     majorCode = in.readByte();
     minorCode = in.readShort();
     args = WritableUtils.readCompressedStringArray(in);
     break;
   case 2:
     majorCode = in.readByte();
     minorCode = in.readShort();
     args = WritableUtils.readStringArray(in);
     break;
   default:
     throw new VersionMismatchException(VERSION, version);
   }
}
 
Example 3
Source File: ProtocolStatus.java    From nutch-htmlunit with Apache License 2.0 6 votes vote down vote up
public void readFields(DataInput in) throws IOException {
  byte version = in.readByte();
  switch(version) {
  case 1:
    code = in.readByte();
    lastModified = in.readLong();
    args = WritableUtils.readCompressedStringArray(in);
    break;
  case VERSION:
    code = in.readByte();
    lastModified = in.readLong();
    args = WritableUtils.readStringArray(in);
    break;
  default:
    throw new VersionMismatchException(VERSION, version);
  }
}
 
Example 4
Source File: ParseStatus.java    From nutch-htmlunit with Apache License 2.0 6 votes vote down vote up
public void readFields(DataInput in) throws IOException {
   byte version = in.readByte();
   switch(version) {
   case 1:
     majorCode = in.readByte();
     minorCode = in.readShort();
     args = WritableUtils.readCompressedStringArray(in);
     break;
   case 2:
     majorCode = in.readByte();
     minorCode = in.readShort();
     args = WritableUtils.readStringArray(in);
     break;
   default:
     throw new VersionMismatchException(VERSION, version);
   }
}
 
Example 5
Source File: Configuration.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  clear();
  int size = WritableUtils.readVInt(in);
  for(int i=0; i < size; ++i) {
    String key = org.apache.hadoop.io.Text.readString(in);
    String value = org.apache.hadoop.io.Text.readString(in);
    set(key, value);
    String sources[] = WritableUtils.readCompressedStringArray(in);
    if(sources != null) {
      updatingResource.put(key, sources);
    }
  }
}
 
Example 6
Source File: Configuration.java    From Flink-CEPplus with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
	clear();
	int size = WritableUtils.readVInt(in);
	for(int i=0; i < size; ++i) {
		String key = org.apache.hadoop.io.Text.readString(in);
		String value = org.apache.hadoop.io.Text.readString(in);
		set(key, value);
		String sources[] = WritableUtils.readCompressedStringArray(in);
		if (sources != null) {
			putIntoUpdatingResource(key, sources);
		}
	}
}
 
Example 7
Source File: Configuration.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  clear();
  int size = WritableUtils.readVInt(in);
  for(int i=0; i < size; ++i) {
    String key = org.apache.hadoop.io.Text.readString(in);
    String value = org.apache.hadoop.io.Text.readString(in);
    set(key, value);
    String sources[] = WritableUtils.readCompressedStringArray(in);
    if(sources != null) {
      updatingResource.put(key, sources);
    }
  }
}
 
Example 8
Source File: Configuration.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
	clear();
	int size = WritableUtils.readVInt(in);
	for(int i=0; i < size; ++i) {
		String key = org.apache.hadoop.io.Text.readString(in);
		String value = org.apache.hadoop.io.Text.readString(in);
		set(key, value);
		String sources[] = WritableUtils.readCompressedStringArray(in);
		if (sources != null) {
			putIntoUpdatingResource(key, sources);
		}
	}
}
 
Example 9
Source File: Configuration.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  clear();
  int size = WritableUtils.readVInt(in);
  for(int i=0; i < size; ++i) {
    String key = org.apache.hadoop.io.Text.readString(in);
    String value = org.apache.hadoop.io.Text.readString(in);
    set(key, value); 
    String sources[] = WritableUtils.readCompressedStringArray(in);
    if(sources != null) {
      updatingResource.put(key, sources);
    }
  }
}
 
Example 10
Source File: Configuration.java    From big-c with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  clear();
  int size = WritableUtils.readVInt(in);
  for(int i=0; i < size; ++i) {
    String key = org.apache.hadoop.io.Text.readString(in);
    String value = org.apache.hadoop.io.Text.readString(in);
    set(key, value); 
    String sources[] = WritableUtils.readCompressedStringArray(in);
    if(sources != null) {
      updatingResource.put(key, sources);
    }
  }
}
 
Example 11
Source File: Configuration.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  clear();
  int size = WritableUtils.readVInt(in);
  for(int i=0; i < size; ++i) {
    String key = org.apache.hadoop.io.Text.readString(in);
    String value = org.apache.hadoop.io.Text.readString(in);
    set(key, value);
    String sources[] = WritableUtils.readCompressedStringArray(in);
    if(sources != null) {
      updatingResource.put(key, sources);
    }
  }
}
 
Example 12
Source File: Configuration.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
	clear();
	int size = WritableUtils.readVInt(in);
	for(int i=0; i < size; ++i) {
		String key = org.apache.hadoop.io.Text.readString(in);
		String value = org.apache.hadoop.io.Text.readString(in);
		set(key, value);
		String sources[] = WritableUtils.readCompressedStringArray(in);
		if (sources != null) {
			putIntoUpdatingResource(key, sources);
		}
	}
}