Java Code Examples for java.io.ObjectInputStream#readShort()
The following examples show how to use
java.io.ObjectInputStream#readShort() .
These examples are extracted from open source projects.
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 Project: jdk8u-dev-jdk File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 2
Source Project: openjdk-8-source File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 3
Source Project: jdk8u_jdk File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 4
Source Project: jdk8u60 File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 5
Source Project: jdk8u60 File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 6
Source Project: jdk8u_jdk File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 7
Source Project: openjdk-jdk8u File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 8
Source Project: openjdk-jdk8u-backup File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 9
Source Project: openjdk-8-source File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 10
Source Project: openjdk-jdk9 File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 11
Source Project: openjdk-jdk9 File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 12
Source Project: jdk8u-jdk File: Shorts.java License: GNU General Public License v2.0 | 6 votes |
/** * Run benchmark for given number of batches, with given number of cycles * for each batch. */ void doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, int nbatches, int ncycles) throws Exception { for (int i = 0; i < nbatches; i++) { sbuf.reset(); for (int j = 0; j < ncycles; j++) { oout.writeShort(0); } oout.flush(); for (int j = 0; j < ncycles; j++) { oin.readShort(); } } }
Example 13
Source Project: jdk8u-jdk File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 14
Source Project: jdk8u-jdk File: CustomObjTrees.java License: GNU General Public License v2.0 | 6 votes |
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { z = in.readBoolean(); b = in.readByte(); c = in.readChar(); s = in.readShort(); i = in.readInt(); f = in.readFloat(); j = in.readLong(); d = in.readDouble(); str = (String) in.readObject(); parent = in.readObject(); left = in.readObject(); right = in.readObject(); }
Example 15
Source Project: geowave File: RasterTileResizeHelper.java License: Apache License 2.0 | 5 votes |
private void readObject(final ObjectInputStream aInputStream) throws ClassNotFoundException, IOException { final byte[] adapterBytes = new byte[aInputStream.readUnsignedShort()]; aInputStream.readFully(adapterBytes); final byte[] indexBytes = new byte[aInputStream.readUnsignedShort()]; aInputStream.readFully(indexBytes); newAdapter = (RasterDataAdapter) PersistenceUtils.fromBinary(adapterBytes); index = (Index) PersistenceUtils.fromBinary(indexBytes); oldAdapterId = aInputStream.readShort(); newAdapterId = aInputStream.readShort(); indexNames = new String[] {index.getName()}; }
Example 16
Source Project: openbd-core File: MemberBox.java License: GNU General Public License v3.0 | 5 votes |
/** * Reads an array of parameter types from the stream. */ private static Class<?>[] readParameters(ObjectInputStream in) throws IOException, ClassNotFoundException { Class<?>[] result = new Class[in.readShort()]; for (int i=0; i < result.length; i++) { if (!in.readBoolean()) { result[i] = (Class<?>) in.readObject(); continue; } result[i] = primitives[in.readByte()]; } return result; }
Example 17
Source Project: morpheus-core File: SparseArrayOfZonedDateTimes.java License: Apache License 2.0 | 5 votes |
@Override public final void read(ObjectInputStream is, int count) throws IOException { for (int i=0; i<count; ++i) { final long value = is.readLong(); this.values.put(i, value); if (value != defaultValueAsLong) { final short zoneId = is.readShort(); this.zoneIds.put(i, zoneId); } } }
Example 18
Source Project: geowave File: KDERunner.java License: Apache License 2.0 | 5 votes |
private void readObject(final ObjectInputStream aInputStream) throws ClassNotFoundException, IOException { final byte[] adapterBytes = new byte[aInputStream.readShort()]; aInputStream.readFully(adapterBytes); final byte[] indexBytes = new byte[aInputStream.readShort()]; aInputStream.readFully(indexBytes); newAdapter = (RasterDataAdapter) PersistenceUtils.fromBinary(adapterBytes); index = (Index) PersistenceUtils.fromBinary(indexBytes); writableSerializer = newAdapter.createWritableSerializer(); }
Example 19
Source Project: morpheus-core File: DenseArrayOfZonedDateTimes.java License: Apache License 2.0 | 5 votes |
@Override public final void read(ObjectInputStream is, int count) throws IOException { for (int i=0; i<count; ++i) { final long value = is.readLong(); this.values[i] = value; if (value != defaultValueAsLong) { this.zoneIds[i] = is.readShort(); } } }
Example 20
Source Project: kogito-runtimes File: AbstractProcessInstanceMarshaller.java License: Apache License 2.0 | 4 votes |
public NodeInstance readNodeInstance(MarshallerReaderContext context, NodeInstanceContainer nodeInstanceContainer, WorkflowProcessInstance processInstance) throws IOException { ObjectInputStream stream = context.stream; String id = stream.readUTF(); long nodeId = stream.readLong(); int nodeType = stream.readShort(); NodeInstanceImpl nodeInstance = readNodeInstanceContent(nodeType, stream, context, processInstance); nodeInstance.setNodeId(nodeId); nodeInstance.setNodeInstanceContainer(nodeInstanceContainer); nodeInstance.setProcessInstance((org.jbpm.workflow.instance.WorkflowProcessInstance) processInstance); nodeInstance.setId(id); switch (nodeType) { case PersisterEnums.COMPOSITE_NODE_INSTANCE: case PersisterEnums.DYNAMIC_NODE_INSTANCE: int nbVariables = stream.readInt(); if (nbVariables > 0) { Context variableScope = ((org.jbpm.process.core.Process) ((org.jbpm.process.instance.ProcessInstance) processInstance).getProcess()).getDefaultContext(VariableScope.VARIABLE_SCOPE); VariableScopeInstance variableScopeInstance = (VariableScopeInstance) ((CompositeContextNodeInstance) nodeInstance).getContextInstance(variableScope); for (int i = 0; i < nbVariables; i++) { String name = stream.readUTF(); try { Object value = stream.readObject(); variableScopeInstance.internalSetVariable(name, value); } catch (ClassNotFoundException e) { throw new IllegalArgumentException("Could not reload variable " + name); } } } while (stream.readShort() == PersisterEnums.NODE_INSTANCE) { readNodeInstance(context, (CompositeContextNodeInstance) nodeInstance, processInstance); } int exclusiveGroupInstances = stream.readInt(); for (int i = 0; i < exclusiveGroupInstances; i++) { ExclusiveGroupInstance exclusiveGroupInstance = new ExclusiveGroupInstance(); ((org.jbpm.process.instance.ProcessInstance) processInstance).addContextInstance(ExclusiveGroup.EXCLUSIVE_GROUP, exclusiveGroupInstance); int nodeInstances = stream.readInt(); for (int j = 0; j < nodeInstances; j++) { String nodeInstanceId = stream.readUTF(); NodeInstance groupNodeInstance = processInstance.getNodeInstance(nodeInstanceId); if (groupNodeInstance == null) { throw new IllegalArgumentException("Could not find node instance when deserializing exclusive group instance: " + nodeInstanceId); } exclusiveGroupInstance.addNodeInstance(groupNodeInstance); } } break; case PersisterEnums.FOR_EACH_NODE_INSTANCE: while (stream.readShort() == PersisterEnums.NODE_INSTANCE) { readNodeInstance(context, (ForEachNodeInstance) nodeInstance, processInstance); } break; default: // do nothing } return nodeInstance; }