err.hpp 4.41 KB
Newer Older
Martin Sustrik's avatar
Martin Sustrik committed
1
/*
Martin Sustrik's avatar
Martin Sustrik committed
2
    Copyright (c) 2009-2011 250bpm s.r.o.
3 4
    Copyright (c) 2007-2011 iMatix Corporation
    Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
Martin Sustrik's avatar
Martin Sustrik committed
5 6 7 8

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
9
    the terms of the GNU Lesser General Public License as published by
Martin Sustrik's avatar
Martin Sustrik committed
10 11 12 13 14 15
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    0MQ is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU Lesser General Public License for more details.
Martin Sustrik's avatar
Martin Sustrik committed
17

18
    You should have received a copy of the GNU Lesser General Public License
Martin Sustrik's avatar
Martin Sustrik committed
19 20 21
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

Martin Sustrik's avatar
Martin Sustrik committed
22 23
#ifndef __ZMQ_ERR_HPP_INCLUDED__
#define __ZMQ_ERR_HPP_INCLUDED__
Martin Sustrik's avatar
Martin Sustrik committed
24

25 26 27
//  0MQ-specific error codes are defined in zmq.h
#include "../include/zmq.h"

Martin Sustrik's avatar
Martin Sustrik committed
28 29
#include <assert.h>
#include <errno.h>
30
#include <string.h>
Martin Sustrik's avatar
Martin Sustrik committed
31 32 33 34
#include <stdlib.h>
#include <stdio.h>

#include "platform.hpp"
35
#include "likely.hpp"
Martin Sustrik's avatar
Martin Sustrik committed
36

Martin Sustrik's avatar
Martin Sustrik committed
37
#ifdef ZMQ_HAVE_WINDOWS
Martin Sustrik's avatar
Martin Sustrik committed
38 39 40 41 42
#include "windows.hpp"
#else
#include <netdb.h>
#endif

43 44 45
namespace zmq
{
    const char *errno_to_string (int errno_);
46
    void zmq_abort (const char *errmsg_);
47 48
}

Martin Sustrik's avatar
Martin Sustrik committed
49
#ifdef ZMQ_HAVE_WINDOWS
Martin Sustrik's avatar
Martin Sustrik committed
50

Martin Sustrik's avatar
Martin Sustrik committed
51
namespace zmq
Martin Sustrik's avatar
Martin Sustrik committed
52 53
{
    const char *wsa_error ();
54
    const char *wsa_error_no (int no_);
Martin Sustrik's avatar
Martin Sustrik committed
55
    void win_error (char *buffer_, size_t buffer_size_);
56
    void wsa_error_to_errno ();
Martin Sustrik's avatar
Martin Sustrik committed
57 58 59
}

//  Provides convenient way to check WSA-style errors on Windows.
60 61 62 63 64 65 66
#define wsa_assert(x) \
    do {\
        if (unlikely (!(x))) {\
            const char *errstr = zmq::wsa_error ();\
            if (errstr != NULL) {\
                fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
                    __FILE__, __LINE__);\
67
                zmq::zmq_abort (errstr);\
68 69 70 71
            }\
        }\
    } while (false)

72 73 74 75 76 77 78
//  Provides convenient way to assert on WSA-style errors on Windows.
#define wsa_assert_no(no) \
    do {\
        const char *errstr = zmq::wsa_error_no (no);\
        if (errstr != NULL) {\
            fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
                __FILE__, __LINE__);\
79
            zmq::zmq_abort (errstr);\
80 81 82
        }\
    } while (false)

83 84 85 86 87 88 89 90
// Provides convenient way to check GetLastError-style errors on Windows.
#define win_assert(x) \
    do {\
        if (unlikely (!(x))) {\
            char errstr [256];\
            zmq::win_error (errstr, 256);\
            fprintf (stderr, "Assertion failed: %s (%s:%d)\n", errstr, \
                __FILE__, __LINE__);\
91
            zmq::zmq_abort (errstr);\
92 93
        }\
    } while (false)
Martin Sustrik's avatar
Martin Sustrik committed
94 95 96 97 98 99

#endif

//  This macro works in exactly the same way as the normal assert. It is used
//  in its stead because standard assert on Win32 in broken - it prints nothing
//  when used within the scope of JNI library.
100 101 102 103 104
#define zmq_assert(x) \
    do {\
        if (unlikely (!(x))) {\
            fprintf (stderr, "Assertion failed: %s (%s:%d)\n", #x, \
                __FILE__, __LINE__);\
105
            zmq::zmq_abort (#x);\
106 107
        }\
    } while (false) 
Martin Sustrik's avatar
Martin Sustrik committed
108 109

//  Provides convenient way to check for errno-style errors.
110 111 112
#define errno_assert(x) \
    do {\
        if (unlikely (!(x))) {\
113 114 115
            const char *errstr = strerror (errno);\
            fprintf (stderr, "%s (%s:%d)\n", errstr, __FILE__, __LINE__);\
            zmq::zmq_abort (errstr);\
116 117
        }\
    } while (false)
Martin Sustrik's avatar
Martin Sustrik committed
118

119
//  Provides convenient way to check for POSIX errors.
120 121 122
#define posix_assert(x) \
    do {\
        if (unlikely (x)) {\
123 124 125
            const char *errstr = strerror (x);\
            fprintf (stderr, "%s (%s:%d)\n", errstr, __FILE__, __LINE__);\
            zmq::zmq_abort (errstr);\
126 127
        }\
    } while (false)
128

129
//  Provides convenient way to check for errors from getaddrinfo.
130 131 132 133 134
#define gai_assert(x) \
    do {\
        if (unlikely (x)) {\
            const char *errstr = gai_strerror (x);\
            fprintf (stderr, "%s (%s:%d)\n", errstr, __FILE__, __LINE__);\
135
            zmq::zmq_abort (errstr);\
136 137
        }\
    } while (false)
Martin Sustrik's avatar
Martin Sustrik committed
138

139 140
//  Provides convenient way to check whether memory allocation have succeeded.
#define alloc_assert(x) \
Martin Hurton's avatar
Martin Hurton committed
141
    do {\
142 143 144
        if (unlikely (!x)) {\
            fprintf (stderr, "FATAL ERROR: OUT OF MEMORY (%s:%d)\n",\
                __FILE__, __LINE__);\
145
            zmq::zmq_abort ("FATAL ERROR: OUT OF MEMORY");\
146
        }\
Martin Hurton's avatar
Martin Hurton committed
147
    } while (false)
148 149 150 151

#endif