--- nono/lib/header.h 2026/04/29 17:04:28 1.1.1.2 +++ nono/lib/header.h 2026/04/29 17:05:52 1.1.1.22 @@ -1,53 +1,52 @@ // // nono -// Copyright (C) 2017 isaki@NetBSD.org +// Copyright (C) 2020 nono project +// Licensed under nono-license.txt // -#pragma once +// +// 基本ヘッダ +// -#define NONO_MAJOR_VER (0) -#define NONO_MINOR_VER (0) -#define NONO_PATCH_VER (2) +#pragma once -#include "config.h" +#include "config-nono.h" #include -#include #include #include #include #include #include #include +#include #include #include #include #include #include -#include #include -typedef uint8_t uint8; -typedef uint16_t uint16; -typedef uint32_t uint32; -typedef uint64_t uint64; -typedef int8_t int8; -typedef int16_t int16; -typedef int32_t int32; -typedef int64_t int64; - -#if defined(HAVE_ENDIAN_H) -#include -#elif defined(HAVE_SYS_ENDIAN_H) -#include -#else -#include "missing_endian.h" -#endif +using uint8 = uint8_t; +using uint16 = uint16_t; +using uint32 = uint32_t; +using uint64 = uint64_t; +using int8 = int8_t; +using int16 = int16_t; +using int32 = int32_t; +using int64 = int64_t; #if defined(HAVE_BSD_BSD_H) #include #endif +#include "myendian.h" + +// For cppcheck... +#if !defined(__CONCAT) +#define __CONCAT(a, b) a ## b +#endif + #if !defined(__printflike) #if defined(HAVE___ATTRIBUTE_FORMAT) # define __printflike(a,b) __attribute__((__format__(__printf__, (a), (b)))) @@ -79,15 +78,18 @@ typedef int64_t int64; #endif #endif -#if !defined(__predict_true) +// FreeBSD(12.1) の __predict_true/false は定義がいまいちで使えない。 +// __builtin_expect() があることが分かればどの環境でも自前で定義できるので +// 既存定義は取り消す。 #if defined(HAVE___BUILTIN_EXPECT) +# undef __predict_true +# undef __predict_false # define __predict_true(exp) __builtin_expect((exp) != 0, 1) # define __predict_false(exp) __builtin_expect((exp) != 0, 0) -#else +#elif !defined(__predict_true) # define __predict_true(exp) (exp) # define __predict_false(exp) (exp) #endif -#endif #if !defined(__unused) #if defined(HAVE___ATTRIBUTE_UNUSED) @@ -97,7 +99,9 @@ typedef int64_t int64; #endif #endif -#if defined(HAVE___ATTRIBUTE_FALLTHROUGH) +#if defined(__clang__) +# define FALLTHROUGH [[clang::fallthrough]] +#elif defined(HAVE___ATTRIBUTE_FALLTHROUGH) # define FALLTHROUGH __attribute__((__fallthrough__)) #else # define FALLTHROUGH ((void)0) @@ -109,44 +113,64 @@ typedef int64_t int64; # define NO_SANITIZE(x) #endif +// 64ビット数と2つの32ビット数を扱う共用体。 +// 構造はまったく同じだが名前だけ場所に合わせてつけたい。 +#if BYTE_ORDER == LITTLE_ENDIAN +#define DEF_UNION64(NAME, Q, H, L) \ + union NAME { \ + uint64 Q; \ + struct { uint32 L, H; }; \ + } +#else +#define DEF_UNION64(NAME, Q, H, L) \ + union NAME { \ + uint64 Q; \ + struct { uint32 H, L; }; \ + } +#endif + +DEF_UNION64(union64, q, h, l); + #ifndef countof #define countof(x) (sizeof(x) / sizeof(x[0])) #endif -// NetBSD は pthread_setname_np(threadID, name, arg) だが -// Linux は pthread_setname_np(threadID, name) で -// MacOSX は pthread_setname_np(name) だったりする。 -// 今の所 NetBSD でも arg はいらないので(というか NetBSD の name, arg の -// デザインはおかしい)、引数1つバージョンに揃えることにする。 -#if HAVE_PTHREAD_SETNAME_NP == 3 -#define pthread_setname_np(name) pthread_setname_np(pthread_self(), name, NULL) -#elif HAVE_PTHREAD_SETNAME_NP == 2 -#define pthread_setname_np(name) pthread_setname_np(pthread_self(), name) -#endif - -// 便利マクロ -#define kevent_set(k, e, n) kevent((k), (e), (n), NULL, 0, NULL) -#define kevent_poll(k, e, n, t) kevent((k), NULL, 0, (e), (n), (t)) - -// atomic_compare_exchange_strong() の短縮マクロ。 -// ライブラリ実装は第2引数の expected が値ではなくポインタなので一旦代入操作を -// 行わないといけないのと、第3引数の newval は型が uint8 だと int 即値が書けず -// (int8) でキャストしないといけない。 -// その上 atomic_compare_exchange_strong() が長い、と、いろいろ微妙なので、 -// その辺を短くするマクロを用意する。ただしこれでは expected 変数の型が -// 自動判別できないので、_8 と _32 を用意するところは妥協。 -// (static) inline 関数にすることも出来るけどそうするとここで ヘッダ -// を読み込まなければならなくなるため、マクロで実現する。 -#define atomic_cas_8(varp, expval, newval) ({ \ - uint8 expected = (expval); \ - atomic_compare_exchange_strong((varp), &expected, (uint8)(newval)); \ -}) -#define atomic_cas_32(varp, expval, newval) ({ \ - uint32 expected = (expval); \ - atomic_compare_exchange_strong((varp), &expected, (uint32)(newval)); \ -}) - -// ログ -#define PANIC(...) panic(__PRETTY_FUNCTION__, __VA_ARGS__) -[[noreturn]] extern void panic(const char *funcname, const char *fmt, ...) - __printflike(2, 3); +#ifndef howmany +#define howmany(x, y) (((x)+((y)-1))/(y)) +#endif + +#ifndef roundup +#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) +#endif + +#ifndef rounddown +#define rounddown(x, y) (((x)/(y))*(y)) +#endif + +// メッセージ付きの assert。 +// 本当は後ろに足したいのだがそれは無理なので、せめてそれっぽく1行にしてみる。 +#if !defined(NDEBUG) +#define assertmsg(expr, ...) do { \ + if (__predict_false(!(expr))) { \ + fprintf(stderr, __VA_ARGS__); \ + fprintf(stderr, ": "); \ + assert(expr); \ + } \ +} while (0) +#else +#define assertmsg(expr, ...) +#endif + +// __func__ のようだけどクラス名と関数名だけを表示する。 +// __PRETTY_FUNCTION__ が近いけど、あれは戻り値やら引数全部表示するので。 +#define __method__ \ + (get_classfunc_name(__PRETTY_FUNCTION__, __FUNCTION__).c_str()) +extern std::string get_classfunc_name(const char *pretty, const char *func); + +// iconv() の第2引数の型は OS によって違う… +#if defined(HAVE_ICONV_CONST) +#define ICONV(cd, s, slen, d, dlen) iconv((cd), (s), (slen), (d), (dlen)) +#else +#define ICONV(cd, s, slen, d, dlen) \ + iconv((cd), const_cast(s), (slen), (d), (dlen)) +#endif