tornado.netutil — 各项网络工具¶
Miscellaneous network utility code.
-
tornado.netutil.bind_sockets(port, address=None, family=0, backlog=128, flags=None)[source]¶ Creates listening sockets bound to the given port and address.
Returns a list of socket objects (multiple sockets are returned if the given address maps to multiple IP addresses, which is most common for mixed IPv4 and IPv6 use).
Address may be either an IP address or hostname. If it’s a hostname, the server will listen on all IP addresses associated with the name. Address may be an empty string or None to listen on all available interfaces. Family may be set to either
socket.AF_INETorsocket.AF_INET6to restrict to IPv4 or IPv6 addresses, otherwise both will be used if available.The
backlogargument has the same meaning as forsocket.listen().flagsis a bitmask of AI_* flags togetaddrinfo, likesocket.AI_PASSIVE | socket.AI_NUMERICHOST.
-
tornado.netutil.bind_unix_socket(file, mode=384, backlog=128)[source]¶ Creates a listening unix socket.
If a socket with the given name already exists, it will be deleted. If any other file with that name exists, an exception will be raised.
Returns a socket object (not a list of socket objects like
bind_sockets)
-
tornado.netutil.add_accept_handler(sock, callback, io_loop=None)[source]¶ Adds an
IOLoopevent handler to accept new connections onsock.When a connection is accepted,
callback(connection, address)will be run (connectionis a socket object, andaddressis the address of the other end of the connection). Note that this signature is different from thecallback(fd, events)signature used forIOLoophandlers.Changed in version 4.1: The
io_loopargument is deprecated.
-
tornado.netutil.is_valid_ip(ip)[source]¶ Returns true if the given string is a well-formed IP address.
Supports IPv4 and IPv6.
-
class
tornado.netutil.Resolver[source]¶ Configurable asynchronous DNS resolver interface.
By default, a blocking implementation is used (which simply calls
socket.getaddrinfo). An alternative implementation can be chosen with theResolver.configureclass method:Resolver.configure('tornado.netutil.ThreadedResolver')
The implementations of this interface included with Tornado are
tornado.netutil.BlockingResolvertornado.netutil.ThreadedResolvertornado.netutil.OverrideResolvertornado.platform.twisted.TwistedResolvertornado.platform.caresresolver.CaresResolver
-
resolve(host, port, family=0, callback=None)[source]¶ Resolves an address.
The
hostargument is a string which may be a hostname or a literal IP address.Returns a
Futurewhose result is a list of (family, address) pairs, where address is a tuple suitable to pass tosocket.connect(i.e. a(host, port)pair for IPv4; additional fields may be present for IPv6). If acallbackis passed, it will be run with the result as an argument when it is complete.
-
class
tornado.netutil.ExecutorResolver[source]¶ Resolver implementation using a
concurrent.futures.Executor.Use this instead of
ThreadedResolverwhen you require additional control over the executor being used.The executor will be shut down when the resolver is closed unless
close_resolver=False; use this if you want to reuse the same executor elsewhere.Changed in version 4.1: The
io_loopargument is deprecated.
-
class
tornado.netutil.BlockingResolver[source]¶ Default
Resolverimplementation, usingsocket.getaddrinfo.The
IOLoopwill be blocked during the resolution, although the callback will not be run until the nextIOLoopiteration.
-
class
tornado.netutil.ThreadedResolver[source]¶ Multithreaded non-blocking
Resolverimplementation.Requires the
concurrent.futurespackage to be installed (available in the standard library since Python 3.2, installable withpip install futuresin older versions).The thread pool size can be configured with:
Resolver.configure('tornado.netutil.ThreadedResolver', num_threads=10)
Changed in version 3.1: All
ThreadedResolversshare a single thread pool, whose size is set by the first one to be created.
-
class
tornado.netutil.OverrideResolver[source]¶ Wraps a resolver with a mapping of overrides.
This can be used to make local DNS changes (e.g. for testing) without modifying system-wide settings.
The mapping can contain either host strings or host-port pairs.
-
tornado.netutil.ssl_options_to_context(ssl_options)[source]¶ Try to convert an
ssl_optionsdictionary to anSSLContextobject.The
ssl_optionsdictionary contains keywords to be passed tossl.wrap_socket. In Python 3.2+,ssl.SSLContextobjects can be used instead. This function converts the dict form to itsSSLContextequivalent, and may be used when a component which accepts both forms needs to upgrade to theSSLContextversion to use features like SNI or NPN.
-
tornado.netutil.ssl_wrap_socket(socket, ssl_options, server_hostname=None, **kwargs)[source]¶ Returns an
ssl.SSLSocketwrapping the given socket.ssl_optionsmay be either a dictionary (as accepted byssl_options_to_context) or anssl.SSLContextobject. Additional keyword arguments are passed towrap_socket(either theSSLContextmethod or thesslmodule function as appropriate).