File: throw_exception_test4.cpp

package info (click to toggle)
boost1.90 1.90.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 593,168 kB
  • sloc: cpp: 4,190,642; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,776; makefile: 1,162; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (133 lines) | stat: -rw-r--r-- 3,586 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright 2018 Peter Dimov
//
// Distributed under the Boost Software License, Version 1.0.
//
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt

#include <boost/throw_exception.hpp>
#include <boost/exception/get_error_info.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <cstring>

class my_exception: public std::exception
{
};

class my_exception2: public std::exception, public boost::exception
{
};

class my_exception3: public std::exception, public virtual boost::exception
{
};

char const* translate_function( char const * fn, char const * cfn )
{
    // fn comes from BOOST_CURRENT_LOCATION, which is not necessarily the same as BOOST_CURRENT_FUNCTION
    // so translate the known problematic cases to BOOST_CURRENT_FUNCTION to make the test pass
    return fn[0] == 0 || std::strcmp( fn, "main" ) == 0 || std::strcmp( fn, "int __cdecl main(void)" ) == 0? cfn: fn;
}

static char const* adjust_filename( char const* file )
{
#if defined(__INTEL_LLVM_COMPILER) && __INTEL_LLVM_COMPILER >= 20210300

    char const* fn = std::strrchr( file, '/' );
    return fn? fn + 1: file;

#else

    return file;

#endif
}

int main()
{
    try
    {
        BOOST_THROW_EXCEPTION( my_exception() );
    }
    catch( boost::exception const & x )
    {
        {
            char const * const * file = boost::get_error_info<boost::throw_file>( x );

            BOOST_TEST( file != 0 );
            BOOST_TEST_CSTR_EQ( *file, adjust_filename(__FILE__) );
        }

        {
            int const * line = boost::get_error_info<boost::throw_line>( x );

            BOOST_TEST( line != 0 );
            BOOST_TEST_EQ( *line, 50 );
        }

        {
            char const * const * function = boost::get_error_info<boost::throw_function>( x );

            BOOST_TEST( function != 0 );
            BOOST_TEST_CSTR_EQ( translate_function( *function, BOOST_CURRENT_FUNCTION ), BOOST_CURRENT_FUNCTION );
        }
    }

    try
    {
        BOOST_THROW_EXCEPTION( my_exception2() );
    }
    catch( boost::exception const & x )
    {
        {
            char const * const * file = boost::get_error_info<boost::throw_file>( x );

            BOOST_TEST( file != 0 );
            BOOST_TEST_CSTR_EQ( *file, adjust_filename(__FILE__) );
        }

        {
            int const * line = boost::get_error_info<boost::throw_line>( x );

            BOOST_TEST( line != 0 );
            BOOST_TEST_EQ( *line, 78 );
        }

        {
            char const * const * function = boost::get_error_info<boost::throw_function>( x );

            BOOST_TEST( function != 0 );
            BOOST_TEST_CSTR_EQ( translate_function( *function, BOOST_CURRENT_FUNCTION ), BOOST_CURRENT_FUNCTION );
        }
    }

    try
    {
        BOOST_THROW_EXCEPTION( my_exception3() );
    }
    catch( boost::exception const & x )
    {
        {
            char const * const * file = boost::get_error_info<boost::throw_file>( x );

            BOOST_TEST( file != 0 );
            BOOST_TEST_CSTR_EQ( *file, adjust_filename(__FILE__) );
        }

        {
            int const * line = boost::get_error_info<boost::throw_line>( x );

            BOOST_TEST( line != 0 );
            BOOST_TEST_EQ( *line, 106 );
        }

        {
            char const * const * function = boost::get_error_info<boost::throw_function>( x );

            BOOST_TEST( function != 0 );
            BOOST_TEST_CSTR_EQ( translate_function( *function, BOOST_CURRENT_FUNCTION ), BOOST_CURRENT_FUNCTION );
        }
    }

    return boost::report_errors();
}