c++ - 这个 std::ostream 相关的堆栈跟踪是什么意思?

标签 c++ stl stack-trace ostream

我正在尝试为集成/移动平台构建 C++ 库。该平台有一组不错的库,包括 stdc++。我尝试构建的库使用 ofstream,每当它尝试使用依赖于 ofstream 的类时,我都会收到“bad_cast”异常。

0  0xb082d9b1 in SignalKill ()
   from /home/preet/bbndk-2.0.1/target/qnx6/x86/lib/libc.so.3

1  0xb081aa7e in raise ()
   from /home/preet/bbndk-2.0.1/target/qnx6/x86/lib/libc.so.3

2  0xb0818cb8 in abort ()
   from /home/preet/bbndk-2.0.1/target/qnx6/x86/lib/libc.so.3

3  0xb87c48bf in __gnu_cxx::__verbose_terminate_handler ()
    at ../../../../../libstdc++-v3/libsupc++/vterminate.cc:93

4  0xb87c23d6 in __cxxabiv1::__terminate (
    handler=0xb87c47c0 <__gnu_cxx::__verbose_terminate_handler()>)
    at ../../../../../libstdc++-v3/libsupc++/eh_terminate.cc:38

5  0xb87c2421 in std::terminate ()
    at ../../../../../libstdc++-v3/libsupc++/eh_terminate.cc:48

6  0xb87c2563 in __cxxabiv1::__cxa_throw (obj=0x859e710, tinfo=0xb87f4c24, 
    dest=0xb87c0670 <std::bad_cast::~bad_cast()>)
    at ../../../../../libstdc++-v3/libsupc++/eh_throw.cc:83

7  0xb875e88c in std::__throw_bad_cast ()
    at ../../../../../libstdc++-v3/src/functexcept.cc:52

8  0xb8798c0d in __check_facet<std::ctype<char> > (__f=<optimized out>)
    at /home/builder/hudson/650-gcc-4.4/svn/linux-x86-o-ntox86/i486-pc-nto-qnx6.5.0/pic/libstdc++-v3/include/bits/basic_ios.h:49

9  widen (__c=<optimized out>, this=<optimized out>)
    at /home/builder/hudson/650-gcc-4.4/svn/linux-x86-o-ntox86/i486-pc-nto-qnx6.5.0/pic/libstdc++-v3/include/bits/basic_ios.h:440

10 std::endl<char, std::char_traits<char> > (__os=...)
    at /home/builder/hudson/650-gcc-4.4/svn/linux-x86-o-ntox86/i486-pc-nto-qnx6.5.0/pic/libstdc++-v3/include/ostream:539

11 0xb8793c2d in std::ostream::operator<< (this=0x84db220, 
    __pf=0x804f64c <_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_@plt>)
    at /home/builder/hudson/650-gcc-4.4/svn/linux-x86-o-ntox86/i486-pc-nto-qnx6.5.0/pic/libstdc++-v3/include/ostream:113

12 0x0805240d in QDecViewport::QDecViewport (this=0x86da6c0, parent=0x0)
    at ../qml_osg_viewport/qdecviewport.cpp:12

13 0x08051cca in QDeclarativePrivate::QDeclarativeElement<QDecViewport>::QDeclarativeElement (this=0x86da6c0)
    at /usr/local/Trolltech/QtLighthouse-4.8.2-i386/include/QtDeclarative/qdeclarativeprivate.h:83

14 0x08051d3c in QDeclarativePrivate::createInto<QDecViewport> (
    memory=0x86da6c0)
    at /usr/local/Trolltech/QtLighthouse-4.8.2-i386/include/QtDeclarative/qdeclarativeprivate.h:91

15 0xb8ad5ec5 in ?? ()

16 0x086da6c0 in ?? ()

17 0x00000000 in ?? ()

第 7-11 帧是相关的,我需要帮助理解的那些。代码框架 12 所指的行是:

OSG_INFO << "Hello OSG" << std::endl;

其中 OSG_INFO 是用于日志记录的流重定向器。我能够以相同的方式使用 std::cout 而没有任何问题。拆解第 11 帧给我:

__pf=0x804f64c <std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&)@plt>)

这仍然很神秘......如果我试图将一些非常奇怪的东西传递给 ofstream 输出运算符,但它只是文本,我会理解事情会变得疯狂。有人有什么建议吗?

最佳答案

std::endl具有以下行为,引用 C++11 §27.7.3.8/1:

Calls os.put(os.widen('\n')), then os.flush().

第 9 帧表示 endl调用 widen失败了,即 OSG_INFO.widen('\n')正在失败。 widen ,又具有以下行为 (§27.5.5.3/12):

Returns: use_facet< ctype<char_type> >(getloc()).widen(c)

use_facet本身会抛出 bad_cast如果 facet 不存在于 imbued locale (§22.3.2/3) 中,但您的堆栈跟踪并不表明是这种情况。 (话又说回来,我还没有深入研究 libstdc++ 的内部结构来验证它是否按照书上的规定进行操作...)

我假设 __check_facetuse_facet 之前调用(或 use_facet 被内联并从堆栈跟踪中消失),具有相同的净效果;这意味着 OSG_INFO已经充满了一些没有 std::ctype<char> 的语言环境侧面礼物 - 糟糕的时光!

或者,它可能已经充满了一些区域设置,其中存在的方面根本无法处理 widen('\n')优雅地。但是没有办法确定,我们也不能告诉你,不知道是什么OSG_INFO是和/或它是如何实现的。

关于c++ - 这个 std::ostream 相关的堆栈跟踪是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10842307/

相关文章:

c++ - 单个负载是否与多个存储同步?

c++ - 如何使用用户定义的谓词查找 vector 的最大元素

c# - 堆栈跟踪中的敏感信息

java - 程序编译时如何打印堆栈跟踪?

c++ - inline 关键字会影响链接时间优化吗?

c++ - 使用 Visual Studio Code 在 Linux 中创建并编译 "hello world"应用程序

C++多写点流

java - 为什么有些堆栈跟踪在 java 中没有行号

c++ - Qt QFileInfo::exists() 在 C://Program Files 中返回 true

c++ - 基于对 vector 中第一个元素的降序排序没有给出期望的结果