rob@76
|
1 /*
|
rob@76
|
2 oscpack -- Open Sound Control (OSC) packet manipulation library
|
rob@76
|
3 http://www.rossbencina.com/code/oscpack
|
rob@76
|
4
|
rob@76
|
5 Copyright (c) 2004-2013 Ross Bencina <rossb@audiomulch.com>
|
rob@76
|
6
|
rob@76
|
7 Permission is hereby granted, free of charge, to any person obtaining
|
rob@76
|
8 a copy of this software and associated documentation files
|
rob@76
|
9 (the "Software"), to deal in the Software without restriction,
|
rob@76
|
10 including without limitation the rights to use, copy, modify, merge,
|
rob@76
|
11 publish, distribute, sublicense, and/or sell copies of the Software,
|
rob@76
|
12 and to permit persons to whom the Software is furnished to do so,
|
rob@76
|
13 subject to the following conditions:
|
rob@76
|
14
|
rob@76
|
15 The above copyright notice and this permission notice shall be
|
rob@76
|
16 included in all copies or substantial portions of the Software.
|
rob@76
|
17
|
rob@76
|
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
rob@76
|
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
rob@76
|
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
rob@76
|
21 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
rob@76
|
22 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
rob@76
|
23 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
rob@76
|
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
rob@76
|
25 */
|
rob@76
|
26
|
rob@76
|
27 /*
|
rob@76
|
28 The text above constitutes the entire oscpack license; however,
|
rob@76
|
29 the oscpack developer(s) also make the following non-binding requests:
|
rob@76
|
30
|
rob@76
|
31 Any person wishing to distribute modifications to the Software is
|
rob@76
|
32 requested to send the modifications to the original developer so that
|
rob@76
|
33 they can be incorporated into the canonical version. It is also
|
rob@76
|
34 requested that these non-binding requests be included whenever the
|
rob@76
|
35 above license is reproduced.
|
rob@76
|
36 */
|
rob@76
|
37
|
rob@76
|
38 /*
|
rob@76
|
39 OscDump prints incoming OSC packets. Unlike the Berkeley dumposc program
|
rob@76
|
40 OscDump uses a different printing format which indicates the type of each
|
rob@76
|
41 message argument.
|
rob@76
|
42 */
|
rob@76
|
43
|
rob@76
|
44
|
rob@76
|
45 #include <iostream>
|
rob@76
|
46 #include <cstring>
|
rob@76
|
47 #include <cstdlib>
|
rob@76
|
48
|
rob@76
|
49 #if defined(__BORLANDC__) // workaround for BCB4 release build intrinsics bug
|
rob@76
|
50 namespace std {
|
rob@76
|
51 using ::__strcmp__; // avoid error: E2316 '__strcmp__' is not a member of 'std'.
|
rob@76
|
52 }
|
rob@76
|
53 #endif
|
rob@76
|
54
|
rob@76
|
55 #include "osc/OscReceivedElements.h"
|
rob@76
|
56 #include "osc/OscPrintReceivedElements.h"
|
rob@76
|
57
|
rob@76
|
58 #include "ip/UdpSocket.h"
|
rob@76
|
59 #include "ip/PacketListener.h"
|
rob@76
|
60
|
rob@76
|
61
|
rob@76
|
62 class OscDumpPacketListener : public PacketListener{
|
rob@76
|
63 public:
|
rob@76
|
64 virtual void ProcessPacket( const char *data, int size,
|
rob@76
|
65 const IpEndpointName& remoteEndpoint )
|
rob@76
|
66 {
|
rob@76
|
67 (void) remoteEndpoint; // suppress unused parameter warning
|
rob@76
|
68
|
rob@76
|
69 std::cout << osc::ReceivedPacket( data, size );
|
rob@76
|
70 }
|
rob@76
|
71 };
|
rob@76
|
72
|
rob@76
|
73 int main(int argc, char* argv[])
|
rob@76
|
74 {
|
rob@76
|
75 if( argc >= 2 && std::strcmp( argv[1], "-h" ) == 0 ){
|
rob@76
|
76 std::cout << "usage: OscDump [port]\n";
|
rob@76
|
77 return 0;
|
rob@76
|
78 }
|
rob@76
|
79
|
rob@76
|
80 int port = 7000;
|
rob@76
|
81
|
rob@76
|
82 if( argc >= 2 )
|
rob@76
|
83 port = std::atoi( argv[1] );
|
rob@76
|
84
|
rob@76
|
85 OscDumpPacketListener listener;
|
rob@76
|
86 UdpListeningReceiveSocket s(
|
rob@76
|
87 IpEndpointName( IpEndpointName::ANY_ADDRESS, port ),
|
rob@76
|
88 &listener );
|
rob@76
|
89
|
rob@76
|
90 std::cout << "listening for input on port " << port << "...\n";
|
rob@76
|
91 std::cout << "press ctrl-c to end\n";
|
rob@76
|
92
|
rob@76
|
93 s.RunUntilSigInt();
|
rob@76
|
94
|
rob@76
|
95 std::cout << "finishing.\n";
|
rob@76
|
96
|
rob@76
|
97 return 0;
|
rob@76
|
98 }
|
rob@76
|
99
|
rob@76
|
100
|