mitogen/preamble_size.py

34 lines
850 B
Python
Raw Normal View History

2017-09-15 06:24:41 +00:00
"""
Print the size of a typical SSH command line and the bootstrap code sent to new
contexts.
"""
import inspect
import zlib
2017-09-21 11:38:57 +00:00
import mitogen.fakessh
2017-09-15 06:24:41 +00:00
import mitogen.master
import mitogen.parent
2017-09-15 06:24:41 +00:00
import mitogen.ssh
import mitogen.sudo
router = mitogen.master.Router()
context = mitogen.parent.Context(router, 0)
stream = mitogen.ssh.Stream(router, 0, hostname='foo')
2017-09-15 06:24:41 +00:00
print 'SSH command size: %s' % (len(' '.join(stream.get_boot_command())),)
print 'Preamble size: %s (%.2fKiB)' % (
len(stream.get_preamble()),
len(stream.get_preamble()) / 1024.0,
)
for mod in (
mitogen.master,
mitogen.parent,
2017-09-15 06:24:41 +00:00
mitogen.ssh,
mitogen.sudo,
2017-09-21 11:38:57 +00:00
mitogen.fakessh,
2017-09-15 06:24:41 +00:00
):
sz = len(zlib.compress(mitogen.parent.minimize_source(inspect.getsource(mod))))
2017-09-15 06:24:41 +00:00
print '%s size: %s (%.2fKiB)' % (mod.__name__, sz, sz / 1024.0)