在 Linux 2.6.32 上使用 gcc 4.4.3,将 std::basic_ofstream 连接到 FIFO 时出现 bad_cast 异常。
单步调试调试器,我可以看到错误是在标准库的不同位置生成的,因为流或 filebuf 对象的 _M_codecvt 成员为 NULL。它发生的确切位置取决于操作的顺序,但在每个操作中似乎都是相同的原因。
那么我在这里做一些根本上愚蠢的事情吗?ofstream 和 ifstream 工作正常。有什么理由不应该将除 char 之外的任何内容附加到 FIFO 吗?
提前致谢。
编辑:添加源代码。
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <sys/stat.h>
#include <pthread.h>
using namespace std;
//#define CHAR char
#define CHAR unsigned char
bool still_writing = true;
void* reader (void*)
{
basic_ifstream<CHAR> in ("FIFO", fstream::in);
basic_streambuf<CHAR> *stream_buffer = in.rdbuf();
bool no_reads = true;
CHAR buffer[10];
while (stream_buffer->in_avail() ||
still_writing ||
no_reads)
{
in.readsome(buffer, 10);
const int got = (int)in.gcount();
if (got > 0) {
std::cerr << "Got something!\n";
no_reads = false;
}
}
}
int main ()
{
mkfifo ("FIFO", S_IRUSR | S_IWUSR);
pthread_t reader_thread_id;
pthread_create (&reader_thread_id, NULL, reader, NULL);
basic_ofstream<CHAR> out ("FIFO");
out << (CHAR) 70;
still_writing = false;
out.flush();
pthread_join (reader_thread_id, NULL);
remove ("FIFO");
}
在这个版本中,stream_buffer->in_avail()
如果你交换#define
语句,一切都很好。