blob: 36a0e601bdd7d8d468c7e2b58bdf36886ff9d34b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.oozie;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.IOException;
import org.apache.oozie.compression.CodecFactory;
import org.apache.oozie.compression.CompressionCodec;
import org.apache.oozie.util.ByteArrayUtils;
/**
* BinaryBlob to maintain compress and uncompressed data
*/
public class BinaryBlob {
private byte[] rawBlob;
private byte[] bytes;
/**
* Construct a binaryblob
*
* @param byteArray the source byte array
* @param isUncompressed - true if data is uncompressed
*/
public BinaryBlob(byte[] byteArray, boolean isUncompressed) {
if (isUncompressed) {
this.bytes = ByteArrayUtils.weakIntern(byteArray);
this.rawBlob = null;
}
else {
this.rawBlob = ByteArrayUtils.weakIntern(byteArray);
}
}
/**
* Set bytes
*
* @param byteArray the byte array
*/
public void setBytes(byte[] byteArray) {
this.bytes = ByteArrayUtils.weakIntern(byteArray);
this.rawBlob = null;
}
/**
* Returns a decompressed byte array
*
* @return byte array
*/
public byte[] getBytes() {
if (bytes != null) {
return bytes;
}
if (rawBlob == null) {
return null;
}
try {
DataInputStream dais = new DataInputStream(new ByteArrayInputStream(rawBlob));
CompressionCodec codec = CodecFactory.getDeCompressionCodec(dais);
if (codec != null) {
bytes = ByteArrayUtils.weakIntern(codec.decompressToBytes(dais));
}
else {
bytes = ByteArrayUtils.weakIntern(rawBlob);
}
dais.close();
}
catch (IOException ex) {
throw new RuntimeException(ex);
}
rawBlob = null;
return bytes;
}
/**
* Returns a raw blob
*
* @return raw blob
*/
public byte[] getRawBlob() {
if (rawBlob != null) {
return rawBlob;
}
if (bytes == null) {
return null;
}
if (CodecFactory.isCompressionEnabled()) {
byte[] headerBytes = CodecFactory.getHeaderBytes();
try {
rawBlob = ByteArrayUtils.weakIntern(CodecFactory.getCompressionCodec().compressBytes(headerBytes, bytes));
}
catch (IOException ex) {
throw new RuntimeException(ex);
}
}
else {
rawBlob = ByteArrayUtils.weakIntern(bytes);
}
return rawBlob;
}
}