/* Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license ( the "Software" ) to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module derelict.nanomsg.nanomsg; public { import derelict.nanomsg.types; import derelict.nanomsg.functions; } private { import derelict.util.loader; import derelict.util.system; static if( Derelict_OS_Windows ) enum libNames = "nanomsg.dll"; else static assert( 0, "Need to implement Nanomsg2 libNames for this operating system." ); } /* This function is not part of the public interface, but Nanomsg expects it to be called before any subsystems have been intiailized. Normally, this happens via linking with libNanomsgmain, but since that doesn't happen when using Derelict, then the loader must load this function and call it before the load method returns. Otherwise, bad things can happen. */ private extern( C ) nothrow alias da_Nanomsg_SetMainReady = void function(); class DerelictNanomsgLoader : SharedLibLoader { public this() { super( libNames ); } protected override void loadSymbols() { bindFunc(cast(void**)&nn_errno, "nn_errno"); bindFunc(cast(void**)&nn_strerror, "nn_strerror"); bindFunc(cast(void**)&nn_symbol, "nn_symbol"); bindFunc(cast(void**)&nn_symbol_info, "nn_symbol_info"); bindFunc(cast(void**)&nn_term, "nn_term"); bindFunc(cast(void**)&nn_allocmsg, "nn_allocmsg"); bindFunc(cast(void**)&nn_reallocmsg, "nn_reallocmsg"); bindFunc(cast(void**)&nn_freemsg, "nn_freemsg"); version(none) { //... } bindFunc(cast(void**)&nn_socket, "nn_socket"); bindFunc(cast(void**)&nn_close, "nn_close"); bindFunc(cast(void**)&nn_setsockopt, "nn_setsockopt"); bindFunc(cast(void**)&nn_getsockopt, "nn_getsockopt"); bindFunc(cast(void**)&nn_bind, "nn_bind"); bindFunc(cast(void**)&nn_connect, "nn_connect"); bindFunc(cast(void**)&nn_shutdown, "nn_shutdown"); bindFunc(cast(void**)&nn_send, "nn_send"); bindFunc(cast(void**)&nn_recv, "nn_recv"); bindFunc(cast(void**)&nn_sendmsg, "nn_sendmsg"); bindFunc(cast(void**)&nn_recvmsg, "nn_recvmsg"); bindFunc(cast(void**)&nn_poll, "nn_poll"); bindFunc(cast(void**)&nn_device, "nn_device"); } } __gshared DerelictNanomsgLoader DerelictNanomsg; shared static this() { DerelictNanomsg = new DerelictNanomsgLoader(); } shared static ~this() { DerelictNanomsg.unload(); }