Re: Searching for byte sequence



Hmmm,
The actual format of the file is similar to as follows:
Several lines of "text" header info followed by 10,000bytes of binary data
(which might contain 0x00's) followed by several more lines of header info
and more binary data.
Each header contains txt keywords followed by txt values as to how many
binary bytes are to follow.
Thanks for the help,
Ed


"Joseph M. Newcomer" <newcomer@xxxxxxxxxxxx> wrote in message
news:sg6s04dchm0d9k14edlii190j4lsd0gpee@xxxxxxxxxx
If the text data does not resemble the binary data (that is, binary data
that could look
like your text string) then the Find approach will work. Otherwise, you
need to parse the
structure of the file. Unfortunately, Find and its underlying CRT support
do not have a
notion of "limiting to a range", that is, you can supply a start point,
but not a stop
point.

If there can be no ambiguity with text, I might consider something of the
following:

int n = buffer.Find("text", offset);

then parse the file structure. If n gives me an offset in a string (that
is, presumably
you know where the string data is as offset-and-length, so you parse until
the offset
falls within an offset-and-length range...and if you find that the "next
string" you find
while parsing the file structure is beyond n, then you had one of the
ambiguities, so you
can then set the offset value in the call to be the offset of the string
you just had, and
issue the find again. This might be faster than alternatives if the
search string is
short and you have a lot of strings in the file. If the proportion of
string-to-binary is
low, that is, it is mostly binary, I'd probably be inclined to parse the
structure and
check just the strings. There's no one "easy" answer when you have a mix
like this.
joe

On Tue, 22 Apr 2008 15:00:11 GMT, "Kahlua" <kahlua@xxxxxxxxxx> wrote:

Thanks for all this usefull/informative information.
The files I am reading into buffer contain both text and binary data in
them.
I need to search for a text string and move the position ahead to the
binary
data that follows.
Then I need to extract a known number of bytes to another buffer for
processing.
After the binary data is text again which I need to search again for a
certain string.
Thanks for the help.
Ed


"Joseph M. Newcomer" <newcomer@xxxxxxxxxxxx> wrote in message
news:a5tr04hnp8p1144cakj3araaqaf9k1bl1d@xxxxxxxxxx
See below...
On Tue, 22 Apr 2008 13:24:32 GMT, "Kahlua" <kahlua@xxxxxxxxxx> wrote:

I have a ListBox with a list of files in the c:\data\ folder with the
extension .dat
Now that I have the file coppied into buffer how do I search through the
buffer
for a specific sequence of bytes?

Thanks,
Ed

void CMyApp::OnSelchangeList()
{
CString mess;
CString JobFile;
char cSelect[50];
****
TCHAR cSelect[MAX_PATH];
at the VERY least. Better still,

CString cSelect;
****
int Length;
int nSelect;
CByteArray buffer;
CFile in;

nSelect=SendDlgItemMessage(IDC_LIST, LB_GETCURSEL, 0, 0L);
****
Why such a crude and antiquated mechanism? Create a control variable
for
your list and do
nSelect = c_List.GetCurSel();
note how much easier it is!
****
DlgDirSelect((LPSTR) cSelect, IDC_LIST);
****
Note that DlgDirSelect makes the GetCurSel superfluous, but actually the
simplest thing to
do is to write
c_List.GetText(nSelect, cSelect);
which is a whole lot easier
****
Length=strlen(cSelect);
if (cSelect[Length-1]==0x2e)
cSelect[Length-1]=0;
****
I can't figure out what this is doing because I have no idea what the
purpose of it is.
For example, what in the world is 0x2e? Perhaps you meant to write
if(cSelect[Length-1] == _T(','))
?

If you are testing for a character, it is generally considered good
programming practice
to use the character, and not its hex equivalent.

Also, using the obsolete 'char' data type is not good programming
practice; you should get
the length by writing
Length = _tcslen(cSelect);

But note that this is much more readily written if you have a CString:
if(cSelect.Right(1) == _T("."))
cSelect = cSelect.Left(cSelect.GetLength() - 1);
which is a lot easier to write and understand. Note that you don't need
to get the length
as a separate variable.
****
JobFile = _T("c:\\data\\");
****
You are correctly using _T() here, but in a Unicode build the next line
would fail
****
JobFile += cSelect;
JobFile += ".dat";
****
So why did you use _T() in one literal but not in another?
****
mess = "Would you like to load ";
mess += cSelect;
mess += " as top ?";
****
This would be a lot easier to write as
CString mess;
mess.Format(_T("Would you like to load \"%s\" as top ?"), cSelect);

Note that you do not need to declare the variable at the top; you do not
need to declare
it until it is actually needed. Better still, put that string in the
STRINGTABLE and load
it, so you can localize
****
int a = MessageBox (mess, "Query", MB_ICONINFORMATION|MB_YESNO);
****
int a = AfxMessageBox(mess, MB_ICONQUESTION | MB_YESNO);

It is NOT an information prompt, it is a question prompt. Use
AfxMessageBox, which
follows recommended best practice for the caption (uses the program
name).
Use white
space around binary operators to make them legible
****
if (a==IDNO) return;
****
It would be safer to say
if(a != IDYES)
return;

This tests for the actual meaningful value; note the whitespace around
the
operator; note
that it uses two lines, which makes it easier to debug.
****

if(!in.Open(JobFile, CFile::modeRead)){
DWORD err = ::GetLastError();
CString msg;
msg.Format(_T("Error opening file: %d"), err);
AfxMessageBox(msg);
return;
}
buffer.SetSize(in.GetLength());
if((INT_PTR)in.Read(buffer.GetData(), buffer.GetSize()) !=
buffer.GetSize()){
DWORD err = ::GetLastError();
CString msg;
msg.Format(_T("Error reading file: %d"), err);
AfxMessageBox(msg);
return;
}
****
Are you searching for text or a binary pattern not expressible as text?
If this is text,
and is known to be 8-bit characters, always, one solution is
CStringA buffer;
LPSTR p = buffer.GetBuffer(in.GetLength());
if((INT_PTR)in.Read(p, in.GetLength()) != in.GetLength())
... as above

buffer.ReleaseBuffer(in.GetLength());
int n = buffer.Find("abc");
if(n < 0)
...not found
else
...found

If you need to find all instances of an 8-bit character string, you
would
have a loop, and
the second parameter of Find would give the starting offset for the next
search.

However, if your file is in UTF-8 encoding, you would have to use the
UTF-8 representation
of the string (the most efficient means) or convert the file to a
Unicode
representation
(not efficient for large files, especially if the string ends up not
being
found). If
your file is potentially Unicode, life gets a good deal more complex,
but
I don't want to
get into that here right now.
****
in.Close();
}

Joseph M. Newcomer [MVP]
email: newcomer@xxxxxxxxxxxx
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm

Joseph M. Newcomer [MVP]
email: newcomer@xxxxxxxxxxxx
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm


.



Relevant Pages

  • Re: Searching for byte sequence
    ... for a string? ... would read a header and search it, then if nothing is found, skip the 10K ... If n gives me an offset in a string ... CString cSelect; ...
    (microsoft.public.vc.mfc)
  • Re: Searching for byte sequence
    ... The files I am reading into buffer contain both text and binary data in ... I need to search for a text string and move the position ahead to the binary ... CString cSelect; ...
    (microsoft.public.vc.mfc)
  • Re: Searching for byte sequence
    ... If the text data does not resemble the binary data (that is, ... like your text string) then the Find approach will work. ... The files I am reading into buffer contain both text and binary data in ... CString cSelect; ...
    (microsoft.public.vc.mfc)
  • Re: Searching for byte sequence
    ... I need to extract the date after each header. ... several strings (lines don't count; a string is either NUL-terminated or ... If n gives me an offset in a string ... CString cSelect; ...
    (microsoft.public.vc.mfc)
  • Re: Printing PCX image
    ... I haven't tried printing an image although I have worked with Zebra printers. ... I am trying to print a B&W PCX image to a Zebra RW420 file. ... PCX 0 30 {binary data} ... I cannot use a file reference in the PCX, I must embed the file data into the string because I am storing it away in a DB and printing it later so I only have access to a string. ...
    (microsoft.public.dotnet.framework.compactframework)

Loading