annotate osx/include/lo/lo.h @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 241db1b1eff2
children
rev   line source
matthiasmauch@114 1 /*
matthiasmauch@114 2 * Copyright (C) 2004 Steve Harris
matthiasmauch@114 3 *
matthiasmauch@114 4 * This program is free software; you can redistribute it and/or
matthiasmauch@114 5 * modify it under the terms of the GNU Lesser General Public License
matthiasmauch@114 6 * as published by the Free Software Foundation; either version 2.1
matthiasmauch@114 7 * of the License, or (at your option) any later version.
matthiasmauch@114 8 *
matthiasmauch@114 9 * This program is distributed in the hope that it will be useful,
matthiasmauch@114 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
matthiasmauch@114 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
matthiasmauch@114 12 * GNU Lesser General Public License for more details.
matthiasmauch@114 13 *
matthiasmauch@114 14 * $Id$
matthiasmauch@114 15 */
matthiasmauch@114 16
matthiasmauch@114 17 #ifndef LO_H
matthiasmauch@114 18 #define LO_H
matthiasmauch@114 19
matthiasmauch@114 20 #ifdef __cplusplus
matthiasmauch@114 21 extern "C" {
matthiasmauch@114 22 #endif
matthiasmauch@114 23
matthiasmauch@114 24 /**
matthiasmauch@114 25 * \file lo.h The liblo main headerfile and high-level API functions.
matthiasmauch@114 26 */
matthiasmauch@114 27
matthiasmauch@114 28 #include "lo/lo_endian.h"
matthiasmauch@114 29 #include "lo/lo_types.h"
matthiasmauch@114 30 #include "lo/lo_osc_types.h"
matthiasmauch@114 31 #include "lo/lo_errors.h"
matthiasmauch@114 32 #include "lo/lo_lowlevel.h"
matthiasmauch@114 33
matthiasmauch@114 34 /**
matthiasmauch@114 35 * \defgroup liblo High-level OSC API
matthiasmauch@114 36 *
matthiasmauch@114 37 * Defines the high-level API functions necessary to implement OSC support.
matthiasmauch@114 38 * Should be adequate for most applications, but if you require lower level
matthiasmauch@114 39 * control you can use the functions defined in lo_lowlevel.h
matthiasmauch@114 40 * @{
matthiasmauch@114 41 */
matthiasmauch@114 42
matthiasmauch@114 43 /**
matthiasmauch@114 44 * \brief Declare an OSC destination, given IP address and port number.
matthiasmauch@114 45 * Same as lo_address_new_with_proto(), but using UDP.
matthiasmauch@114 46 *
matthiasmauch@114 47 * \param host An IP address or number, or NULL for the local machine.
matthiasmauch@114 48 * \param port a decimal port number or service name.
matthiasmauch@114 49 *
matthiasmauch@114 50 * The lo_address object may be used as the target of OSC messages.
matthiasmauch@114 51 *
matthiasmauch@114 52 * Note: if you wish to receive replies from the target of this address, you
matthiasmauch@114 53 * must first create a lo_server_thread or lo_server object which will receive
matthiasmauch@114 54 * the replies. The last lo_server(_thread) object creted will be the receiver.
matthiasmauch@114 55 */
matthiasmauch@114 56 lo_address lo_address_new(const char *host, const char *port);
matthiasmauch@114 57
matthiasmauch@114 58 /**
matthiasmauch@114 59 * \brief Declare an OSC destination, given IP address and port number,
matthiasmauch@114 60 * specifying protocol.
matthiasmauch@114 61 *
matthiasmauch@114 62 * \param proto The protocol to use, must be one of LO_UDP, LO_TCP or LO_UNIX.
matthiasmauch@114 63 * \param host An IP address or number, or NULL for the local machine.
matthiasmauch@114 64 * \param port a decimal port number or service name.
matthiasmauch@114 65 *
matthiasmauch@114 66 * The lo_address object may be used as the target of OSC messages.
matthiasmauch@114 67 *
matthiasmauch@114 68 * Note: if you wish to receive replies from the target of this address, you
matthiasmauch@114 69 * must first create a lo_server_thread or lo_server object which will receive
matthiasmauch@114 70 * the replies. The last lo_server(_thread) object creted will be the receiver.
matthiasmauch@114 71 */
matthiasmauch@114 72 lo_address lo_address_new_with_proto(int proto, const char *host, const char *port);
matthiasmauch@114 73
matthiasmauch@114 74 /**
matthiasmauch@114 75 * \brief Create a lo_address object from an OSC URL.
matthiasmauch@114 76 *
matthiasmauch@114 77 * example: \c "osc.udp://localhost:4444/my/path/"
matthiasmauch@114 78 */
matthiasmauch@114 79 lo_address lo_address_new_from_url(const char *url);
matthiasmauch@114 80
matthiasmauch@114 81 /**
matthiasmauch@114 82 * \brief Free the memory used by the lo_address object
matthiasmauch@114 83 */
matthiasmauch@114 84 void lo_address_free(lo_address t);
matthiasmauch@114 85
matthiasmauch@114 86 /**
matthiasmauch@114 87 * \brief Set the Time-to-Live value for a given target address.
matthiasmauch@114 88 *
matthiasmauch@114 89 * This is required for sending multicast UDP messages. A value of 1
matthiasmauch@114 90 * (the usual case) keeps the message within the subnet, while 255
matthiasmauch@114 91 * means a global, unrestricted scope.
matthiasmauch@114 92 *
matthiasmauch@114 93 * \param t An OSC address.
matthiasmauch@114 94 * \param ttl An integer specifying the scope of a multicast UDP message.
matthiasmauch@114 95 */
matthiasmauch@114 96 void lo_address_set_ttl(lo_address t, int ttl);
matthiasmauch@114 97
matthiasmauch@114 98 /**
matthiasmauch@114 99 * \brief Get the Time-to-Live value for a given target address.
matthiasmauch@114 100 *
matthiasmauch@114 101 * \param t An OSC address.
matthiasmauch@114 102 * \return An integer specifying the scope of a multicast UDP message.
matthiasmauch@114 103 */
matthiasmauch@114 104 int lo_address_get_ttl(lo_address t);
matthiasmauch@114 105
matthiasmauch@114 106 /**
matthiasmauch@114 107 * \brief Send a OSC formatted message to the address specified.
matthiasmauch@114 108 *
matthiasmauch@114 109 * \param targ The target OSC address
matthiasmauch@114 110 * \param path The OSC path the message will be delivered to
matthiasmauch@114 111 * \param type The types of the data items in the message, types are defined in
matthiasmauch@114 112 * lo_osc_types.h
matthiasmauch@114 113 * \param ... The data values to be transmitted. The types of the arguments
matthiasmauch@114 114 * passed here must agree with the types specified in the type parameter.
matthiasmauch@114 115 *
matthiasmauch@114 116 * example:
matthiasmauch@114 117 * \code
matthiasmauch@114 118 * lo_send(t, "/foo/bar", "ff", 0.1f, 23.0f);
matthiasmauch@114 119 * \endcode
matthiasmauch@114 120 *
matthiasmauch@114 121 * \return -1 on failure.
matthiasmauch@114 122 */
matthiasmauch@114 123 int lo_send(lo_address targ, const char *path, const char *type, ...);
matthiasmauch@114 124
matthiasmauch@114 125 /**
matthiasmauch@114 126 * \brief Send a OSC formatted message to the address specified,
matthiasmauch@114 127 * from the same socket as the specificied server.
matthiasmauch@114 128 *
matthiasmauch@114 129 * \param targ The target OSC address
matthiasmauch@114 130 * \param from The server to send message from (can be NULL to use new socket)
matthiasmauch@114 131 * \param ts The OSC timetag timestamp at which the message will be processed
matthiasmauch@114 132 * (can be LO_TT_IMMEDIATE if you don't want to attach a timetag)
matthiasmauch@114 133 * \param path The OSC path the message will be delivered to
matthiasmauch@114 134 * \param type The types of the data items in the message, types are defined in
matthiasmauch@114 135 * lo_osc_types.h
matthiasmauch@114 136 * \param ... The data values to be transmitted. The types of the arguments
matthiasmauch@114 137 * passed here must agree with the types specified in the type parameter.
matthiasmauch@114 138 *
matthiasmauch@114 139 * example:
matthiasmauch@114 140 * \code
matthiasmauch@114 141 * serv = lo_server_new(NULL, err);
matthiasmauch@114 142 * lo_server_add_method(serv, "/reply", "ss", reply_handler, NULL);
matthiasmauch@114 143 * lo_send_from(t, serv, LO_TT_IMMEDIATE, "/foo/bar", "ff", 0.1f, 23.0f);
matthiasmauch@114 144 * \endcode
matthiasmauch@114 145 *
matthiasmauch@114 146 * \return on success, the number of bytes sent, or -1 on failure.
matthiasmauch@114 147 */
matthiasmauch@114 148 int lo_send_from(lo_address targ, lo_server from, lo_timetag ts,
matthiasmauch@114 149 const char *path, const char *type, ...);
matthiasmauch@114 150
matthiasmauch@114 151 /**
matthiasmauch@114 152 * \brief Send a OSC formatted message to the address specified, scheduled to
matthiasmauch@114 153 * be dispatch at some time in the future.
matthiasmauch@114 154 *
matthiasmauch@114 155 * \param targ The target OSC address
matthiasmauch@114 156 * \param ts The OSC timetag timestamp at which the message will be processed
matthiasmauch@114 157 * \param path The OSC path the message will be delivered to
matthiasmauch@114 158 * \param type The types of the data items in the message, types are defined in
matthiasmauch@114 159 * lo_osc_types.h
matthiasmauch@114 160 * \param ... The data values to be transmitted. The types of the arguments
matthiasmauch@114 161 * passed here must agree with the types specified in the type parameter.
matthiasmauch@114 162 *
matthiasmauch@114 163 * example:
matthiasmauch@114 164 * \code
matthiasmauch@114 165 * lo_timetag now;<br>
matthiasmauch@114 166 * lo_timetag_now(&now);<br>
matthiasmauch@114 167 * lo_send_timestamped(t, now, "/foo/bar", "ff", 0.1f, 23.0f);
matthiasmauch@114 168 * \endcode
matthiasmauch@114 169 *
matthiasmauch@114 170 * \return on success, the number of bytes sent, or -1 on failure.
matthiasmauch@114 171 */
matthiasmauch@114 172 int lo_send_timestamped(lo_address targ, lo_timetag ts, const char *path,
matthiasmauch@114 173 const char *type, ...);
matthiasmauch@114 174
matthiasmauch@114 175 /**
matthiasmauch@114 176 * \brief Return the error number from the last failed lo_send() or
matthiasmauch@114 177 * lo_address_new() call
matthiasmauch@114 178 */
matthiasmauch@114 179 int lo_address_errno(lo_address a);
matthiasmauch@114 180
matthiasmauch@114 181 /**
matthiasmauch@114 182 * \brief Return the error string from the last failed lo_send() or
matthiasmauch@114 183 * lo_address_new() call
matthiasmauch@114 184 */
matthiasmauch@114 185 const char *lo_address_errstr(lo_address a);
matthiasmauch@114 186
matthiasmauch@114 187 /**
matthiasmauch@114 188 * \brief Create a new server thread to handle incoming OSC
matthiasmauch@114 189 * messages.
matthiasmauch@114 190 *
matthiasmauch@114 191 * Server threads take care of the message reception and dispatch by
matthiasmauch@114 192 * transparently creating a system thread to handle incoming messages.
matthiasmauch@114 193 * Use this if you do not want to handle the threading yourself.
matthiasmauch@114 194 *
matthiasmauch@114 195 * \param port If NULL is passed then an unused port will be chosen by the
matthiasmauch@114 196 * system, its number may be retrieved with lo_server_thread_get_port()
matthiasmauch@114 197 * so it can be passed to clients. Otherwise a decimal port number, service
matthiasmauch@114 198 * name or UNIX domain socket path may be passed.
matthiasmauch@114 199 * \param err_h A function that will be called in the event of an error being
matthiasmauch@114 200 * raised. The function prototype is defined in lo_types.h
matthiasmauch@114 201 */
matthiasmauch@114 202 lo_server_thread lo_server_thread_new(const char *port, lo_err_handler err_h);
matthiasmauch@114 203
matthiasmauch@114 204 /**
matthiasmauch@114 205 * \brief Create a new server thread to handle incoming OSC
matthiasmauch@114 206 * messages, and join a UDP multicast group.
matthiasmauch@114 207 *
matthiasmauch@114 208 * Server threads take care of the message reception and dispatch by
matthiasmauch@114 209 * transparently creating a system thread to handle incoming messages.
matthiasmauch@114 210 * Use this if you do not want to handle the threading yourself.
matthiasmauch@114 211 *
matthiasmauch@114 212 * \param group The multicast group to join. See documentation on IP
matthiasmauch@114 213 * multicast for the acceptable address range; e.g., http://tldp.org/HOWTO/Multicast-HOWTO-2.html
matthiasmauch@114 214 * \param port If NULL is passed then an unused port will be chosen by the
matthiasmauch@114 215 * system, its number may be retrieved with lo_server_thread_get_port()
matthiasmauch@114 216 * so it can be passed to clients. Otherwise a decimal port number, service
matthiasmauch@114 217 * name or UNIX domain socket path may be passed.
matthiasmauch@114 218 * \param err_h A function that will be called in the event of an error being
matthiasmauch@114 219 * raised. The function prototype is defined in lo_types.h
matthiasmauch@114 220 */
matthiasmauch@114 221 lo_server_thread lo_server_thread_new_multicast(const char *group, const char *port,
matthiasmauch@114 222 lo_err_handler err_h);
matthiasmauch@114 223
matthiasmauch@114 224 /**
matthiasmauch@114 225 * \brief Create a new server thread to handle incoming OSC
matthiasmauch@114 226 * messages, specifying protocol.
matthiasmauch@114 227 *
matthiasmauch@114 228 * Server threads take care of the message reception and dispatch by
matthiasmauch@114 229 * transparently creating a system thread to handle incoming messages.
matthiasmauch@114 230 * Use this if you do not want to handle the threading yourself.
matthiasmauch@114 231 *
matthiasmauch@114 232 * \param port If NULL is passed then an unused port will be chosen by the
matthiasmauch@114 233 * system, its number may be retrieved with lo_server_thread_get_port()
matthiasmauch@114 234 * so it can be passed to clients. Otherwise a decimal port number, service
matthiasmauch@114 235 * name or UNIX domain socket path may be passed.
matthiasmauch@114 236 * \param proto The protocol to use, should be one of LO_UDP, LO_TCP or LO_UNIX.
matthiasmauch@114 237 * \param err_h A function that will be called in the event of an error being
matthiasmauch@114 238 * raised. The function prototype is defined in lo_types.h
matthiasmauch@114 239 */
matthiasmauch@114 240 lo_server_thread lo_server_thread_new_with_proto(const char *port, int proto,
matthiasmauch@114 241 lo_err_handler err_h);
matthiasmauch@114 242
matthiasmauch@114 243 /**
matthiasmauch@114 244 * \brief Free memory taken by a server thread
matthiasmauch@114 245 *
matthiasmauch@114 246 * Frees the memory, and, if currently running will stop the associated thread.
matthiasmauch@114 247 */
matthiasmauch@114 248 void lo_server_thread_free(lo_server_thread st);
matthiasmauch@114 249
matthiasmauch@114 250 /**
matthiasmauch@114 251 * \brief Add an OSC method to the specifed server thread.
matthiasmauch@114 252 *
matthiasmauch@114 253 * \param st The server thread the method is to be added to.
matthiasmauch@114 254 * \param path The OSC path to register the method to. If NULL is passed the
matthiasmauch@114 255 * method will match all paths.
matthiasmauch@114 256 * \param typespec The typespec the method accepts. Incoming messages with
matthiasmauch@114 257 * similar typespecs (e.g. ones with numerical types in the same position) will
matthiasmauch@114 258 * be coerced to the typespec given here.
matthiasmauch@114 259 * \param h The method handler callback function that will be called it a
matthiasmauch@114 260 * matching message is received
matthiasmauch@114 261 * \param user_data A value that will be passed to the callback function, h,
matthiasmauch@114 262 * when its invoked matching from this method.
matthiasmauch@114 263 */
matthiasmauch@114 264 lo_method lo_server_thread_add_method(lo_server_thread st, const char *path,
matthiasmauch@114 265 const char *typespec, lo_method_handler h,
matthiasmauch@114 266 void *user_data);
matthiasmauch@114 267 /**
matthiasmauch@114 268 * \brief Delete an OSC method from the specifed server thread.
matthiasmauch@114 269 *
matthiasmauch@114 270 * \param st The server thread the method is to be removed from.
matthiasmauch@114 271 * \param path The OSC path of the method to delete. If NULL is passed the
matthiasmauch@114 272 * method will match the generic handler.
matthiasmauch@114 273 * \param typespec The typespec the method accepts.
matthiasmauch@114 274 */
matthiasmauch@114 275 void lo_server_thread_del_method(lo_server_thread st, const char *path,
matthiasmauch@114 276 const char *typespec);
matthiasmauch@114 277
matthiasmauch@114 278 /**
matthiasmauch@114 279 * \brief Start the server thread
matthiasmauch@114 280 *
matthiasmauch@114 281 * \param st the server thread to start.
matthiasmauch@114 282 * \return Less than 0 on failure, 0 on success.
matthiasmauch@114 283 */
matthiasmauch@114 284 int lo_server_thread_start(lo_server_thread st);
matthiasmauch@114 285
matthiasmauch@114 286 /**
matthiasmauch@114 287 * \brief Stop the server thread
matthiasmauch@114 288 *
matthiasmauch@114 289 * \param st the server thread to start.
matthiasmauch@114 290 * \return Less than 0 on failure, 0 on success.
matthiasmauch@114 291 */
matthiasmauch@114 292 int lo_server_thread_stop(lo_server_thread st);
matthiasmauch@114 293
matthiasmauch@114 294 /**
matthiasmauch@114 295 * \brief Return the port number that the server thread has bound to.
matthiasmauch@114 296 */
matthiasmauch@114 297 int lo_server_thread_get_port(lo_server_thread st);
matthiasmauch@114 298
matthiasmauch@114 299 /**
matthiasmauch@114 300 * \brief Return a URL describing the address of the server thread.
matthiasmauch@114 301 *
matthiasmauch@114 302 * Return value must be free()'d to reclaim memory.
matthiasmauch@114 303 */
matthiasmauch@114 304 char *lo_server_thread_get_url(lo_server_thread st);
matthiasmauch@114 305
matthiasmauch@114 306 /**
matthiasmauch@114 307 * \brief Return the lo_server for a lo_server_thread
matthiasmauch@114 308 *
matthiasmauch@114 309 * This function is useful for passing a thread's lo_server
matthiasmauch@114 310 * to lo_send_from().
matthiasmauch@114 311 */
matthiasmauch@114 312 lo_server lo_server_thread_get_server(lo_server_thread st);
matthiasmauch@114 313
matthiasmauch@114 314 /** \brief Return true if there are scheduled events (eg. from bundles) waiting
matthiasmauch@114 315 * to be dispatched by the thread */
matthiasmauch@114 316 int lo_server_thread_events_pending(lo_server_thread st);
matthiasmauch@114 317
matthiasmauch@114 318 /**
matthiasmauch@114 319 * \brief Create a new OSC blob type.
matthiasmauch@114 320 *
matthiasmauch@114 321 * \param size The amount of space to allocate in the blob structure.
matthiasmauch@114 322 * \param data The data that will be used to initialise the blob, should be
matthiasmauch@114 323 * size bytes long.
matthiasmauch@114 324 */
matthiasmauch@114 325 lo_blob lo_blob_new(int32_t size, const void *data);
matthiasmauch@114 326
matthiasmauch@114 327 /**
matthiasmauch@114 328 * \brief Free the memory taken by a blob
matthiasmauch@114 329 */
matthiasmauch@114 330 void lo_blob_free(lo_blob b);
matthiasmauch@114 331
matthiasmauch@114 332 /**
matthiasmauch@114 333 * \brief Return the amount of valid data in a lo_blob object.
matthiasmauch@114 334 *
matthiasmauch@114 335 * If you want to know the storage size, use lo_arg_size().
matthiasmauch@114 336 */
matthiasmauch@114 337 uint32_t lo_blob_datasize(lo_blob b);
matthiasmauch@114 338
matthiasmauch@114 339 /**
matthiasmauch@114 340 * \brief Return a pointer to the start of the blob data to allow contents to
matthiasmauch@114 341 * be changed.
matthiasmauch@114 342 */
matthiasmauch@114 343 void *lo_blob_dataptr(lo_blob b);
matthiasmauch@114 344
matthiasmauch@114 345 /** @} */
matthiasmauch@114 346
matthiasmauch@114 347 #include "lo/lo_macros.h"
matthiasmauch@114 348
matthiasmauch@114 349 #ifdef __cplusplus
matthiasmauch@114 350 }
matthiasmauch@114 351 #endif
matthiasmauch@114 352
matthiasmauch@114 353 #endif