2010-06-04 14:48:49 +02:00
|
|
|
/*
|
2014-01-02 12:00:57 +01:00
|
|
|
Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
|
2010-06-04 14:48:49 +02:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
2010-10-30 15:08:28 +02:00
|
|
|
the terms of the GNU Lesser General Public License as published by
|
2010-06-04 14:48:49 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2010-10-30 15:08:28 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-06-04 14:48:49 +02:00
|
|
|
|
2010-10-30 15:08:28 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2010-06-04 14:48:49 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-06-17 16:51:53 +02:00
|
|
|
#ifndef __ZMQ_UTILS_H_INCLUDED__
|
|
|
|
#define __ZMQ_UTILS_H_INCLUDED__
|
|
|
|
|
2013-09-15 20:07:33 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-09-24 12:29:21 +02:00
|
|
|
/* Define integer types needed for event interface */
|
|
|
|
#if defined ZMQ_HAVE_SOLARIS || defined ZMQ_HAVE_OPENVMS
|
|
|
|
# include <inttypes.h>
|
|
|
|
#elif defined _MSC_VER && _MSC_VER < 1600
|
|
|
|
# ifndef int32_t
|
|
|
|
typedef __int32 int32_t;
|
|
|
|
# endif
|
|
|
|
# ifndef uint16_t
|
|
|
|
typedef unsigned __int16 uint16_t;
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
2010-06-17 17:09:51 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-12-01 10:33:07 +01:00
|
|
|
/* Handle DSO symbol visibility */
|
2010-06-17 16:51:53 +02:00
|
|
|
#if defined _WIN32
|
2013-02-24 15:44:14 +01:00
|
|
|
# if defined ZMQ_STATIC
|
|
|
|
# define ZMQ_EXPORT
|
|
|
|
# elif defined DLL_EXPORT
|
2010-06-17 16:51:53 +02:00
|
|
|
# define ZMQ_EXPORT __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define ZMQ_EXPORT __declspec(dllimport)
|
|
|
|
# endif
|
|
|
|
#else
|
2010-12-01 10:33:07 +01:00
|
|
|
# if defined __SUNPRO_C || defined __SUNPRO_CC
|
|
|
|
# define ZMQ_EXPORT __global
|
|
|
|
# elif (defined __GNUC__ && __GNUC__ >= 4) || defined __INTEL_COMPILER
|
|
|
|
# define ZMQ_EXPORT __attribute__ ((visibility("default")))
|
|
|
|
# else
|
|
|
|
# define ZMQ_EXPORT
|
2010-11-25 17:12:31 +01:00
|
|
|
# endif
|
2010-06-17 16:51:53 +02:00
|
|
|
#endif
|
2010-06-04 14:48:49 +02:00
|
|
|
|
2013-09-30 15:14:02 +02:00
|
|
|
/* These functions are documented by man pages */
|
|
|
|
|
|
|
|
/* Encode data with Z85 encoding. Returns encoded data */
|
|
|
|
ZMQ_EXPORT char *zmq_z85_encode (char *dest, uint8_t *data, size_t size);
|
|
|
|
|
|
|
|
/* Decode data with Z85 encoding. Returns decoded data */
|
|
|
|
ZMQ_EXPORT uint8_t *zmq_z85_decode (uint8_t *dest, char *string);
|
|
|
|
|
|
|
|
/* Generate z85-encoded public and private keypair with libsodium. */
|
|
|
|
/* Returns 0 on success. */
|
|
|
|
ZMQ_EXPORT int zmq_curve_keypair (char *z85_public_key, char *z85_secret_key);
|
|
|
|
|
2013-08-17 15:23:22 +02:00
|
|
|
typedef void (zmq_thread_fn) (void*);
|
|
|
|
|
2013-09-30 15:14:02 +02:00
|
|
|
/* These functions are not documented by man pages */
|
|
|
|
|
2010-06-04 14:48:49 +02:00
|
|
|
/* Helper functions are used by perf tests so that they don't have to care */
|
|
|
|
/* about minutiae of time-related functions on different OS platforms. */
|
|
|
|
|
|
|
|
/* Starts the stopwatch. Returns the handle to the watch. */
|
2011-01-06 08:42:57 +01:00
|
|
|
ZMQ_EXPORT void *zmq_stopwatch_start (void);
|
2010-06-04 14:48:49 +02:00
|
|
|
|
|
|
|
/* Stops the stopwatch. Returns the number of microseconds elapsed since */
|
|
|
|
/* the stopwatch was started. */
|
2010-06-17 16:51:53 +02:00
|
|
|
ZMQ_EXPORT unsigned long zmq_stopwatch_stop (void *watch_);
|
2010-06-04 14:48:49 +02:00
|
|
|
|
|
|
|
/* Sleeps for specified number of seconds. */
|
2010-06-17 16:51:53 +02:00
|
|
|
ZMQ_EXPORT void zmq_sleep (int seconds_);
|
|
|
|
|
2013-08-17 14:43:45 +02:00
|
|
|
/* Start a thread. Returns a handle to the thread. */
|
2013-09-02 17:22:24 +02:00
|
|
|
ZMQ_EXPORT void *zmq_threadstart (zmq_thread_fn* func, void* arg);
|
2013-08-17 14:43:45 +02:00
|
|
|
|
|
|
|
/* Wait for thread to complete then free up resources. */
|
2013-09-02 17:22:24 +02:00
|
|
|
ZMQ_EXPORT void zmq_threadclose (void* thread);
|
2013-08-17 14:43:45 +02:00
|
|
|
|
2010-06-17 16:51:53 +02:00
|
|
|
#undef ZMQ_EXPORT
|
2010-06-04 14:48:49 +02:00
|
|
|
|
2010-06-17 17:09:51 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-04 14:48:49 +02:00
|
|
|
#endif
|