Csound Csound-dev Csound-tekno Search About

[Csnd] Csound API with C#?

Date2012-05-09 23:24
FromRory Walsh
Subject[Csnd] Csound API with C#?
A former student of mine who's now doing computing degree is kind of
stuck doing C# all the time, but wants to use Csound as he did with
C/C++ when he did his final year with us. I guess that SWIG can be
used to create a C# interface, but is it hard to do? And does anyone
know if it is actually necessary?

Rory.

Date2012-05-10 00:46
FromMichael Gogins
SubjectRe: [Csnd] Csound API with C#?
SWIG is not necessary. You can call the Csound "C" API using pinvoke.

Regards,
Mike

On Wed, May 9, 2012 at 6:24 PM, Rory Walsh  wrote:
> A former student of mine who's now doing computing degree is kind of
> stuck doing C# all the time, but wants to use Csound as he did with
> C/C++ when he did his final year with us. I guess that SWIG can be
> used to create a C# interface, but is it hard to do? And does anyone
> know if it is actually necessary?
>
> Rory.
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


Date2012-05-10 01:20
FromAnthony Palomba
SubjectRe: [Csnd] Csound API with C#?
You can easily dynamically import a dll API and call them in C#.

I think that is how Winxsound is doing it.



-ap



On Wed, May 9, 2012 at 6:46 PM, Michael Gogins <michael.gogins@gmail.com> wrote:
SWIG is not necessary. You can call the Csound "C" API using pinvoke.

Regards,
Mike

On Wed, May 9, 2012 at 6:24 PM, Rory Walsh <rorywalsh@ear.ie> wrote:
> A former student of mine who's now doing computing degree is kind of
> stuck doing C# all the time, but wants to use Csound as he did with
> C/C++ when he did his final year with us. I guess that SWIG can be
> used to create a C# interface, but is it hard to do? And does anyone
> know if it is actually necessary?
>
> Rory.
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>



--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


Send bugs reports to the Sourceforge bug tracker
           https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2012-05-10 01:55
FromAdam Puckett
SubjectRe: [Csnd] Csound API with C#?
Is that what an "FFI" is?

On 5/9/12, Anthony Palomba  wrote:
> You can easily dynamically import a dll API and call them in C#.
>
> I think that is how Winxsound is doing it.
>
>
>
> -ap
>
>
>
> On Wed, May 9, 2012 at 6:46 PM, Michael Gogins
> wrote:
>
>> SWIG is not necessary. You can call the Csound "C" API using pinvoke.
>>
>> Regards,
>> Mike
>>
>> On Wed, May 9, 2012 at 6:24 PM, Rory Walsh  wrote:
>> > A former student of mine who's now doing computing degree is kind of
>> > stuck doing C# all the time, but wants to use Csound as he did with
>> > C/C++ when he did his final year with us. I guess that SWIG can be
>> > used to create a C# interface, but is it hard to do? And does anyone
>> > know if it is actually necessary?
>> >
>> > Rory.
>> >
>> >
>> > Send bugs reports to the Sourceforge bug tracker
>> >            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> > Discussions of bugs and features can be posted here
>> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
>> "unsubscribe csound"
>> >
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>
>

Date2012-05-10 02:02
FromMichael Gogins
SubjectRe: [Csnd] Csound API with C#?
Almost, but not quite.

FFI stands for "Foreign Function Interface" and enables the caller's
program to impersonate C types, build a C calling convention stack
frame, and call a C calling convention function in a shared library.

pinvoke enables .NET programs to call C calling convention functions
that have types that can be impersonated in .NET.

pinvoke is a sort of subset of FFI.

What Anthony is talking about is probably pinvoke. As I said before it
should work fine with most Csound "C" API function calls.

Regards,
Mike

On Wed, May 9, 2012 at 8:55 PM, Adam Puckett  wrote:
> Is that what an "FFI" is?
>
> On 5/9/12, Anthony Palomba  wrote:
>> You can easily dynamically import a dll API and call them in C#.
>>
>> I think that is how Winxsound is doing it.
>>
>>
>>
>> -ap
>>
>>
>>
>> On Wed, May 9, 2012 at 6:46 PM, Michael Gogins
>> wrote:
>>
>>> SWIG is not necessary. You can call the Csound "C" API using pinvoke.
>>>
>>> Regards,
>>> Mike
>>>
>>> On Wed, May 9, 2012 at 6:24 PM, Rory Walsh  wrote:
>>> > A former student of mine who's now doing computing degree is kind of
>>> > stuck doing C# all the time, but wants to use Csound as he did with
>>> > C/C++ when he did his final year with us. I guess that SWIG can be
>>> > used to create a C# interface, but is it hard to do? And does anyone
>>> > know if it is actually necessary?
>>> >
>>> > Rory.
>>> >
>>> >
>>> > Send bugs reports to the Sourceforge bug tracker
>>> >            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> > Discussions of bugs and features can be posted here
>>> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>> "unsubscribe csound"
>>> >
>>>
>>>
>>>
>>> --
>>> Michael Gogins
>>> Irreducible Productions
>>> http://www.michael-gogins.com
>>> Michael dot Gogins at gmail dot com
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


