RecordOrientedDatasetReaderPattern
The RecordOrientedDatasetReaderPattern 模式用于从 z/OS® 数据集读取数据。
支持类
- ZFileStreamOrientedTextReader:读取文本数据
- ZFileStreamOrientedByteReader:读取字节数据
- ZFileRecordOrientedDataReader:读取序列数据
必需属性
以下属性对于该模式是必需的。
属性名称 | 值 | 描述 |
---|---|---|
PATTERN_IMPL_CLASS | Java™ 类名 | 实现 RecordOrientedDatasetReaderPattern 接口的类 |
DSNAME | 数据集名称 | 例如,USER216.BATCH.RECORD.OUTPUT |
可选属性
以下属性对于该模式是可选的。
属性名称 | 值 | 描述 |
---|---|---|
ds_parameters | 用于打开数据集的参数。 | ZFileRecordOrientedDataReader 的缺省值是 rb,recfm=fb,type=record,lrecl=80,ZFileStreamOrientedByteReader 和 ZFileStreamOrientedTextReader 的缺省值是 rt |
debug | true 或 false(缺省值为 false) | 在此批处理数据流上启用详细跟踪。 |
EnablePerformanceMeasurement | true 或 false(缺省值为 false) | 如果正使用 GenericXDBatchStep,那么计算批处理数据流和 processRecord 方法中所花的总时间。 |
EnableDetailedPerformanceMeasurement | true 或 false(缺省值为 false) | 提供在批处理数据流的每个方法中花费的更为详细的时间细目。 |
file.encoding | 文件的编码。 | 例如,8859_1。 |
接口定义
public interface RecordOrientedDatasetReaderPattern {
/**
* This method is invoked during the job setup phase.
* The properties are the ones specified in the xJCL.
* @param props
*/
public void initialize(Properties props);
/**
* This method is invoked only once immediately after
* the Zfile is opened. It should be used to process
* header information if any.
* @param reader
* @throws IOException
*/
public void processHeader(ZFile reader) throws IOException;
/**
* This method should read the next record from the Zfile
* and return it in an appropriate form (as an intermediate object)
* @param reader
* @return
* @throws IOException
*/
public Object fetchRecord(ZFile reader) throws IOException;
}
xJCL 示例
<batch-data-streams>
<bds>
<logical-name>inputStream</logical-name>
<props>
<prop name="PATTERN_IMPL_CLASS" value="com.ibm.websphere.batch.samples.tests.bds.EchoReader"/>
<prop name="DSNAME" value="USER216.BATCH.RECORD.INPUT"/>
<prop name="ds_parameters" value="rt"/>
<prop name="file.encoding" value="CP1047"/>
<prop name="debug" value="true"/>
</props>
<impl-class>com.ibm.websphere.batch.devframework.datastreams.patterns.ZFileStreamOrientedByteReader</impl-class>
</bds>
<bds>
<logical-name>outputStream</logical-name>
<props>
<prop name="PATTERN_IMPL_CLASS" value="com.ibm.websphere.batch.samples.tests.bds.EchoWriter"/>
<prop name="DSNAME" value="USER216.BATCH.RECORD.OUTPUT"/>
<prop name="ds_parameters" value="wt"/>
<prop name="file.encoding" value="CP1047"/>
<prop name="debug" value="${debug}"/>
</props>
<impl-class>com.ibm.websphere.batch.devframework.datastreams.patterns.ZFileStreamOrientedByteWriter</impl-class>
</bds>
</batch-data-streams>