File size: 24,072 Bytes
d4035c1 |
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 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 |
/** @file mexutils.h
** @brief MEX utilities
** @author Andrea Vedaldi
**/
/* AUTORIGHTS
Copyright (C) 2007-09 Andrea Vedaldi and Brian Fulkerson
This file is part of VLFeat, available in the terms of the GNU
General Public License version 2.
*/
#ifndef MEXUTILS_H
#define MEXUTILS_H
#include"mex.h"
#include<vl/generic.h>
#include<ctype.h>
#include<stdio.h>
#include<stdarg.h>
#ifdef VL_COMPILER_MSC
#define snprintf _snprintf
#define vsnprintf _vsnprintf
#endif
#if ! defined (MX_API_VER) | (MX_API_VER < 0x07030000)
typedef vl_uint32 mwSize ;
typedef vl_int32 mwIndex ;
#endif
/** @file mexutils.h
This header file provides helper functions for writing MATLAB MEX
files.
- @ref mexutils-env "VLFeat environment"
- @ref mexutils-array-test "Array tests"
- @ref mexutils-options "Parsing options"
@section mexutils-env VLFeat environment
When the VLFeat DLL is linked to a MATLAB MEX files, at run time the
MEX file must configure VLFeat to use MATLAB memory allocation and
logging functions. This can be obtained by calling the macro
::VL_USE_MATLAB_ENV as the first line of each MEX file which is
linked to the VLFeat DLL.
@section mexutils-array-test Array tests
MATLAB supports a variety of array types. Most MEX file arguments are
restricted to a few types and must be properly checked at run time.
::mexutils.h provides some helper functions to make it simpler to
check such arguments. MATLAB basic array types are:
- Numeric array:
@c mxDOUBLE_CLASS, @c mxSINGLE_CLASS,
@c mxINT8_CLASS, @c mxUINT8_CLASS,
@c mxINT16_CLASS, @c mxUINT16_CLASS,
@c mxINT32_CLASS, @c mxUINT32_CLASS. Moreover:
- all such types have a @e real component
- all such types may have a @e imaginary component
- @c mxDOUBLE_LCASS arrays with two dimensions can be @e sparse.
- Logical array (@c mxLOGICAL_CLASS).
- Character array (@c mxCHAR_CLASS).
The other MATLAB array types are:
- Struct array (@c mxSTRUCT_CLASS).
- Cell array (@c mxCELL_CLASS).
- Custom class array (@c mxCLASS_CLASS).
- Unkown type array (@c mxUNKNOWN_CLASS).
VLFeat defines a number of common classes of arrays and corresponding
tests.
- <b>Scalar array</b> is a non-sparse array with exactly one element.
Note that the array may have an arbitrary number of dimensions, and
be of any numeric or other type. All dimensions are singleton
(which is implied by having exactly one element). Use ::vlmxIsScalar
to test if an array is scalar.
- <b>Vector array</b> is a non-sparse array which is either empty
(empty vector) or has at most one non-singleton dimension. The
array can be of any numeric or other type. The elements of such a
MATLAB array are stored as a plain C array with a number of
elements equal to the number of elements in the array (obtained
with @c mxGetNumberOfElements). Use ::vlmxIsVector to test if an
array is a vector.
- <b>Matrix array</b> is a non-sparse array for which all dimensions
beyond the first two are singleton, or a non-sparse array which is
empty and for which at least one of the first two dimensions is
zero. The array can be of any numeric or other type. The
non-singleton dimensions can be zero (empty matrix), one, or
more. The element of such a MATLAB array are stored as a C array in
column major order and its dimensions can be obtained by @c mxGetM
and @c mxGetN. Use ::vlmxIsMatrix to test if an array is a mtarix.
- <b>Real array</b> is a numeric array (as for @c mxIsNumeric)
without a complex component. Use ::vlmxIsReal to check if an array
is real.
- Use ::vlmxIsOfClass to check if an array is of a prescribed
(storage) class, such as @c mxDOUBLE_CLASS.
- <b>Plain scalar, vector, and matrix</b> are a scalar, vector, and
matrix arrays which are <em>real</em> and of class @c
mxDOUBLE_CLASS. Use ::vlmxIsPlainScalar, ::vlmxIsPlainVector and
::vlmxIsPlainMatrix to check this.
@section mexutils-options Parsing options
It is common to pass optional arguments to a MEX file as option
type-value pairs. Here type is a string identifying the option and
value is a MATLAB array specifing its value. The function
::uNextOption can be used to simplify parsing a list of such
arguments (similar to UNIX @c getopt). The functions ::mxuError
and ::mxuWarning are shortcuts to specify VLFeat formatted errors.
**/
/** @name Check for array attributes
** @{ */
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is of a prescribed class
** @param array MATLAB array.
** @param classId prescribed class of the array.
** @return ::VL_TRUE if the class is of the array is of the prescribed class.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsOfClass (mxArray const * array, mxClassID classId)
{
return mxGetClassID (array) == classId ;
}
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is real
** @param array MATLAB array.
** @return ::VL_TRUE if the array is real.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsReal (mxArray const * array)
{
return mxIsNumeric (array) && ! mxIsComplex (array) ;
}
/** @} */
/** @name Check for scalar, vector and matrix arrays
** @{ */
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is scalar
** @param array MATLAB array.
** @return ::VL_TRUE if the array is scalar.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsScalar (mxArray const * array)
{
return (! mxIsSparse (array)) && (mxGetNumberOfElements (array) == 1) ;
}
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is a vector.
** @param array MATLAB array.
** @param numElements number of elements (negative for any).
** @return ::VL_TRUE if the array is a vecotr of the prescribed size.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsVector (mxArray const * array, vl_index numElements)
{
mwSize numDimensions = mxGetNumberOfDimensions (array) ;
mwSize const * dimensions = mxGetDimensions (array) ;
vl_uindex di ;
/* check that it is not sparse */
if (mxIsSparse (array)) {
return VL_FALSE ;
}
/* check that the number of elements is the prescribed one */
if ((numElements >= 0) && (mxGetNumberOfElements (array) != numElements)) {
return VL_FALSE ;
}
/* ok if empty */
if (mxGetNumberOfElements (array) == 0) {
return VL_TRUE ;
}
/* find first non-singleton dimension */
for (di = 0 ; (dimensions[di] == 1) && di < numDimensions ; ++ di) ;
/* skip it */
if (di < numDimensions) ++ di ;
/* find next non-singleton dimension */
for (; (dimensions[di] == 1) && di < numDimensions ; ++ di) ;
/* if none found, then ok */
return di == numDimensions ;
}
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is a matrix.
** @param array MATLAB array.
** @param M number of rows (negative for any).
** @param N number of columns (negative for any).
** @return ::VL_TRUE if the array is a matrix of the prescribed size.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsMatrix (mxArray const * array, vl_index M, vl_index N)
{
mwSize numDimensions = mxGetNumberOfDimensions (array) ;
mwSize const * dimensions = mxGetDimensions (array) ;
vl_uindex di ;
/* check that it is not sparse */
if (mxIsSparse (array)) {
return VL_FALSE ;
}
/* check that the number of elements is the prescribed one */
if ((M >= 0) && (mxGetM (array) != M)) {
return VL_FALSE;
}
if ((N >= 0) && (mxGetN (array) != N)) {
return VL_FALSE;
}
/* ok if empty and either M = 0 or N = 0 */
if ((mxGetNumberOfElements (array) == 0) && (mxGetM (array) == 0 || mxGetN (array) == 0)) {
return VL_TRUE ;
}
/* ok if any dimension beyond the first two is singleton */
for (di = 2 ; (dimensions[di] == 1) && di < numDimensions ; ++ di) ;
return di == numDimensions ;
}
/** @} */
/** @name Check for plain arrays
** @{ */
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is plain scalar
** @param array MATLAB array.
** @return ::VL_TRUE if the array is plain scalar.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsPlainScalar (mxArray const * array)
{
return
vlmxIsReal (array) &&
vlmxIsOfClass(array, mxDOUBLE_CLASS) &&
vlmxIsScalar (array) ;
}
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is a plain vector.
** @param array MATLAB array.
** @param numElements number of elements (negative for any).
** @return ::VL_TRUE if the array is a plain vecotr of the prescribed size.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsPlainVector
(mxArray const * array, vl_index numElements)
{
return
vlmxIsReal (array) &&
vlmxIsOfClass (array, mxDOUBLE_CLASS) &&
vlmxIsVector (array, numElements) ;
}
/** ------------------------------------------------------------------
** @brief Check if a MATLAB array is a plain matrix.
** @param array MATLAB array.
** @param M number of rows (negative for any).
** @param N number of columns (negative for any).
** @return ::VL_TRUE if the array is a plain matrix of the prescribed size.
** @sa @ref mexutils-array-test
**/
VL_INLINE vl_bool
vlmxIsPlainMatrix (mxArray const * array, vl_index M, vl_index N)
{
return
vlmxIsReal (array) &&
vlmxIsOfClass (array, mxDOUBLE_CLASS) &&
vlmxIsMatrix (array, M, N) ;
}
/** @} */
/** ------------------------------------------------------------------
** @brief Let VLFeat use MATLAB memory allocation/logging facilities
**
** This makes VLFeat use MATLAB version of the memory allocation and
** logging functions.
**
**/
#define VL_USE_MATLAB_ENV \
vl_set_alloc_func (mxMalloc, mxRealloc, mxCalloc, mxFree) ; \
vl_set_printf_func (mexPrintf) ;
/** ------------------------------------------------------------------
** @brief Create array with pre-allocated data
**
** @param ndim number of dimensions.
** @param dims dimensions.
** @param classid storage class ID.
** @param data pre-allocated data.
**
** If @a data is set to NULL, the data is allocated from the heap.
** If @a data is a buffer allocated by @a mxMalloc, then this buffer
** is used as data.
**
** @return new array.
**/
static mxArray *
uCreateNumericArray (mwSize ndim, const mwSize * dims,
mxClassID classid, void * data)
{
mxArray *A ;
if (data) {
mwSize dims_ [2] = {0, 0} ;
A = mxCreateNumericArray (2, dims_, classid, mxREAL) ;
mxSetData (A, data) ;
mxSetDimensions (A, dims, ndim) ;
} else {
A = mxCreateNumericArray (ndim, dims, classid, mxREAL) ;
}
return A ;
}
/** ------------------------------------------------------------------
** @brief Create an array with pre-allocated data
**
** @param M number of rows.
** @param N number of columns.
** @param classid class ID.
** @param data pre-allocated data.
**
** If @a data is set to NULL, the data is allocated from the heap.
** If @a data is a buffer allocated by @a mxMalloc, then this buffer
** is used as data.
**
** @return new array.
**/
static mxArray *
uCreateNumericMatrix (int M, int N, mxClassID classid, void * data)
{
mxArray *A ;
if (data) {
A = mxCreateNumericMatrix (0, 0, classid, mxREAL) ;
mxSetData (A, data) ;
mxSetM(A, M) ;
mxSetN(A, N) ;
} else {
A = mxCreateNumericMatrix (M, N, classid, mxREAL) ;
}
return A ;
}
/** ------------------------------------------------------------------
** @brief Create a plain scalar
**
** @param x inital value.
**
** @return new array.
**/
static mxArray *
uCreateScalar (double x)
{
mxArray *A = mxCreateDoubleMatrix(1,1,mxREAL) ;
*mxGetPr(A) = x ;
return A ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array a numeric scalar?
**
** @param A array to test.
**
** An array is <em>numeric and scalar</em> if:
** - It is numeric.
** - It as exactly one element.
**
** @return test result.
**/
static int
uIsScalar(const mxArray* A)
{
return
mxIsNumeric (A) && mxGetNumberOfElements(A) == 1 ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array plain matrix?
**
** @param A array to test.
**
** The array @a A satisfies the test if:
**
** - It is a @ref mexutils-plain-matrix "plain matrix"
** - @a M < 0 or the number of rows is equal to @a M.
** - @a N < 0 or the number of columns is equal to @a N.
**
** @return test result.
**/
static vl_bool
uIsPlainArray (const mxArray* A)
{
return
mxGetClassID(A) == mxDOUBLE_CLASS &&
! mxIsComplex(A) &&
! mxIsSparse(A) ;
}
static vl_bool
uIsPlainMatrix (const mxArray* A, int M, int N)
{
return
uIsPlainArray(A) &&
mxGetNumberOfDimensions(A) == 2 &&
(M < 0 || mxGetM(A) == M) &&
(N < 0 || mxGetN(A) == N) ;
}
static vl_bool
uIsPlainVector (const mxArray* A, int M)
{
return
uIsPlainArray(A) &&
mxGetNumberOfDimensions(A) == 2 &&
(mxGetM(A) == 1 || mxGetN(A) == 1) &&
(M < 0 || (mxGetM(A) == M || mxGetN(A) == M)) ;
}
static vl_bool
uIsPlainScalar (const mxArray* A)
{
return
uIsPlainArray(A) &&
mxGetNumberOfElements(A) == 1 ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array a numeric matrix?
**
** @param A array to test.
** @param M number of rows.
** @param N number of columns.
**
** The array @a A satisfies the test if:
** - It is numeric.
** - It as two dimensions.
** - @a M < 0 or the number of rows is equal to @a M.
** - @a N < 0 or the number of columns is equal to @a N.
**
** @return test result.
**/
static int
uIsMatrix (const mxArray* A, int M, int N)
{
return
mxIsNumeric(A) &&
mxGetNumberOfDimensions(A) == 2 &&
(M < 0 || mxGetM(A) == M) &&
(N < 0 || mxGetN(A) == N) ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array a vector?
**
** @param A array to test.
** @param N number of elements.
**
** The array @a A satisfies the test if
** - It is a matrix (see ::uIsMatrix()).
** - It has a singleton dimension.
** - @c N < 0 or the other dimension is equal to @c N.
**
** @return test result.
**/
static int
uIsVector(const mxArray* A, int N)
{
return
uIsMatrix(A, 1, N) || uIsMatrix(A, N, 1) ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array real?
**
** @param A array to test.
**
** An array satisfies the test if:
** - The storage class is DOUBLE.
** - There is no imaginary part.
**
** @return test result.
**/
static int
uIsReal (const mxArray* A)
{
return
mxIsDouble(A) &&
! mxIsComplex(A) ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array real and scalar?
**
** @param A array to test.
**
** An array is <em>real and scalar</em> if:
** - It is real (see ::uIsReal()).
** - It as only one element.
**
** @return test result.
**/
static int
uIsRealScalar(const mxArray* A)
{
return
uIsReal (A) && mxGetNumberOfElements(A) == 1 ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array a real matrix?
**
** @param A array to test.
** @param M number of rows.
** @param N number of columns.
**
** The array @a A satisfies the test if:
** - It is real (see ::uIsReal()).
** - It as two dimensions.
** - @a M < 0 or the number of rows is equal to @a M.
** - @a N < 0 or the number of columns is equal to @a N.
**
** @return test result.
**/
static int
uIsRealMatrix(const mxArray* A, int M, int N)
{
return
mxIsDouble(A) &&
!mxIsComplex(A) &&
mxGetNumberOfDimensions(A) == 2 &&
(M < 0 || mxGetM(A) == M) &&
(N < 0 || mxGetN(A) == N) ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array a real vector?
**
** @param A array to test.
** @param N number of elements.
**
** The array @a A satisfies the test if
** - It is a real matrix (see ::uIsRealMatrix()).
** - It has a singleton dimension.
** - @c N < 0 or the other dimension is equal to @c N.
**
** @return test result.
**/
static int
uIsRealVector(const mxArray* A, int N)
{
return
uIsRealMatrix(A, 1, N) || uIsRealMatrix(A, N, 1) ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array real with specified dimensions?
**
** @param A array to check.
** @param D number of dimensions.
** @param dims dimensions.
**
** The array @a A satisfies the test if:
** - It is real (see ::uIsReal()).
** - @a ndims < 0 or it has @a ndims dimensions and
** - for each element of @a dims, either that element is negative
** or it is equal to the corresponding dimension of the array.
**
** @return test result.
**/
static int
uIsRealArray(const mxArray* A, int D, int* dims)
{
if(!mxIsDouble(A) || mxIsComplex(A))
return 0 ;
if(D >= 0) {
int d ;
mwSize const * actual_dims = mxGetDimensions(A) ;
if(mxGetNumberOfDimensions(A) != D)
return 0 ;
return 1 ;
if(dims != NULL) {
for(d = 0 ; d < D ; ++d) {
if(dims[d] >= 0 && dims[d] != actual_dims[d])
return 0 ;
}
}
}
return 1 ;
}
/** ------------------------------------------------------------------
** @deprecated @ref mexutils-array-test
** @brief Is the array a string?
**
** @param A array to test.
** @param L string length.
**
** The array @a A satisfies the test if:
** - its storage class is CHAR;
** - it has two dimensions;
** - it has one row;
** - @a L < 0 or it has @a L columns.
**
** @return test result.
**/
static int
uIsString(const mxArray* A, int L)
{
int M = mxGetM(A) ;
int N = mxGetN(A) ;
return
mxIsChar(A) &&
mxGetNumberOfDimensions(A) == 2 &&
(M == 1 || (M == 0 && N == 0)) &&
(L < 0 || N == L) ;
}
/** ------------------------------------------------------------------
** @brief Generate MEX error with VLFeat format
**
** @param errorId error ID string.
** @param errorMessage error message C-style format string.
** @param ... format string arguments.
**
** The function invokes @c mxErrMsgTxtAndId.
**/
void
mxuError(char const * errorId, char const * errorMessage, ...)
{
char formattedErrorId [512] ;
char formattedErrorMessage [1024] ;
va_list args;
va_start(args, errorMessage) ;
if (! errorId) {
errorId = "undefinedError" ;
}
if (! errorMessage) {
errorMessage = "Undefined error description" ;
}
#ifdef VL_COMPILER_LCC
sprintf(formattedErrorId,
"VLFeat:%s", errorId) ;
vsprintf(formattedErrorMessage,
errorMessage, args) ;
#else
snprintf(formattedErrorId,
sizeof(formattedErrorId)/sizeof(char),
"VLFeat:%s", errorId) ;
vsnprintf(formattedErrorMessage,
sizeof(formattedErrorMessage)/sizeof(char),
errorMessage, args) ;
#endif
va_end(args) ;
mexErrMsgIdAndTxt(formattedErrorId, formattedErrorMessage) ;
}
/** @brief Generate invalid argument error */
#define VLMX_EIA(...) mxuError("invalidArgument", __VA_ARGS__)
/** ------------------------------------------------------------------
** @brief Formatted @c mexErrMsgTxt()
**
** @param format format string (for sprintf).
** @param ... format string arguments.
**/
void
uErrMsgTxt(char const * format, ...)
{
enum { buffLen = 1024 } ;
char buffer [buffLen] ;
va_list args;
va_start (args, format) ;
#ifdef VL_COMPILER_LCC
vsprintf(buffer, format, args) ;
#else
vsnprintf (buffer, buffLen, format, args) ;
#endif
va_end (args) ;
mexErrMsgTxt (buffer) ;
}
/** -------------------------------------------------------------------
** @brief MEX option
**/
struct _uMexOption
{
const char *name ; /**< option name */
int has_arg ; /**< has argument? */
int val ; /**< value to return */
} ;
/** @brief MEX option type
** @see ::_uMexOption
**/
typedef struct _uMexOption uMexOption ;
/** ------------------------------------------------------------------
** @brief Case insensitive string comparison
**
** @param s1 first string.
** @param s2 second string.
**
** @return 0 if the strings are equal, >0 if the first string is
** greater (in lexicographical order) and <0 otherwise.
**/
static int
uStrICmp(const char *s1, const char *s2)
{
while (tolower((unsigned char)*s1) ==
tolower((unsigned char)*s2))
{
if (*s1 == 0)
return 0;
s1++;
s2++;
}
return
(int)tolower((unsigned char)*s1) -
(int)tolower((unsigned char)*s2) ;
}
/** ------------------------------------------------------------------
** @brief Process next option
**
** @param args MEX argument array.
** @param nargs MEX argument array length.
** @param options List of option definitions.
** @param next Pointer to the next option (in and out).
** @param optarg Pointer to the option optional argument (out).
**
** The function scans the MEX driver arguments array @a args of @a
** nargs elements for the next option starting at location @a next.
**
** This argument is supposed to be the name of an option (case
** insensitive). The option is looked up in the option table @a
** options and decoded as the value uMexOption::val. Furthermore, if
** uMexOption::has_arg is true, the next entry in the array @a args
** is assumed to be argument of the option and stored in @a
** optarg. Finally, @a next is advanced to point to the next option.
**
** @return the code of the option, or -1 if the argument list is
** exhausted. In case of an error (e.g. unknown option) the function
** prints an error message and quits the MEX file.
**/
static int uNextOption(mxArray const *args[], int nargs,
uMexOption const *options,
int *next,
mxArray const **optarg)
{
char err_msg [1024] ;
char name [1024] ;
int opt = -1, i, len ;
if (*next >= nargs) {
return opt ;
}
/* check the array is a string */
if (! uIsString (args [*next], -1)) {
snprintf(err_msg, sizeof(err_msg),
"The option name is not a string (argument number %d).",
*next + 1) ;
mexErrMsgTxt(err_msg) ;
}
/* retrieve option name */
len = mxGetNumberOfElements (args [*next]) ;
if (mxGetString (args [*next], name, sizeof(name))) {
snprintf(err_msg, sizeof(err_msg),
"The option name is too long (argument number %d).",
*next + 1) ;
mexErrMsgTxt(err_msg) ;
}
/* advance argument list */
++ (*next) ;
/* now lookup the string in the option table */
for (i = 0 ; options[i].name != 0 ; ++i) {
if (uStrICmp(name, options[i].name) == 0) {
opt = options[i].val ;
break ;
}
}
/* unknown argument */
if (opt < 0) {
snprintf(err_msg, sizeof(err_msg),
"Unknown option '%s'.", name) ;
mexErrMsgTxt(err_msg) ;
}
/* no argument */
if (! options [i].has_arg) {
if (optarg) *optarg = 0 ;
return opt ;
}
/* argument */
if (*next >= nargs) {
snprintf(err_msg, sizeof(err_msg),
"Option '%s' requires an argument.", options[i].name) ;
mexErrMsgTxt(err_msg) ;
}
if (optarg) *optarg = args [*next] ;
++ (*next) ;
return opt ;
}
/* MEXUTILS_H */
#endif
|