Date2012-05-10 02:18
FromAdam Puckett
SubjectRe: [Csnd] Csound API with C#?
I guess the Python module "ctypes" is more along the lines of an FFI
then. So if languages have FFIs and .NET has p/invoke, then why do we
need SWIG?

On 5/9/12, Michael Gogins  wrote:
> Almost, but not quite.
>
> FFI stands for "Foreign Function Interface" and enables the caller's
> program to impersonate C types, build a C calling convention stack
> frame, and call a C calling convention function in a shared library.
>
> pinvoke enables .NET programs to call C calling convention functions
> that have types that can be impersonated in .NET.
>
> pinvoke is a sort of subset of FFI.
>
> What Anthony is talking about is probably pinvoke. As I said before it
> should work fine with most Csound "C" API function calls.
>
> Regards,
> Mike
>
> On Wed, May 9, 2012 at 8:55 PM, Adam Puckett 
> wrote:
>> Is that what an "FFI" is?
>>
>> On 5/9/12, Anthony Palomba  wrote:
>>> You can easily dynamically import a dll API and call them in C#.
>>>
>>> I think that is how Winxsound is doing it.
>>>
>>>
>>>
>>> -ap
>>>
>>>
>>>
>>> On Wed, May 9, 2012 at 6:46 PM, Michael Gogins
>>> wrote:
>>>
>>>> SWIG is not necessary. You can call the Csound "C" API using pinvoke.
>>>>
>>>> Regards,
>>>> Mike
>>>>
>>>> On Wed, May 9, 2012 at 6:24 PM, Rory Walsh  wrote:
>>>> > A former student of mine who's now doing computing degree is kind of
>>>> > stuck doing C# all the time, but wants to use Csound as he did with
>>>> > C/C++ when he did his final year with us. I guess that SWIG can be
>>>> > used to create a C# interface, but is it hard to do? And does anyone
>>>> > know if it is actually necessary?
>>>> >
>>>> > Rory.
>>>> >
>>>> >
>>>> > Send bugs reports to the Sourceforge bug tracker
>>>> >            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> > Discussions of bugs and features can be posted here
>>>> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>> "unsubscribe csound"
>>>> >
>>>>
>>>>
>>>>
>>>> --
>>>> Michael Gogins
>>>> Irreducible Productions
>>>> http://www.michael-gogins.com
>>>> Michael dot Gogins at gmail dot com
>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>> csound"
>>>>
>>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>>
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>
>


Date2012-05-10 02:23
FromPeter Brinkmann
SubjectRe: [Csnd] Csound API with C#?
We recently added C# bindings to libpd, and it was remarkably easy,
even the callbacks from Pd to C#:
https://github.com/libpd/libpd/commit/f719d3d74e0b0010a27aac01c2304c43683f0436

I figure the same approach would work for Csound as well.
Cheers,
     Peter


