source: trunk/lang/matlab/rpLibNodeType.cc @ 4346

Last change on this file since 4346 was 3177, checked in by mmc, 12 years ago

Updated all of the copyright notices to reference the transfer to
the new HUBzero Foundation, LLC.

File size: 1.7 KB
Line 
1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: Matlab Rappture Library Source
4 *
5 *    [retStr,err] = rpLibNodeType(lib)
6 *
7 * ======================================================================
8 *  AUTHOR:  Derrick Kearney, Purdue University
9 *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
10 *
11 *  See the file "license.terms" for information on usage and
12 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
13 * ======================================================================
14 */
15
16#include "RpMatlabInterface.h"
17
18/**********************************************************************/
19// METHOD: [retStr,err] = rpLibNodeType(nodeHandle)
20/// Return the type name of the node represented by 'nodeHandle'
21/**
22 * This method returns the type name of the node represented`
23 * by 'nodeHandle'.
24 * Error code, err=0 on success, anything else is failure.
25 */
26
27
28void mexFunction(int nlhs, mxArray *plhs[],
29                 int nrhs, const mxArray *prhs[])
30{
31    int libIndex = 0;
32    int err = 1;
33    RpLibrary* lib = NULL;
34    std::string retStr = "";
35
36    /* Check for proper number of arguments. */
37    if (nrhs != 1) {
38        mexErrMsgTxt("One input required.");
39    }
40
41    // grab the integer value of the library handle
42    libIndex = getIntInput(prhs[0]);
43
44    /* Call the C subroutine. */
45    if (libIndex > 0) {
46        lib = (RpLibrary*) getObject_Void(libIndex);
47        if (lib) {
48            retStr = lib->nodeComp();
49            if (!retStr.empty()) {
50                err = 0;
51            }
52        }
53    }
54
55    /* Set C-style string output_buf to MATLAB mexFunction output*/
56    plhs[0] = mxCreateString(retStr.c_str());
57    plhs[1] = mxCreateDoubleScalar(err);
58
59    return;
60}
Note: See TracBrowser for help on using the repository browser.