java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java
author František Kučera <franta-hg@frantovo.cz>
Wed, 08 Jan 2014 19:24:26 +0100
branchv_0
changeset 147 4a704c1669f4
parent 146 4f4f515df807
child 148 1b2f40cd432b
permissions -rw-r--r--
Improved BatchEncoder: writeNextString()
     1 /**
     2  * SQL-DK
     3  * Copyright © 2014 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.batch;
    19 
    20 import info.globalcode.sql.dk.Parameter;
    21 import info.globalcode.sql.dk.SQLCommand;
    22 import info.globalcode.sql.dk.SQLCommandNumbered;
    23 import java.io.DataInputStream;
    24 import java.io.InputStream;
    25 import static info.globalcode.sql.dk.batch.BatchConstants.*;
    26 import static info.globalcode.sql.dk.Functions.toHex;
    27 import info.globalcode.sql.dk.SQLType;
    28 import java.io.IOException;
    29 import java.util.ArrayList;
    30 import java.util.Arrays;
    31 import java.util.List;
    32 
    33 /**
    34  *
    35  * @author Ing. František Kučera (frantovo.cz)
    36  */
    37 public class BatchDecoder {
    38 
    39 	public Batch decode(InputStream in) throws BatchException {
    40 		return new BatchFromStream(new DataInputStream(in));
    41 
    42 	}
    43 
    44 	private class BatchFromStream implements Batch {
    45 
    46 		private DataInputStream in;
    47 		private boolean hasNext;
    48 
    49 		public BatchFromStream(DataInputStream in) throws BatchException {
    50 			this.in = in;
    51 			hasNext = verifyHeader();
    52 		}
    53 
    54 		@Override
    55 		public boolean hasNext() throws BatchException {
    56 			return hasNext;
    57 		}
    58 
    59 		@Override
    60 		public SQLCommand next() throws BatchException {
    61 			try {
    62 				String sql = readNextString();
    63 
    64 				int paramCount = in.readInt();
    65 				List<Parameter> parameters = new ArrayList<>(paramCount);
    66 
    67 				for (int i = 0; i < paramCount; i++) {
    68 					SQLType type = SQLType.valueOf(in.readInt());
    69 					String value = readNextString();
    70 					parameters.add(new Parameter(value, type));
    71 				}
    72 
    73 				hasNext = verifyHeader();
    74 
    75 				SQLCommand sqlCommand = new SQLCommandNumbered(sql, parameters);
    76 				return sqlCommand;
    77 			} catch (IOException e) {
    78 				throw new BatchException("Unable to read batch", e);
    79 			}
    80 		}
    81 
    82 		private String readNextString() throws IOException {
    83 			byte[] buffer = new byte[in.readInt()];
    84 			in.read(buffer);
    85 			return new String(buffer, CHARSET);
    86 		}
    87 
    88 		/**
    89 		 * @return true if correct batch header was found | false if EOF was found
    90 		 * @throws BatchException if unexpected data was found (not batch header nor EOF)
    91 		 */
    92 		private boolean verifyHeader() throws BatchException {
    93 			try {
    94 				byte[] buffer = new byte[BATCH_HEADER.length];
    95 				int bytesRead = in.read(buffer);
    96 
    97 				if (bytesRead == BATCH_HEADER.length && Arrays.equals(buffer, BATCH_HEADER)) {
    98 					return true;
    99 				} else if (bytesRead == -1) {
   100 					return false;
   101 				} else {
   102 					throw new BatchException("This is not SQL-DK batch: " + toHex(buffer));
   103 				}
   104 			} catch (IOException e) {
   105 				throw new BatchException("Unable to read batch header", e);
   106 			}
   107 
   108 		}
   109 	}
   110 }