mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
Initial ZMQ bindings.
This commit is contained in:
parent
82b7f75b80
commit
fc9419677f
@ -76,6 +76,7 @@ add_library(SqModule MODULE SqBase.hpp Main.cpp
|
|||||||
Library/Utils.cpp Library/Utils.hpp
|
Library/Utils.cpp Library/Utils.hpp
|
||||||
Library/Utils/Map.cpp Library/Utils/Map.hpp
|
Library/Utils/Map.cpp Library/Utils/Map.hpp
|
||||||
Library/Utils/Vector.cpp Library/Utils/Vector.hpp
|
Library/Utils/Vector.cpp Library/Utils/Vector.hpp
|
||||||
|
Library/ZMQ.cpp Library/ZMQ.hpp
|
||||||
# Misc
|
# Misc
|
||||||
Misc/Broadcast.cpp
|
Misc/Broadcast.cpp
|
||||||
Misc/Constants.cpp
|
Misc/Constants.cpp
|
||||||
@ -89,9 +90,11 @@ add_library(SqModule MODULE SqBase.hpp Main.cpp
|
|||||||
# POCO
|
# POCO
|
||||||
PocoLib/Crypto.cpp PocoLib/Crypto.hpp
|
PocoLib/Crypto.cpp PocoLib/Crypto.hpp
|
||||||
PocoLib/Data.cpp PocoLib/Data.hpp
|
PocoLib/Data.cpp PocoLib/Data.hpp
|
||||||
PocoLib/Foundation.cpp PocoLib/Foundation.hpp
|
|
||||||
PocoLib/JSON.cpp PocoLib/JSON.hpp
|
PocoLib/JSON.cpp PocoLib/JSON.hpp
|
||||||
PocoLib/Net.cpp PocoLib/Net.hpp
|
PocoLib/Net.cpp PocoLib/Net.hpp
|
||||||
|
PocoLib/RegEx.cpp PocoLib/RegEx.hpp
|
||||||
|
PocoLib/Register.cpp PocoLib/Register.hpp
|
||||||
|
PocoLib/Time.cpp PocoLib/Time.hpp
|
||||||
PocoLib/Util.cpp PocoLib/Util.hpp
|
PocoLib/Util.cpp PocoLib/Util.hpp
|
||||||
PocoLib/XML.cpp PocoLib/XML.hpp
|
PocoLib/XML.cpp PocoLib/XML.hpp
|
||||||
#
|
#
|
||||||
@ -105,7 +108,7 @@ if(WIN32 OR MINGW)
|
|||||||
target_link_libraries(SqModule wsock32 ws2_32 shlwapi)
|
target_link_libraries(SqModule wsock32 ws2_32 shlwapi)
|
||||||
endif()
|
endif()
|
||||||
# Link to base libraries
|
# Link to base libraries
|
||||||
target_link_libraries(SqModule Squirrel FmtLib SimpleINI TinyDir ConcurrentQueue cpr maxminddb)
|
target_link_libraries(SqModule Squirrel FmtLib SimpleINI TinyDir ConcurrentQueue cpr maxminddb libzmq-static)
|
||||||
# Link to POCO libraries
|
# Link to POCO libraries
|
||||||
target_link_libraries(SqModule Poco::Foundation Poco::Encodings Poco::Crypto Poco::Util Poco::Data Poco::Net Poco::JSON Poco::XML Poco::Zip Poco::JWT Poco::Redis Poco::MongoDB)
|
target_link_libraries(SqModule Poco::Foundation Poco::Encodings Poco::Crypto Poco::Util Poco::Data Poco::Net Poco::JSON Poco::XML Poco::Zip Poco::JWT Poco::Redis Poco::MongoDB)
|
||||||
# Does POCO have SQLite support?
|
# Does POCO have SQLite support?
|
||||||
|
@ -37,7 +37,8 @@ namespace SqMod {
|
|||||||
extern bool RegisterAPI(HSQUIRRELVM vm);
|
extern bool RegisterAPI(HSQUIRRELVM vm);
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
extern void PocoStartup();
|
extern void ZmqProcess();
|
||||||
|
extern void ZmqTerminate();
|
||||||
extern void InitializeTasks();
|
extern void InitializeTasks();
|
||||||
extern void InitializeRoutines();
|
extern void InitializeRoutines();
|
||||||
extern void TerminateAreas();
|
extern void TerminateAreas();
|
||||||
@ -46,7 +47,6 @@ extern void TerminateTasks();
|
|||||||
extern void TerminateRoutines();
|
extern void TerminateRoutines();
|
||||||
extern void TerminateCommands();
|
extern void TerminateCommands();
|
||||||
extern void TerminateSignals();
|
extern void TerminateSignals();
|
||||||
//extern void TerminateWorkers();
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
extern Buffer GetRealFilePath(const SQChar * path);
|
extern Buffer GetRealFilePath(const SQChar * path);
|
||||||
@ -501,8 +501,8 @@ void Core::Terminate(bool shutdown)
|
|||||||
TerminateAreas();
|
TerminateAreas();
|
||||||
// Release privilege managers
|
// Release privilege managers
|
||||||
//TerminatePrivileges();
|
//TerminatePrivileges();
|
||||||
// Terminate workers
|
// Release ZMQ sockets
|
||||||
//TerminateWorkers();
|
ZmqTerminate();
|
||||||
// In case there's a payload for reload
|
// In case there's a payload for reload
|
||||||
m_ReloadPayload.Release();
|
m_ReloadPayload.Release();
|
||||||
// Release null objects in case any reference to valid objects is stored in them
|
// Release null objects in case any reference to valid objects is stored in them
|
||||||
|
287
module/Library/ZMQ.cpp
Normal file
287
module/Library/ZMQ.cpp
Normal file
@ -0,0 +1,287 @@
|
|||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include "Library/ZMQ.hpp"
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include <sqratConst.h>
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
namespace SqMod {
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
SQMOD_DECL_TYPENAME(SqZContext, _SC("SqZmqContext"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqZMessage, _SC("SqZmqMessage"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqZSocket, _SC("SqZmqSocket"))
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
void ZSkt::Flush(HSQUIRRELVM vm)
|
||||||
|
{
|
||||||
|
// Need someone to receive the message
|
||||||
|
ZMsg msg;
|
||||||
|
// Try to get a message from the queue
|
||||||
|
while (mOutputQueue.try_dequeue(msg))
|
||||||
|
{
|
||||||
|
// Is there a callback to receive the message?
|
||||||
|
if (!mOnData.IsNull())
|
||||||
|
{
|
||||||
|
// Transform the message into a script object
|
||||||
|
LightObj o(SqTypeIdentity< ZMessage >{}, vm, std::make_shared< ZMsg >(std::move(msg)));
|
||||||
|
// Forward it to the callback
|
||||||
|
mOnData(o);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
LightObj ZContext::Socket(int type) const
|
||||||
|
{
|
||||||
|
return LightObj(SqTypeIdentity< ZSocket >{}, SqVM(), *this, type);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
static void ZmqProcess()
|
||||||
|
{
|
||||||
|
// Go over all sockets and try to update them
|
||||||
|
for (ZSkt * inst = ZSkt::sHead; inst && inst->mNext != ZSkt::sHead; inst = inst->mNext)
|
||||||
|
{
|
||||||
|
// Flush pending messages
|
||||||
|
inst->Flush(SqVM());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
void ZmqTerminate()
|
||||||
|
{
|
||||||
|
// Go over all sockets and try to close them
|
||||||
|
for (ZSkt * inst = ZSkt::sHead; inst && inst->mNext != ZSkt::sHead; inst = inst->mNext)
|
||||||
|
{
|
||||||
|
// Close the socket
|
||||||
|
inst->Close();
|
||||||
|
// Flush pending messages
|
||||||
|
inst->Flush(SqVM());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ================================================================================================
|
||||||
|
void Register_ZMQ(HSQUIRRELVM vm)
|
||||||
|
{
|
||||||
|
Table ns(vm);
|
||||||
|
|
||||||
|
ns.Func(_SC("Process"), &ZmqProcess);
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------------------------
|
||||||
|
ns.Bind(_SC("Context"),
|
||||||
|
Class< ZContext, NoCopy< ZContext > >(vm, SqZContext::Str)
|
||||||
|
// Constructors
|
||||||
|
.Ctor()
|
||||||
|
// Meta-methods
|
||||||
|
.SquirrelFunc(_SC("_typename"), &SqZContext::Fn)
|
||||||
|
// Properties
|
||||||
|
.Prop(_SC("IsNull"), &ZContext::IsNull)
|
||||||
|
// Member Methods
|
||||||
|
.Func(_SC("Get"), &ZContext::Get)
|
||||||
|
.Func(_SC("Set"), &ZContext::Set)
|
||||||
|
.Func(_SC("Shutdown"), &ZContext::Shutdown)
|
||||||
|
.Func(_SC("Socket"), &ZContext::Socket)
|
||||||
|
);
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------------------------
|
||||||
|
ns.Bind(_SC("Message"),
|
||||||
|
Class< ZMessage, NoCopy< ZMessage > >(vm, SqZMessage::Str)
|
||||||
|
// Constructors
|
||||||
|
.Ctor()
|
||||||
|
.Ctor< SQInteger >()
|
||||||
|
.Ctor< SQInteger, StackStrF & >()
|
||||||
|
// Meta-methods
|
||||||
|
.SquirrelFunc(_SC("_typename"), &SqZMessage::Fn)
|
||||||
|
// Properties
|
||||||
|
.Prop(_SC("IsNull"), &ZMessage::IsNull)
|
||||||
|
.Prop(_SC("More"), &ZMessage::More)
|
||||||
|
.Prop(_SC("Size"), &ZMessage::GetSize)
|
||||||
|
// Member Methods
|
||||||
|
.Func(_SC("Get"), &ZMessage::Get)
|
||||||
|
.Func(_SC("Set"), &ZMessage::Set)
|
||||||
|
.Func(_SC("Meta"), &ZMessage::Meta)
|
||||||
|
.Func(_SC("ToString"), &ZMessage::ToString)
|
||||||
|
);
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------------------------
|
||||||
|
ns.Bind(_SC("Socket"),
|
||||||
|
Class< ZSocket, NoCopy< ZSocket > >(vm, SqZSocket::Str)
|
||||||
|
// Constructors
|
||||||
|
.Ctor()
|
||||||
|
// Meta-methods
|
||||||
|
.SquirrelFunc(_SC("_typename"), &SqZSocket::Fn)
|
||||||
|
// Properties
|
||||||
|
.Prop(_SC("IsNull"), &ZSocket::IsNull)
|
||||||
|
// Member Methods
|
||||||
|
.Func(_SC("Bind"), &ZSocket::Bind)
|
||||||
|
.Func(_SC("Connect"), &ZSocket::Connect)
|
||||||
|
.Func(_SC("Disconnect"), &ZSocket::Disconnect)
|
||||||
|
.Func(_SC("Run"), &ZSocket::Run)
|
||||||
|
.Func(_SC("Close"), &ZSocket::Close)
|
||||||
|
.CbFunc(_SC("OnData"), &ZSocket::OnData)
|
||||||
|
);
|
||||||
|
|
||||||
|
RootTable(vm).Bind(_SC("SqZMQ"), ns);
|
||||||
|
|
||||||
|
ConstTable(vm).Enum(_SC("SqZmq"), Enumeration(vm)
|
||||||
|
/* Context options */
|
||||||
|
.Const(_SC("IO_THREADS"), int32_t(ZMQ_IO_THREADS))
|
||||||
|
.Const(_SC("MAX_SOCKETS"), int32_t(ZMQ_MAX_SOCKETS))
|
||||||
|
.Const(_SC("SOCKET_LIMIT"), int32_t(ZMQ_SOCKET_LIMIT))
|
||||||
|
.Const(_SC("THREAD_PRIORITY"), int32_t(ZMQ_THREAD_PRIORITY))
|
||||||
|
.Const(_SC("THREAD_SCHED_POLICY"), int32_t(ZMQ_THREAD_SCHED_POLICY))
|
||||||
|
.Const(_SC("MAX_MSGSZ"), int32_t(ZMQ_MAX_MSGSZ))
|
||||||
|
.Const(_SC("MSG_T_SIZE"), int32_t(ZMQ_MSG_T_SIZE))
|
||||||
|
.Const(_SC("THREAD_AFFINITY_CPU_ADD"), int32_t(ZMQ_THREAD_AFFINITY_CPU_ADD))
|
||||||
|
.Const(_SC("THREAD_AFFINITY_CPU_REMOVE"), int32_t(ZMQ_THREAD_AFFINITY_CPU_REMOVE))
|
||||||
|
.Const(_SC("THREAD_NAME_PREFIX"), int32_t(ZMQ_THREAD_NAME_PREFIX))
|
||||||
|
/* Socket types. */
|
||||||
|
.Const(_SC("PAIR"), int32_t(ZMQ_PAIR))
|
||||||
|
.Const(_SC("PUB"), int32_t(ZMQ_PUB))
|
||||||
|
.Const(_SC("SUB"), int32_t(ZMQ_SUB))
|
||||||
|
.Const(_SC("REQ"), int32_t(ZMQ_REQ))
|
||||||
|
.Const(_SC("REP"), int32_t(ZMQ_REP))
|
||||||
|
.Const(_SC("DEALER"), int32_t(ZMQ_DEALER))
|
||||||
|
.Const(_SC("ROUTER"), int32_t(ZMQ_ROUTER))
|
||||||
|
.Const(_SC("PULL"), int32_t(ZMQ_PULL))
|
||||||
|
.Const(_SC("PUSH"), int32_t(ZMQ_PUSH))
|
||||||
|
.Const(_SC("XPUB"), int32_t(ZMQ_XPUB))
|
||||||
|
.Const(_SC("XSUB"), int32_t(ZMQ_XSUB))
|
||||||
|
.Const(_SC("STREAM"), int32_t(ZMQ_STREAM))
|
||||||
|
/* Socket options */
|
||||||
|
.Const(_SC("AFFINITY"), int32_t(ZMQ_AFFINITY))
|
||||||
|
.Const(_SC("ROUTING_ID"), int32_t(ZMQ_ROUTING_ID))
|
||||||
|
.Const(_SC("SUBSCRIBE"), int32_t(ZMQ_SUBSCRIBE))
|
||||||
|
.Const(_SC("UNSUBSCRIBE"), int32_t(ZMQ_UNSUBSCRIBE))
|
||||||
|
.Const(_SC("RATE"), int32_t(ZMQ_RATE))
|
||||||
|
.Const(_SC("RECOVERY_IVL"), int32_t(ZMQ_RECOVERY_IVL))
|
||||||
|
.Const(_SC("SNDBUF"), int32_t(ZMQ_SNDBUF))
|
||||||
|
.Const(_SC("RCVBUF"), int32_t(ZMQ_RCVBUF))
|
||||||
|
.Const(_SC("RCVMORE"), int32_t(ZMQ_RCVMORE))
|
||||||
|
.Const(_SC("FD"), int32_t(ZMQ_FD))
|
||||||
|
.Const(_SC("EVENTS"), int32_t(ZMQ_EVENTS))
|
||||||
|
.Const(_SC("TYPE"), int32_t(ZMQ_TYPE))
|
||||||
|
.Const(_SC("LINGER"), int32_t(ZMQ_LINGER))
|
||||||
|
.Const(_SC("RECONNECT_IVL"), int32_t(ZMQ_RECONNECT_IVL))
|
||||||
|
.Const(_SC("BACKLOG"), int32_t(ZMQ_BACKLOG))
|
||||||
|
.Const(_SC("RECONNECT_IVL_MAX"), int32_t(ZMQ_RECONNECT_IVL_MAX))
|
||||||
|
.Const(_SC("MAXMSGSIZE"), int32_t(ZMQ_MAXMSGSIZE))
|
||||||
|
.Const(_SC("SNDHWM"), int32_t(ZMQ_SNDHWM))
|
||||||
|
.Const(_SC("RCVHWM"), int32_t(ZMQ_RCVHWM))
|
||||||
|
.Const(_SC("MULTICAST_HOPS"), int32_t(ZMQ_MULTICAST_HOPS))
|
||||||
|
.Const(_SC("RCVTIMEO"), int32_t(ZMQ_RCVTIMEO))
|
||||||
|
.Const(_SC("SNDTIMEO"), int32_t(ZMQ_SNDTIMEO))
|
||||||
|
.Const(_SC("LAST_ENDPOINT"), int32_t(ZMQ_LAST_ENDPOINT))
|
||||||
|
.Const(_SC("ROUTER_MANDATORY"), int32_t(ZMQ_ROUTER_MANDATORY))
|
||||||
|
.Const(_SC("TCP_KEEPALIVE"), int32_t(ZMQ_TCP_KEEPALIVE))
|
||||||
|
.Const(_SC("TCP_KEEPALIVE_CNT"), int32_t(ZMQ_TCP_KEEPALIVE_CNT))
|
||||||
|
.Const(_SC("TCP_KEEPALIVE_IDLE"), int32_t(ZMQ_TCP_KEEPALIVE_IDLE))
|
||||||
|
.Const(_SC("TCP_KEEPALIVE_INTVL"), int32_t(ZMQ_TCP_KEEPALIVE_INTVL))
|
||||||
|
.Const(_SC("IMMEDIATE"), int32_t(ZMQ_IMMEDIATE))
|
||||||
|
.Const(_SC("XPUB_VERBOSE"), int32_t(ZMQ_XPUB_VERBOSE))
|
||||||
|
.Const(_SC("ROUTER_RAW"), int32_t(ZMQ_ROUTER_RAW))
|
||||||
|
.Const(_SC("IPV6"), int32_t(ZMQ_IPV6))
|
||||||
|
.Const(_SC("MECHANISM"), int32_t(ZMQ_MECHANISM))
|
||||||
|
.Const(_SC("PLAIN_SERVER"), int32_t(ZMQ_PLAIN_SERVER))
|
||||||
|
.Const(_SC("PLAIN_USERNAME"), int32_t(ZMQ_PLAIN_USERNAME))
|
||||||
|
.Const(_SC("PLAIN_PASSWORD"), int32_t(ZMQ_PLAIN_PASSWORD))
|
||||||
|
.Const(_SC("CURVE_SERVER"), int32_t(ZMQ_CURVE_SERVER))
|
||||||
|
.Const(_SC("CURVE_PUBLICKEY"), int32_t(ZMQ_CURVE_PUBLICKEY))
|
||||||
|
.Const(_SC("CURVE_SECRETKEY"), int32_t(ZMQ_CURVE_SECRETKEY))
|
||||||
|
.Const(_SC("CURVE_SERVERKEY"), int32_t(ZMQ_CURVE_SERVERKEY))
|
||||||
|
.Const(_SC("PROBE_ROUTER"), int32_t(ZMQ_PROBE_ROUTER))
|
||||||
|
.Const(_SC("REQ_CORRELATE"), int32_t(ZMQ_REQ_CORRELATE))
|
||||||
|
.Const(_SC("REQ_RELAXED"), int32_t(ZMQ_REQ_RELAXED))
|
||||||
|
.Const(_SC("CONFLATE"), int32_t(ZMQ_CONFLATE))
|
||||||
|
.Const(_SC("ZAP_DOMAIN"), int32_t(ZMQ_ZAP_DOMAIN))
|
||||||
|
.Const(_SC("ROUTER_HANDOVER"), int32_t(ZMQ_ROUTER_HANDOVER))
|
||||||
|
.Const(_SC("TOS"), int32_t(ZMQ_TOS))
|
||||||
|
.Const(_SC("CONNECT_ROUTING_ID"), int32_t(ZMQ_CONNECT_ROUTING_ID))
|
||||||
|
.Const(_SC("GSSAPI_SERVER"), int32_t(ZMQ_GSSAPI_SERVER))
|
||||||
|
.Const(_SC("GSSAPI_PRINCIPAL"), int32_t(ZMQ_GSSAPI_PRINCIPAL))
|
||||||
|
.Const(_SC("GSSAPI_SERVICE_PRINCIPAL"), int32_t(ZMQ_GSSAPI_SERVICE_PRINCIPAL))
|
||||||
|
.Const(_SC("GSSAPI_PLAINTEXT"), int32_t(ZMQ_GSSAPI_PLAINTEXT))
|
||||||
|
.Const(_SC("HANDSHAKE_IVL"), int32_t(ZMQ_HANDSHAKE_IVL))
|
||||||
|
.Const(_SC("SOCKS_PROXY"), int32_t(ZMQ_SOCKS_PROXY))
|
||||||
|
.Const(_SC("XPUB_NODROP"), int32_t(ZMQ_XPUB_NODROP))
|
||||||
|
.Const(_SC("BLOCKY"), int32_t(ZMQ_BLOCKY))
|
||||||
|
.Const(_SC("XPUB_MANUAL"), int32_t(ZMQ_XPUB_MANUAL))
|
||||||
|
.Const(_SC("XPUB_WELCOME_MSG"), int32_t(ZMQ_XPUB_WELCOME_MSG))
|
||||||
|
.Const(_SC("STREAM_NOTIFY"), int32_t(ZMQ_STREAM_NOTIFY))
|
||||||
|
.Const(_SC("INVERT_MATCHING"), int32_t(ZMQ_INVERT_MATCHING))
|
||||||
|
.Const(_SC("HEARTBEAT_IVL"), int32_t(ZMQ_HEARTBEAT_IVL))
|
||||||
|
.Const(_SC("HEARTBEAT_TTL"), int32_t(ZMQ_HEARTBEAT_TTL))
|
||||||
|
.Const(_SC("HEARTBEAT_TIMEOUT"), int32_t(ZMQ_HEARTBEAT_TIMEOUT))
|
||||||
|
.Const(_SC("XPUB_VERBOSER"), int32_t(ZMQ_XPUB_VERBOSER))
|
||||||
|
.Const(_SC("CONNECT_TIMEOUT"), int32_t(ZMQ_CONNECT_TIMEOUT))
|
||||||
|
.Const(_SC("TCP_MAXRT"), int32_t(ZMQ_TCP_MAXRT))
|
||||||
|
.Const(_SC("THREAD_SAFE"), int32_t(ZMQ_THREAD_SAFE))
|
||||||
|
.Const(_SC("MULTICAST_MAXTPDU"), int32_t(ZMQ_MULTICAST_MAXTPDU))
|
||||||
|
.Const(_SC("VMCI_BUFFER_SIZE"), int32_t(ZMQ_VMCI_BUFFER_SIZE))
|
||||||
|
.Const(_SC("VMCI_BUFFER_MIN_SIZE"), int32_t(ZMQ_VMCI_BUFFER_MIN_SIZE))
|
||||||
|
.Const(_SC("VMCI_BUFFER_MAX_SIZE"), int32_t(ZMQ_VMCI_BUFFER_MAX_SIZE))
|
||||||
|
.Const(_SC("VMCI_CONNECT_TIMEOUT"), int32_t(ZMQ_VMCI_CONNECT_TIMEOUT))
|
||||||
|
.Const(_SC("USE_FD"), int32_t(ZMQ_USE_FD))
|
||||||
|
.Const(_SC("GSSAPI_PRINCIPAL_NAMETYPE"), int32_t(ZMQ_GSSAPI_PRINCIPAL_NAMETYPE))
|
||||||
|
.Const(_SC("GSSAPI_SERVICE_PRINCIPAL_NAMETYPE"), int32_t(ZMQ_GSSAPI_SERVICE_PRINCIPAL_NAMETYPE))
|
||||||
|
.Const(_SC("BINDTODEVICE"), int32_t(ZMQ_BINDTODEVICE))
|
||||||
|
/* Message options */
|
||||||
|
.Const(_SC("MORE"), int32_t(ZMQ_MORE))
|
||||||
|
.Const(_SC("SHARED"), int32_t(ZMQ_SHARED))
|
||||||
|
/* Send/recv options. */
|
||||||
|
.Const(_SC("DONTWAIT"), int32_t(ZMQ_DONTWAIT))
|
||||||
|
.Const(_SC("SNDMORE"), int32_t(ZMQ_SNDMORE))
|
||||||
|
.Const(_SC("NULL"), int32_t(ZMQ_NULL))
|
||||||
|
.Const(_SC("PLAIN"), int32_t(ZMQ_PLAIN))
|
||||||
|
/* Security mechanisms */
|
||||||
|
//.Const(_SC("CURVE"), int32_t(ZMQ_CURVE))
|
||||||
|
//.Const(_SC("GSSAPI"), int32_t(ZMQ_GSSAPI))
|
||||||
|
/* RADIO-DISH protocol */
|
||||||
|
//.Const(_SC("GROUP_MAX_LENGTH"), int32_t(ZMQ_GROUP_MAX_LENGTH))
|
||||||
|
/* GSSAPI principal name types */
|
||||||
|
//.Const(_SC("GSSAPI_NT_HOSTBASED"), int32_t(ZMQ_GSSAPI_NT_HOSTBASED))
|
||||||
|
//.Const(_SC("GSSAPI_NT_USER_NAME"), int32_t(ZMQ_GSSAPI_NT_USER_NAME))
|
||||||
|
//.Const(_SC("GSSAPI_NT_KRB5_PRINCIPAL"), int32_t(ZMQ_GSSAPI_NT_KRB5_PRINCIPAL))
|
||||||
|
/* Socket transport events (TCP, IPC and TIPC only) */
|
||||||
|
//.Const(_SC("EVENT_CONNECTED"), int32_t(ZMQ_EVENT_CONNECTED))
|
||||||
|
//.Const(_SC("EVENT_CONNECT_DELAYED"), int32_t(ZMQ_EVENT_CONNECT_DELAYED))
|
||||||
|
//.Const(_SC("EVENT_CONNECT_RETRIED"), int32_t(ZMQ_EVENT_CONNECT_RETRIED))
|
||||||
|
//.Const(_SC("EVENT_LISTENING"), int32_t(ZMQ_EVENT_LISTENING))
|
||||||
|
//.Const(_SC("EVENT_BIND_FAILED"), int32_t(ZMQ_EVENT_BIND_FAILED))
|
||||||
|
//.Const(_SC("EVENT_ACCEPTED"), int32_t(ZMQ_EVENT_ACCEPTED))
|
||||||
|
//.Const(_SC("EVENT_ACCEPT_FAILED"), int32_t(ZMQ_EVENT_ACCEPT_FAILED))
|
||||||
|
//.Const(_SC("EVENT_CLOSED"), int32_t(ZMQ_EVENT_CLOSED))
|
||||||
|
//.Const(_SC("EVENT_CLOSE_FAILED"), int32_t(ZMQ_EVENT_CLOSE_FAILED))
|
||||||
|
//.Const(_SC("EVENT_DISCONNECTED"), int32_t(ZMQ_EVENT_DISCONNECTED))
|
||||||
|
//.Const(_SC("EVENT_MONITOR_STOPPED"), int32_t(ZMQ_EVENT_MONITOR_STOPPED))
|
||||||
|
//.Const(_SC("EVENT_ALL"), int32_t(ZMQ_EVENT_ALL))
|
||||||
|
//.Const(_SC("EVENT_HANDSHAKE_FAILED_NO_DETAIL"), int32_t(ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL))
|
||||||
|
//.Const(_SC("EVENT_HANDSHAKE_SUCCEEDED"), int32_t(ZMQ_EVENT_HANDSHAKE_SUCCEEDED))
|
||||||
|
//.Const(_SC("EVENT_HANDSHAKE_FAILED_PROTOCOL"), int32_t(ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL))
|
||||||
|
//.Const(_SC("EVENT_HANDSHAKE_FAILED_AUTH"), int32_t(ZMQ_EVENT_HANDSHAKE_FAILED_AUTH))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_UNSPECIFIED"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_UNSPECIFIED))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_UNEXPECTED_COMMAND"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_UNEXPECTED_COMMAND))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_INVALID_SEQUENCE"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_INVALID_SEQUENCE))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_KEY_EXCHANGE"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_KEY_EXCHANGE))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_UNSPECIFIED"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_UNSPECIFIED))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_MESSAGE"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_MESSAGE))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_HELLO"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_HELLO))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_INITIATE"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_INITIATE))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_ERROR"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_ERROR))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_READY"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_READY))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_WELCOME"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_WELCOME))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_INVALID_METADATA"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_INVALID_METADATA))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZMTP_MECHANISM_MISMATCH"), int32_t(ZMQ_PROTOCOL_ERROR_ZMTP_MECHANISM_MISMATCH))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZAP_UNSPECIFIED"), int32_t(ZMQ_PROTOCOL_ERROR_ZAP_UNSPECIFIED))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZAP_MALFORMED_REPLY"), int32_t(ZMQ_PROTOCOL_ERROR_ZAP_MALFORMED_REPLY))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZAP_BAD_REQUEST_ID"), int32_t(ZMQ_PROTOCOL_ERROR_ZAP_BAD_REQUEST_ID))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZAP_BAD_VERSION"), int32_t(ZMQ_PROTOCOL_ERROR_ZAP_BAD_VERSION))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZAP_INVALID_STATUS_CODE"), int32_t(ZMQ_PROTOCOL_ERROR_ZAP_INVALID_STATUS_CODE))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_ZAP_INVALID_METADATA"), int32_t(ZMQ_PROTOCOL_ERROR_ZAP_INVALID_METADATA))
|
||||||
|
//.Const(_SC("PROTOCOL_ERROR_WS_UNSPECIFIED"), int32_t(ZMQ_PROTOCOL_ERROR_WS_UNSPECIFIED))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // Namespace:: SqMod
|
1078
module/Library/ZMQ.hpp
Normal file
1078
module/Library/ZMQ.hpp
Normal file
File diff suppressed because it is too large
Load Diff
@ -5,14 +5,6 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
#include <Poco/Base32Encoder.h>
|
|
||||||
#include <Poco/Base32Decoder.h>
|
|
||||||
#include <Poco/Base64Encoder.h>
|
|
||||||
#include <Poco/Base64Decoder.h>
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
#include <Poco/Checksum.h>
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
@ -240,7 +232,7 @@ static SQInteger SqGetADLER32(HSQUIRRELVM vm)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_Crypto(HSQUIRRELVM vm)
|
void Register_POCO_Crypto(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
Table ns(vm);
|
Table ns(vm);
|
||||||
|
|
||||||
|
@ -4,7 +4,12 @@
|
|||||||
#include "Core/Common.hpp"
|
#include "Core/Common.hpp"
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
#include "Poco/Crypto/DigestEngine.h"
|
#include <Poco/Checksum.h>
|
||||||
|
#include <Poco/Base32Encoder.h>
|
||||||
|
#include <Poco/Base32Decoder.h>
|
||||||
|
#include <Poco/Base64Encoder.h>
|
||||||
|
#include <Poco/Base64Decoder.h>
|
||||||
|
#include <Poco/Crypto/DigestEngine.h>
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
@ -390,10 +390,10 @@ static void Register_POCO_Data_Binding(HSQUIRRELVM vm, Table & ns, const SQChar
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_Data(HSQUIRRELVM vm)
|
void Register_POCO_Data(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
Table ns(vm);
|
Table ns(vm);
|
||||||
//Poco::Data::Keywords::into()
|
|
||||||
// --------------------------------------------------------------------------------------------
|
// --------------------------------------------------------------------------------------------
|
||||||
ns.Bind(_SC("Session"),
|
ns.Bind(_SC("Session"),
|
||||||
Class< SqDataSession >(vm, SqPcDataSession::Str)
|
Class< SqDataSession >(vm, SqPcDataSession::Str)
|
||||||
|
@ -8,7 +8,7 @@ namespace SqMod {
|
|||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_JSON(HSQUIRRELVM vm)
|
void Register_POCO_JSON(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
Table ns(vm);
|
Table ns(vm);
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ namespace SqMod {
|
|||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_Net(HSQUIRRELVM vm)
|
void Register_POCO_Net(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
Table ns(vm);
|
Table ns(vm);
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
#include "PocoLib/Foundation.hpp"
|
#include "PocoLib/RegEx.hpp"
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
@ -8,11 +8,11 @@ namespace SqMod {
|
|||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_Foundation(HSQUIRRELVM vm)
|
void Register_POCO_RegEx(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
Table ns(vm);
|
Table ns(vm);
|
||||||
|
|
||||||
RootTable(vm).Bind(_SC("SqPOCO"), ns);
|
RootTable(vm).Bind(_SC("SqRegEx"), ns);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // Namespace:: SqMod
|
} // Namespace:: SqMod
|
34
module/PocoLib/Register.cpp
Normal file
34
module/PocoLib/Register.cpp
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include "PocoLib/Register.hpp"
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
namespace SqMod {
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
extern Register_POCO_Crypto(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_Data(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_JSON(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_Net(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_RegEx(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_Time(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_Util(HSQUIRRELVM vm, Table & ns);
|
||||||
|
extern Register_POCO_XML(HSQUIRRELVM vm, Table & ns);
|
||||||
|
|
||||||
|
// ================================================================================================
|
||||||
|
void Register_POCO(HSQUIRRELVM vm)
|
||||||
|
{
|
||||||
|
Table ns(vm);
|
||||||
|
|
||||||
|
Register_POCO_Crypto(vm, ns);
|
||||||
|
Register_POCO_Data(vm, ns);
|
||||||
|
Register_POCO_JSON(vm, ns);
|
||||||
|
Register_POCO_Net(vm, ns);
|
||||||
|
Register_POCO_RegEx(vm, ns);
|
||||||
|
Register_POCO_Time(vm, ns);
|
||||||
|
Register_POCO_Util(vm, ns);
|
||||||
|
Register_POCO_XML(vm, ns);
|
||||||
|
|
||||||
|
RootTable(vm).Bind(_SC("Sq"), ns);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // Namespace:: SqMod
|
11
module/PocoLib/Register.hpp
Normal file
11
module/PocoLib/Register.hpp
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include "Core/Common.hpp"
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
namespace SqMod {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} // Namespace:: SqMod
|
60
module/PocoLib/Time.cpp
Normal file
60
module/PocoLib/Time.cpp
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include "PocoLib/Time.hpp"
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
namespace SqMod {
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
SQMOD_DECL_TYPENAME(SqClock, _SC("SqClock"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqDateTime, _SC("SqDateTime"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqDateTimeFormatter, _SC("SqDateTimeFormatter"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqDateTimeParser, _SC("SqDateTimeParser"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqLocalDateTime, _SC("SqLocalDateTime"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqStopwatch, _SC("SqStopwatch"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqTimespan, _SC("SqTimespan"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqTimestamp, _SC("SqTimestamp"))
|
||||||
|
SQMOD_DECL_TYPENAME(SqTimezone, _SC("SqTimezone"))
|
||||||
|
|
||||||
|
// ================================================================================================
|
||||||
|
void Register_POCO_Time(HSQUIRRELVM vm, Table & ns)
|
||||||
|
{
|
||||||
|
// --------------------------------------------------------------------------------------------
|
||||||
|
ns.Bind(_SC("Timespan"),
|
||||||
|
Class< Timespan >(vm, SqTimespan::Str)
|
||||||
|
// Constructors
|
||||||
|
.Ctor()
|
||||||
|
.Ctor< const Timespan & >()
|
||||||
|
.Ctor< long, long >()
|
||||||
|
.Ctor< int, int, int, int, int >()
|
||||||
|
// Meta-methods
|
||||||
|
.SquirrelFunc(_SC("_typename"), &SqTimespan::Fn)
|
||||||
|
// Properties
|
||||||
|
.Prop(_SC("Days"), &Timespan::days)
|
||||||
|
.Prop(_SC("Hours"), &Timespan::hours)
|
||||||
|
.Prop(_SC("TotalHours"), &Timespan::totalHours)
|
||||||
|
.Prop(_SC("Minutes"), &Timespan::minutes)
|
||||||
|
.Prop(_SC("TotalMinutes"), &Timespan::totalMinutes)
|
||||||
|
.Prop(_SC("Seconds"), &Timespan::seconds)
|
||||||
|
.Prop(_SC("TotalSeconds"), &Timespan::totalSeconds)
|
||||||
|
.Prop(_SC("Milliseconds"), &Timespan::milliseconds)
|
||||||
|
.Prop(_SC("TotalMilliseconds"), &Timespan::totalMilliseconds)
|
||||||
|
.Prop(_SC("Microseconds"), &Timespan::microseconds)
|
||||||
|
.Prop(_SC("Useconds"), &Timespan::useconds)
|
||||||
|
.Prop(_SC("TotalMicroseconds"), &Timespan::totalMicroseconds)
|
||||||
|
// Member Methods
|
||||||
|
.FmtFunc(_SC("Swap"), &Timespan::swap)
|
||||||
|
// Member Overloads
|
||||||
|
.Overload< Timespan & (Timespan::*)(long, long) >
|
||||||
|
(_SC("Assign"), &Timespan::assign)
|
||||||
|
.Overload< Timespan & (Timespan::*)(int, int, int, int, int) >
|
||||||
|
(_SC("Assign"), &Timespan::assign)
|
||||||
|
// Static Values
|
||||||
|
.SetStaticValue(_SC("MILLISECONDS"), static_cast< SQInteger >(Timespan::MILLISECONDS))
|
||||||
|
.SetStaticValue(_SC("SECONDS"), static_cast< SQInteger >(Timespan::SECONDS))
|
||||||
|
.SetStaticValue(_SC("MINUTES"), static_cast< SQInteger >(Timespan::MINUTES))
|
||||||
|
.SetStaticValue(_SC("HOURS"), static_cast< SQInteger >(Timespan::HOURS))
|
||||||
|
.SetStaticValue(_SC("DAYS"), static_cast< SQInteger >(Timespan::DAYS))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // Namespace:: SqMod
|
31
module/PocoLib/Time.hpp
Normal file
31
module/PocoLib/Time.hpp
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include "Core/Common.hpp"
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
#include <Poco/Clock.h>
|
||||||
|
#include <Poco/DateTime.h>
|
||||||
|
#include <Poco/DateTimeFormatter.h>
|
||||||
|
#include <Poco/DateTimeParser.h>
|
||||||
|
#include <Poco/LocalDateTime.h>
|
||||||
|
#include <Poco/Stopwatch.h>
|
||||||
|
#include <Poco/Timespan.h>
|
||||||
|
#include <Poco/Timestamp.h>
|
||||||
|
#include <Poco/Timezone.h>
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
namespace SqMod {
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------------------------------
|
||||||
|
using Poco::Clock;
|
||||||
|
using Poco::DateTime;
|
||||||
|
using Poco::DateTimeFormatter;
|
||||||
|
using Poco::DateTimeParser;
|
||||||
|
using Poco::LocalDateTime;
|
||||||
|
using Poco::Stopwatch;
|
||||||
|
using Poco::Timespan;
|
||||||
|
using Poco::Timestamp;
|
||||||
|
using Poco::Timezone;
|
||||||
|
|
||||||
|
} // Namespace:: SqMod
|
@ -8,7 +8,7 @@ namespace SqMod {
|
|||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_Util(HSQUIRRELVM vm)
|
void Register_POCO_Util(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ namespace SqMod {
|
|||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO_XML(HSQUIRRELVM vm)
|
void Register_POCO_XML(HSQUIRRELVM vm, Table &)
|
||||||
{
|
{
|
||||||
Table ns(vm);
|
Table ns(vm);
|
||||||
|
|
||||||
|
@ -34,21 +34,14 @@ extern void Register_CVehicle(HSQUIRRELVM vm);
|
|||||||
extern void Register_Chrono(HSQUIRRELVM vm);
|
extern void Register_Chrono(HSQUIRRELVM vm);
|
||||||
extern void Register_CURL(HSQUIRRELVM vm);
|
extern void Register_CURL(HSQUIRRELVM vm);
|
||||||
extern void Register_IO(HSQUIRRELVM vm);
|
extern void Register_IO(HSQUIRRELVM vm);
|
||||||
extern void Register_Job(HSQUIRRELVM vm);
|
|
||||||
extern void Register_MMDB(HSQUIRRELVM vm);
|
|
||||||
extern void Register_MySQL(HSQUIRRELVM vm);
|
|
||||||
extern void Register_Numeric(HSQUIRRELVM vm);
|
extern void Register_Numeric(HSQUIRRELVM vm);
|
||||||
extern void Register_Socket(HSQUIRRELVM vm);
|
|
||||||
extern void Register_SQLite(HSQUIRRELVM vm);
|
|
||||||
extern void Register_String(HSQUIRRELVM vm);
|
extern void Register_String(HSQUIRRELVM vm);
|
||||||
extern void Register_System(HSQUIRRELVM vm);
|
extern void Register_System(HSQUIRRELVM vm);
|
||||||
extern void Register_Utils(HSQUIRRELVM vm);
|
extern void Register_Utils(HSQUIRRELVM vm);
|
||||||
extern void Register_Worker(HSQUIRRELVM vm);
|
extern void Register_ZMQ(HSQUIRRELVM vm);
|
||||||
extern void Register_Web(HSQUIRRELVM vm);
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
extern void Register_POCO_Crypto(HSQUIRRELVM vm);
|
extern void Register_POCO(HSQUIRRELVM vm);
|
||||||
extern void Register_POCO_Data(HSQUIRRELVM vm);
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
extern void Register_Constants(HSQUIRRELVM vm);
|
extern void Register_Constants(HSQUIRRELVM vm);
|
||||||
@ -91,20 +84,13 @@ bool RegisterAPI(HSQUIRRELVM vm)
|
|||||||
Register_Chrono(vm);
|
Register_Chrono(vm);
|
||||||
Register_CURL(vm);
|
Register_CURL(vm);
|
||||||
Register_IO(vm);
|
Register_IO(vm);
|
||||||
//Register_Job(vm);
|
|
||||||
//Register_MMDB(vm);
|
|
||||||
//Register_MySQL(vm);
|
|
||||||
Register_Numeric(vm);
|
Register_Numeric(vm);
|
||||||
//Register_Socket(vm);
|
|
||||||
//Register_SQLite(vm);
|
|
||||||
Register_String(vm);
|
Register_String(vm);
|
||||||
Register_System(vm);
|
Register_System(vm);
|
||||||
Register_Utils(vm);
|
Register_Utils(vm);
|
||||||
//Register_Worker(vm);
|
Register_ZMQ(vm);
|
||||||
//Register_Web(vm);
|
|
||||||
|
|
||||||
Register_POCO_Crypto(vm);
|
Register_POCO(vm);
|
||||||
Register_POCO_Data(vm);
|
|
||||||
|
|
||||||
Register_Constants(vm);
|
Register_Constants(vm);
|
||||||
Register_Log(vm);
|
Register_Log(vm);
|
||||||
|
@ -138,7 +138,7 @@ static _Noreturn void unreachable() { return; }
|
|||||||
/// Removes unused variable warnings in a way that Doxygen can understand
|
/// Removes unused variable warnings in a way that Doxygen can understand
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void SQUNUSED(const T&) {
|
inline void SQUNUSED(const T&) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @endcond
|
/// @endcond
|
||||||
@ -2202,88 +2202,86 @@ template < typename T > struct SqChainedInstances
|
|||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/// Default constructor.
|
/// Default constructor.
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
SqChainedInstances()
|
SqChainedInstances() noexcept
|
||||||
: m_Prev(nullptr), m_Next(nullptr)
|
: mPrev(nullptr), mNext(nullptr)
|
||||||
{
|
{
|
||||||
//...
|
//...
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
T * mPrev; // Previous instance in the chain.
|
||||||
|
T * mNext; // Next instance in the chain.
|
||||||
|
|
||||||
SqChainedInstances * m_Prev; // Previous instance in the chain.
|
static T * sHead; // The head of the instance chain.
|
||||||
SqChainedInstances * m_Next; // Next instance in the chain.
|
|
||||||
|
|
||||||
static SqChainedInstances * s_Head; // The head of the instance chain.
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/// Attach the instance to the chain.
|
/// Attach the instance to the chain.
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
void ChainInstance()
|
void ChainInstance() noexcept
|
||||||
{
|
{
|
||||||
// Is there an existing head?
|
// Is there an existing head?
|
||||||
if (s_Head == nullptr)
|
if (sHead == nullptr)
|
||||||
{
|
{
|
||||||
// There was no existing head
|
// There was no existing head
|
||||||
m_Prev = m_Next = nullptr;
|
mPrev = mNext = nullptr;
|
||||||
// We're the head
|
// We're the head
|
||||||
s_Head = this;
|
sHead = static_cast< T * >(this);
|
||||||
}
|
}
|
||||||
// Is there a preceding instance before the current head?
|
// Is there a preceding instance before the current head?
|
||||||
else if (s_Head->m_Prev == nullptr)
|
else if (sHead->mPrev == nullptr)
|
||||||
{
|
{
|
||||||
// Grab the current head as the next instance in the chain
|
// Grab the current head as the next instance in the chain
|
||||||
m_Next = s_Head;
|
mNext = sHead;
|
||||||
// Become the new head and the preceding instance of the current head
|
// Become the new head and the preceding instance of the current head
|
||||||
m_Next->m_Prev = s_Head = this;
|
mNext->mPrev = sHead = static_cast< T * >(this);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Grab the current head as the next instance in the chain
|
// Grab the current head as the next instance in the chain
|
||||||
m_Next = s_Head;
|
mNext = sHead;
|
||||||
// Become the new head and the next instance of the preceding instance of the current head
|
// Become the new head and the next instance of the preceding instance of the current head
|
||||||
m_Next->m_Prev->m_Next = s_Head = this;
|
mNext->mPrev->mNext = sHead = static_cast< T * >(this);
|
||||||
// Become the preceding instance of the current head
|
// Become the preceding instance of the current head
|
||||||
m_Next->m_Prev = this;
|
mNext->mPrev = static_cast< T * >(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/// Detach the instance from the chain.
|
/// Detach the instance from the chain.
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
void UnchainInstance()
|
void UnchainInstance() noexcept
|
||||||
{
|
{
|
||||||
// Is there an instance after us?
|
// Is there an instance after us?
|
||||||
if (m_Next != nullptr)
|
if (mNext != nullptr)
|
||||||
{
|
{
|
||||||
// Link the next instance with the one before us
|
// Link the next instance with the one before us
|
||||||
m_Next->m_Prev = m_Prev;
|
mNext->mPrev = mPrev;
|
||||||
// Are we the current head?
|
// Are we the current head?
|
||||||
if (s_Head == this)
|
if (sHead == static_cast< T * >(this))
|
||||||
{
|
{
|
||||||
s_Head = m_Next; // Make the next one the head
|
sHead = mNext; // Make the next one the head
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Is there an instance before us?
|
// Is there an instance before us?
|
||||||
if (m_Prev != nullptr)
|
if (mPrev != nullptr)
|
||||||
{
|
{
|
||||||
// Link the previous instance with the one after us
|
// Link the previous instance with the one after us
|
||||||
m_Prev->m_Next = m_Next;
|
mPrev->mNext = mNext;
|
||||||
// Are we the current head?
|
// Are we the current head?
|
||||||
if (s_Head == nullptr || s_Head == this)
|
if (sHead == nullptr || sHead == static_cast< T * >(this))
|
||||||
{
|
{
|
||||||
// If there was no instance after us then make the previous one the head
|
// If there was no instance after us then make the previous one the head
|
||||||
s_Head = m_Prev;
|
sHead = mPrev;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Are we the current and the only head?
|
// Are we the current and the only head?
|
||||||
else if (s_Head == this)
|
else if (sHead == static_cast< T * >(this))
|
||||||
{
|
{
|
||||||
s_Head = nullptr; // No more instances of this type
|
sHead = nullptr; // No more instances of this type
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template < typename T > SqChainedInstances< T > * SqChainedInstances< T >::s_Head = nullptr;
|
template < typename T > T * SqChainedInstances< T >::sHead = nullptr;
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @cond DEV
|
/// @cond DEV
|
||||||
|
8
vendor/CMakeLists.txt
vendored
8
vendor/CMakeLists.txt
vendored
@ -38,3 +38,11 @@ add_subdirectory(POCO)
|
|||||||
if (WIN32 AND MINGW)
|
if (WIN32 AND MINGW)
|
||||||
target_compile_definitions(Foundation PUBLIC POCO_NO_FPENVIRONMENT=1)
|
target_compile_definitions(Foundation PUBLIC POCO_NO_FPENVIRONMENT=1)
|
||||||
endif()
|
endif()
|
||||||
|
# We have these on GCC
|
||||||
|
if(MINGW OR GCC)
|
||||||
|
set(ENABLE_INTRINSICS ON CACHE INTERNAL "" FORCE)
|
||||||
|
endif()
|
||||||
|
set(BUILD_TESTS OFF CACHE INTERNAL "" FORCE)
|
||||||
|
set(BUILD_SHARED OFF CACHE INTERNAL "" FORCE)
|
||||||
|
set(BUILD_STATIC ON CACHE INTERNAL "" FORCE)
|
||||||
|
add_subdirectory(ZMQ)
|
@ -56,7 +56,7 @@ public:
|
|||||||
// includes making the memory effects of construction visible, possibly with a
|
// includes making the memory effects of construction visible, possibly with a
|
||||||
// memory barrier).
|
// memory barrier).
|
||||||
explicit BlockingConcurrentQueue(size_t capacity = 6 * BLOCK_SIZE)
|
explicit BlockingConcurrentQueue(size_t capacity = 6 * BLOCK_SIZE)
|
||||||
: inner(capacity), sema(create<LightweightSemaphore>(0, (int)Traits::MAX_SEMA_SPINS), &BlockingConcurrentQueue::template destroy<LightweightSemaphore>)
|
: inner(capacity), sema(create<LightweightSemaphore, ssize_t, int>(0, (int)Traits::MAX_SEMA_SPINS), &BlockingConcurrentQueue::template destroy<LightweightSemaphore>)
|
||||||
{
|
{
|
||||||
assert(reinterpret_cast<ConcurrentQueue*>((BlockingConcurrentQueue*)1) == &((BlockingConcurrentQueue*)1)->inner && "BlockingConcurrentQueue must have ConcurrentQueue as its first member");
|
assert(reinterpret_cast<ConcurrentQueue*>((BlockingConcurrentQueue*)1) == &((BlockingConcurrentQueue*)1)->inner && "BlockingConcurrentQueue must have ConcurrentQueue as its first member");
|
||||||
if (!sema) {
|
if (!sema) {
|
||||||
@ -65,7 +65,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
BlockingConcurrentQueue(size_t minCapacity, size_t maxExplicitProducers, size_t maxImplicitProducers)
|
BlockingConcurrentQueue(size_t minCapacity, size_t maxExplicitProducers, size_t maxImplicitProducers)
|
||||||
: inner(minCapacity, maxExplicitProducers, maxImplicitProducers), sema(create<LightweightSemaphore>(0, (int)Traits::MAX_SEMA_SPINS), &BlockingConcurrentQueue::template destroy<LightweightSemaphore>)
|
: inner(minCapacity, maxExplicitProducers, maxImplicitProducers), sema(create<LightweightSemaphore, ssize_t, int>(0, (int)Traits::MAX_SEMA_SPINS), &BlockingConcurrentQueue::template destroy<LightweightSemaphore>)
|
||||||
{
|
{
|
||||||
assert(reinterpret_cast<ConcurrentQueue*>((BlockingConcurrentQueue*)1) == &((BlockingConcurrentQueue*)1)->inner && "BlockingConcurrentQueue must have ConcurrentQueue as its first member");
|
assert(reinterpret_cast<ConcurrentQueue*>((BlockingConcurrentQueue*)1) == &((BlockingConcurrentQueue*)1)->inner && "BlockingConcurrentQueue must have ConcurrentQueue as its first member");
|
||||||
if (!sema) {
|
if (!sema) {
|
||||||
|
30
vendor/ConcurrentQueue/include/concurrentqueue.h
vendored
30
vendor/ConcurrentQueue/include/concurrentqueue.h
vendored
@ -1688,7 +1688,7 @@ private:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~ProducerBase() { };
|
virtual ~ProducerBase() { }
|
||||||
|
|
||||||
template<typename U>
|
template<typename U>
|
||||||
inline bool dequeue(U& element)
|
inline bool dequeue(U& element)
|
||||||
@ -1897,7 +1897,7 @@ private:
|
|||||||
++pr_blockIndexSlotsUsed;
|
++pr_blockIndexSlotsUsed;
|
||||||
}
|
}
|
||||||
|
|
||||||
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new ((T*)nullptr) T(std::forward<U>(element)))) {
|
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new (static_cast<T*>(nullptr)) T(std::forward<U>(element)))) {
|
||||||
// The constructor may throw. We want the element not to appear in the queue in
|
// The constructor may throw. We want the element not to appear in the queue in
|
||||||
// that case (without corrupting the queue):
|
// that case (without corrupting the queue):
|
||||||
MOODYCAMEL_TRY {
|
MOODYCAMEL_TRY {
|
||||||
@ -1923,7 +1923,7 @@ private:
|
|||||||
blockIndex.load(std::memory_order_relaxed)->front.store(pr_blockIndexFront, std::memory_order_release);
|
blockIndex.load(std::memory_order_relaxed)->front.store(pr_blockIndexFront, std::memory_order_release);
|
||||||
pr_blockIndexFront = (pr_blockIndexFront + 1) & (pr_blockIndexSize - 1);
|
pr_blockIndexFront = (pr_blockIndexFront + 1) & (pr_blockIndexSize - 1);
|
||||||
|
|
||||||
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new ((T*)nullptr) T(std::forward<U>(element)))) {
|
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new (static_cast<T*>(nullptr)) T(std::forward<U>(element)))) {
|
||||||
this->tailIndex.store(newTailIndex, std::memory_order_release);
|
this->tailIndex.store(newTailIndex, std::memory_order_release);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -2139,7 +2139,7 @@ private:
|
|||||||
block = block->next;
|
block = block->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
MOODYCAMEL_CONSTEXPR_IF (MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new ((T*)nullptr) T(details::deref_noexcept(itemFirst)))) {
|
MOODYCAMEL_CONSTEXPR_IF (MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new (static_cast<T*>(nullptr)) T(details::deref_noexcept(itemFirst)))) {
|
||||||
blockIndex.load(std::memory_order_relaxed)->front.store((pr_blockIndexFront - 1) & (pr_blockIndexSize - 1), std::memory_order_release);
|
blockIndex.load(std::memory_order_relaxed)->front.store((pr_blockIndexFront - 1) & (pr_blockIndexSize - 1), std::memory_order_release);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2158,7 +2158,7 @@ private:
|
|||||||
if (details::circular_less_than<index_t>(newTailIndex, stopIndex)) {
|
if (details::circular_less_than<index_t>(newTailIndex, stopIndex)) {
|
||||||
stopIndex = newTailIndex;
|
stopIndex = newTailIndex;
|
||||||
}
|
}
|
||||||
MOODYCAMEL_CONSTEXPR_IF (MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new ((T*)nullptr) T(details::deref_noexcept(itemFirst)))) {
|
MOODYCAMEL_CONSTEXPR_IF (MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new (static_cast<T*>(nullptr)) T(details::deref_noexcept(itemFirst)))) {
|
||||||
while (currentTailIndex != stopIndex) {
|
while (currentTailIndex != stopIndex) {
|
||||||
new ((*this->tailBlock)[currentTailIndex++]) T(*itemFirst++);
|
new ((*this->tailBlock)[currentTailIndex++]) T(*itemFirst++);
|
||||||
}
|
}
|
||||||
@ -2173,7 +2173,7 @@ private:
|
|||||||
// may only define a (noexcept) move constructor, and so calls to the
|
// may only define a (noexcept) move constructor, and so calls to the
|
||||||
// cctor will not compile, even if they are in an if branch that will never
|
// cctor will not compile, even if they are in an if branch that will never
|
||||||
// be executed
|
// be executed
|
||||||
new ((*this->tailBlock)[currentTailIndex]) T(details::nomove_if<(bool)!MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new ((T*)nullptr) T(details::deref_noexcept(itemFirst)))>::eval(*itemFirst));
|
new ((*this->tailBlock)[currentTailIndex]) T(details::nomove_if<!MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new (static_cast<T*>(nullptr)) T(details::deref_noexcept(itemFirst)))>::eval(*itemFirst));
|
||||||
++currentTailIndex;
|
++currentTailIndex;
|
||||||
++itemFirst;
|
++itemFirst;
|
||||||
}
|
}
|
||||||
@ -2220,7 +2220,7 @@ private:
|
|||||||
this->tailBlock = this->tailBlock->next;
|
this->tailBlock = this->tailBlock->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new ((T*)nullptr) T(details::deref_noexcept(itemFirst)))) {
|
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new (static_cast<T*>(nullptr)) T(details::deref_noexcept(itemFirst)))) {
|
||||||
if (firstAllocatedBlock != nullptr)
|
if (firstAllocatedBlock != nullptr)
|
||||||
blockIndex.load(std::memory_order_relaxed)->front.store((pr_blockIndexFront - 1) & (pr_blockIndexSize - 1), std::memory_order_release);
|
blockIndex.load(std::memory_order_relaxed)->front.store((pr_blockIndexFront - 1) & (pr_blockIndexSize - 1), std::memory_order_release);
|
||||||
}
|
}
|
||||||
@ -2239,7 +2239,7 @@ private:
|
|||||||
desiredCount = desiredCount < max ? desiredCount : max;
|
desiredCount = desiredCount < max ? desiredCount : max;
|
||||||
std::atomic_thread_fence(std::memory_order_acquire);
|
std::atomic_thread_fence(std::memory_order_acquire);
|
||||||
|
|
||||||
auto myDequeueCount = this->dequeueOptimisticCount.fetch_add(desiredCount, std::memory_order_relaxed);;
|
auto myDequeueCount = this->dequeueOptimisticCount.fetch_add(desiredCount, std::memory_order_relaxed);
|
||||||
|
|
||||||
tail = this->tailIndex.load(std::memory_order_acquire);
|
tail = this->tailIndex.load(std::memory_order_acquire);
|
||||||
auto actualCount = static_cast<size_t>(tail - (myDequeueCount - overcommit));
|
auto actualCount = static_cast<size_t>(tail - (myDequeueCount - overcommit));
|
||||||
@ -2501,7 +2501,7 @@ private:
|
|||||||
#endif
|
#endif
|
||||||
newBlock->ConcurrentQueue::Block::template reset_empty<implicit_context>();
|
newBlock->ConcurrentQueue::Block::template reset_empty<implicit_context>();
|
||||||
|
|
||||||
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new ((T*)nullptr) T(std::forward<U>(element)))) {
|
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new (static_cast<T*>(nullptr)) T(std::forward<U>(element)))) {
|
||||||
// May throw, try to insert now before we publish the fact that we have this new block
|
// May throw, try to insert now before we publish the fact that we have this new block
|
||||||
MOODYCAMEL_TRY {
|
MOODYCAMEL_TRY {
|
||||||
new ((*newBlock)[currentTailIndex]) T(std::forward<U>(element));
|
new ((*newBlock)[currentTailIndex]) T(std::forward<U>(element));
|
||||||
@ -2519,7 +2519,7 @@ private:
|
|||||||
|
|
||||||
this->tailBlock = newBlock;
|
this->tailBlock = newBlock;
|
||||||
|
|
||||||
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new ((T*)nullptr) T(std::forward<U>(element)))) {
|
MOODYCAMEL_CONSTEXPR_IF (!MOODYCAMEL_NOEXCEPT_CTOR(T, U, new (static_cast<T*>(nullptr)) T(std::forward<U>(element)))) {
|
||||||
this->tailIndex.store(newTailIndex, std::memory_order_release);
|
this->tailIndex.store(newTailIndex, std::memory_order_release);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -2697,7 +2697,7 @@ private:
|
|||||||
if (details::circular_less_than<index_t>(newTailIndex, stopIndex)) {
|
if (details::circular_less_than<index_t>(newTailIndex, stopIndex)) {
|
||||||
stopIndex = newTailIndex;
|
stopIndex = newTailIndex;
|
||||||
}
|
}
|
||||||
MOODYCAMEL_CONSTEXPR_IF (MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new ((T*)nullptr) T(details::deref_noexcept(itemFirst)))) {
|
MOODYCAMEL_CONSTEXPR_IF (MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new (static_cast<T*>(nullptr)) T(details::deref_noexcept(itemFirst)))) {
|
||||||
while (currentTailIndex != stopIndex) {
|
while (currentTailIndex != stopIndex) {
|
||||||
new ((*this->tailBlock)[currentTailIndex++]) T(*itemFirst++);
|
new ((*this->tailBlock)[currentTailIndex++]) T(*itemFirst++);
|
||||||
}
|
}
|
||||||
@ -2705,7 +2705,7 @@ private:
|
|||||||
else {
|
else {
|
||||||
MOODYCAMEL_TRY {
|
MOODYCAMEL_TRY {
|
||||||
while (currentTailIndex != stopIndex) {
|
while (currentTailIndex != stopIndex) {
|
||||||
new ((*this->tailBlock)[currentTailIndex]) T(details::nomove_if<(bool)!MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new ((T*)nullptr) T(details::deref_noexcept(itemFirst)))>::eval(*itemFirst));
|
new ((*this->tailBlock)[currentTailIndex]) T(details::nomove_if<!MOODYCAMEL_NOEXCEPT_CTOR(T, decltype(*itemFirst), new (static_cast<T*>(nullptr)) T(details::deref_noexcept(itemFirst)))>::eval(*itemFirst));
|
||||||
++currentTailIndex;
|
++currentTailIndex;
|
||||||
++itemFirst;
|
++itemFirst;
|
||||||
}
|
}
|
||||||
@ -3459,7 +3459,7 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto newHash = new (raw) ImplicitProducerHash;
|
auto newHash = new (raw) ImplicitProducerHash;
|
||||||
newHash->capacity = (size_t)newCapacity;
|
newHash->capacity = static_cast<size_t>(newCapacity);
|
||||||
newHash->entries = reinterpret_cast<ImplicitProducerKVP*>(details::align_for<ImplicitProducerKVP>(raw + sizeof(ImplicitProducerHash)));
|
newHash->entries = reinterpret_cast<ImplicitProducerKVP*>(details::align_for<ImplicitProducerKVP>(raw + sizeof(ImplicitProducerHash)));
|
||||||
for (size_t i = 0; i != newCapacity; ++i) {
|
for (size_t i = 0; i != newCapacity; ++i) {
|
||||||
new (newHash->entries + i) ImplicitProducerKVP;
|
new (newHash->entries + i) ImplicitProducerKVP;
|
||||||
@ -3698,7 +3698,7 @@ ConsumerToken::ConsumerToken(ConcurrentQueue<T, Traits>& queue)
|
|||||||
: itemsConsumedFromCurrent(0), currentProducer(nullptr), desiredProducer(nullptr)
|
: itemsConsumedFromCurrent(0), currentProducer(nullptr), desiredProducer(nullptr)
|
||||||
{
|
{
|
||||||
initialOffset = queue.nextExplicitConsumerId.fetch_add(1, std::memory_order_release);
|
initialOffset = queue.nextExplicitConsumerId.fetch_add(1, std::memory_order_release);
|
||||||
lastKnownGlobalOffset = (std::uint32_t)-1;
|
lastKnownGlobalOffset = static_cast<std::uint32_t>(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, typename Traits>
|
template<typename T, typename Traits>
|
||||||
@ -3706,7 +3706,7 @@ ConsumerToken::ConsumerToken(BlockingConcurrentQueue<T, Traits>& queue)
|
|||||||
: itemsConsumedFromCurrent(0), currentProducer(nullptr), desiredProducer(nullptr)
|
: itemsConsumedFromCurrent(0), currentProducer(nullptr), desiredProducer(nullptr)
|
||||||
{
|
{
|
||||||
initialOffset = reinterpret_cast<ConcurrentQueue<T, Traits>*>(&queue)->nextExplicitConsumerId.fetch_add(1, std::memory_order_release);
|
initialOffset = reinterpret_cast<ConcurrentQueue<T, Traits>*>(&queue)->nextExplicitConsumerId.fetch_add(1, std::memory_order_release);
|
||||||
lastKnownGlobalOffset = (std::uint32_t)-1;
|
lastKnownGlobalOffset = static_cast<std::uint32_t>(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, typename Traits>
|
template<typename T, typename Traits>
|
||||||
|
@ -139,7 +139,7 @@ public:
|
|||||||
{
|
{
|
||||||
mach_timespec_t ts;
|
mach_timespec_t ts;
|
||||||
ts.tv_sec = static_cast<unsigned int>(timeout_usecs / 1000000);
|
ts.tv_sec = static_cast<unsigned int>(timeout_usecs / 1000000);
|
||||||
ts.tv_nsec = (timeout_usecs % 1000000) * 1000;
|
ts.tv_nsec = static_cast<int>((timeout_usecs % 1000000) * 1000);
|
||||||
|
|
||||||
// added in OSX 10.10: https://developer.apple.com/library/prerelease/mac/documentation/General/Reference/APIDiffsMacOSX10_10SeedDiff/modules/Darwin.html
|
// added in OSX 10.10: https://developer.apple.com/library/prerelease/mac/documentation/General/Reference/APIDiffsMacOSX10_10SeedDiff/modules/Darwin.html
|
||||||
kern_return_t rc = semaphore_timedwait(m_sema, ts);
|
kern_return_t rc = semaphore_timedwait(m_sema, ts);
|
||||||
@ -175,7 +175,7 @@ public:
|
|||||||
Semaphore(int initialCount = 0)
|
Semaphore(int initialCount = 0)
|
||||||
{
|
{
|
||||||
assert(initialCount >= 0);
|
assert(initialCount >= 0);
|
||||||
int rc = sem_init(&m_sema, 0, initialCount);
|
int rc = sem_init(&m_sema, 0, static_cast<unsigned int>(initialCount));
|
||||||
assert(rc == 0);
|
assert(rc == 0);
|
||||||
(void)rc;
|
(void)rc;
|
||||||
}
|
}
|
||||||
|
152
vendor/ZMQ/AUTHORS
vendored
Normal file
152
vendor/ZMQ/AUTHORS
vendored
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
Corporate Contributors
|
||||||
|
======================
|
||||||
|
|
||||||
|
Copyright (c) 2007-2014 iMatix Corporation
|
||||||
|
Copyright (c) 2009-2011 250bpm s.r.o.
|
||||||
|
Copyright (c) 2010-2011 Miru Limited
|
||||||
|
Copyright (c) 2011 VMware, Inc.
|
||||||
|
Copyright (c) 2012 Spotify AB
|
||||||
|
Copyright (c) 2013 Ericsson AB
|
||||||
|
Copyright (c) 2014 AppDynamics Inc.
|
||||||
|
Copyright (c) 2015 Google, Inc.
|
||||||
|
Copyright (c) 2015-2016 Brocade Communications Systems Inc.
|
||||||
|
|
||||||
|
Individual Contributors
|
||||||
|
=======================
|
||||||
|
|
||||||
|
AJ Lewis
|
||||||
|
Alexej Lotz
|
||||||
|
Andrew Thompson
|
||||||
|
André Caron
|
||||||
|
Asko Kauppi
|
||||||
|
Attila Mark
|
||||||
|
Barak Amar
|
||||||
|
Ben Gray
|
||||||
|
Bernd Melchers
|
||||||
|
Bernd Prager
|
||||||
|
Bob Beaty
|
||||||
|
Brandon Carpenter
|
||||||
|
Brett Cameron
|
||||||
|
Brian Buchanan
|
||||||
|
Burak Arslan
|
||||||
|
Carl Clemens
|
||||||
|
Chia-liang Kao
|
||||||
|
Chris Busbey
|
||||||
|
Chris Rempel
|
||||||
|
Chris Wong
|
||||||
|
Christian Gudrian
|
||||||
|
Christian Kamm
|
||||||
|
Chuck Remes
|
||||||
|
Conrad D. Steenberg
|
||||||
|
Constantin Rack
|
||||||
|
Daniel J. Bernstein
|
||||||
|
Dhammika Pathirana
|
||||||
|
Dhruva Krishnamurthy
|
||||||
|
Dirk O. Kaar
|
||||||
|
Doron Somech
|
||||||
|
Douglas Creager
|
||||||
|
Drew Crawford
|
||||||
|
Erich Heine
|
||||||
|
Erik Hugne
|
||||||
|
Erik Rigtorp
|
||||||
|
Fabien Ninoles
|
||||||
|
Frank Denis
|
||||||
|
George Neill
|
||||||
|
Gerard Toonstra
|
||||||
|
Ghislain Putois
|
||||||
|
Gonzalo Diethelm
|
||||||
|
Guido Goldstein
|
||||||
|
Harald Achitz
|
||||||
|
Hardeep Singh
|
||||||
|
Hiten Pandya
|
||||||
|
Ian Barber
|
||||||
|
Ilja Golshtein
|
||||||
|
Ilya Kulakov
|
||||||
|
Ivo Danihelka
|
||||||
|
Jacob Rideout
|
||||||
|
Joe Thornber
|
||||||
|
Jon Dyte
|
||||||
|
Kamil Shakirov
|
||||||
|
Ken Steele
|
||||||
|
Kouhei Sutou
|
||||||
|
Laurent Alebarde
|
||||||
|
Leonardo J. Consoni
|
||||||
|
Lionel Flandrin
|
||||||
|
Lourens Naudé
|
||||||
|
Luca Boccassi
|
||||||
|
Marc Rossi
|
||||||
|
Mark Barbisan
|
||||||
|
Martin Hurton
|
||||||
|
Martin Lucina
|
||||||
|
Martin Pales
|
||||||
|
Martin Sustrik
|
||||||
|
Matus Hamorsky
|
||||||
|
Max Wolf
|
||||||
|
McClain Looney
|
||||||
|
Michael Compton
|
||||||
|
Mika Fischer
|
||||||
|
Mikael Helbo Kjaer
|
||||||
|
Mike Gatny
|
||||||
|
Mikko Koppanen
|
||||||
|
Min Ragan-Kelley
|
||||||
|
Neale Ferguson
|
||||||
|
Nir Soffer
|
||||||
|
Osiris Pedroso
|
||||||
|
Paul Betts
|
||||||
|
Paul Colomiets
|
||||||
|
Pavel Gushcha
|
||||||
|
Pavol Malosek
|
||||||
|
Perry Kundert
|
||||||
|
Peter Bourgon
|
||||||
|
Philip Kovacs
|
||||||
|
Pieter Hintjens
|
||||||
|
Piotr Trojanek
|
||||||
|
Reza Ebrahimi
|
||||||
|
Richard Newton
|
||||||
|
Rik van der Heijden
|
||||||
|
Robert G. Jakabosky
|
||||||
|
Sebastian Otaegui
|
||||||
|
Stefan Radomski
|
||||||
|
Steven McCoy
|
||||||
|
Stuart Webster
|
||||||
|
Tamara Kustarova
|
||||||
|
Taras Shpot
|
||||||
|
Tero Marttila
|
||||||
|
Terry Wilson
|
||||||
|
Thijs Terlouw
|
||||||
|
Thomas Rodgers
|
||||||
|
Tim Mossbarger
|
||||||
|
Toralf Wittner
|
||||||
|
Tore Halvorsen
|
||||||
|
Trevor Bernard
|
||||||
|
Vitaly Mayatskikh
|
||||||
|
|
||||||
|
Credits
|
||||||
|
=======
|
||||||
|
|
||||||
|
Aamir Mohammad
|
||||||
|
Adrian von Bidder
|
||||||
|
Aleksey Yeschenko
|
||||||
|
Alessio Spadaro
|
||||||
|
Alexander Majorov
|
||||||
|
Anh Vu
|
||||||
|
Bernd Schumacher
|
||||||
|
Brian Granger
|
||||||
|
Carsten Dinkelmann
|
||||||
|
David Bahi
|
||||||
|
Dirk Eddelbuettel
|
||||||
|
Evgueny Khartchenko
|
||||||
|
Frank Vanden Berghen
|
||||||
|
Ian Barber
|
||||||
|
John Apps
|
||||||
|
Markus Fischer
|
||||||
|
Matt Muggeridge
|
||||||
|
Michael Santy
|
||||||
|
Oleg Sevostyanov
|
||||||
|
Paulo Henrique Silva
|
||||||
|
Peter Busser
|
||||||
|
Peter Lemenkov
|
||||||
|
Robert Zhang
|
||||||
|
Toralf Wittner
|
||||||
|
Zed Shaw
|
||||||
|
|
1823
vendor/ZMQ/CMakeLists.txt
vendored
Normal file
1823
vendor/ZMQ/CMakeLists.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
674
vendor/ZMQ/COPYING
vendored
Normal file
674
vendor/ZMQ/COPYING
vendored
Normal file
@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program 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
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
181
vendor/ZMQ/COPYING.LESSER
vendored
Normal file
181
vendor/ZMQ/COPYING.LESSER
vendored
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
GNU LESSER GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
|
||||||
|
This version of the GNU Lesser General Public License incorporates
|
||||||
|
the terms and conditions of version 3 of the GNU General Public
|
||||||
|
License, supplemented by the additional permissions listed below.
|
||||||
|
|
||||||
|
0. Additional Definitions.
|
||||||
|
|
||||||
|
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||||
|
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||||
|
General Public License.
|
||||||
|
|
||||||
|
"The Library" refers to a covered work governed by this License,
|
||||||
|
other than an Application or a Combined Work as defined below.
|
||||||
|
|
||||||
|
An "Application" is any work that makes use of an interface provided
|
||||||
|
by the Library, but which is not otherwise based on the Library.
|
||||||
|
Defining a subclass of a class defined by the Library is deemed a mode
|
||||||
|
of using an interface provided by the Library.
|
||||||
|
|
||||||
|
A "Combined Work" is a work produced by combining or linking an
|
||||||
|
Application with the Library. The particular version of the Library
|
||||||
|
with which the Combined Work was made is also called the "Linked
|
||||||
|
Version".
|
||||||
|
|
||||||
|
The "Minimal Corresponding Source" for a Combined Work means the
|
||||||
|
Corresponding Source for the Combined Work, excluding any source code
|
||||||
|
for portions of the Combined Work that, considered in isolation, are
|
||||||
|
based on the Application, and not on the Linked Version.
|
||||||
|
|
||||||
|
The "Corresponding Application Code" for a Combined Work means the
|
||||||
|
object code and/or source code for the Application, including any data
|
||||||
|
and utility programs needed for reproducing the Combined Work from the
|
||||||
|
Application, but excluding the System Libraries of the Combined Work.
|
||||||
|
|
||||||
|
1. Exception to Section 3 of the GNU GPL.
|
||||||
|
|
||||||
|
You may convey a covered work under sections 3 and 4 of this License
|
||||||
|
without being bound by section 3 of the GNU GPL.
|
||||||
|
|
||||||
|
2. Conveying Modified Versions.
|
||||||
|
|
||||||
|
If you modify a copy of the Library, and, in your modifications, a
|
||||||
|
facility refers to a function or data to be supplied by an Application
|
||||||
|
that uses the facility (other than as an argument passed when the
|
||||||
|
facility is invoked), then you may convey a copy of the modified
|
||||||
|
version:
|
||||||
|
|
||||||
|
a) under this License, provided that you make a good faith effort to
|
||||||
|
ensure that, in the event an Application does not supply the
|
||||||
|
function or data, the facility still operates, and performs
|
||||||
|
whatever part of its purpose remains meaningful, or
|
||||||
|
|
||||||
|
b) under the GNU GPL, with none of the additional permissions of
|
||||||
|
this License applicable to that copy.
|
||||||
|
|
||||||
|
3. Object Code Incorporating Material from Library Header Files.
|
||||||
|
|
||||||
|
The object code form of an Application may incorporate material from
|
||||||
|
a header file that is part of the Library. You may convey such object
|
||||||
|
code under terms of your choice, provided that, if the incorporated
|
||||||
|
material is not limited to numerical parameters, data structure
|
||||||
|
layouts and accessors, or small macros, inline functions and templates
|
||||||
|
(ten or fewer lines in length), you do both of the following:
|
||||||
|
|
||||||
|
a) Give prominent notice with each copy of the object code that the
|
||||||
|
Library is used in it and that the Library and its use are
|
||||||
|
covered by this License.
|
||||||
|
|
||||||
|
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||||
|
document.
|
||||||
|
|
||||||
|
4. Combined Works.
|
||||||
|
|
||||||
|
You may convey a Combined Work under terms of your choice that,
|
||||||
|
taken together, effectively do not restrict modification of the
|
||||||
|
portions of the Library contained in the Combined Work and reverse
|
||||||
|
engineering for debugging such modifications, if you also do each of
|
||||||
|
the following:
|
||||||
|
|
||||||
|
a) Give prominent notice with each copy of the Combined Work that
|
||||||
|
the Library is used in it and that the Library and its use are
|
||||||
|
covered by this License.
|
||||||
|
|
||||||
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||||
|
document.
|
||||||
|
|
||||||
|
c) For a Combined Work that displays copyright notices during
|
||||||
|
execution, include the copyright notice for the Library among
|
||||||
|
these notices, as well as a reference directing the user to the
|
||||||
|
copies of the GNU GPL and this license document.
|
||||||
|
|
||||||
|
d) Do one of the following:
|
||||||
|
|
||||||
|
0) Convey the Minimal Corresponding Source under the terms of this
|
||||||
|
License, and the Corresponding Application Code in a form
|
||||||
|
suitable for, and under terms that permit, the user to
|
||||||
|
recombine or relink the Application with a modified version of
|
||||||
|
the Linked Version to produce a modified Combined Work, in the
|
||||||
|
manner specified by section 6 of the GNU GPL for conveying
|
||||||
|
Corresponding Source.
|
||||||
|
|
||||||
|
1) Use a suitable shared library mechanism for linking with the
|
||||||
|
Library. A suitable mechanism is one that (a) uses at run time
|
||||||
|
a copy of the Library already present on the user's computer
|
||||||
|
system, and (b) will operate properly with a modified version
|
||||||
|
of the Library that is interface-compatible with the Linked
|
||||||
|
Version.
|
||||||
|
|
||||||
|
e) Provide Installation Information, but only if you would otherwise
|
||||||
|
be required to provide such information under section 6 of the
|
||||||
|
GNU GPL, and only to the extent that such information is
|
||||||
|
necessary to install and execute a modified version of the
|
||||||
|
Combined Work produced by recombining or relinking the
|
||||||
|
Application with a modified version of the Linked Version. (If
|
||||||
|
you use option 4d0, the Installation Information must accompany
|
||||||
|
the Minimal Corresponding Source and Corresponding Application
|
||||||
|
Code. If you use option 4d1, you must provide the Installation
|
||||||
|
Information in the manner specified by section 6 of the GNU GPL
|
||||||
|
for conveying Corresponding Source.)
|
||||||
|
|
||||||
|
5. Combined Libraries.
|
||||||
|
|
||||||
|
You may place library facilities that are a work based on the
|
||||||
|
Library side by side in a single library together with other library
|
||||||
|
facilities that are not Applications and are not covered by this
|
||||||
|
License, and convey such a combined library under terms of your
|
||||||
|
choice, if you do both of the following:
|
||||||
|
|
||||||
|
a) Accompany the combined library with a copy of the same work based
|
||||||
|
on the Library, uncombined with any other library facilities,
|
||||||
|
conveyed under the terms of this License.
|
||||||
|
|
||||||
|
b) Give prominent notice with the combined library that part of it
|
||||||
|
is a work based on the Library, and explaining where to find the
|
||||||
|
accompanying uncombined form of the same work.
|
||||||
|
|
||||||
|
6. Revised Versions of the GNU Lesser General Public License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the GNU Lesser General Public License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Library as you received it specifies that a certain numbered version
|
||||||
|
of the GNU Lesser General Public License "or any later version"
|
||||||
|
applies to it, you have the option of following the terms and
|
||||||
|
conditions either of that published version or of any later version
|
||||||
|
published by the Free Software Foundation. If the Library as you
|
||||||
|
received it does not specify a version number of the GNU Lesser
|
||||||
|
General Public License, you may choose any version of the GNU Lesser
|
||||||
|
General Public License ever published by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Library as you received it specifies that a proxy can decide
|
||||||
|
whether future versions of the GNU Lesser General Public License shall
|
||||||
|
apply, that proxy's public statement of acceptance of any version is
|
||||||
|
permanent authorization for you to choose that version for the
|
||||||
|
Library.
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS
|
||||||
|
|
||||||
|
As a special exception, copyright holders give you permission to link this
|
||||||
|
library with independent modules to produce an executable, regardless of
|
||||||
|
the license terms of these independent modules, and to copy and distribute
|
||||||
|
the resulting executable under terms of your choice, provided that you also
|
||||||
|
meet, for each linked independent module, the terms and conditions of
|
||||||
|
the license of that module. An independent module is a module which is not
|
||||||
|
derived from or based on this library. If you modify this library, you must
|
||||||
|
extend this exception to your version of the library.
|
||||||
|
|
||||||
|
Note: this exception relieves you of any obligations under sections 4 and 5
|
||||||
|
of this license, and section 6 of the GNU General Public License.
|
32
vendor/ZMQ/Dockerfile
vendored
Normal file
32
vendor/ZMQ/Dockerfile
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
FROM debian:buster-slim AS builder
|
||||||
|
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update -qq \
|
||||||
|
&& apt-get install -qq --yes --no-install-recommends \
|
||||||
|
autoconf \
|
||||||
|
automake \
|
||||||
|
build-essential \
|
||||||
|
git \
|
||||||
|
libkrb5-dev \
|
||||||
|
libsodium-dev \
|
||||||
|
libtool \
|
||||||
|
pkg-config \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
WORKDIR /opt/libzmq
|
||||||
|
COPY . .
|
||||||
|
RUN ./autogen.sh \
|
||||||
|
&& ./configure --prefix=/usr/local --with-libsodium --with-libgssapi_krb5 \
|
||||||
|
&& make \
|
||||||
|
&& make check \
|
||||||
|
&& make install
|
||||||
|
|
||||||
|
FROM debian:buster-slim
|
||||||
|
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update -qq \
|
||||||
|
&& apt-get install -qq --yes --no-install-recommends \
|
||||||
|
libkrb5-dev \
|
||||||
|
libsodium23 \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
COPY --from=builder /usr/local /usr/local
|
||||||
|
RUN ldconfig && ldconfig -p | grep libzmq
|
2320
vendor/ZMQ/Doxygen.cfg
vendored
Normal file
2320
vendor/ZMQ/Doxygen.cfg
vendored
Normal file
File diff suppressed because it is too large
Load Diff
315
vendor/ZMQ/INSTALL
vendored
Normal file
315
vendor/ZMQ/INSTALL
vendored
Normal file
@ -0,0 +1,315 @@
|
|||||||
|
Installation Instructions
|
||||||
|
*************************
|
||||||
|
|
||||||
|
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
|
||||||
|
2006, 2007 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
This file is free documentation; the Free Software Foundation gives
|
||||||
|
unlimited permission to copy, distribute and modify it.
|
||||||
|
|
||||||
|
From GitHub
|
||||||
|
===========
|
||||||
|
|
||||||
|
If you clone the Git repository then you should start by running the
|
||||||
|
command `./autogen.sh`. This is not necessary if you get the source
|
||||||
|
packages.
|
||||||
|
|
||||||
|
CMake installation
|
||||||
|
==================
|
||||||
|
|
||||||
|
The following options are available for cmake invocation:
|
||||||
|
|
||||||
|
- `WITH_PERF_TOOL'
|
||||||
|
Enables the build of performance tools. Default value is ON.
|
||||||
|
- `ZMQ_BUILD_TESTS'
|
||||||
|
Builds ZeroMQ tests. Default value is ON.
|
||||||
|
- `ENABLE_CPACK'
|
||||||
|
Enables CPack build rules. This option has effect on Windows
|
||||||
|
platform only. Default value is ON. Turn it to OFF if you
|
||||||
|
don't want the runtime libraries to be installed (typically
|
||||||
|
if your installation destination already contains them).
|
||||||
|
|
||||||
|
|
||||||
|
Example: installing ZeroMQ on Windows with no tests, no performance
|
||||||
|
tools, and no runtime library copy:
|
||||||
|
|
||||||
|
cmake -G "NMake Makefiles" -D WITH_PERF_TOOL=OFF -D ZMQ_BUILD_TESTS=OFF
|
||||||
|
-D ENABLE_CPACK=OFF -D CMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
|
Windows Builds
|
||||||
|
==============
|
||||||
|
|
||||||
|
On Windows, use CMake for building, or for generating a Visual Studio solution file.
|
||||||
|
|
||||||
|
The library can also be built for the Windows 10 UWP platform through CMake :
|
||||||
|
cmake -H. -B<build dir> -G"Visual Studio 14 2015 Win64" \
|
||||||
|
-DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION=10.0 \
|
||||||
|
-DENABLE_CURVE=OFF -DZMQ_BUILD_TESTS=OFF
|
||||||
|
|
||||||
|
In VS 2012 it is mandatory to increase the default stack size of 1 MB to
|
||||||
|
at least 2 MB due to implementation of std::map intermittently requiring
|
||||||
|
substantial amount of stack and causing stack overflow.
|
||||||
|
|
||||||
|
Windows Builds - Static
|
||||||
|
=======================
|
||||||
|
|
||||||
|
When linking statically with libzmq your CFLAGS and/or CPPFLAGS need to include
|
||||||
|
`-DZMQ_STATIC` otherwise `__dclspec(dllimport)` will be set for all functions
|
||||||
|
and the build will fail.
|
||||||
|
|
||||||
|
This is a workaround for issue:
|
||||||
|
https://github.com/zeromq/libzmq/issues/2788
|
||||||
|
|
||||||
|
Windows Builds - Wine
|
||||||
|
=====================
|
||||||
|
|
||||||
|
To use Windows binaries on *nix via Wine, it is necessary to ensure that the
|
||||||
|
kernel TCP buffers are large enough. On some systems, like OS X, they are too
|
||||||
|
small by default.
|
||||||
|
They need to be set to at least one MB as a workaround for issue:
|
||||||
|
https://github.com/zeromq/libzmq/issues/1608
|
||||||
|
|
||||||
|
sudo sysctl -w net.inet.tcp.sendspace=1300000
|
||||||
|
|
||||||
|
Basic Installation
|
||||||
|
==================
|
||||||
|
|
||||||
|
Briefly, the shell commands `./configure; make; make install' should
|
||||||
|
configure, build, and install this package. The following
|
||||||
|
more-detailed instructions are generic; see the `README' file for
|
||||||
|
instructions specific to this package.
|
||||||
|
|
||||||
|
The `configure' shell script attempts to guess correct values for
|
||||||
|
various system-dependent variables used during compilation. It uses
|
||||||
|
those values to create a `Makefile' in each directory of the package.
|
||||||
|
It may also create one or more `.h' files containing system-dependent
|
||||||
|
definitions. Finally, it creates a shell script `config.status' that
|
||||||
|
you can run in the future to recreate the current configuration, and a
|
||||||
|
file `config.log' containing compiler output (useful mainly for
|
||||||
|
debugging `configure').
|
||||||
|
|
||||||
|
It can also use an optional file (typically called `config.cache'
|
||||||
|
and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
||||||
|
the results of its tests to speed up reconfiguring. Caching is
|
||||||
|
disabled by default to prevent problems with accidental use of stale
|
||||||
|
cache files.
|
||||||
|
|
||||||
|
If you need to do unusual things to compile the package, please try
|
||||||
|
to figure out how `configure' could check whether to do them, and mail
|
||||||
|
diffs or instructions to the address given in the `README' so they can
|
||||||
|
be considered for the next release. If you are using the cache, and at
|
||||||
|
some point `config.cache' contains results you don't want to keep, you
|
||||||
|
may remove or edit it.
|
||||||
|
|
||||||
|
The file `configure.ac' (or `configure.in') is used to create
|
||||||
|
`configure' by a program called `autoconf'. You need `configure.ac' if
|
||||||
|
you want to change it or regenerate `configure' using a newer version
|
||||||
|
of `autoconf'. If you are building a development version from the
|
||||||
|
Github source, for example, use `./autogen.sh' to generate `configure'
|
||||||
|
and other necessary installation scripts.
|
||||||
|
|
||||||
|
The simplest way to compile this package is:
|
||||||
|
|
||||||
|
1. `cd' to the directory containing the package's source code and type
|
||||||
|
`./configure' to configure the package for your system.
|
||||||
|
|
||||||
|
Running `configure' might take a while. While running, it prints
|
||||||
|
some messages telling which features it is checking for.
|
||||||
|
|
||||||
|
2. Type `make' to compile the package.
|
||||||
|
|
||||||
|
3. Optionally, type `make check' to run any self-tests that come with
|
||||||
|
the package. Note that `make -j check' is not supported as some
|
||||||
|
tests share infrastructure and cannot be run in parallel.
|
||||||
|
|
||||||
|
4. Type `make install' to install the programs and any data files and
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
5. You can remove the program binaries and object files from the
|
||||||
|
source code directory by typing `make clean'. To also remove the
|
||||||
|
files that `configure' created (so you can compile the package for
|
||||||
|
a different kind of computer), type `make distclean'. There is
|
||||||
|
also a `make maintainer-clean' target, but that is intended mainly
|
||||||
|
for the package's developers. If you use it, you may have to get
|
||||||
|
all sorts of other programs in order to regenerate files that came
|
||||||
|
with the distribution.
|
||||||
|
|
||||||
|
6. Often, you can also type `make uninstall' to remove the installed
|
||||||
|
files again.
|
||||||
|
|
||||||
|
OS X Builds - Documentation
|
||||||
|
===========================
|
||||||
|
|
||||||
|
Basic installation on OS X may fail in `Making all in doc' step. This
|
||||||
|
error can be resolved by adding environment variable for shell.
|
||||||
|
|
||||||
|
export XML_CATALOG_FILES=/usr/local/etc/xml/catalog
|
||||||
|
|
||||||
|
Write comamnd above in shell for instant resolve, or append command into
|
||||||
|
shell profile file and reload for permanent resolve.
|
||||||
|
|
||||||
|
Compilers and Options
|
||||||
|
=====================
|
||||||
|
|
||||||
|
Some systems require unusual options for compilation or linking that the
|
||||||
|
`configure' script does not know about. Run `./configure --help' for
|
||||||
|
details on some of the pertinent environment variables.
|
||||||
|
|
||||||
|
You can give `configure' initial values for configuration parameters
|
||||||
|
by setting variables in the command line or in the environment. Here
|
||||||
|
is an example:
|
||||||
|
|
||||||
|
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
||||||
|
|
||||||
|
*Note Defining Variables::, for more details.
|
||||||
|
|
||||||
|
Compiling For Multiple Architectures
|
||||||
|
====================================
|
||||||
|
|
||||||
|
You can compile the package for more than one kind of computer at the
|
||||||
|
same time, by placing the object files for each architecture in their
|
||||||
|
own directory. To do this, you can use GNU `make'. `cd' to the
|
||||||
|
directory where you want the object files and executables to go and run
|
||||||
|
the `configure' script. `configure' automatically checks for the
|
||||||
|
source code in the directory that `configure' is in and in `..'.
|
||||||
|
|
||||||
|
With a non-GNU `make', it is safer to compile the package for one
|
||||||
|
architecture at a time in the source code directory. After you have
|
||||||
|
installed the package for one architecture, use `make distclean' before
|
||||||
|
reconfiguring for another architecture.
|
||||||
|
|
||||||
|
Installation Names
|
||||||
|
==================
|
||||||
|
|
||||||
|
By default, `make install' installs the package's commands under
|
||||||
|
`/usr/local/bin', include files under `/usr/local/include', etc. You
|
||||||
|
can specify an installation prefix other than `/usr/local' by giving
|
||||||
|
`configure' the option `--prefix=PREFIX'.
|
||||||
|
|
||||||
|
You can specify separate installation prefixes for
|
||||||
|
architecture-specific files and architecture-independent files. If you
|
||||||
|
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
|
||||||
|
PREFIX as the prefix for installing programs and libraries.
|
||||||
|
Documentation and other data files still use the regular prefix.
|
||||||
|
|
||||||
|
In addition, if you use an unusual directory layout you can give
|
||||||
|
options like `--bindir=DIR' to specify different values for particular
|
||||||
|
kinds of files. Run `configure --help' for a list of the directories
|
||||||
|
you can set and what kinds of files go in them.
|
||||||
|
|
||||||
|
If the package supports it, you can cause programs to be installed
|
||||||
|
with an extra prefix or suffix on their names by giving `configure' the
|
||||||
|
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||||
|
|
||||||
|
Optional Features
|
||||||
|
=================
|
||||||
|
|
||||||
|
Some packages pay attention to `--enable-FEATURE' options to
|
||||||
|
`configure', where FEATURE indicates an optional part of the package.
|
||||||
|
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||||
|
is something like `gnu-as' or `x' (for the X Window System). The
|
||||||
|
`README' should mention any `--enable-' and `--with-' options that the
|
||||||
|
package recognizes.
|
||||||
|
|
||||||
|
For packages that use the X Window System, `configure' can usually
|
||||||
|
find the X include and library files automatically, but if it doesn't,
|
||||||
|
you can use the `configure' options `--x-includes=DIR' and
|
||||||
|
`--x-libraries=DIR' to specify their locations.
|
||||||
|
|
||||||
|
Specifying the System Type
|
||||||
|
==========================
|
||||||
|
|
||||||
|
There may be some features `configure' cannot figure out automatically,
|
||||||
|
but needs to determine by the type of machine the package will run on.
|
||||||
|
Usually, assuming the package is built to be run on the _same_
|
||||||
|
architectures, `configure' can figure that out, but if it prints a
|
||||||
|
message saying it cannot guess the machine type, give it the
|
||||||
|
`--build=TYPE' option. TYPE can either be a short name for the system
|
||||||
|
type, such as `sun4', or a canonical name which has the form:
|
||||||
|
|
||||||
|
CPU-COMPANY-SYSTEM
|
||||||
|
|
||||||
|
where SYSTEM can have one of these forms:
|
||||||
|
|
||||||
|
OS KERNEL-OS
|
||||||
|
|
||||||
|
See the file `config.sub' for the possible values of each field. If
|
||||||
|
`config.sub' isn't included in this package, then this package doesn't
|
||||||
|
need to know the machine type.
|
||||||
|
|
||||||
|
If you are _building_ compiler tools for cross-compiling, you should
|
||||||
|
use the option `--target=TYPE' to select the type of system they will
|
||||||
|
produce code for.
|
||||||
|
|
||||||
|
If you want to _use_ a cross compiler, that generates code for a
|
||||||
|
platform different from the build platform, you should specify the
|
||||||
|
"host" platform (i.e., that on which the generated programs will
|
||||||
|
eventually be run) with `--host=TYPE'.
|
||||||
|
|
||||||
|
Sharing Defaults
|
||||||
|
================
|
||||||
|
|
||||||
|
If you want to set default values for `configure' scripts to share, you
|
||||||
|
can create a site shell script called `config.site' that gives default
|
||||||
|
values for variables like `CC', `cache_file', and `prefix'.
|
||||||
|
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||||
|
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||||
|
`CONFIG_SITE' environment variable to the location of the site script.
|
||||||
|
A warning: not all `configure' scripts look for a site script.
|
||||||
|
|
||||||
|
Defining Variables
|
||||||
|
==================
|
||||||
|
|
||||||
|
Variables not defined in a site shell script can be set in the
|
||||||
|
environment passed to `configure'. However, some packages may run
|
||||||
|
configure again during the build, and the customized values of these
|
||||||
|
variables may be lost. In order to avoid this problem, you should set
|
||||||
|
them in the `configure' command line, using `VAR=value'. For example:
|
||||||
|
|
||||||
|
./configure CC=/usr/local2/bin/gcc
|
||||||
|
|
||||||
|
causes the specified `gcc' to be used as the C compiler (unless it is
|
||||||
|
overridden in the site shell script).
|
||||||
|
|
||||||
|
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
|
||||||
|
an Autoconf bug. Until the bug is fixed you can use this workaround:
|
||||||
|
|
||||||
|
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
|
||||||
|
|
||||||
|
`configure' Invocation
|
||||||
|
======================
|
||||||
|
|
||||||
|
`configure' recognizes the following options to control how it operates.
|
||||||
|
|
||||||
|
`--help'
|
||||||
|
`-h'
|
||||||
|
Print a summary of the options to `configure', and exit.
|
||||||
|
|
||||||
|
`--version'
|
||||||
|
`-V'
|
||||||
|
Print the version of Autoconf used to generate the `configure'
|
||||||
|
script, and exit.
|
||||||
|
|
||||||
|
`--cache-file=FILE'
|
||||||
|
Enable the cache: use and save the results of the tests in FILE,
|
||||||
|
traditionally `config.cache'. FILE defaults to `/dev/null' to
|
||||||
|
disable caching.
|
||||||
|
|
||||||
|
`--config-cache'
|
||||||
|
`-C'
|
||||||
|
Alias for `--cache-file=config.cache'.
|
||||||
|
|
||||||
|
`--quiet'
|
||||||
|
`--silent'
|
||||||
|
`-q'
|
||||||
|
Do not print messages saying which checks are being made. To
|
||||||
|
suppress all normal output, redirect it to `/dev/null' (any error
|
||||||
|
messages will still be shown).
|
||||||
|
|
||||||
|
`--srcdir=DIR'
|
||||||
|
Look for the package's source code in directory DIR. Usually
|
||||||
|
`configure' can determine that directory automatically.
|
||||||
|
|
||||||
|
`configure' also accepts some other, not widely useful, options. Run
|
||||||
|
`configure --help' for more details.
|
||||||
|
|
485
vendor/ZMQ/Jenkinsfile
vendored
Normal file
485
vendor/ZMQ/Jenkinsfile
vendored
Normal file
@ -0,0 +1,485 @@
|
|||||||
|
pipeline {
|
||||||
|
agent { label "linux || macosx || bsd || solaris || posix || windows" }
|
||||||
|
parameters {
|
||||||
|
// Use DEFAULT_DEPLOY_BRANCH_PATTERN and DEFAULT_DEPLOY_JOB_NAME if
|
||||||
|
// defined in this jenkins setup -- in Jenkins Management Web-GUI
|
||||||
|
// see Configure System / Global properties / Environment variables
|
||||||
|
// Default (if unset) is empty => no deployment attempt after good test
|
||||||
|
// See zproject Jenkinsfile-deploy.example for an example deploy job.
|
||||||
|
// TODO: Try to marry MultiBranchPipeline support with pre-set defaults
|
||||||
|
// directly in MultiBranchPipeline plugin, or mechanism like Credentials,
|
||||||
|
// or a config file uploaded to master for all jobs or this job, see
|
||||||
|
// https://jenkins.io/doc/pipeline/examples/#configfile-provider-plugin
|
||||||
|
string (
|
||||||
|
defaultValue: '${DEFAULT_DEPLOY_BRANCH_PATTERN}',
|
||||||
|
description: 'Regular expression of branch names for which a deploy action would be attempted after a successful build and test; leave empty to not deploy. Reasonable value is ^(master|release/.*|feature/*)$',
|
||||||
|
name : 'DEPLOY_BRANCH_PATTERN')
|
||||||
|
string (
|
||||||
|
defaultValue: '${DEFAULT_DEPLOY_JOB_NAME}',
|
||||||
|
description: 'Name of your job that handles deployments and should accept arguments: DEPLOY_GIT_URL DEPLOY_GIT_BRANCH DEPLOY_GIT_COMMIT -- and it is up to that job what to do with this knowledge (e.g. git archive + push to packaging); leave empty to not deploy',
|
||||||
|
name : 'DEPLOY_JOB_NAME')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'If the deployment is done, should THIS job wait for it to complete and include its success or failure as the build result (true), or should it schedule the job and exit quickly to free up the executor (false)',
|
||||||
|
name: 'DEPLOY_REPORT_RESULT')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt stable build without DRAFT API in this run?',
|
||||||
|
name: 'DO_BUILD_WITHOUT_DRAFT_API')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt build with DRAFT API in this run?',
|
||||||
|
name: 'DO_BUILD_WITH_DRAFT_API')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt a build with docs in this run? (Note: corresponding tools are required in the build environment)',
|
||||||
|
name: 'DO_BUILD_DOCS')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: false,
|
||||||
|
description: 'Publish as an archive a "dist" tarball from a build with docs in this run? (Note: corresponding tools are required in the build environment; enabling this enforces DO_BUILD_DOCS too)',
|
||||||
|
name: 'DO_DIST_DOCS')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt "make check" in this run?',
|
||||||
|
name: 'DO_TEST_CHECK')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: false,
|
||||||
|
description: 'Attempt "make memcheck" in this run?',
|
||||||
|
name: 'DO_TEST_MEMCHECK')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt "make distcheck" in this run?',
|
||||||
|
name: 'DO_TEST_DISTCHECK')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt a "make install" check in this run?',
|
||||||
|
name: 'DO_TEST_INSTALL')
|
||||||
|
string (
|
||||||
|
defaultValue: "`pwd`/tmp/_inst",
|
||||||
|
description: 'If attempting a "make install" check in this run, what DESTDIR to specify? (absolute path, defaults to "BUILD_DIR/tmp/_inst")',
|
||||||
|
name: 'USE_TEST_INSTALL_DESTDIR')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Attempt "cppcheck" analysis before this run? (Note: corresponding tools are required in the build environment)',
|
||||||
|
name: 'DO_CPPCHECK')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'Require that there are no files not discovered changed/untracked via .gitignore after builds and tests?',
|
||||||
|
name: 'REQUIRE_GOOD_GITIGNORE')
|
||||||
|
string (
|
||||||
|
defaultValue: "30",
|
||||||
|
description: 'When running tests, use this timeout (in minutes; be sure to leave enough for double-job of a distcheck too)',
|
||||||
|
name: 'USE_TEST_TIMEOUT')
|
||||||
|
booleanParam (
|
||||||
|
defaultValue: true,
|
||||||
|
description: 'When using temporary subdirs in build/test workspaces, wipe them after successful builds?',
|
||||||
|
name: 'DO_CLEANUP_AFTER_BUILD')
|
||||||
|
}
|
||||||
|
triggers {
|
||||||
|
pollSCM 'H/2 * * * *'
|
||||||
|
}
|
||||||
|
// Note: your Jenkins setup may benefit from similar setup on side of agents:
|
||||||
|
// PATH="/usr/lib64/ccache:/usr/lib/ccache:/usr/bin:/bin:${PATH}"
|
||||||
|
stages {
|
||||||
|
stage ('prepare') {
|
||||||
|
steps {
|
||||||
|
dir("tmp") {
|
||||||
|
sh 'if [ -s Makefile ]; then make -k distclean || true ; fi'
|
||||||
|
sh 'chmod -R u+w .'
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
sh './autogen.sh'
|
||||||
|
stash (name: 'prepped', includes: '**/*', excludes: '**/cppcheck.xml')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('compile') {
|
||||||
|
parallel {
|
||||||
|
stage ('build with DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITH_DRAFT_API ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/build-withDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'prepped'
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; ./configure --enable-drafts=yes --with-docs=no'
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; make -k -j4 || make'
|
||||||
|
sh 'echo "Are GitIgnores good after make with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
stash (name: 'built-draft', includes: '**/*', excludes: '**/cppcheck.xml')
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('build without DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITHOUT_DRAFT_API ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/build-withoutDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'prepped'
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; ./configure --enable-drafts=no --with-docs=no'
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; make -k -j4 || make'
|
||||||
|
sh 'echo "Are GitIgnores good after make without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
stash (name: 'built-nondraft', includes: '**/*', excludes: '**/cppcheck.xml')
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('build with DOCS') {
|
||||||
|
when { expression { return ( params.DO_BUILD_DOCS || params.DO_DIST_DOCS ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/build-DOCS") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'prepped'
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; ./configure --enable-drafts=yes --with-docs=yes'
|
||||||
|
script {
|
||||||
|
if ( params.DO_DIST_DOCS ) {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; make dist-gzip || exit ; DISTFILE="`ls -1tc *.tar.gz | head -1`" && [ -n "$DISTFILE" ] && [ -s "$DISTFILE" ] || exit ; mv -f "$DISTFILE" __dist.tar.gz'
|
||||||
|
archiveArtifacts artifacts: '__dist.tar.gz'
|
||||||
|
sh "rm -f __dist.tar.gz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; make -k -j4 || make'
|
||||||
|
sh 'echo "Are GitIgnores good after make with docs? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
stash (name: 'built-docs', includes: '**/*', excludes: '**/cppcheck.xml')
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('check') {
|
||||||
|
parallel {
|
||||||
|
stage ('cppcheck') {
|
||||||
|
when { expression { return ( params.DO_CPPCHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-cppcheck") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'prepped'
|
||||||
|
sh 'cppcheck --std=c++11 --enable=all --inconclusive --xml --xml-version=2 . 2>cppcheck.xml'
|
||||||
|
archiveArtifacts artifacts: '**/cppcheck.xml'
|
||||||
|
sh 'rm -f cppcheck.xml'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('check with DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITH_DRAFT_API && params.DO_TEST_CHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-check-withDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-draft'
|
||||||
|
script {
|
||||||
|
def RETRY_NUMBER = 0
|
||||||
|
retry(3) {
|
||||||
|
RETRY_NUMBER++
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
try {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" check'
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
currentBuild.result = 'UNSTABLE' // Jenkins should not let the verdict "improve"
|
||||||
|
sh """D="`pwd`"; B="`basename "\$D"`" ; [ "${RETRY_NUMBER}" -gt 0 ] && T="_try-${RETRY_NUMBER}" || T="" ; tar czf "test-suite_${BUILD_TAG}_\${B}\${T}.tar.gz" `find . -name '*.trs'` `find . -name '*.log'`"""
|
||||||
|
archiveArtifacts artifacts: "**/test-suite*.tar.gz", allowEmpty: true
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'echo "Are GitIgnores good after make check with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('check without DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITHOUT_DRAFT_API && params.DO_TEST_CHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-check-withoutDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-nondraft'
|
||||||
|
script {
|
||||||
|
def RETRY_NUMBER = 0
|
||||||
|
retry(3) {
|
||||||
|
RETRY_NUMBER++
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
try {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" check'
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
currentBuild.result = 'UNSTABLE' // Jenkins should not let the verdict "improve"
|
||||||
|
sh """D="`pwd`"; B="`basename "\$D"`" ; [ "${RETRY_NUMBER}" -gt 0 ] && T="_try-${RETRY_NUMBER}" || T="" ; tar czf "test-suite_${BUILD_TAG}_\${B}\${T}.tar.gz" `find . -name '*.trs'` `find . -name '*.log'`"""
|
||||||
|
archiveArtifacts artifacts: "**/test-suite*.tar.gz", allowEmpty: true
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'echo "Are GitIgnores good after make check without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('memcheck with DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITH_DRAFT_API && params.DO_TEST_MEMCHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-memcheck-withDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-draft'
|
||||||
|
script {
|
||||||
|
def RETRY_NUMBER = 0
|
||||||
|
retry(3) {
|
||||||
|
RETRY_NUMBER++
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
try {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" memcheck && exit 0 ; echo "Re-running failed ($?) memcheck with greater verbosity" >&2 ; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" VERBOSE=1 memcheck-verbose'
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
currentBuild.result = 'UNSTABLE' // Jenkins should not let the verdict "improve"
|
||||||
|
sh """D="`pwd`"; B="`basename "\$D"`" ; [ "${RETRY_NUMBER}" -gt 0 ] && T="_try-${RETRY_NUMBER}" || T="" ; tar czf "test-suite_${BUILD_TAG}_\${B}\${T}.tar.gz" `find . -name '*.trs'` `find . -name '*.log'`"""
|
||||||
|
archiveArtifacts artifacts: "**/test-suite*.tar.gz", allowEmpty: true
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'echo "Are GitIgnores good after make memcheck with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('memcheck without DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITHOUT_DRAFT_API && params.DO_TEST_MEMCHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-memcheck-withoutDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-nondraft'
|
||||||
|
script {
|
||||||
|
def RETRY_NUMBER = 0
|
||||||
|
retry(3) {
|
||||||
|
RETRY_NUMBER++
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
try {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" memcheck && exit 0 ; echo "Re-running failed ($?) memcheck with greater verbosity" >&2 ; make LD_LIBRARY_PATH="$LD_LIBRARY_PATH" VERBOSE=1 memcheck-verbose'
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
currentBuild.result = 'UNSTABLE' // Jenkins should not let the verdict "improve"
|
||||||
|
sh """D="`pwd`"; B="`basename "\$D"`" ; [ "${RETRY_NUMBER}" -gt 0 ] && T="_try-${RETRY_NUMBER}" || T="" ; tar czf "test-suite_${BUILD_TAG}_\${B}\${T}.tar.gz" `find . -name '*.trs'` `find . -name '*.log'`"""
|
||||||
|
archiveArtifacts artifacts: "**/test-suite*.tar.gz", allowEmpty: true
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'echo "Are GitIgnores good after make memcheck without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('distcheck with DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITH_DRAFT_API && params.DO_TEST_DISTCHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-distcheck-withDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-draft'
|
||||||
|
script {
|
||||||
|
def RETRY_NUMBER = 0
|
||||||
|
retry(3) {
|
||||||
|
RETRY_NUMBER++
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
try {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; DISTCHECK_CONFIGURE_FLAGS="--enable-drafts=yes --with-docs=no" ; export DISTCHECK_CONFIGURE_FLAGS; make DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS" LD_LIBRARY_PATH="$LD_LIBRARY_PATH" distcheck'
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
currentBuild.result = 'UNSTABLE' // Jenkins should not let the verdict "improve"
|
||||||
|
sh """D="`pwd`"; B="`basename "\$D"`" ; [ "${RETRY_NUMBER}" -gt 0 ] && T="_try-${RETRY_NUMBER}" || T="" ; tar czf "test-suite_${BUILD_TAG}_\${B}\${T}.tar.gz" `find . -name '*.trs'` `find . -name '*.log'`"""
|
||||||
|
archiveArtifacts artifacts: "**/test-suite*.tar.gz", allowEmpty: true
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'echo "Are GitIgnores good after make distcheck with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('distcheck without DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITHOUT_DRAFT_API && params.DO_TEST_DISTCHECK ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-distcheck-withoutDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-nondraft'
|
||||||
|
script {
|
||||||
|
def RETRY_NUMBER = 0
|
||||||
|
retry(3) {
|
||||||
|
RETRY_NUMBER++
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
try {
|
||||||
|
sh 'CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH; DISTCHECK_CONFIGURE_FLAGS="--enable-drafts=no --with-docs=no" ; export DISTCHECK_CONFIGURE_FLAGS; make DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS" LD_LIBRARY_PATH="$LD_LIBRARY_PATH" distcheck'
|
||||||
|
}
|
||||||
|
catch (Exception e) {
|
||||||
|
currentBuild.result = 'UNSTABLE' // Jenkins should not let the verdict "improve"
|
||||||
|
sh """D="`pwd`"; B="`basename "\$D"`" ; [ "${RETRY_NUMBER}" -gt 0 ] && T="_try-${RETRY_NUMBER}" || T="" ; tar czf "test-suite_${BUILD_TAG}_\${B}\${T}.tar.gz" `find . -name '*.trs'` `find . -name '*.log'`"""
|
||||||
|
archiveArtifacts artifacts: "**/test-suite*.tar.gz", allowEmpty: true
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh 'echo "Are GitIgnores good after make distcheck without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('install with DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITH_DRAFT_API && params.DO_TEST_INSTALL ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-install-withDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-draft'
|
||||||
|
retry(3) {
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
sh """CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:\${LD_LIBRARY_PATH}"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}" DESTDIR="${params.USE_TEST_INSTALL_DESTDIR}/withDRAFT" install"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh """cd "${params.USE_TEST_INSTALL_DESTDIR}/withDRAFT" && find . -ls"""
|
||||||
|
sh 'echo "Are GitIgnores good after make install with drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('install without DRAFT') {
|
||||||
|
when { expression { return ( params.DO_BUILD_WITHOUT_DRAFT_API && params.DO_TEST_INSTALL ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-install-withoutDRAFT") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-nondraft'
|
||||||
|
retry(3) {
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
sh """CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:\${LD_LIBRARY_PATH}"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}" DESTDIR="${params.USE_TEST_INSTALL_DESTDIR}/withoutDRAFT" install"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh """cd "${params.USE_TEST_INSTALL_DESTDIR}/withoutDRAFT" && find . -ls"""
|
||||||
|
sh 'echo "Are GitIgnores good after make install without drafts? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('install with DOCS') {
|
||||||
|
when { expression { return ( params.DO_BUILD_DOCS && params.DO_TEST_INSTALL ) } }
|
||||||
|
steps {
|
||||||
|
dir("tmp/test-install-withDOCS") {
|
||||||
|
deleteDir()
|
||||||
|
unstash 'built-docs'
|
||||||
|
retry(3) {
|
||||||
|
timeout (time: "${params.USE_TEST_TIMEOUT}".toInteger(), unit: 'MINUTES') {
|
||||||
|
sh """CCACHE_BASEDIR="`pwd`" ; export CCACHE_BASEDIR; LD_LIBRARY_PATH="`pwd`/src/.libs:\${LD_LIBRARY_PATH}"; export LD_LIBRARY_PATH; make LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}" DESTDIR="${params.USE_TEST_INSTALL_DESTDIR}/withDOCS" install"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sh """cd "${params.USE_TEST_INSTALL_DESTDIR}/withDOCS" && find . -ls"""
|
||||||
|
sh 'echo "Are GitIgnores good after make install with Docs? (should have no output below)"; git status -s || if [ "${params.REQUIRE_GOOD_GITIGNORE}" = false ]; then echo "WARNING GitIgnore tests found newly changed or untracked files" >&2 ; exit 0 ; else echo "FAILED GitIgnore tests" >&2 ; exit 1; fi'
|
||||||
|
script {
|
||||||
|
if ( params.DO_CLEANUP_AFTER_BUILD ) {
|
||||||
|
deleteDir()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage ('deploy if appropriate') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
def myDEPLOY_JOB_NAME = sh(returnStdout: true, script: """echo "${params["DEPLOY_JOB_NAME"]}" """).trim();
|
||||||
|
def myDEPLOY_BRANCH_PATTERN = sh(returnStdout: true, script: """echo "${params["DEPLOY_BRANCH_PATTERN"]}" """).trim();
|
||||||
|
def myDEPLOY_REPORT_RESULT = sh(returnStdout: true, script: """echo "${params["DEPLOY_REPORT_RESULT"]}" """).trim().toBoolean();
|
||||||
|
echo "Original: DEPLOY_JOB_NAME : ${params["DEPLOY_JOB_NAME"]} DEPLOY_BRANCH_PATTERN : ${params["DEPLOY_BRANCH_PATTERN"]} DEPLOY_REPORT_RESULT : ${params["DEPLOY_REPORT_RESULT"]}"
|
||||||
|
echo "Used: myDEPLOY_JOB_NAME:${myDEPLOY_JOB_NAME} myDEPLOY_BRANCH_PATTERN:${myDEPLOY_BRANCH_PATTERN} myDEPLOY_REPORT_RESULT:${myDEPLOY_REPORT_RESULT}"
|
||||||
|
if ( (myDEPLOY_JOB_NAME != "") && (myDEPLOY_BRANCH_PATTERN != "") ) {
|
||||||
|
if ( env.BRANCH_NAME =~ myDEPLOY_BRANCH_PATTERN ) {
|
||||||
|
def GIT_URL = sh(returnStdout: true, script: """git remote -v | egrep '^origin' | awk '{print \$2}' | head -1""").trim()
|
||||||
|
def GIT_COMMIT = sh(returnStdout: true, script: 'git rev-parse --verify HEAD').trim()
|
||||||
|
def DIST_ARCHIVE = ""
|
||||||
|
if ( params.DO_DIST_DOCS ) { DIST_ARCHIVE = env.BUILD_URL + "artifact/__dist.tar.gz" }
|
||||||
|
build job: "${myDEPLOY_JOB_NAME}", parameters: [
|
||||||
|
string(name: 'DEPLOY_GIT_URL', value: "${GIT_URL}"),
|
||||||
|
string(name: 'DEPLOY_GIT_BRANCH', value: env.BRANCH_NAME),
|
||||||
|
string(name: 'DEPLOY_GIT_COMMIT', value: "${GIT_COMMIT}"),
|
||||||
|
string(name: 'DEPLOY_DIST_ARCHIVE', value: "${DIST_ARCHIVE}")
|
||||||
|
], quietPeriod: 0, wait: myDEPLOY_REPORT_RESULT, propagate: myDEPLOY_REPORT_RESULT
|
||||||
|
} else {
|
||||||
|
echo "Not deploying because branch '${env.BRANCH_NAME}' did not match filter '${myDEPLOY_BRANCH_PATTERN}'"
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
echo "Not deploying because deploy-job parameters are not set"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
success {
|
||||||
|
script {
|
||||||
|
if (currentBuild.getPreviousBuild()?.result != 'SUCCESS') {
|
||||||
|
// Uncomment desired notification
|
||||||
|
|
||||||
|
//slackSend (color: "#008800", message: "Build ${env.JOB_NAME} is back to normal.")
|
||||||
|
//emailext (to: "qa@example.com", subject: "Build ${env.JOB_NAME} is back to normal.", body: "Build ${env.JOB_NAME} is back to normal.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
failure {
|
||||||
|
// Uncomment desired notification
|
||||||
|
// Section must not be empty, you can delete the sleep once you set notification
|
||||||
|
sleep 1
|
||||||
|
//slackSend (color: "#AA0000", message: "Build ${env.BUILD_NUMBER} of ${env.JOB_NAME} ${currentBuild.result} (<${env.BUILD_URL}|Open>)")
|
||||||
|
//emailext (to: "qa@example.com", subject: "Build ${env.JOB_NAME} failed!", body: "Build ${env.BUILD_NUMBER} of ${env.JOB_NAME} ${currentBuild.result}\nSee ${env.BUILD_URL}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
1503
vendor/ZMQ/Makefile.am
vendored
Normal file
1503
vendor/ZMQ/Makefile.am
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2208
vendor/ZMQ/NEWS
vendored
Normal file
2208
vendor/ZMQ/NEWS
vendored
Normal file
File diff suppressed because it is too large
Load Diff
15
vendor/ZMQ/README.cygwin.md
vendored
Normal file
15
vendor/ZMQ/README.cygwin.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
libzmq-cygwin
|
||||||
|
=============
|
||||||
|
|
||||||
|
Definitive build fixes for cygwin (See https://github.com/zeromq/pyzmq/issues/113 for partial solution)
|
||||||
|
|
||||||
|
What's changed:
|
||||||
|
./Makefile.am Add cygwin-specific target mostly the same as mingw
|
||||||
|
./configure.ac Add cygwin-specific target mostly the same as mingw
|
||||||
|
./tests/testutil.hpp Lengthen socket timeout to 121 seconds
|
||||||
|
|
||||||
|
What's new:
|
||||||
|
./README.cygwin.md This file
|
||||||
|
./builds/cygwin Folder for cygwin-specific build files
|
||||||
|
./builds/cygwin/Makefile.cygwin Makefile for cygwin targets
|
||||||
|
|
48
vendor/ZMQ/README.doxygen.md
vendored
Normal file
48
vendor/ZMQ/README.doxygen.md
vendored
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
## Overview
|
||||||
|
|
||||||
|
The ZeroMQ lightweight messaging kernel is a library which extends the
|
||||||
|
standard socket interfaces with features traditionally provided by
|
||||||
|
specialised messaging middleware products. ZeroMQ sockets provide an
|
||||||
|
abstraction of asynchronous message queues, multiple messaging patterns,
|
||||||
|
message filtering (subscriptions), seamless access to multiple transport
|
||||||
|
protocols and more.
|
||||||
|
|
||||||
|
This documentation describes the internal software that makes up the
|
||||||
|
ZeroMQ C++ core engine, and not how to use its API, however it may help
|
||||||
|
you understand certain aspects better, such as the callgraph of an API method.
|
||||||
|
There are no instructions on using ZeroMQ within this documentation, only
|
||||||
|
the API internals that make up the software.
|
||||||
|
|
||||||
|
**Note:** this documentation is generated directly from the source code with
|
||||||
|
Doxygen. Since this project is constantly under active development, what you
|
||||||
|
are about to read may be out of date! If you notice any errors in the
|
||||||
|
documentation, or the code comments, then please send a pull request.
|
||||||
|
|
||||||
|
Please refer to the README file for anything else.
|
||||||
|
## Resources
|
||||||
|
|
||||||
|
Extensive documentation is provided with the distribution. Refer to
|
||||||
|
doc/zmq.html, or "man zmq" after you have installed libzmq on your system.
|
||||||
|
|
||||||
|
* Website: http://www.zeromq.org/
|
||||||
|
* Official API documentation: http://api.zeromq.org/
|
||||||
|
|
||||||
|
Development mailing list: zeromq-dev@lists.zeromq.org
|
||||||
|
|
||||||
|
Announcements mailing list: zeromq-announce@lists.zeromq.org
|
||||||
|
|
||||||
|
Git repository: http://github.com/zeromq/libzmq
|
||||||
|
|
||||||
|
ZeroMQ developers can also be found on the IRC channel \#zeromq, on the
|
||||||
|
Freenode network (irc.freenode.net).
|
||||||
|
|
||||||
|
## Copyright
|
||||||
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file.
|
||||||
|
The project license is specified in COPYING and COPYING.LESSER.
|
||||||
|
|
||||||
|
The names "ØMQ", "ZeroMQ", "0MQ", and the ØMQ logo are registered trademarks
|
||||||
|
of iMatix Corporation ("iMatix") and refers to either (a) the original libzmq
|
||||||
|
C++ library, or (b) the community of projects hosted in the
|
||||||
|
https://github.com/zeromq organization.
|
||||||
|
|
||||||
|
This Doxygen configuration is adapted by Hiten Pandya, for the ZeroMQ project.
|
207
vendor/ZMQ/README.md
vendored
Normal file
207
vendor/ZMQ/README.md
vendored
Normal file
@ -0,0 +1,207 @@
|
|||||||
|
# ZeroMQ
|
||||||
|
|
||||||
|
[![Build Status](https://travis-ci.org/zeromq/libzmq.png?branch=master)](https://travis-ci.org/zeromq/libzmq)
|
||||||
|
[![Build status](https://ci.appveyor.com/api/projects/status/e2ks424yrs1un3wt?svg=true)](https://ci.appveyor.com/project/zeromq/libzmq)
|
||||||
|
[![Coverage Status](https://coveralls.io/repos/github/zeromq/libzmq/badge.svg?branch=master)](https://coveralls.io/github/zeromq/libzmq?branch=master)
|
||||||
|
|
||||||
|
## Welcome
|
||||||
|
|
||||||
|
The ZeroMQ lightweight messaging kernel is a library which extends the
|
||||||
|
standard socket interfaces with features traditionally provided by
|
||||||
|
specialised messaging middleware products. ZeroMQ sockets provide an
|
||||||
|
abstraction of asynchronous message queues, multiple messaging patterns,
|
||||||
|
message filtering (subscriptions), seamless access to multiple transport
|
||||||
|
protocols and more.
|
||||||
|
|
||||||
|
## Supported platforms <a name="#platforms"/>
|
||||||
|
|
||||||
|
Libzmq is mainly written in C++98 with some optional C++11-fragments. For
|
||||||
|
configuration either autotools or CMake is employed. See below for some lists
|
||||||
|
of platforms, where libzmq has been successfully compiled on.
|
||||||
|
|
||||||
|
### Supported platforms with primary CI
|
||||||
|
|
||||||
|
| OS and version | Architecture | Compiler and version | Build system | Remarks |
|
||||||
|
|----------------------------------------|-------------------------|-------------------------------|--------------|---------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| Android NDK r20 | arm, arm64, x86, x86_64 | llvm (see NDK) | autotools | DRAFT |
|
||||||
|
| Ubuntu 14.04.5 LTS (trusty) | amd64 | clang 5.0.0 | autotools | STABLE, extras: GSSAPI, PGM, NORM, C++98 mode only |
|
||||||
|
| Ubuntu 14.04.5 LTS (trusty) | amd64 | gcc 4.8.4 | autotools | STABLE, DRAFT, extras: GSSAPI, PGM, NORM, TIPC, IPV6, also POLLER=poll, POLLER=select, also valgrind and address sanitizer executions |
|
||||||
|
| Ubuntu 14.04.5 LTS (trusty) | amd64 | gcc 4.8.4 | CMake 3.12.2 | STABLE |
|
||||||
|
| Windows Server 2012 R2 | x86 | Visual Studio 2008 | CMake 3.12.2 | DRAFT |
|
||||||
|
| Windows Server 2012 R2 | x86 | Visual Studio 2010 SP1 | CMake 3.12.2 | DRAFT |
|
||||||
|
| Windows Server 2012 R2 | x86 | Visual Studio 2012 Update 5 | CMake 3.12.2 | DRAFT |
|
||||||
|
| Windows Server 2012 R2 | x86, amd64 | Visual Studio 2013 Update 5 | CMake 3.12.2 | DRAFT, STABLE (x86 Release only), also POLLER=epoll |
|
||||||
|
| Windows Server 2012 R2 | x86 | Visual Studio 2015 Update 3 | CMake 3.12.2 | DRAFT |
|
||||||
|
| Windows Server 2016 | x86 | Visual Studio 2017 15.9.6 | CMake 3.13.3 | DRAFT |
|
||||||
|
| cygwin 3.0.0 on Windows Server 2012 R2 | amd64 | gcc 7.4.0 | CMake 3.6.2 | DRAFT |
|
||||||
|
| MSYS2 ? on Windows Server 2012 R2 | amd64 | gcc 6.4.0 | CMake ? | DRAFT |
|
||||||
|
| Mac OS X 10.13 | amd64 | Xcode 9.4.1, Apple LLVM 9.1.0 | autotools | STABLE, DRAFT |
|
||||||
|
| Mac OS X 10.13 | amd64 | Xcode 9.4.1, Apple LLVM 9.1.0 | CMake 3.11.4 | DRAFT |
|
||||||
|
|
||||||
|
Note: the platforms are regularly updated by the service providers, so this information might get out of date
|
||||||
|
without any changes on the side of libzmq. For Appveyor, refer to https://www.appveyor.com/updates/ regarding
|
||||||
|
platform updates. For travis-ci, refer to https://changelog.travis-ci.com/ regarding platform updates.
|
||||||
|
|
||||||
|
### Supported platforms with secondary CI
|
||||||
|
|
||||||
|
| OS and version | Architecture | Compiler and version | Build system | Remarks |
|
||||||
|
|------------------------------|----------------------------|----------------------|--------------|---------|
|
||||||
|
| CentOS 6 | x86, amd64 | ? | autotools | |
|
||||||
|
| CentOS 7 | amd64 | ? | autotools | |
|
||||||
|
| Debian 8.0 | x86, amd64 | ? | autotools | |
|
||||||
|
| Debian 9.0 | ARM64, x86, amd64 | ? | autotools | |
|
||||||
|
| Fedora 28 | ARM64, ARM32, amd64 | ? | autotools | |
|
||||||
|
| Fedora 29 | ARM64, ARM32, amd64 | ? | autotools | |
|
||||||
|
| Fedora Rawhide | ARM64, ARM32, amd64 | ? | autotools | |
|
||||||
|
| RedHat Enterprise Linux 7 | amd64, ppc64 | ? | autotools | |
|
||||||
|
| SuSE Linux Enterprise 12 SP4 | ARM64, amd64, ppc64, s390x | ? | autotools | |
|
||||||
|
| SuSE Linux Enterprise 15 | amd64 | ? | autotools | |
|
||||||
|
| xUbuntu 12.04 | x86, amd64 | ? | autotools | |
|
||||||
|
| xUbuntu 14.04 | x86, amd64 | ? | autotools | |
|
||||||
|
| xUbuntu 16.04 | x86, amd64 | ? | autotools | |
|
||||||
|
| xUbuntu 18.04 | x86, amd64 | ? | autotools | |
|
||||||
|
| xUbuntu 18.10 | x86, amd64 | ? | autotools | |
|
||||||
|
|
||||||
|
### Supported platforms with known active users
|
||||||
|
|
||||||
|
At the time of writing, no explicit reports have been available. Please report your experiences by opening a PR
|
||||||
|
adding an entry or moving an entry from the section below.
|
||||||
|
|
||||||
|
Under "last report", please name either the SHA1 in case of an unreleased version, or the version number in
|
||||||
|
case of a released version.
|
||||||
|
|
||||||
|
| OS and version | Architecture | Compiler and version | Build system | Last report | Remarks |
|
||||||
|
|----------------|-------------------|----------------------|--------------|-------------------------|---------|
|
||||||
|
| Solaris 10 | x86, amd64, sparc | GCC 8.1.0 | CMake | 2019/03/18 | |
|
||||||
|
| DragonFly BSD | amd64 | gcc 8.3 | autotools | 2018/08/07 git-72854e63 | |
|
||||||
|
| IBM i | ppc64 | gcc 6.3 | autotools | 2019/10/02 git-25320a3 | |
|
||||||
|
| QNX 7.0 | x86_64 | gcc 5.4.0 | CMake | 4.3.2 | |
|
||||||
|
|
||||||
|
|
||||||
|
### Supported platforms without known active users
|
||||||
|
|
||||||
|
Note: this list is incomplete and inaccurate and still needs some work.
|
||||||
|
|
||||||
|
| OS and version | Architecture | Compiler and version | Build system | Remarks |
|
||||||
|
|------------------------|--------------|--------------------------|------------------|---------|
|
||||||
|
| Any Linux distribution | x86, amd64 | gcc ?+, clang ?+, icc ?+ | autotools, CMake | |
|
||||||
|
| SunOS, Solaris | x86, amd64 | SunPro | autotools, CMake | |
|
||||||
|
| GNU/kFreeBSD | ? | ? | autotools, CMake | |
|
||||||
|
| FreeBSD | ? | ? | autotools, CMake | |
|
||||||
|
| NetBSD | ? | ? | autotools, CMake | |
|
||||||
|
| OpenBSD | ? | ? | autotools, CMake | |
|
||||||
|
| DragonFly BSD | amd64 | gcc 8.3 | autotools, CMake | |
|
||||||
|
| HP-UX | ? | ? | autotools, CMake | |
|
||||||
|
| GNU/Hurd | ? | ? | autotools | |
|
||||||
|
| VxWorks 6.8 | ? | ? | ? | |
|
||||||
|
| Windows CE | ? | ? | ? | |
|
||||||
|
| Windows UWP | ? | ? | ? | |
|
||||||
|
| OpenVMS | ? | ? | ? | |
|
||||||
|
|
||||||
|
### Unsupported platforms
|
||||||
|
|
||||||
|
| OS and version | Architecture | Compiler and version | Remarks |
|
||||||
|
|----------------|--------------|----------------------|-------------------------------------------------------------------------|
|
||||||
|
| QNX 6.3 | ? | gcc 3.3.5 | see #3371, support was added by a user, but not contributed to upstream |
|
||||||
|
| Windows 10 | ARM, ARM64 | Visual Studio 2017 | see #3366, probably only minor issues |
|
||||||
|
|
||||||
|
For more details, see [here](SupportedPlatforms.md).
|
||||||
|
|
||||||
|
For some platforms (Linux, Mac OS X), [prebuilt binary packages are supplied by the ZeroMQ organization](#installation).
|
||||||
|
For other platforms, you need to [build your own binaries](#build).
|
||||||
|
|
||||||
|
## Installation of binary packages <a name="installation"/>
|
||||||
|
|
||||||
|
### Linux
|
||||||
|
|
||||||
|
For Linux users, pre-built binary packages are available for most distributions.
|
||||||
|
Note that DRAFT APIs can change at any time without warning, pick a STABLE build to
|
||||||
|
avoid having them enabled.
|
||||||
|
|
||||||
|
#### Latest releases
|
||||||
|
|
||||||
|
##### DEB
|
||||||
|
|
||||||
|
[![OBS release stable](https://img.shields.io/badge/OBS%20master-stable-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Arelease-stable&package=libzmq3-dev)
|
||||||
|
[![OBS release draft](https://img.shields.io/badge/OBS%20master-draft-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Arelease-draft&package=libzmq3-dev)
|
||||||
|
|
||||||
|
##### RPM
|
||||||
|
|
||||||
|
[![OBS release stable](https://img.shields.io/badge/OBS%20master-stable-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Arelease-stable&package=zeromq-devel)
|
||||||
|
[![OBS release draft](https://img.shields.io/badge/OBS%20master-draft-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Arelease-draft&package=zeromq-devel)
|
||||||
|
|
||||||
|
#### Bleeding edge packages
|
||||||
|
|
||||||
|
##### DEB
|
||||||
|
|
||||||
|
[![OBS release stable](https://img.shields.io/badge/OBS%20master-stable-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Agit-stable&package=libzmq3-dev)
|
||||||
|
[![OBS release draft](https://img.shields.io/badge/OBS%20master-draft-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Agit-draft&package=libzmq3-dev)
|
||||||
|
|
||||||
|
##### RPM
|
||||||
|
|
||||||
|
[![OBS release stable](https://img.shields.io/badge/OBS%20master-stable-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Agit-stable&package=zeromq-devel)
|
||||||
|
[![OBS release draft](https://img.shields.io/badge/OBS%20master-draft-yellow.svg)](http://software.opensuse.org/download.html?project=network%3Amessaging%3Azeromq%3Agit-draft&package=zeromq-devel)
|
||||||
|
|
||||||
|
#### Example: Debian 9 latest release, no DRAFT apis
|
||||||
|
|
||||||
|
echo "deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/release-stable/Debian_9.0/ ./" >> /etc/apt/sources.list
|
||||||
|
wget https://download.opensuse.org/repositories/network:/messaging:/zeromq:/release-stable/Debian_9.0/Release.key -O- | sudo apt-key add
|
||||||
|
apt-get install libzmq3-dev
|
||||||
|
|
||||||
|
### OSX
|
||||||
|
|
||||||
|
For OSX users, packages are available via brew.
|
||||||
|
|
||||||
|
brew install zeromq
|
||||||
|
|
||||||
|
## Build from sources <a name="build"/>
|
||||||
|
|
||||||
|
To build from sources, see the INSTALL file included with the distribution.
|
||||||
|
|
||||||
|
### Android
|
||||||
|
|
||||||
|
To build from source, see [README](./builds/android/README.md) file in the
|
||||||
|
android build directory.
|
||||||
|
|
||||||
|
## Resources
|
||||||
|
|
||||||
|
Extensive documentation is provided with the distribution. Refer to
|
||||||
|
doc/zmq.html, or "man zmq" after you have installed libzmq on your system.
|
||||||
|
|
||||||
|
Website: http://www.zeromq.org/
|
||||||
|
|
||||||
|
Development mailing list: zeromq-dev@lists.zeromq.org
|
||||||
|
Announcements mailing list: zeromq-announce@lists.zeromq.org
|
||||||
|
|
||||||
|
Git repository: http://github.com/zeromq/libzmq
|
||||||
|
|
||||||
|
ZeroMQ developers can also be found on the IRC channel #zeromq, on the
|
||||||
|
Freenode network (irc.freenode.net).
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
The project license is specified in COPYING and COPYING.LESSER.
|
||||||
|
|
||||||
|
libzmq is free software; you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
||||||
|
by the Free Software Foundation; either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
As a special exception, the Contributors give you permission to link
|
||||||
|
this library with independent modules to produce an executable,
|
||||||
|
regardless of the license terms of these independent modules, and to
|
||||||
|
copy and distribute the resulting executable under terms of your choice,
|
||||||
|
provided that you also meet, for each linked independent module, the
|
||||||
|
terms and conditions of the license of that module. An independent
|
||||||
|
module is a module which is not derived from or based on this library.
|
||||||
|
If you modify this library, you must extend this exception to your
|
||||||
|
version of the library.
|
||||||
|
|
||||||
|
libzmq 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 GNU Lesser General Public
|
||||||
|
License for more details.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
This project uses [C4(Collective Code Construction Contract)](https://rfc.zeromq.org/spec:42/C4/) process for contributions.
|
15
vendor/ZMQ/RELICENSE/AnCaPepe.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/AnCaPepe.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Leonardo J. Consoni
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "AnCaPepe", with
|
||||||
|
commit author "Leonardo José Consoni <consoni_2519@hotmail.com>", are copyright of Leonardo J. Consoni.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Leonardo José Consoni
|
||||||
|
2017/03/19
|
15
vendor/ZMQ/RELICENSE/AndreLouisCaron.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/AndreLouisCaron.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Andre Caron
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "AndreLouisCaron", with
|
||||||
|
commit author "Andre Caron <andre.l.caron@gmail.com>", are copyright of Andre Caron.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Andre Caron
|
||||||
|
2017/03/19
|
13
vendor/ZMQ/RELICENSE/Asmod4n.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/Asmod4n.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Hendrik Beskow
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Asmod4n", with
|
||||||
|
commit author "Asmod4n Asmod4n@users.noreply.github.com", are copyright of Hendrik Beskow.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Hendrik Beskow
|
||||||
|
2017/04/21
|
16
vendor/ZMQ/RELICENSE/AxelNennker.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/AxelNennker.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Axel Nennker that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "AxelNennker", with
|
||||||
|
commit author "Axel Nennker <axel@nennker.de>", are
|
||||||
|
copyright of Axel Nennker. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Axel Nennker
|
||||||
|
2019/08/11
|
15
vendor/ZMQ/RELICENSE/Bklyn.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/Bklyn.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Caleb Epstein
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Bklyn", with
|
||||||
|
commit author "Caleb Epstein <cae@bklyn.org>", are copyright of Caleb Epstein.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Caleb Epstein
|
||||||
|
2017/03/21
|
15
vendor/ZMQ/RELICENSE/Botje.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/Botje.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Dries Harnie
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Botje", with
|
||||||
|
commit author "Dries Harnie <dries@harnie.be>", are copyright of Dries Harnie.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Dries Harnie
|
||||||
|
2019/10/31
|
15
vendor/ZMQ/RELICENSE/C-Sir.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/C-Sir.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by C-Sir
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "C-Sir", with
|
||||||
|
commit author "C-Sir <942510829@qq.com>", are copyright of C-Sir.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
C-Sir
|
||||||
|
2020/09/28
|
15
vendor/ZMQ/RELICENSE/CommanderBubble.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/CommanderBubble.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Michael Lloyd
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "CommanderBubble", with
|
||||||
|
commit author "Michael Lloyd <commander.bubble@gmail.com>", are copyright of Michael Lloyd.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Michael Lloyd
|
||||||
|
2019/02/23
|
16
vendor/ZMQ/RELICENSE/DaiyuHurst.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/DaiyuHurst.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Daiyu Hurst that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "daiyuhurst", with
|
||||||
|
commit author "Daiyu Hurst <daiyu.hurst@gmail.com>", are
|
||||||
|
copyright of Daiyu Hurst. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Daiyu Hurst
|
||||||
|
2019/08/31
|
16
vendor/ZMQ/RELICENSE/Eelis.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/Eelis.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Eelis van der Weegen that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Eelis", with
|
||||||
|
commit author "Eelis van der Weegen <eelis@eelis.net>", are
|
||||||
|
copyright of Eelis van der Weegen. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Eelis van der Weegen
|
||||||
|
2019/02/22
|
15
vendor/ZMQ/RELICENSE/FrancoFichtner.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/FrancoFichtner.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Franco Fichtner that grants permission to relicense
|
||||||
|
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public
|
||||||
|
License v2 (MPLv2) or any other Open Source Initiative approved license
|
||||||
|
chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "fichtner", with
|
||||||
|
commit author "Franco Fichtner <franco@lastsummer.de>", are copyright
|
||||||
|
of Franco Fichtner. This document hereby grants the libzmq project
|
||||||
|
team to relicense libzmq, including all past, present and future
|
||||||
|
contributions of the author listed above.
|
||||||
|
|
||||||
|
Franco Fichtner
|
||||||
|
2017/03/21
|
13
vendor/ZMQ/RELICENSE/FredTreg.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/FredTreg.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Frédéric Trégon
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "FredTreg", with
|
||||||
|
commit author "Frederic Tregon <frederic.tregon@gmail.com>", are copyright of Frédéric Trégon.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Frédéric Trégon
|
||||||
|
2020/02/03
|
17
vendor/ZMQ/RELICENSE/Hugne.md
vendored
Normal file
17
vendor/ZMQ/RELICENSE/Hugne.md
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Erik Hugne
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Hugne", with
|
||||||
|
commit author "erik.hugne@gmail.com", are copyright of Erik Hugne.
|
||||||
|
Commits made by author "erik.hugne@ericsson.com" are NOT covered by this
|
||||||
|
statement.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Erik Hugne
|
||||||
|
2017/03/22
|
16
vendor/ZMQ/RELICENSE/JohanMabille.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/JohanMabille.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Johan Mabille
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "JohanMabille", with
|
||||||
|
commit author "Johan Mabille johan.mabille@gmail.com", are copyright of Johan Mabille.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Johan Mabille
|
||||||
|
2017/03/20
|
||||||
|
|
15
vendor/ZMQ/RELICENSE/JonDyte.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/JonDyte.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Jon Dyte
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "JonDyte", with
|
||||||
|
commit author "Jon Dyte <jon@totient.co.uk>", are copyright of Jon Dyte.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Jon Dyte
|
||||||
|
2019/10/03
|
15
vendor/ZMQ/RELICENSE/KLNikita.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/KLNikita.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Nikita Kozlov
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "KLNikita", with
|
||||||
|
commit author "nikita kozlov <nikita@elyzion.net>", are copyright of Nikita Kozlov .
|
||||||
|
This document hereby grants the libzmq project team to relicense
|
||||||
|
libzmq,
|
||||||
|
including all past, present and future contributions of the author
|
||||||
|
listed above.
|
||||||
|
|
||||||
|
Nikita Kozlov
|
||||||
|
6 February 2020
|
15
vendor/ZMQ/RELICENSE/MartinGrigorov.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/MartinGrigorov.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Martin Grigorov
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "martin-g", with
|
||||||
|
commit author "Martin Grigorov", are copyright of Martin Grigorov.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Martin Grigorov
|
||||||
|
2021/01/11
|
13
vendor/ZMQ/RELICENSE/Neopallium.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/Neopallium.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Robert G. Jakabosky
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Neopallium", with
|
||||||
|
commit author "Robert G. Jakabosky <bobby@sharedrealm.com>", are copyright of Robert G. Jakabosky.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Robert Gabriel Jakabosky
|
||||||
|
2019/08/17
|
15
vendor/ZMQ/RELICENSE/Quuxplusone.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/Quuxplusone.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Arthur O'Dwyer
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Quuxplusone", with
|
||||||
|
commit author "Arthur O'Dwyer <arthur@push.am>", are copyright of Arthur O'Dwyer.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Arthur O'Dwyer
|
||||||
|
2019/02/17
|
23
vendor/ZMQ/RELICENSE/README.md
vendored
Normal file
23
vendor/ZMQ/RELICENSE/README.md
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Permission to Relicense under MPLV2
|
||||||
|
|
||||||
|
This directory collects grants from individuals and firms that hold
|
||||||
|
copyrights in ZeroMQ to permit licensing the ZeroMQ code under
|
||||||
|
the [Mozilla Public License, version
|
||||||
|
2](https://www.mozilla.org/en-US/MPL/2.0/). See [GitHub Pull
|
||||||
|
Request #1917](https://github.com/zeromq/libzmq/pull/1917),
|
||||||
|
the [0MQ Licensing Page](http://zeromq.org/area:licensing) and
|
||||||
|
[original iMatix zeromq-dev license
|
||||||
|
grant](http://lists.zeromq.org/pipermail/zeromq-dev/2016-April/030288.html)
|
||||||
|
for some background information.
|
||||||
|
|
||||||
|
Please create a separate file in this directory for each individual
|
||||||
|
or firm holding copyright in ZeroMQ, named after the individual or
|
||||||
|
firm holding the copyright.
|
||||||
|
|
||||||
|
Each patch must be made with a GitHub handle that is clearly
|
||||||
|
associated with the copyright owner, to guarantee the identity of
|
||||||
|
the signatory. Please avoid changing the files created by other
|
||||||
|
individuals or firms granting a copyright license over their
|
||||||
|
copyrights (if rewording is required contact them and ask them to
|
||||||
|
submit an updated version). This makes it easier to verify that
|
||||||
|
the license grant was made by an authorized GitHub account.
|
16
vendor/ZMQ/RELICENSE/RPGillespie6.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/RPGillespie6.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Bryan Gillespie (RPGillespie6)
|
||||||
|
that grants permission to relicense his copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "RPGillespie6", with
|
||||||
|
commit author "Bryan Gillespie <rpgillespie6@gmail.com>", are copyright of Bryan Gillespie.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed
|
||||||
|
above.
|
||||||
|
|
||||||
|
Bryan Gillespie
|
||||||
|
2019/09/06
|
6
vendor/ZMQ/RELICENSE/Ricardicus.md
vendored
Normal file
6
vendor/ZMQ/RELICENSE/Ricardicus.md
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
This is a statement by Rickard Hallerbäck that grants permission to relicense its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open Source Initiative approved license chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "Ricardicus", with commit author "Rickard Hallerbäck", are copyright of Rickard Hallerbäck. This document hereby grants the libzmq project team to relicense libzmq, including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Rickard Hallerbäck 2020/02/28
|
15
vendor/ZMQ/RELICENSE/SRombauts.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/SRombauts.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Sébastien Rombauts
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "SRombauts", with
|
||||||
|
commit author "Sébastien Rombauts", are copyright of Sébastien Rombauts.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Sébastien Rombauts
|
||||||
|
2017/03/21
|
15
vendor/ZMQ/RELICENSE/SergheiNovac.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/SergheiNovac.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Serghei Novac
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "carbofos", with
|
||||||
|
commit author "Serghei Novac <serghei.novac@epydoc.com>", are copyright of Serghei Novac.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Serghei Novac
|
||||||
|
2019/03/05
|
15
vendor/ZMQ/RELICENSE/StephaneVales.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/StephaneVales.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Stephane Vales
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "StephaneVales", with
|
||||||
|
commit author "Stephane Vales <7755128+stvales@users.noreply.github.com>", are copyright of Stephane Vales.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Stephane Vales
|
||||||
|
2020/08/06
|
16
vendor/ZMQ/RELICENSE/SylvainCorlay.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/SylvainCorlay.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Sylvain Corlay
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "SylvainCorlay", with
|
||||||
|
commit author "Sylvain Corlay sylvain.corlay@gmail.com", are copyright of Sylvain Corlay .
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Sylvain Corlay
|
||||||
|
2017/03/20
|
||||||
|
|
15
vendor/ZMQ/RELICENSE/TTimo.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/TTimo.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Timothee Besset
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "TTimo", with
|
||||||
|
commit author "Timothee Besset <ttimo@ttimo.net>", are copyright of Timothee Besset.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Timothee Besset
|
||||||
|
2017/03/19
|
13
vendor/ZMQ/RELICENSE/ThePrez.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/ThePrez.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Jesse Gorzinski
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "ThePrez", with
|
||||||
|
commit author "ThePrez <jgorzinski@gmail.com>", are copyright of Jesse Gorzinski.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Jesse Gorzinski
|
||||||
|
2019/10/02
|
15
vendor/ZMQ/RELICENSE/TobiSchluter.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/TobiSchluter.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Tobias Schlüter
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "TobiSchluter", with
|
||||||
|
commit author "TobiSchluter", are copyright of Tobias Schlüter .
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Tobias Schlüter
|
||||||
|
2019/09/13
|
15
vendor/ZMQ/RELICENSE/WenbinHou.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/WenbinHou.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Wenbin Hou
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "WenbinHou", with
|
||||||
|
commit author "Wenbin Hou <houwenbin@pku.edu.cn>", are copyright of Wenbin Hou.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Wenbin Hou
|
||||||
|
2018/05/16
|
17
vendor/ZMQ/RELICENSE/a4z.md
vendored
Normal file
17
vendor/ZMQ/RELICENSE/a4z.md
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Harald Achitz
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "a4z", with
|
||||||
|
commit author "Harald Achitz <harald.achitz@gmail.com>" or
|
||||||
|
"Harald Achitz <harald.achitz@tritech.se>" or
|
||||||
|
"Harald Achitz <harald.achitz@getinge.com>", are copyright of Harald Achitz.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Harald Achitz
|
||||||
|
2017/03/21
|
15
vendor/ZMQ/RELICENSE/abbradar.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/abbradar.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Nikolay Amiantov that grants permission to relicense his
|
||||||
|
copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License
|
||||||
|
v2 (MPLv2) or any other Open Source Initiative approved license chosen by the
|
||||||
|
current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "abbradar", with commit
|
||||||
|
author "Nikolay Amiantov <ab@fmap.me>", are copyright of Nikolay Amiantov.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed
|
||||||
|
above.
|
||||||
|
|
||||||
|
Nikolay Amiantov
|
||||||
|
2017/03/24
|
15
vendor/ZMQ/RELICENSE/ackalker.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/ackalker.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Alain Kalker
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "ackalker", with
|
||||||
|
commit author "Alain Kalker <a.c.kalker@gmail.com>", are copyright of Alain Kalker.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Alain Kalker
|
||||||
|
2019/05/23
|
14
vendor/ZMQ/RELICENSE/acsearle.md
vendored
Normal file
14
vendor/ZMQ/RELICENSE/acsearle.md
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Liquid Instruments
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "acsearle", with
|
||||||
|
commit author "Antony Searle", are copyright of Liquid Instruments .
|
||||||
|
This document hereby grants the libzmq project team to relicense
|
||||||
|
libzmq, including all past, present and future contributions of the author
|
||||||
|
listed above.
|
||||||
|
|
||||||
|
Antony Searle
|
||||||
|
2020/02/03
|
15
vendor/ZMQ/RELICENSE/agronholm.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/agronholm.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Alex Grönholm
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "agronholm", with
|
||||||
|
commit author "Alex Grönholm <alex.gronholm+git@nextday.fi>", are copyright of Alex Grönholm.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Alex Grönholm
|
||||||
|
2017/03/19
|
15
vendor/ZMQ/RELICENSE/aixxe.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/aixxe.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by aixxe (aixxe)
|
||||||
|
that grants permission to relicense his copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "aixxe", with commit author
|
||||||
|
"aixxe <me@aixxe.net>" are copyright of aixxe.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
aixxe
|
||||||
|
2019/07/25
|
7
vendor/ZMQ/RELICENSE/ambitslix.md
vendored
Normal file
7
vendor/ZMQ/RELICENSE/ambitslix.md
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Attila Mark Sz that grants permission to relicense its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open Source Initiative approved license chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "ambitslix", with commit author "gougolith@gmail.com", are copyright of Attila Mark. This document hereby grants the libzmq project team to relicense libzmq, including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Attila Mark Sz 2020/11/10
|
15
vendor/ZMQ/RELICENSE/amuraru.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/amuraru.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Adrian Muraru
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "amuraru", with
|
||||||
|
commit author "Adrian Muraru <adi.muraru@gmail.com>", are copyright of Adrian Muraru.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Adrian Muraru
|
||||||
|
2017/03/20
|
15
vendor/ZMQ/RELICENSE/answeroo.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/answeroo.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Ming Ji
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "answeroo", with
|
||||||
|
commit author "answeroo <jiming@yafco.com>", are copyright of Ming Ji.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Ming Ji
|
||||||
|
2018/08/20
|
17
vendor/ZMQ/RELICENSE/antonrd.md
vendored
Normal file
17
vendor/ZMQ/RELICENSE/antonrd.md
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Anton Dimitrov that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "antonrd", with
|
||||||
|
commit author "Anton Dimitrov <dimitrov.anton@gmail.com>", are
|
||||||
|
copyright of Anton Dimitrov. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Anton Dimitrov
|
||||||
|
|
||||||
|
2018/10/01
|
16
vendor/ZMQ/RELICENSE/ardrabczyk.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/ardrabczyk.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Arkadiusz Drabczyk (ardrabczyk) that grants
|
||||||
|
permission to relicense his copyrights in the libzmq C++ library
|
||||||
|
(ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open
|
||||||
|
Source Initiative approved license chosen by the current ZeroMQ BDFL
|
||||||
|
(Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "ardrabczyk", with
|
||||||
|
commit author "Arkadiusz Drabczyk <arkadiusz@drabczyk.org>", are
|
||||||
|
copyright of Arkadiusz Drabczyk. This document hereby grants the
|
||||||
|
libzmq project team to relicense libzmq, including all past, present
|
||||||
|
and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Arkadiusz Drabczyk
|
||||||
|
2020/11/10
|
15
vendor/ZMQ/RELICENSE/arsenm.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/arsenm.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Matthew Arsenault
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "arsenm", with
|
||||||
|
commit author "Matt Arsenault <arsenm2@gmail.com>", are copyright of Matthew Arsenault.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Matthew Arsenault
|
||||||
|
2017/10/12
|
15
vendor/ZMQ/RELICENSE/asafkahlon.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/asafkahlon.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Asaf Kahlon
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "asafkahlon", with
|
||||||
|
commit author "Asaf Kahlon asafka7@gmail.com", are copyright of Asaf Kahlon.
|
||||||
|
This document hereby grants the libzmq project team to relicense
|
||||||
|
libzmq,
|
||||||
|
including all past, present and future contributions of the author
|
||||||
|
listed above.
|
||||||
|
|
||||||
|
Asaf Kahlon
|
||||||
|
2020/02/05
|
15
vendor/ZMQ/RELICENSE/aseering.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/aseering.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Adam Seering
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commit made by the Github handle "aseering", with
|
||||||
|
commit author "Adam Seering <aseering@gmail.com>", are copyright of Adam Seering.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Adam Seering
|
||||||
|
2017/03/20
|
15
vendor/ZMQ/RELICENSE/atomashpolskiy.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/atomashpolskiy.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Andrei Tomashpolskiy
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "atomashpolskiy", with
|
||||||
|
commit author "Andrei Tomashpolskiy <nordmann89@gmail.com>", are copyright of Andrei Tomashpolskiy .
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Andrei Tomashpolskiy
|
||||||
|
2019/08/22
|
16
vendor/ZMQ/RELICENSE/banburybill.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/banburybill.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Jim Hague that grants permission to relicense
|
||||||
|
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla
|
||||||
|
Public License v2 (MPLv2) or any other Open Source Initiative approved
|
||||||
|
license chosen by the current ZeroMQ BDFL (Benevolent Dictator for
|
||||||
|
Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "banburybill", with
|
||||||
|
commit author "Jim Hague <jim.hague@acm.org>", are copyright of Jim
|
||||||
|
Hague. This document hereby grants the libzmq project team to
|
||||||
|
relicense libzmq, including all past, present and future contributions
|
||||||
|
of the author listed above.
|
||||||
|
|
||||||
|
Jim Hague
|
||||||
|
2017/03/20
|
13
vendor/ZMQ/RELICENSE/bbdb68.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/bbdb68.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Bruno Bodin
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bbdb68", with
|
||||||
|
commit author "Bruno Bodin <brunobodin@gmail.com>", are copyright of Bruno Bodin .
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Bruno Bodin
|
||||||
|
2017/04/04
|
13
vendor/ZMQ/RELICENSE/bebopagogo.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/bebopagogo.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Brian Adamson that grants permission to relicense its
|
||||||
|
copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License v2
|
||||||
|
(MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bebopagogo", with commit
|
||||||
|
author "bebopagogo <bebopagogo@users.noreply.github.com>" and "Brian Adamson
|
||||||
|
<badamson@gmail.com>", are copyright of Brian Adamson. This document hereby grants
|
||||||
|
the libzmq project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Brian Adamson 2019/08/11 s
|
13
vendor/ZMQ/RELICENSE/benjdero.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/benjdero.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Benjamin Deroche
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "benjdero", with
|
||||||
|
commit author "Benjamin Deroche", are copyright of Benjamin Deroche.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Benjamin Deroche
|
||||||
|
2019/10/26
|
16
vendor/ZMQ/RELICENSE/bjoto.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/bjoto.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Björn Töpel that grants permission to relicense
|
||||||
|
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla
|
||||||
|
Public License v2 (MPLv2) or any other Open Source Initiative approved
|
||||||
|
license chosen by the current ZeroMQ BDFL (Benevolent Dictator for
|
||||||
|
Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bjoto", with
|
||||||
|
commit author "Bjorn Topel <bjorn.topel@gmail.com>", are copyright of
|
||||||
|
Björn Töpel. This document hereby grants the libzmq project team to
|
||||||
|
relicense libzmq, including all past, present and future contributions
|
||||||
|
of the author listed above.
|
||||||
|
|
||||||
|
Björn Töpel
|
||||||
|
2017/03/26
|
16
vendor/ZMQ/RELICENSE/bjovke.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/bjovke.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Jovan Bunjevacki that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bjovke", with
|
||||||
|
commit author "Jovan Bunjevacki <bjovan@gmail.com>", are
|
||||||
|
copyright of Jovan Bunjevacki. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Jovan Bunjevacki
|
||||||
|
2017/04/04
|
16
vendor/ZMQ/RELICENSE/bl0x.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/bl0x.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Bastian Löher that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bl0x", with
|
||||||
|
commit author "Bastian Löher <me@l-dot.de>", are
|
||||||
|
copyright of Bastian Löher. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Bastian Löher
|
||||||
|
2019/08/01
|
17
vendor/ZMQ/RELICENSE/bluca.md
vendored
Normal file
17
vendor/ZMQ/RELICENSE/bluca.md
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Luca Boccassi (bluca)
|
||||||
|
that grants permission to relicense his copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bluca", with
|
||||||
|
commit author "Luca Boccassi <luca.boccassi@gmail.com>" or
|
||||||
|
"Luca Boccassi <bluca@debian.org>", are copyright of Luca Boccassi.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed
|
||||||
|
above.
|
||||||
|
|
||||||
|
Luca Boccassi
|
||||||
|
2019/02/16
|
7
vendor/ZMQ/RELICENSE/boxkey.md
vendored
Normal file
7
vendor/ZMQ/RELICENSE/boxkey.md
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by boxkey that grants permission to relicense its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open Source Initiative approved license chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "boxkey", with commit author "boxkey [289844900@qq.com](289844900@qq.com)", are copyright of boxkey. This document hereby grants the libzmq project team to relicense libzmq, including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
boxkey 2020/11/30
|
13
vendor/ZMQ/RELICENSE/bprager.md
vendored
Normal file
13
vendor/ZMQ/RELICENSE/bprager.md
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Bernd Prager
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bprager", with
|
||||||
|
commit author "Bernd Prager <bernd@prager.ws>", are copyright of Bernd Prager.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Bernd Prager
|
||||||
|
2017/03/22
|
15
vendor/ZMQ/RELICENSE/brett-cameron.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/brett-cameron.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Brett Cameron
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "brc859844", with
|
||||||
|
commit author "Brett Cameron <brett.r.cameron@gmail.com>" or
|
||||||
|
"Brett Cameron <brett.cameron@vmssoftware.com>", are copyright of Brett Cameron.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Brett Russell Cameron
|
||||||
|
2019/02/25
|
||||||
|
|
15
vendor/ZMQ/RELICENSE/brian-peloton.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/brian-peloton.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Brian Silverman
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "brian-peloton", with
|
||||||
|
commit author "brian@peloton-tech.com", are copyright of Brian Silverman .
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Brian Silverman
|
||||||
|
2019/08/14
|
15
vendor/ZMQ/RELICENSE/brocade_communications_systems.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/brocade_communications_systems.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
## Brocade Communications Systems Inc.
|
||||||
|
|
||||||
|
This is a statement by Brocade Communications Systems Inc. (Brocade)
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bluca", with
|
||||||
|
commit author "Luca Boccassi <luca.boccassi@gmail.com>" or
|
||||||
|
"Luca Boccassi <lboccass@brocade.com>", are copyright of Brocade.
|
||||||
|
This permission to relicense includes all past, present and future
|
||||||
|
contributions of Brocade employees.
|
||||||
|
|
||||||
|
Luca Boccassi
|
||||||
|
Software Engineer, Brocade Communications Systems Inc.
|
||||||
|
2016-05-16
|
16
vendor/ZMQ/RELICENSE/brubakerjeff.md
vendored
Normal file
16
vendor/ZMQ/RELICENSE/brubakerjeff.md
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Jeff Brubaker that grants permission to
|
||||||
|
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||||
|
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||||
|
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||||
|
Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "brubakerjeff", with
|
||||||
|
commit author "Jeff Brubaker <brubaker.jeff@gmail.com>", are
|
||||||
|
copyright of Jeff Brubaker. This document hereby grants the libzmq
|
||||||
|
project team to relicense libzmq, including all past, present and
|
||||||
|
future contributions of the author listed above.
|
||||||
|
|
||||||
|
Jeff Brubaker
|
||||||
|
2018/11/18
|
15
vendor/ZMQ/RELICENSE/bwbuchanan.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/bwbuchanan.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Brian Buchanan
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "bwbuchanan", with
|
||||||
|
commit author "Brian Buchanan <bwb@holo.org>" or "Brian Buchanan <brian@tiogalake.com>", are copyright of Brian Buchanan.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Brian Buchanan
|
||||||
|
2017/03/23
|
15
vendor/ZMQ/RELICENSE/c-rack.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/c-rack.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Constantin Rack
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "c-rack", with
|
||||||
|
commit author "Constantin Rack <constantin.rack@gmail.com>", are copyright of Constantin Rack.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Constantin Rack
|
||||||
|
2017/03/20
|
15
vendor/ZMQ/RELICENSE/c-zhao-3g.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/c-zhao-3g.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Lingqiao Zhao
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "s-zhao-3g", with
|
||||||
|
commit author "s-zhao-3g <forever.3g@hotmail.com>", are copyright of Lingqiao Zhao.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Lingqiao Zhao
|
||||||
|
2021/01/26
|
14
vendor/ZMQ/RELICENSE/calid.md
vendored
Normal file
14
vendor/ZMQ/RELICENSE/calid.md
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Permission to Relicense under MPLv2
|
||||||
|
|
||||||
|
This is a statement by Dylan Cali
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "calid", with
|
||||||
|
commit author "Dylan Cali <calid1984@gmail.com>", are copyright of Dylan Cali.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Dylan Cali
|
||||||
|
|
||||||
|
2019/02/17
|
15
vendor/ZMQ/RELICENSE/camachat.md
vendored
Normal file
15
vendor/ZMQ/RELICENSE/camachat.md
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||||
|
|
||||||
|
This is a statement by Eric Camachat
|
||||||
|
that grants permission to relicense its copyrights in the libzmq C++
|
||||||
|
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||||
|
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||||
|
BDFL (Benevolent Dictator for Life).
|
||||||
|
|
||||||
|
A portion of the commits made by the Github handle "camachat", with
|
||||||
|
commit author "Eric Camachat <eric@camachat.org>", are copyright of Eric Camachat.
|
||||||
|
This document hereby grants the libzmq project team to relicense libzmq,
|
||||||
|
including all past, present and future contributions of the author listed above.
|
||||||
|
|
||||||
|
Eric L. Camachat
|
||||||
|
March 20, 2017
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user