Class HdaBinderSerializer
java.lang.Object
oracle.stellent.ridc.model.serialize.HdaBinderSerializer
- All Implemented Interfaces:
Serializable
Serializes a databinder to HDA format
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String[]
Internally used data types that are supported in the HDA format that the databinder writes to, and reads from.static final byte[]
-
Constructor Summary
ConstructorsConstructorDescriptionHdaBinderSerializer
(String encoding, DataFactory dataFactory) HdaBinderSerializer
(String encoding, DataFactory dataFactory, boolean skipIdcHeaderProps) -
Method Summary
Modifier and TypeMethodDescriptionprotected byte[]
Utility function to obtain a byte stream based on the encoding set, or to the default system encoding if no encoding is set.Obtain the file encoding for the files referenced in this object.protected int
getFieldType
(String fieldData) Parse and get the numerical value of the field type given a string.protected int
This returns the index (or the numerical value) of the type.protected void
packageOptionList
(Writer writer, List<String> options, String name) Turns the option list into a hda formatted string, and writes the data to the writer.protected void
packageProperties
(Writer writer, DataObject dataObject, String name, Protocol.NullHandlingStrategy nullStrategy) Turns the properties object into a hda formatted string, and writes the data to the writer.protected void
packageResultSet
(Writer writer, DataResultSet aSet, String name) Turns the result set into a hda formatted string, and writes the data to the writer.parseBinder
(InputStream inputStream) Parses a BufferedReader object, and loads up the data into a new DataBinder objectparseBinder
(Reader inputReader) Parses a BufferedReader object, and loads up the data into a new DataBinder objectprotected boolean
parseNameValue
(DataObject dataObject, String envPair, String delimiter) Split a name-value pair separated by a delimiter into its parts, and place the value in the local dataprotected void
parseOptionList
(DataBinder dataBinder, String name, BufferedReader reader) Parse the buffered reader, and create a new option list with the data contained in it, until the @end line is reached.protected boolean
parseProperties
(DataBinder dataBinder, String name, BufferedReader reader) Parse hda formatted properties, and merge the values into the local data if those values are not from the environment.protected void
parseResultSet
(DataBinder dataBinder, String rName, BufferedReader reader) Parses the LWDataBinder object for the result set with a certain nameprotected String
readLine
(BufferedReader reader, boolean suppress) Reads a line from a reader, and throws an exception if it cannot, unless 'suppress' is set to true.protected boolean
readProperties
(BufferedReader reader, DataObject props, String endMark, boolean isJava) Read properties values in from a buffered reader and into a properties object.protected List<DataResultSet.Field>
readResultSetHeader
(BufferedReader bReader) Parses the column information for the result set from a character streamprotected void
readToEnd
(BufferedReader reader) Advance the reader until the '@end' value is found on a line.void
serializeBinder
(OutputStream outputStream, DataBinder dataBinder) Writes out the local data, option lists, and result sets in hda format.void
serializeBinder
(OutputStream outputStream, DataBinder dataBinder, Protocol.NullHandlingStrategy nullStrategy) Writes out the local data, option lists, and result sets in hda format.void
serializeBinder
(Writer writer, DataBinder dataBinder) Writes out the local data, option lists, and result sets in hda format.void
serializeBinder
(Writer writer, DataBinder dataBinder, Protocol.NullHandlingStrategy nullStrategy) Writes out the local data, option lists, and result sets in hda format.void
setEncoding
(String encoding) Set the encoding for the files referenced in this object.
-
Field Details
-
DATA_TYPES
Internally used data types that are supported in the HDA format that the databinder writes to, and reads from. -
REPLACEMENT_CHARACTER
public static final byte[] REPLACEMENT_CHARACTER
-
-
Constructor Details
-
HdaBinderSerializer
-
HdaBinderSerializer
-
-
Method Details
-
getDataFactory
-
parseBinder
Parses a BufferedReader object, and loads up the data into a new DataBinder object- Parameters:
inputStream
- the binder input stream- Returns:
- the binder
- Throws:
IOException
-
parseBinder
Parses a BufferedReader object, and loads up the data into a new DataBinder object- Parameters:
inputReader
- the reader containing the binder characters- Returns:
- the binder
- Throws:
IOException
-
serializeBinder
Writes out the local data, option lists, and result sets in hda format.- Parameters:
outputStream
- the stream to write the binderdataBinder
- the data binder to serialize- Throws:
IOException
- if an exception occurs during serialization
-
serializeBinder
public void serializeBinder(OutputStream outputStream, DataBinder dataBinder, Protocol.NullHandlingStrategy nullStrategy) throws IOException Writes out the local data, option lists, and result sets in hda format.- Parameters:
outputStream
- the stream to write the binderdataBinder
- the data binder to serializenullStrategy
- how to treat null value localdata props- Throws:
IOException
- if an exception occurs during serialization
-
serializeBinder
Writes out the local data, option lists, and result sets in hda format.- Parameters:
writer
- the writer to send the binderdataBinder
- the data binder to serialize- Throws:
IOException
- if an exception occurs during serialization
-
serializeBinder
public void serializeBinder(Writer writer, DataBinder dataBinder, Protocol.NullHandlingStrategy nullStrategy) throws IOException Writes out the local data, option lists, and result sets in hda format.- Parameters:
writer
- the writer to send the binderdataBinder
- the data binder to serializenullStrategy
- how to treat null value localdata props- Throws:
IOException
- if an exception occurs during serialization
-
parseProperties
protected boolean parseProperties(DataBinder dataBinder, String name, BufferedReader reader) throws IOException Parse hda formatted properties, and merge the values into the local data if those values are not from the environment.- Parameters:
dataBinder
- the data bindername
- the properties namereader
- the input reader- Returns:
- true if successful
- Throws:
IOException
-
readProperties
protected boolean readProperties(BufferedReader reader, DataObject props, String endMark, boolean isJava) throws IOException Read properties values in from a buffered reader and into a properties object.- Parameters:
reader
- the input readerprops
- the data object to send the propertiesendMark
- the end mark to look forisJava
- true if this is a java-based request- Returns:
- true if the parsing was successful
- Throws:
IOException
-
parseNameValue
Split a name-value pair separated by a delimiter into its parts, and place the value in the local data- Parameters:
dataObject
- the dataObject to store the resultenvPair
- the encoded name/value pairdelimiter
- the delimiting character in the envPair- Returns:
- true if successful
-
readToEnd
Advance the reader until the '@end' value is found on a line.- Parameters:
reader
- the input reader- Throws:
IOException
-
parseOptionList
protected void parseOptionList(DataBinder dataBinder, String name, BufferedReader reader) throws IOException Parse the buffered reader, and create a new option list with the data contained in it, until the @end line is reached. The option list will then be placed in this DataBinder object- Throws:
IOException
-
readLine
Reads a line from a reader, and throws an exception if it cannot, unless 'suppress' is set to true.- Throws:
IOException
-
parseResultSet
protected void parseResultSet(DataBinder dataBinder, String rName, BufferedReader reader) throws IOException Parses the LWDataBinder object for the result set with a certain name- Parameters:
rName
- The name of the result setreader
- A character stream to be parsed to find the result set- Throws:
IOException
-
readResultSetHeader
Parses the column information for the result set from a character stream- Parameters:
bReader
- Character stream containing the result set information- Returns:
- The number of fields in the parsed result set.
- Throws:
IOException
-
getTypeIndex
This returns the index (or the numerical value) of the type.- Parameters:
type
- the field type- Returns:
- the numerical value of the type
-
getFieldType
Parse and get the numerical value of the field type given a string. The field type is either the first integer that is in the string.- Parameters:
fieldData
-- Returns:
-
packageProperties
protected void packageProperties(Writer writer, DataObject dataObject, String name, Protocol.NullHandlingStrategy nullStrategy) throws IOException Turns the properties object into a hda formatted string, and writes the data to the writer.- Throws:
IOException
-
packageResultSet
Turns the result set into a hda formatted string, and writes the data to the writer.- Throws:
IOException
-
packageOptionList
protected void packageOptionList(Writer writer, List<String> options, String name) throws IOException Turns the option list into a hda formatted string, and writes the data to the writer.- Throws:
IOException
-
getBytes
Utility function to obtain a byte stream based on the encoding set, or to the default system encoding if no encoding is set.- Throws:
UnsupportedEncodingException
-
getEncoding
Obtain the file encoding for the files referenced in this object. -
setEncoding
Set the encoding for the files referenced in this object.
-