linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / OSCFunc.schelp
blob64ca6a6c6e20e4b3e38b2fe76143c65aabac1bf1
1 CLASS:: OSCFunc
2 summary:: Fast Responder for incoming Open Sound Control Messages
3 categories:: OpenSoundControl
4 related:: Guides/OSC_communication, Classes/OSCdef, Classes/OSCresponderNode, Classes/NetAddr
6 DESCRIPTION::
7 OSCFunc (and its subclass link::Classes/OSCdef::) registers one or more functions to respond to an incoming OSC message which matches a specified OSC Address. Many of its methods are inherited from its superclass link::Classes/AbstractResponderFunc::. OSCFunc supports pattern matching of wildcards etc. in incoming messages. For efficiency reasons you must specify that an OSCFunc will employ pattern matching by creating it with the link::#*newMatching:: method, or by passing a matching dispatcher to link::#*new::. For details on the Open Sound Control protocol, see http://opensoundcontrol.org/spec-1_0
9 note:: Use of the older classes OSCresponder, OSCresponderNode, and OSCpathResponder can be unsafe, since responders in user and class code can override each other unintentionally. OSCFunc and link::Classes/OSCdef:: are faster, safer, have more logical argument order, and support pattern matching and custom listening ports. Thus they are the recommended way of registering for incoming OSC messages as of SC 3.5. (See below for an example demonstrating OSCpathResponder-type arg matching.)::
12 CLASSMETHODS::
13 private:: initClass, cmdPeriod
15 METHOD:: defaultDispatcher
16 Get or set the default dispatcher object for OSCFuncs (this is what you get if you pass nil as the dispatcher argument to link::#*new::). This object will decide if any of its registered OSCFuncs should respond to an incoming OSC message.
18 returns:: By default this will be an link::Classes/OSCMessageDispatcher::, but it can be set to any instance of an appropriate subclass of link::Classes/AbstractDispatcher::.
20 METHOD:: defaultMatchingDispatcher
21 Get or set the default matching dispatcher object for OSCFuncs (this is what you get if when you create an OSCFunc using link::#*newMatching::). This object will decide if any of its registered OSCFuncs should respond to an incoming OSC message using pattern matching.
23 returns:: By default this will be an link::Classes/OSCMessagePatternDispatcher::, but it can be set to any instance of an appropriate subclass of link::Classes/AbstractDispatcher::.
25 METHOD:: new
26 Create a new, enabled OSCFunc.
28 argument:: func
29 A link::Classes/Function:: or similar object which will respond to the incoming message. When evaluated it will be passed the arguments msg, time, addr, and recvPort, corresponding to the message as an link::Classes/Array:: in the form code::[OSCAddress, ...otherArgs]::, the time that the message was sent, a link::Classes/NetAddr:: corresponding to the IP address of the sender, and an link::Classes/Integer:: corresponding to the port on which the message was received. For more complicated matching, one can use an link::Classes/OSCArgsMatcher:: or similar object.
31 argument:: path
32 A link::Classes/Symbol:: indicating the path of the OSC address of this object. Note that OSCFunc demands OSC compliant addresses. If the path does not begin with a / one will be added automatically.
34 argument:: srcID
35 An optional instance of link::Classes/NetAddr:: indicating the IP address of the sender. If set this object will only respond to messages from that source.
37 argument:: recvPort
38 An optional link::Classes/Integer:: indicating the port on which messages will be received. If set this object will only respond to message received on that port. Note that you will have to use the link::Classes/Main#-openUDPPort:: method to enable listening on that port.
40 argument:: dispatcher
41 An optional instance of an appropriate subclass of link::Classes/AbstractDispatcher::. This can be used to allow for customised dispatching. Normally this should not be needed.
43 returns:: A new instance of OSCFunc.
45 METHOD:: newMatching
46 A convenience method to create a new, enabled OSCFunc whose dispatcher will perform pattern matching on incoming OSC messages to see if their address patterns match this object's path.
48 argument:: func
49 A link::Classes/Function:: or similar object which will respond to the incoming message. When evaluated it will be passed the arguments msg, time, addr, and recvPort, corresponding to the message as an link::Classes/Array:: [OSCAddress, other args], the time that the message was sent, a link::Classes/NetAddr:: corresponding to the IP address of the sender, and an link::Classes/Integer:: corresponding to the port on which the message was received. For more complicated matching, one can use an link::Classes/OSCArgsMatcher:: or similar object.
51 argument:: path
52 A link::Classes/Symbol:: indicating the path of the OSC address of this object. Note that OSCFunc demands OSC compliant addresses. If the path does not begin with a / one will be added automatically. Pattern matching will be applied to any incoming messages to see if they match this address. Note that according to the OSC spec, regular expression wildcards are only permitted in the incoming message's address pattern. Thus path should not contain wildcards. For more details on OSC pattern matching, see http://opensoundcontrol.org/spec-1_0
54 argument:: srcID
55 An optional instance of link::Classes/NetAddr:: indicating the IP address of the sender. If set this object will only respond to messages from that source.
57 argument:: recvPort
58 An optional link::Classes/Integer:: indicating the port on which messages will be received. Note that you will have to use the link::Classes/Main#-openUDPPort:: method to enable listening on that port.
60 returns:: A new instance of OSCFunc.
62 METHOD:: trace
63 A convenience method which dumps all incoming OSC messages.
65 argument:: bool
66 A link::Classes/Boolean:: indicating whether dumping is on or off.
69 INSTANCEMETHODS::
71 private:: init, printOn
73 METHOD:: path
74 Get the path of this OSCFunc's OSC Address.
76 returns:: A link::Classes/String::
78 METHOD:: recvPort
79 Get this OSCFunc's receiving port.
81 returns:: An link::Classes/Integer::
85 EXAMPLES::
87 code::
88 n = NetAddr("127.0.0.1", 57120); // local machine
90 OSCFunc.newMatching({|time, msg, addr| \matching.postln}, '/chat', n); // path matching
91 OSCFunc({|time, msg, addr| \oneShot.postln}, '/chat', n).oneShot; // once only
92 OSCdef(\test, {|time, msg, addr| \unmatching.postln}, '/chat', n); // def style
94 m = NetAddr("127.0.0.1", 57120); // loopback
96 m.sendMsg("/chat", "Hello App 1");
97 m.sendMsg("/chat", "Hello App 1"); // oneshot gone
98 m.sendMsg("/ch?t", "Hello App 1");
99 m.sendMsg("/*", "Hello App 1");
100 m.sendMsg("/chit", "Hello App 1"); // nothing
102 // Introspection
104 AbstractResponderFunc.allFuncProxies
105 AbstractResponderFunc.allEnabled
106 OSCdef(\test).disable;
107 AbstractResponderFunc.allDisabled
109 // change funcs
110 OSCdef(\test).enable;
111 OSCdef(\test, {|time, msg, addr| 'Changed Unmatching'.postln}, '/chat', n); // replace at key \test
112 m.sendMsg("/chat", "Hello App 1");
113 OSCdef(\test).add(f = {\foo.postln}); // add another func
114 m.sendMsg("/chat", "Hello App 1");
115 OSCdef(\test).clear; // remove all functions
116 m.sendMsg("/chat", "Hello App 1");
118 //////// Use an OSCArgsMatcher for finer grained matching
120 s.boot;
121 x = Synth(\default);
122 OSCFunc(OSCArgsMatcher([x.nodeID], { 'ended!'.postln }), '/n_end', s.addr).oneShot;
123 x.release(3);