On Wed, May 9, 2012 at 9:18 PM, Adam Puckett  wrote:
> I guess the Python module "ctypes" is more along the lines of an FFI
> then. So if languages have FFIs and .NET has p/invoke, then why do we
> need SWIG?
>
> On 5/9/12, Michael Gogins  wrote:
>> Almost, but not quite.
>>
>> FFI stands for "Foreign Function Interface" and enables the caller's
>> program to impersonate C types, build a C calling convention stack
>> frame, and call a C calling convention function in a shared library.
>>
>> pinvoke enables .NET programs to call C calling convention functions
>> that have types that can be impersonated in .NET.
>>
>> pinvoke is a sort of subset of FFI.
>>
>> What Anthony is talking about is probably pinvoke. As I said before it
>> should work fine with most Csound "C" API function calls.
>>
>> Regards,
>> Mike
>>
>> On Wed, May 9, 2012 at 8:55 PM, Adam Puckett 
>> wrote:
>>> Is that what an "FFI" is?
>>>
>>> On 5/9/12, Anthony Palomba  wrote:
>>>> You can easily dynamically import a dll API and call them in C#.
>>>>
>>>> I think that is how Winxsound is doing it.
>>>>
>>>>
>>>>
>>>> -ap
>>>>
>>>>
>>>>
>>>> On Wed, May 9, 2012 at 6:46 PM, Michael Gogins
>>>> wrote:
>>>>
>>>>> SWIG is not necessary. You can call the Csound "C" API using pinvoke.
>>>>>
>>>>> Regards,
>>>>> Mike
>>>>>
>>>>> On Wed, May 9, 2012 at 6:24 PM, Rory Walsh  wrote:
>>>>> > A former student of mine who's now doing computing degree is kind of
>>>>> > stuck doing C# all the time, but wants to use Csound as he did with
>>>>> > C/C++ when he did his final year with us. I guess that SWIG can be
>>>>> > used to create a C# interface, but is it hard to do? And does anyone
>>>>> > know if it is actually necessary?
>>>>> >
>>>>> > Rory.
>>>>> >
>>>>> >
>>>>> > Send bugs reports to the Sourceforge bug tracker
>>>>> >            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> > Discussions of bugs and features can be posted here
>>>>> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>>> "unsubscribe csound"
>>>>> >
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>>
>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> Discussions of bugs and features can be posted here
>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>>> csound"
>>>>>
>>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>> csound"
>>>>
>>>>
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>


Date2012-05-10 02:24
FromMichael Gogins
SubjectRe: [Csnd] Csound API with C#?
You don't need it but it's nice. With FFI you have write stuff by
hand. SWIG does it for you (mostly). Also its quite hard, impractical
really, to use FFI with C++ libraries, but SWIG is just for that.

Regards,
Mike

On Wed, May 9, 2012 at 9:18 PM, Adam Puckett  wrote:
> I guess the Python module "ctypes" is more along the lines of an FFI
> then. So if languages have FFIs and .NET has p/invoke, then why do we
> need SWIG?
>
> On 5/9/12, Michael Gogins  wrote:
>> Almost, but not quite.
>>
>> FFI stands for "Foreign Function Interface" and enables the caller's
>> program to impersonate C types, build a C calling convention stack
>> frame, and call a C calling convention function in a shared library.
>>
>> pinvoke enables .NET programs to call C calling convention functions
>> that have types that can be impersonated in .NET.
>>
>> pinvoke is a sort of subset of FFI.
>>
>> What Anthony is talking about is probably pinvoke. As I said before it
>> should work fine with most Csound "C" API function calls.
>>
>> Regards,
>> Mike
>>
>> On Wed, May 9, 2012 at 8:55 PM, Adam Puckett 
>> wrote:
>>> Is that what an "FFI" is?
>>>
>>> On 5/9/12, Anthony Palomba  wrote:
>>>> You can easily dynamically import a dll API and call them in C#.
>>>>
>>>> I think that is how Winxsound is doing it.
>>>>
>>>>
>>>>
>>>> -ap
>>>>
>>>>
>>>>
>>>> On Wed, May 9, 2012 at 6:46 PM, Michael Gogins
>>>> wrote:
>>>>
>>>>> SWIG is not necessary. You can call the Csound "C" API using pinvoke.
>>>>>
>>>>> Regards,
>>>>> Mike
>>>>>
>>>>> On Wed, May 9, 2012 at 6:24 PM, Rory Walsh  wrote:
>>>>> > A former student of mine who's now doing computing degree is kind of
>>>>> > stuck doing C# all the time, but wants to use Csound as he did with
>>>>> > C/C++ when he did his final year with us. I guess that SWIG can be
>>>>> > used to create a C# interface, but is it hard to do? And does anyone
>>>>> > know if it is actually necessary?
>>>>> >
>>>>> > Rory.
>>>>> >
>>>>> >
>>>>> > Send bugs reports to the Sourceforge bug tracker
>>>>> >            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> > Discussions of bugs and features can be posted here
>>>>> > To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>>> "unsubscribe csound"
>>>>> >
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Michael Gogins
>>>>> Irreducible Productions
>>>>> http://www.michael-gogins.com
>>>>> Michael dot Gogins at gmail dot com
>>>>>
>>>>>
>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> Discussions of bugs and features can be posted here
>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>>> csound"
>>>>>
>>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>> csound"
>>>>
>>>>
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>
>>
>>
>> --
>> Michael Gogins
>> Irreducible Productions
>> http://www.michael-gogins.com
>> Michael dot Gogins at gmail dot com
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com