Hi Andy,
We have weather too here - though it seldom results in a power outage.
Thanks for that. I have half moved on, if I may explain:
Due to the massive help I've had here I now have a neat program that works under all circumstances that I can use: it uses ifstream and getline.
But it also uses a sledgehammer to break a nut, and I'm not happy with that. Specifically, if the reader encounters the EOF condition, my program closes and re-opens the FIFO to ensure that if no writers have the FIFO open at thst instant, the subsequent call to getline remains blocked.
The reader is a a part of a general capability, providing an interface to mutiple writers which (for a variety of reasons) are unable to call C++ or access the hardware directlty. I cannot guarantee that at least one such caller/writer will have the FIFO open at any given instant.
I have in fact tried opening the reader in read-write mode so that the FIFO always thinks there is a writer who has the FIFO open. This did not appear to work, but as you (on first reading) seem to think it should, I will read what yhou have said very carefully and try again.
I've had a problem with my Pi; as soon as I've solved that I'll post the program that I have. Obviously I'll convert it to a function once I'm completely happy to insert it into the larger system: the spec for that (ideally) is that it takes one input parameter (the ifstream pointer) and returns the next complete line of input as a stringstream (since that's the class most suitable for parsing the line). If I have to close and reopen the FIFO inside this function to ensure that calls to getline are always blocked, the input parameter woulold be the FIFO name rather than the pointer to the ifstream.
Cheers
Peter
We have weather too here - though it seldom results in a power outage.
Thanks for that. I have half moved on, if I may explain:
Due to the massive help I've had here I now have a neat program that works under all circumstances that I can use: it uses ifstream and getline.
But it also uses a sledgehammer to break a nut, and I'm not happy with that. Specifically, if the reader encounters the EOF condition, my program closes and re-opens the FIFO to ensure that if no writers have the FIFO open at thst instant, the subsequent call to getline remains blocked.
The reader is a a part of a general capability, providing an interface to mutiple writers which (for a variety of reasons) are unable to call C++ or access the hardware directlty. I cannot guarantee that at least one such caller/writer will have the FIFO open at any given instant.
I have in fact tried opening the reader in read-write mode so that the FIFO always thinks there is a writer who has the FIFO open. This did not appear to work, but as you (on first reading) seem to think it should, I will read what yhou have said very carefully and try again.
I've had a problem with my Pi; as soon as I've solved that I'll post the program that I have. Obviously I'll convert it to a function once I'm completely happy to insert it into the larger system: the spec for that (ideally) is that it takes one input parameter (the ifstream pointer) and returns the next complete line of input as a stringstream (since that's the class most suitable for parsing the line). If I have to close and reopen the FIFO inside this function to ensure that calls to getline are always blocked, the input parameter woulold be the FIFO name rather than the pointer to the ifstream.
Cheers
Peter
Statistics: Posted by Peter Cyriax — Sat Mar 09, 2024 9:06 pm