|
On 11/30/2011 2:07 PM, Mark S. Waterbury wrote:
Does this data contain any embedded null characters (x'00')? If so,No, it will be simple text.
then you may find using the C functions can be somewhat
"problematic" as C strings are "null terminated" -- this means as
soon as a X'00' is encountered, it is considered to be "end of
string." *:-/*
You might also want to look at the following New MI instructionsI'm more familiar with C functions than I am with MI.
available for use as built-in functions in any ILE language:
Where is this data coming from? Is it in a stream file in the IFS? IfHmmm ... the data isn't coming from a stream file, but it's possible that the file could be written to a stream file.
so, you might also want to consider using the _mmap() or _mmap64()
API to map the entire stream file into teraspace, where you can then
easily search it, without the overhead of having to read the file
first.
Obviously I'll still need to use the C functions to scan& extract the contents ... but using mmap could eliminate some of the problems with loading the data.
Thanks!
david
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.