How do I process a string class in a mex function?
8 views (last 30 days)
Show older comments
I would like to pass a string (not a character array, but a class object of type "string") into a mex function, such as:
myMexFunction_mex("xyzyy")
and then process it. However, there seems to be no mex support for string objects.
The following C code snippet returns true for a string object:
mxIsClass(prhs[0],"string") % returns true
The following returns a value of 19, which is not defined in mex.h as part of the mxClassID enumeration (the highest defined value is 18, mxOBJECT_CLASS):
mxGetClassID(prhs[0]) % returns 19
It seems crazy that the mex API support doesn't support strings. Strings have been around since R2016b or so.
Are there any undocumented features I could use to get access to the string length and data? And what character encoding scheme is used (UTF-8, or UTF-16, say)?
BTW, using a character arrays instead of a string object is not an option for me.
1 Comment
Bruno Luong
on 3 Apr 2024
Edited: Bruno Luong
on 3 Apr 2024
IMO string as all object oriented class has minimal (close to 0) support in Mex API, and TMW does not intend to do anything to impprove this.
Accepted Answer
AJ
on 9 Apr 2024
Edited: AJ
on 9 Apr 2024
1 Comment
Bruno Luong
on 9 Apr 2024
Yes you can convert to cell of char array using cellstr(s) rather than char(s). It will not pad trailing blank.
s=["a" "abc"]
char(s)
cellstr(s)
Cell and char arrays are correctly supported by mex API.
More Answers (1)
James Tursa
on 9 Apr 2024
Edited: James Tursa
on 9 Apr 2024
Strings are opaque objects (like classdef) and there are no API functions to get pointer access to the data areas. I am unaware of any hacks to get at this data either. Note that this is not just for strings, but is true for other opaque objects in MATLAB such as half, etc.
You are probably stuck with a deep copy into a char array either at the m-code level or inside the mex routine via mexCallMATLAB() ... yes I know you wrote this is not an option :(
2 Comments
Bruno Luong
on 9 Apr 2024
Edited: James Tursa
on 9 Apr 2024
Would using coder to see how string access is converted to C code is a conformation there is no way/API to retrieve data?
See Also
Categories
Find more on MATLAB Compiler in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!