/usr/include/scilab/api_common.h is in scilab-include 5.5.2-4+b1.
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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | /*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2009 - DIGITEO - Antoine ELIAS
* Copyright (C) 2009 - DIGITEO - Allan CORNET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*/
#ifndef __COMMON_API__
#define __COMMON_API__
#if !defined(__INTERNAL_API_SCILAB__)
#error Do not include api_common.h. Include api_scilab.h instead.
#endif
#ifdef __cplusplus
extern "C" {
#endif
/**
* The error management structure
*
*/
#define MESSAGE_STACK_SIZE 5
typedef struct api_Err
{
int iErr; /**< The error ID */
int iMsgCount; /**< Error level */
char* pstMsg[MESSAGE_STACK_SIZE]; /**< The error message */
} SciErr;
typedef struct api_Ctx
{
char* pstName; /**< Function name */
} StrCtx, *pStrCtx;
#ifdef _MSC_VER
#ifndef API_SCILAB_EXPORTS
__declspec( dllimport ) StrCtx* pvApiCtx;
#else
extern StrCtx* pvApiCtx;
#endif
#else
extern StrCtx* pvApiCtx;
#endif
#include "api_scilab.h"
/* generics functions */
/*Rhs*/
int* getNbInputArgument(void* _pvCtx);
#define nbInputArgument(PVCTX) (*getNbInputArgument(PVCTX))
#ifdef Rhs
#undef Rhs
#endif
#define Rhs (*getNbInputArgument(pvApiCtx))
/*Top*/
int* getNbArgumentOnStack(void* _pvCtx);
#define nbArgumentOnStack(PVCTX) (*getNbArgumentOnStack(PVCTX))
#ifdef Top
#undef Top
#endif
#define Top (*getNbArgumentOnStack(pvApiCtx))
/*Lhs*/
int* getNbOutputArgument(void* _pvCtx);
#define nbOutputArgument(PVCTX) (*getNbOutputArgument(PVCTX))
#ifdef Lhs
#undef Lhs
#endif
#define Lhs (*getNbOutputArgument(pvApiCtx))
/*PutLhs*/
int* assignOutputVariable(void* _pvCtx, int _iVal);
#define AssignOutputVariable(PVCTX, x) (*assignOutputVariable(PVCTX, x))
#ifdef LhsVar
#undef LhsVar
#endif
#define LhsVar(x) (*assignOutputVariable(pvApiCtx, x))
/*PutLhsVar*/
int returnArguments(void* _pvCtx);
#define ReturnArguments(PVCTX) if (! returnArguments(PVCTX)) { return 0; }
#ifdef PutLhsVar
#undef PutLhsVar
#endif
#define PutLhsVar() if (! returnArguments(pvApiCtx)) { return 0; }
/**
* Check input argument count
* @param[in] _iMin min value
* @param[in] _iMax : max value
* @return if _iMin >= rhs >= _iMax
*/
int checkInputArgument(void* _pvCtx, int _iMin, int _iMax);
#define CheckInputArgument(ctx, min, max) \
if(checkInputArgument(ctx, min, max) == 0) \
{ \
return 0; \
}
#ifdef CheckRhs
#undef CheckRhs
#endif
#define CheckRhs(min, max) \
if(checkInputArgument(pvApiCtx, min, max) == 0) \
{ \
return 0; \
}
/**
* Check input argument count
* @param[in] _iMin min value
* @return if rhs >= _iMin
*/
int checkInputArgumentAtLeast(void* _pvCtx, int _iMin);
#define CheckInputArgumentAtLeast(ctx, min) \
if(checkInputArgumentAtLeast(ctx, min) == 0) \
{ \
return 0; \
}
/**
* Check input argument count
* @param[in] _iMax : max value
* @return if rhs <= max
*/
int checkInputArgumentAtMost(void* _pvCtx, int _iMax);
#define CheckInputArgumentAtMost(ctx, max) \
if(checkInputArgumentAtMost(ctx, max) == 0) \
{ \
return 0; \
}
/**
* Check output argument count
* @param[in] _iMin min value
* @param[in] _iMax : max value
* @return if _iMin >= lhs >= _iMax
*/
int checkOutputArgument(void* _pvCtx, int _iMin, int _iMax);
#define CheckOutputArgument(ctx, min, max) \
if(checkOutputArgument(ctx, min, max) == 0) \
{ \
return 0; \
}
#ifdef CheckLhs
#undef CheckLhs
#endif
#define CheckLhs(min, max) \
if(checkOutputArgument(pvApiCtx, min, max) == 0) \
{ \
return 0; \
}
/**
* Check output argument count
* @param[in] _iMin min value
* @return if lhs >= _iMin
*/
int checkOutputArgumentAtLeast(void* _pvCtx, int _iMin);
#define CheckOutputArgumentAtLeast(ctx, min) \
if(checkOutputArgumentAtLeast(ctx, min) == 0) \
{ \
return 0; \
}
/**
* Check output argument count
* @param[in] _iMax : max value
* @return if lhs <= max
*/
int checkOutputArgumentAtMost(void* _pvCtx, int _iMax);
#define CheckOutputArgumentAtMost(ctx, max) \
if(checkOutputArgumentAtMost(ctx, max) == 0) \
{ \
return 0; \
}
int callOverloadFunction(void* _pvCtx, int _iVar, char* _pstName, unsigned int _iNameLen);
#define CallOverloadFunction(x) callOverloadFunction(pvApiCtx, x, fname, strlen(fname))
#ifdef OverLoad
#undef OverLoad
#endif
#define OverLoad(x) callOverloadFunction(pvApiCtx, x, fname, (unsigned int)strlen(fname))
/**
* Get the memory address of a variable from the variable position
* @param[in] _iVar variable number
* @param[out] _piAddress return variable address
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getVarAddressFromPosition(void* _pvCtx, int _iVar, int** _piAddress);
/**
* Get the name of a variable from the variable position
* @param[in] _iVar variable number
* @param[out] _pstName variable name
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getVarNameFromPosition(void* _pvCtx, int _iVar, char* _pstName);
/**
* Get the memory address of a variable from the variable name
* @param[in] _pstName variable name
* @param[out] _piAddress return variable address
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getVarAddressFromName(void* _pvCtx, const char* _pstName, int** _piAddress);
/**
* Get the variable type
* @param[in] _piAddress variable address
* @param[out] _piType return variable type ( sci_matrix, sci_strings, ... )
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getVarType(void* _pvCtx, int* _piAddress, int* _piType);
/**
* Get the variable type from the variable name
* @param[in] _pstName variable name
* @param[out] _piType return variable type ( sci_matrix, sci_strings, ... )
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getNamedVarType(void* _pvCtx, const char* _pstName, int* _piType);
/**
* Check if the variable type is complex double, complex sparse double or complex polynomial
* @param[in] _piAddress variable address
* @return if complex 1 otherwise 0
*/
int isVarComplex(void* _pvCtx, int* _piAddress);
/**
* Check if the named variable type is complex double, complex sparse double or complex polynomial
* @param[in] _pstName variable name
* @return if complex 1 otherwise 0
*/
int isNamedVarComplex(void* _pvCtx, const char *_pstName);
/**
* Get variable dimensions
* @param[in] _piAddress variable address
* @param[out] _piRows return number of rows
* @param[out] _piCols return number of cols
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getVarDimension(void* _pvCtx, int* _piAddress, int* _piRows, int* _piCols);
/**
* Get named variable dimensions
* @param[in] _pstName variable name
* @param[out] _piRows return number of rows
* @param[out] _piCols return number of cols
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getNamedVarDimension(void* _pvCtx, const char *_pstName, int* _piRows, int* _piCols);
/**
* Check if a variable is a matrix form ( row x col )
* @param[in] _piAddress variable address
* @return if matrix form type variable 1 otherwise 0
*/
int isVarMatrixType(void* _pvCtx, int* _piAddress);
/**
* Check if a named variable is a matrix form ( row x col )
* @param[in] _pstName variable name
* @return if matrix form type variable 1 otherwise 0
*/
int isNamedVarMatrixType(void* _pvCtx, const char *_pstName);
/**
* Get process mode from input variable
* @param[in] _iPos variable position in function call
* @param[in] _piAddRef variable address
* @param[out] _piMode return process mode ( 0 -> All, 1 -> Row, 2 -> Col )
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getProcessMode(void* _pvCtx, int _iPos, int* _piAddRef, int *_piMode);
/**
* Get dimension for variable, extract value from a single value
* @param[in] _piAddress variable address ( double or int variable )
* @param[out] _piVal return value
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getDimFromVar(void* _pvCtx, int* _piAddress, int* _piVal);
/**
* Get dimension for a named variable, extract value from a single value
* @param[in] _pstName variable name
* @param[out] _piVal return value
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
SciErr getDimFromNamedVar(void* _pvCtx, const char* _pstName, int* _piVal);
/**
* Get Rhs value from variable address
* @param[in] _piAddress varaible address
* @return rhs value of the variable, if failed returns 0
*/
int getRhsFromAddress(void* _pvCtx, int* _piAddress);
/**
* Check if a variable is a row vector
* @param[in] _piAddress variable address
* @return 1 for true and 0 for false
*/
int isRowVector(void* _pvCtx, int* _piAddress);
/**
* Check if a variable is a column vector
* @param[in] _piAddress variable address
* @return 1 for true and 0 for false
*/
int isColumnVector(void* _pvCtx, int* _piAddress);
/**
* Check if a variable is a vector ( row or column )
* @param[in] _piAddress variable address
* @return 1 for true and 0 for false
*/
int isVector(void* _pvCtx, int* _piAddress);
/**
* Check if a variable is a scalar
* @param[in] _piAddress variable address
* @return 1 for true and 0 for false
*/
int isScalar(void* _pvCtx, int* _piAddress);
/**
* Check if a variable is a square matrix
* @param[in] _piAddress variable address
* @return 1 for true and 0 for false
*/
int isSquareMatrix(void* _pvCtx, int* _piAddress);
/**
* Check matrix dimension
* @param[in] _piAddress variable address
* @param[in] _iRows accepted number of rows ( if -1, don't check )
* @param[in] _iCols accepted number of columns ( if -1, don't check )
* @return 1 for true and 0 for false
*/
int checkVarDimension(void* _pvCtx, int* _piAddress, int _iRows, int _iCols);
/**
* Check if type of variable
* @param[in] _iVar variable position
* @return 1 for true and 0 for false
*/
int getInputArgumentType(void* _pvCtx, int _iVar);
/**
* Check if type of variable
* @param[in] _iVar variable position
* @param[in] _iType variable type to check
* @return 1 for true and 0 for false
*/
int checkInputArgumentType(void* _pvCtx, int _iVar, int _iType);
/**
* Check if a matrix is empty
* @param[in] _piAddress variable address
* @return 1 for true and 0 for false
*/
int isEmptyMatrix(void* _pvCtx, int* _piAddress);
/**
* Create an empty matrix
* @param[in] _iVar variable number
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
int createEmptyMatrix(void* _pvCtx, int _iVar);
/**
* Create a named empty matrix
* @param[in] _pstName variable name
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
int createNamedEmptyMatrix(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable exists
* @param[in] _pstName variable name
* @return if the operation succeeded ( 0 ) or not ( !0 )
*/
int isNamedVarExist(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable is a row vector
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int isNamedRowVector(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable is a column vector
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int isNamedColumnVector(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable is a vector ( row or column )
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int isNamedVector(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable is a scalar
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int isNamedScalar(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable is a square matrix
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int isNamedSquareMatrix(void* _pvCtx, const char* _pstName);
/**
* Check if a named variable is an empty matrix
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int isNamedEmptyMatrix(void* _pvCtx, const char* _pstName);
/**
* Delete a variable for stack
* @param[in] _pstName variable name
* @return 1 for true and 0 for false
*/
int deleteNamedVariable(void* _pvCtx, const char* _pstName);
#ifdef __cplusplus
}
#endif
#endif /* __COMMON_API__ */
|