/usr/include/sidlAsserts.h is in libsidl-dev 1.4.0.dfsg-8build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | /*
* File: sidlAsserts.h
* Revision: @(#) $Revision: 6482 $
* Date: $Date: 2008-08-21 15:50:53 -0700 (Thu, 21 Aug 2008) $
* Description: convenience C macros for managing SIDL Assertions
*
* Copyright (c) 2004-2007, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory.
* Written by the Components Team <components@llnl.gov>
* UCRL-CODE-2002-054
* All rights reserved.
*
* This file is part of Babel. For more information, see
* http://www.llnl.gov/CASC/components/. Please read the COPYRIGHT file
* for Our Notice and the LICENSE file for the GNU Lesser General Public
* License.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License (as published by
* the Free Software Foundation) version 2.1 dated February 1999.
*
* This program 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 terms and
* conditions of the GNU Lesser General Public License for more details.
*
* You should have recieved a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
****************************************************************************
* WARNINGS:
* 1) SIDL_FULL_ASTATS
* This macro is used here to determine whether a full set of statistics
* are going to be employed or only the bare minimum. It is assumed that
* this macro is kept in sync with the contents of S_FULL_STATS_MACRO in
* IOR.java.
****************************************************************************
*
* The following include files are needed:
* math.h For the ceiling function used by the
* random and timing-based policies.
* stdlib.h For random number generation (including
* RAND_MAX).
* time.h For processing associated with the
* timing-based policy.
* sidl_PreViolation.h
* sidl_PostViolation.h
* sidl_InvViolation.h For ease-of-use since this (single) header
* is currently providing both the IOR
* and (C) applications with enforcement
* options.
*/
#ifndef included_sidlAsserts_h
#define included_sidlAsserts_h
#include <math.h>
#include <sys/time.h>
#include <stdlib.h>
#ifndef included_sidl_PreViolation_h
#include "sidl_PreViolation.h"
#endif
#ifndef included_sidl_PostViolation_h
#include "sidl_PostViolation.h"
#endif
#ifndef included_sidl_InvViolation_h
#include "sidl_InvViolation.h"
#endif
/****************************************************************************
* SIDL Assertion macros originally intended for use in generated interface
* contract enforcement routines.
****************************************************************************/
/*
* SIDL_ARRAY_ALL_BOTH all(a1 r a2), where a1 and a2 are arrays, r is the
* relation
*/
#define SIDL_ARRAY_ALL_BOTH(AC1, AV1, AC2, AV2, REL, I, NUM, C, BRES) \
SIDL_ARRAY_COUNT_BOTH(AC1, AV1, AC2, AV2, REL, I, NUM, C);\
BRES = (C == NUM);\
}
/*
* SIDL_ARRAY_ALL_LR all(vr a), where a is array, vr is value + relation
*/
#define SIDL_ARRAY_ALL_LR(AC, AV, REL, I, NUM, C, BRES) {\
SIDL_ARRAY_COUNT_LR(AC, AV, REL, I, NUM, C);\
BRES = (C == NUM);\
}
/*
* SIDL_ARRAY_ALL_RR all(a rv), where a is array, rv is relation + value
*/
#define SIDL_ARRAY_ALL_RR(AC, AV, REL, I, NUM, C, BRES) {\
SIDL_ARRAY_COUNT_RR(AC, AV, REL, I, NUM, C);\
BRES = (C == NUM);\
}
/*
* SIDL_ARRAY_ANY_BOTH any(a1 r a2), where a1 and a2 are arrays, r is the
* relation
*
* NOTE: Will return FALSE if the arrays are not the same size.
*/
#define SIDL_ARRAY_ANY_BOTH(AC1, AV1, AC2, AV2, REL, I, NUM, BRES) {\
BRES = FALSE;\
NUM = SIDL_ARRAY_SIZE(AC1, (AV1));\
if (SIDL_ARRAY_SIZE(AC2, (AV2)) == NUM) {\
for (I=0; (I<NUM) && (!BRES); I++) {\
SIDL_INCR_IF_TRUE((AC1##_get1((AV1),I) REL AC2##_get1((AV2),I)), BRES)\
}\
}\
}
/*
* SIDL_ARRAY_ANY_LR any(vr a), where a is array, vr is value + relation
*/
#define SIDL_ARRAY_ANY_LR(AC, AV, REL, I, NUM, BRES) {\
BRES = FALSE;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; (I<NUM) && (!BRES); I++) {\
SIDL_INCR_IF_TRUE((REL AC##_get1((AV),I)), BRES)\
}\
}
/*
* SIDL_ARRAY_ANY_RR any(a rv), where a is array, rv is relation + value
*/
#define SIDL_ARRAY_ANY_RR(AC, AV, REL, I, NUM, BRES) {\
BRES = FALSE;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; (I<NUM) && (!BRES); I++) {\
SIDL_INCR_IF_TRUE((AC##_get1((AV),I) REL), BRES)\
}\
}
/*
* SIDL_ARRAY_COUNT_BOTH count(a1 r a2), where a1 and a2 are arrays, r is
* the relation.
*
* NOTE: Will return FALSE if the arrays are not the same size.
*/
#define SIDL_ARRAY_COUNT_BOTH(AC1, AV1, AC2, AV2, REL, I, NUM, IRES) {\
IRES = 0;\
NUM = SIDL_ARRAY_SIZE(AC1, (AV1));\
if (SIDL_ARRAY_SIZE(AC2, (AV2)) == NUM) {\
for (I=0; I<NUM; I++) {\
SIDL_INCR_IF_TRUE((AC1##_get1((AV1),I) REL AC2##_get1((AV2),I)), IRES)\
}\
}\
}
/*
* SIDL_ARRAY_COUNT_LR count(vr a), where a is array, vr is value + relation
*/
#define SIDL_ARRAY_COUNT_LR(AC, AV, REL, I, NUM, IRES) {\
IRES = 0;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; I<NUM; I++) {\
SIDL_INCR_IF_TRUE((REL AC##_get1((AV),I)), IRES)\
}\
}
/*
* SIDL_ARRAY_COUNT_RR count(a rv), where a is array, rv is relation + value
*/
#define SIDL_ARRAY_COUNT_RR(AC, AV, REL, I, NUM, IRES) {\
IRES = 0;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; I<NUM; I++) {\
SIDL_INCR_IF_TRUE((AC##_get1((AV),I) REL), IRES)\
}\
}
/*
* SIDL_ARRAY_DIMEN dimen(a), where a is the array
*/
#define SIDL_ARRAY_DIMEN(AC, AV) AC##_dimen(AV)
/*
* SIDL_ARRAY_IRANGE irange(a, v1, v2), where a is array whose integer
* values are to be in v1..v2.
*/
#define SIDL_ARRAY_IRANGE(AC, AV, V1, V2, I, NUM, C, BRES) {\
C = 0;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; I<NUM; I++) {\
SIDL_INCR_IF_TRUE(\
SIDL_IRANGE((double)AC##_get1((AV),I), (double)V1, (double)V2), C)\
}\
BRES = (C == NUM);\
}
/*
* SIDL_ARRAY_LOWER lower(a, d), where a is the array and d is the dimension
*/
#define SIDL_ARRAY_LOWER(AC, AV, D) AC##_lower((AV), D)
/*
* SIDL_ARRAY_MAX max(a), where a is the array of scalar
*/
#define SIDL_ARRAY_MAX(AC, AV, I, NUM, T, RES) {\
RES = AC##_get1((AV),0);\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=1; I<NUM; I++) {\
T _SAMAXV = AC##_get1((AV),I);\
if (_SAMAXV > RES) { RES = _SAMAXV; } \
}\
}
/*
* SIDL_ARRAY_MIN min(a), where a is the array of scalar
*/
#define SIDL_ARRAY_MIN(AC, AV, I, NUM, T, RES) {\
RES = AC##_get1((AV),0);\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=1; I<NUM; I++) {\
T _SAMINV = AC##_get1((AV),I);\
if (_SAMINV < RES) { RES = _SAMINV; } \
}\
}
/*
* SIDL_ARRAY_NEAR_EQUAL nearEqual(a, b, tol), where a and b are arrays
* whose scalar values are to be compared.
*/
#define SIDL_ARRAY_NEAR_EQUAL(AC1, AV1, AC2, AV2, TOL, I, NUM, C, BRES) {\
C = 0;\
NUM = SIDL_ARRAY_SIZE(AC1, (AV1));\
for (I=0; I<NUM; I++) {\
SIDL_INCR_IF_TRUE(\
SIDL_NEAR_EQUAL(AC1##_get1((AV1),I), AC2##_get1((AV2),I), TOL), C)\
}\
BRES = (C == NUM);\
}
/*
* SIDL_ARRAY_NON_INCR nonIncr(a), where a is array of numeric values
* to be checked for being in decreasing order.
*/
#define SIDL_ARRAY_NON_INCR(AC, AV, I, NUM, V, BRES) {\
BRES = TRUE;\
V = ((AV) != NULL) ? (double) AC##_get1((AV),0) : 0.0;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; (I<NUM) && (BRES); I++) {\
if ((double)AC##_get1((AV),I) > V) {\
BRES = FALSE; \
} else {\
V = (double) AC##_get1((AV),0);\
}\
}\
}
/*
* SIDL_ARRAY_NONE_BOTH none(a1 r a2), where a1 and a2 are arrays, r is
* the relation.
*/
#define SIDL_ARRAY_NONE_BOTH(AC1, AV1, AC2, AV2, REL, I, NUM, C, BRES) {\
SIDL_ARRAY_COUNT_BOTH(AC1, AV1, AC2, AV2, REL, I, NUM, C);\
BRES = (C == 0);\
}
/*
* SIDL_ARRAY_NONE_LR none(vr a), where a is array, vr is value + relation
*/
#define SIDL_ARRAY_NONE_LR(AC, AV, REL, I, NUM, C, BRES) {\
SIDL_ARRAY_COUNT_LR(AC, AV, REL, I, NUM, C);\
BRES = (C == 0);\
}
/*
* SIDL_ARRAY_NONE_RR none(a rv), where a is array, rv is relation + value
*/
#define SIDL_ARRAY_NONE_RR(AC, AV, REL, I, NUM, C, BRES) {\
SIDL_ARRAY_COUNT_RR(AC, AV, REL, I, NUM, C);\
BRES = (C == 0);\
}
/*
* SIDL_ARRAY_RANGE range(a, v1, v2, tol), where a is array whose scalar
* values are to be in v1..v2 within tolerance tol.
*/
#define SIDL_ARRAY_RANGE(AC, AV, V1, V2, TOL, I, NUM, C, BRES) {\
C = 0;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; I<NUM; I++) {\
SIDL_INCR_IF_TRUE(\
SIDL_RANGE((double)AC##_get1((AV),I), (double)V1, (double)V2, TOL), C)\
}\
BRES = (C == NUM);\
}
/*
* SIDL_ARRAY_SIZE size(a), where a is the array
*/
#define SIDL_ARRAY_SIZE(AC, AV) AC##_length(AV, 0)
/*
* SIDL_ARRAY_STRIDE stride(a, d), where a is the array and d is the
* dimension
*/
#define SIDL_ARRAY_STRIDE(AC, AV, D) AC##_stride(AV, D)
/*
* SIDL_ARRAY_SUM sum(a), where a is the array of scalar
*/
#define SIDL_ARRAY_SUM(AC, AV, I, NUM, RES) {\
RES = AC##_get1((AV),0);\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=1; I<NUM; I++) { RES += AC##_get1((AV),I); }\
}
/*
* SIDL_ARRAY_NON_DECR nonDecr(a), where a is array of numeric values
* to be checked for being in increasing order.
*/
#define SIDL_ARRAY_NON_DECR(AC, AV, I, NUM, V, BRES) {\
BRES = TRUE;\
V = ((AV) != NULL) ? (double) AC##_get1((AV), 0) : 0.0;\
NUM = SIDL_ARRAY_SIZE(AC, (AV));\
for (I=0; (I<NUM) && (BRES); I++) {\
if ((double)AC##_get1((AV),I) < V) {\
BRES = FALSE; \
} else {\
V = (double) AC##_get1((AV), 0);\
}\
}\
}
/*
* SIDL_ARRAY_UPPER upper(a, d), where a is the array and d is the dimension
*/
#define SIDL_ARRAY_UPPER(AC, AV, D) AC##_upper(AV, D)
/*
* SIDL_IRANGE irange(v, v1, v2), where determine if v in the
* range v1..v2.
*/
#define SIDL_IRANGE(V, V1, V2) \
( ((double)V1 <= (double)V) && ((double)V <= (double)V2) )
/*
* SIDL_NEAR_EQUAL nearEqual(v1, v2, tol), where v1 and v2 are scalars
* being checked for being equal within the specified
* tolerance, tol.
*/
#define SIDL_NEAR_EQUAL(V1, V2, TOL) \
(fabs((double)V1 - (double)V2) <= (double)TOL)
/*
* SIDL_RANGE range(v, v1, v2, tol), where determine if v in
* the range v1..v2, within the specified tolerance, tol.
*/
#define SIDL_RANGE(V, V1, V2, TOL) {\
( (((double)V1 - (double)TOL) <= (double)V) \
&& ((double)V <= ((double)V2 + (double)TOL)) ) \
}
/****************************************************************************
* Additional macros
****************************************************************************/
/*
* SIDL_DIFF_MICROSECONDS "Standard" time difference
*/
#define SIDL_DIFF_MICROSECONDS(T2, T1) \
(1.0e6*(double)(T2.tv_sec-T1.tv_sec)) + (T2.tv_usec-T1.tv_usec)
/*
* SIDL_INCR_IF_THEN Increment V1 if EXPR is TRUE; otherwise,
* increment V2.
*/
#define SIDL_INCR_IF_THEN(EXPR, V1, V2) \
if (EXPR) { (V1) += 1; } else { (V2) += 1; }
/*
* SIDL_INCR_IF_TRUE Increment V if EXPR is TRUE.
*/
#define SIDL_INCR_IF_TRUE(EXPR, V) if (EXPR) { (V) += 1; }
#endif /* included_sidlAsserts_h */
|