BinaryStreamParser.java 13.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
/*
 * This file is a part of EpnTAPClient.
 * This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
 * See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
 * Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
 *
 * This program is free software: you can
 * redistribute it and/or modify it under the terms of the GNU General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or (at your option) any later
 * version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE. See the GNU General Public License for more details. You should have received a copy of
 * the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */

package eu.omp.irap.vespa.votable.votabledata;

import java.nio.BufferUnderflowException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import java.util.StringJoiner;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.xml.bind.DatatypeConverter;

import eu.omp.irap.vespa.epntapclient.votable.model.DataType;
import eu.omp.irap.vespa.epntapclient.votable.model.Field;
import eu.omp.irap.vespa.epntapclient.votable.model.Stream;
import eu.omp.irap.vespa.votable.votable.VOTableException.CantParseVOTableException;

/**
 * @author N. Jourdane
 */
public final class BinaryStreamParser implements DataParser {

	/** The logger for the class BinaryStreamParser. */
	private static final Logger LOGGER = Logger.getLogger(BinaryStreamParser.class.getName());

	/** The XML nodes of VOTable document, containing the column names. */
	private List<Field> fieldsNodes;

	/** The byte array stored in the VOTable Table stream (if any). */
	private int rowSize;

	/** The stream to parse, containing data (column rows) stored in the VOTable. */
	private ByteBuffer stream;


	/**
	 * Constructor of BinaryStreamParser.
	 *
	 * @param voStream The stream to parse, containing data (column rows) stored in the VOTable.
	 * @param fieldsNodes the field XML nodes in VOTable document, containing the column names.
	 * @see <a href="http://www.ivoa.net/documents/REC/VOTable/VOTable-20040811.html#ToC35">The
	 *      Binary serialization in the VOTable REC.</a>
	 */
	public BinaryStreamParser(Stream voStream, List<Field> fieldsNodes) {
		this.fieldsNodes = fieldsNodes;
		String strStream = voStream.getValue().replaceAll("(\\r|\\n)", "");
		stream = ByteBuffer.wrap(DatatypeConverter.parseBase64Binary(strStream));
	}

	/**
	 * Get the size of data block according to its type.
	 *
	 * @param dataType The type of the data block, as described in the VOTable REC. See
	 *            http://www.ivoa.net/documents/REC/VOTable/VOTable-20040811.html#ToC11
	 * @return The size of the block, in bytes.
	 */
	private static int getBlockSize(DataType dataType) {
		int blockSize;
		switch (dataType) {
		case BOOLEAN:
		case UNSIGNED_BYTE:
		case CHAR:
			blockSize = 1;
			break;
		case SHORT:
		case UNICODE_CHAR:
			blockSize = 2;
			break;
		case INT:
		case FLOAT:
			blockSize = 4;
			break;
		case LONG:
		case DOUBLE:
		case FLOAT_COMPLEX:
			blockSize = 8;
			break;
		case DOUBLE_COMPLEX:
			blockSize = 16;
			break;
		default:
			blockSize = 0;
			break;
		}
		return blockSize;
	}

	@Override
	public List<Object[]> parse() throws CantParseVOTableException {
		List<Object[]> data = new ArrayList<>();
		int nbColumns = fieldsNodes.size();
		BinaryStreamParser.LOGGER
				.info("Parsing data (" + nbColumns + " columns) in BINARY stream...");
		Object[] row = new Object[nbColumns];

		int nValue = 0;
		while (stream.hasRemaining()) {
			int colId = nValue % nbColumns;
			Field column = fieldsNodes.get(colId);

			rowSize = getRowSize(column, stream);

			// May be useful: if arraySize == 0, continue

			if (colId == 0) {
				row = new Object[nbColumns];
			}

			row[colId] = processDataBlock(column.getDatatype(), rowSize, stream);

			if (colId == nbColumns - 1) {
				data.add(row);
			}
			nValue++;
		}
		return data;
	}

	/**
	 * @param column The XML node of the VOTable data, containing informations about the column,
	 *            like the data primitive type.
	 * @param byteBuffer The stream.
	 * @return The size of the row, in bytes.
	 * @throws BufferUnderflowException Can not get the array size because there is no bytes to read
	 *             in the stream.
	 */
	private static int getRowSize(Field column, ByteBuffer byteBuffer) {
		DataType dataType = column.getDatatype();
		int blockSize = getBlockSize(dataType);
		int arraySize;
		if (column.getArraysize() == null) {
			arraySize = blockSize;
		} else if ("*".equals(column.getArraysize())) {
			try {
				arraySize = byteBuffer.getInt() * blockSize;
			} catch (BufferUnderflowException e) {
				LOGGER.log(Level.SEVERE, "No space left on stream, can not get array size", e);
				throw new BufferUnderflowException();
			}
		} else {
			arraySize = Integer.parseInt(column.getArraysize()) * blockSize;
		}
		return arraySize;
	}

