1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ 2 /* dbus-string-private.h String utility class (internal to D-Bus implementation) 3 * 4 * Copyright (C) 2002, 2003 Red Hat, Inc. 5 * 6 * Licensed under the Academic Free License version 2.1 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * 22 */ 23 24 #ifndef DBUS_STRING_PRIVATE_H 25 #define DBUS_STRING_PRIVATE_H 26 27 #include <dbus/dbus-memory.h> 28 #include <dbus/dbus-types.h> 29 30 #ifndef DBUS_CAN_USE_DBUS_STRING_PRIVATE 31 #error "Don't go including dbus-string-private.h for no good reason" 32 #endif 33 34 DBUS_BEGIN_DECLS 35 36 /** 37 * @brief Internals of DBusString. 38 * 39 * DBusString internals. DBusString is an opaque objects, it must be 40 * used via accessor functions. 41 */ 42 typedef struct 43 { 44 unsigned char *str; /**< String data, plus nul termination */ 45 int len; /**< Length without nul */ 46 int allocated; /**< Allocated size of data */ 47 int max_length; /**< Max length of this string, without nul byte */ 48 unsigned int constant : 1; /**< String data is not owned by DBusString */ 49 unsigned int locked : 1; /**< DBusString has been locked and can't be changed */ 50 unsigned int invalid : 1; /**< DBusString is invalid (e.g. already freed) */ 51 unsigned int align_offset : 3; /**< str - align_offset is the actual malloc block */ 52 } DBusRealString; 53 54 55 /** 56 * @defgroup DBusStringInternals DBusString implementation details 57 * @ingroup DBusInternals 58 * @brief DBusString implementation details 59 * 60 * The guts of DBusString. 61 * 62 * @{ 63 */ 64 65 /** 66 * This is the maximum max length (and thus also the maximum length) 67 * of a DBusString 68 */ 69 #define _DBUS_STRING_MAX_MAX_LENGTH (_DBUS_INT32_MAX - _DBUS_STRING_ALLOCATION_PADDING) 70 71 /** 72 * Checks a bunch of assertions about a string object 73 * 74 * @param real the DBusRealString 75 */ 76 #define DBUS_GENERIC_STRING_PREAMBLE(real) _dbus_assert ((real) != NULL); _dbus_assert (!(real)->invalid); _dbus_assert ((real)->len >= 0); _dbus_assert ((real)->allocated >= 0); _dbus_assert ((real)->max_length >= 0); _dbus_assert ((real)->len <= ((real)->allocated - _DBUS_STRING_ALLOCATION_PADDING)); _dbus_assert ((real)->len <= (real)->max_length) 77 78 /** 79 * Checks assertions about a string object that needs to be 80 * modifiable - may not be locked or const. Also declares 81 * the "real" variable pointing to DBusRealString. 82 * @param str the string 83 */ 84 #define DBUS_STRING_PREAMBLE(str) DBusRealString *real = (DBusRealString*) str; \ 85 DBUS_GENERIC_STRING_PREAMBLE (real); \ 86 _dbus_assert (!(real)->constant); \ 87 _dbus_assert (!(real)->locked) 88 89 /** 90 * Checks assertions about a string object that may be locked but 91 * can't be const. i.e. a string object that we can free. Also 92 * declares the "real" variable pointing to DBusRealString. 93 * 94 * @param str the string 95 */ 96 #define DBUS_LOCKED_STRING_PREAMBLE(str) DBusRealString *real = (DBusRealString*) str; \ 97 DBUS_GENERIC_STRING_PREAMBLE (real); \ 98 _dbus_assert (!(real)->constant) 99 100 /** 101 * Checks assertions about a string that may be const or locked. Also 102 * declares the "real" variable pointing to DBusRealString. 103 * @param str the string. 104 */ 105 #define DBUS_CONST_STRING_PREAMBLE(str) const DBusRealString *real = (DBusRealString*) str; \ 106 DBUS_GENERIC_STRING_PREAMBLE (real) 107 108 /** 109 * Checks for ASCII blank byte 110 * @param c the byte 111 */ 112 #define DBUS_IS_ASCII_BLANK(c) ((c) == ' ' || (c) == '\t') 113 114 /** 115 * Checks for ASCII whitespace byte 116 * @param c the byte 117 */ 118 #define DBUS_IS_ASCII_WHITE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) == '\r') 119 120 /** @} */ 121 122 DBUS_END_DECLS 123 124 #endif /* DBUS_STRING_PRIVATE_H */ 125