I'm having an absolute hell of a time trying to figure out how to get a plain, mutable C string (a char*) from a D string (a immutable(char)[]) to that I can pass the character data to legacy C code. toStringz doesn't work, as I get an error saying that I "cannot implicitly convert expression (toStringz(this.fileName())) of type immutable(char)* to char*". Do I need to recreate a new, mutable array of char and copy the characters over?
|
If you can change the header of the D interface of that legacy C code, and you are sure that legacy C code will not modify the string, you could make it accept a
|
|||||
|
|
Yeah, it's not pretty, because the result is immutable. This is why I always return a mutable copy of new arrays in my code. There's no point in making them immutable. Solutions: You could just do
then use However:This wastes a string. A better approach might be:
and using Another solution is to use a method like this one:
This one is the most efficient but also the longest. (Edit: Whoops, I had a typo in the |
|||||||||||
|
|
Without any context on which function you're calling it's hard to say what is the right solution. Typically, if the C function wants to modify or write to the string it probably expects you to provide a buffer and a length. Usually what I do is: Allocate a buffer:
And call the C function:
|
|||
|
|
|
If you want to pass a mutable So, if you have a
In either case, you then pass If you know that the C function that you're calling isn't going to alter the string, then you can either do as KennyTM suggests and alter the C function's signature in D to take a
Altering the C function's signature would be more correct and less error-prone though. It sounds like we may be altering |
|||
|
|
|
You can try the following : char a[]="abc"; char *p=a; Now you can pass pointer 'p' to the array in any function. Hope it works. |
|||
|
|