	/**
	 * @param dataType The type of the data block.
	 * @return An object representing the data. It can be any of the primitive type defined in the
	 *         VOtableREC. See http://www.ivoa.net/documents/REC/VOTable/VOTable-20040811.html#ToC11
	 */
	private static Object processDataBlock(DataType dataType, int rowSize, ByteBuffer stream) {
		Object dataBlock;
		int blockSize = getBlockSize(dataType);
		int nbElement = blockSize == 0 ? 0 : rowSize / blockSize;
		if (nbElement == 0) {
			return "";
		}
		if (dataType.equals(DataType.BOOLEAN)) {
			dataBlock = processBoolean(nbElement, stream);
		} else if (dataType.equals(DataType.UNSIGNED_BYTE)) {
			dataBlock = processUnsignedByte(nbElement, stream);
		} else if (dataType.equals(DataType.SHORT)) {
			dataBlock = processShort(nbElement, stream);
		} else if (dataType.equals(DataType.INT)) {
			dataBlock = processInt(nbElement, stream);
		} else if (dataType.equals(DataType.LONG)) {
			dataBlock = processLong(nbElement, stream);
		} else if (dataType.equals(DataType.CHAR)) {
			dataBlock = processChar(nbElement, stream);
		} else if (dataType.equals(DataType.UNICODE_CHAR)) {
			dataBlock = processUnicodeChar(nbElement, stream);
		} else if (dataType.equals(DataType.FLOAT)) {
			dataBlock = processFloat(nbElement, stream);
		} else if (dataType.equals(DataType.DOUBLE)) {
			dataBlock = processDouble(nbElement, stream);
		} else if (dataType.equals(DataType.FLOAT_COMPLEX)) {
			dataBlock = processFloatComplex(nbElement, stream);
		} else if (dataType.equals(DataType.DOUBLE_COMPLEX)) {
			dataBlock = processDoubleComplex(nbElement, stream);
		} else {
			BinaryStreamParser.LOGGER.warning("Data type " + dataType + " is not supported.");
			dataBlock = null;
		}
		return dataBlock;
	}

	/**
	 * Process a double complex data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processDoubleComplex(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getDouble()));
				sj.add(String.valueOf(byteBuffer.getDouble()));
			}
			dataBlock = sj.toString();
		} else {
			StringJoiner sj = new StringJoiner(" ", "", "");
			sj.add(String.valueOf(byteBuffer.getDouble()));
			sj.add(String.valueOf(byteBuffer.getDouble()));
			dataBlock = sj.toString();
		}
		return dataBlock;
	}

	/**
	 * Process a float complex data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processFloatComplex(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getFloat()));
				sj.add(String.valueOf(byteBuffer.getFloat()));
			}
			dataBlock = sj.toString();
		} else {
			StringJoiner sj = new StringJoiner(" ", "", "");
			sj.add(String.valueOf(byteBuffer.getFloat()));
			sj.add(String.valueOf(byteBuffer.getFloat()));
			dataBlock = sj.toString();
		}
		return dataBlock;
	}

	/**
	 * Process a double data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processDouble(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getDouble()));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = byteBuffer.getDouble();
		}
		return dataBlock;
	}

	/**
	 * Process a float data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processFloat(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getFloat()));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = byteBuffer.getFloat();
		}
		return dataBlock;
	}

	/**
	 * Process a unicode char data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processUnicodeChar(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		String value = new String();
		for (int i = 0; i < nbElement * 2; i += 2) {
			value += byteBuffer.getChar();
		}
		dataBlock = value.trim();
		return dataBlock;
	}

	/**
	 * Process a char data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processChar(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		String value = new String();
		for (int i = 0; i < nbElement && byteBuffer.position() < byteBuffer.limit(); i++) {
			value += (char) byteBuffer.get();
		}
		dataBlock = value.trim();
		return dataBlock;
	}

	/**
	 * Process a long data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processLong(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getLong()));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = byteBuffer.getLong();
		}
		return dataBlock;
	}

	/**
	 * Process a int data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processInt(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getInt()));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = byteBuffer.getInt();
		}
		return dataBlock;
	}

	/**
	 * Process a short data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processShort(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.getShort()));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = byteBuffer.getShort();
		}
		return dataBlock;
	}

	/**
	 * Process a unsigned byte data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processUnsignedByte(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(byteBuffer.get()));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = byteBuffer.get();
		}
		return dataBlock;
	}

	/**
	 * Process a boolean data type and return the result.
	 *
	 * @param nbElement The number of element inside the byte buffer.
	 * @param byteBuffer The Byte Buffer used.
	 * @return The processed data.
	 */
	private static Object processBoolean(int nbElement, ByteBuffer byteBuffer) {
		Object dataBlock;
		if (nbElement != 1) {
			StringJoiner sj = new StringJoiner(" ", "", "");
			for (int i = 0; i < nbElement; i++) {
				sj.add(String.valueOf(new Boolean(byteBuffer.getInt() == 0 ? false : true)));
			}
			dataBlock = sj.toString();
		} else {
			dataBlock = new Boolean(byteBuffer.getInt() == 0 ? false : true);
		}
		return dataBlock;
	}

	/**
	 * Decode then return the value of a TD element base64 encoded.
	 *
	 * @param content The content.
	 * @param field The field.
	 * @return The decoded value.
	 */
	public static Object readTdValue(String content, Field field) {
		String strStream = content.replaceAll("(\\r|\\n)", "");
		ByteBuffer stream = ByteBuffer.wrap(
				DatatypeConverter.parseBase64Binary(strStream));
		int rowSize = getRowSize(field, stream);
		return processDataBlock(field.getDatatype(), rowSize, stream);
	}

}