1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
# Copyright (c) 2019 Iotic Labs Ltd. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://github.com/Iotic-Labs/py-bjdata/blob/master/LICENSE
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import print_function, unicode_literals
from abc import ABCMeta, abstractmethod
from sys import argv, exit # pylint: disable=redefined-builtin
from traceback import print_exc
from types import GeneratorType
from contextlib import contextmanager
from time import time
import gc
import cProfile
from json import __version__ as j_version, dumps as j_enc, loads as j_dec, load as j_load
# ------------------------------------------------------------------------------
class LibWrapper(object):
__metaclass__ = ABCMeta
@staticmethod
@abstractmethod
def name():
raise NotImplementedError
@staticmethod
@abstractmethod
def encode(obj):
raise NotImplementedError
@staticmethod
@abstractmethod
def decode(obj):
raise NotImplementedError
# Python's built-in JSON module
class Json(LibWrapper):
@staticmethod
def name():
return 'json %s' % j_version
@staticmethod
def encode(obj):
return j_enc(obj)
@staticmethod
def decode(obj):
return j_dec(obj)
TEST_LIBS = [Json]
# py-bjdata
try:
from bjdata import __version__ as bjd_version, dumpb as bjd_enc, loadb as bjd_dec
except ImportError:
print('Failed to import bjdata, ignoring')
else:
class PyUbjson(LibWrapper):
@staticmethod
def name():
return 'py-bjdata %s' % bjd_version
@staticmethod
def encode(obj):
return bjd_enc(obj)
@staticmethod
def decode(obj):
return bjd_dec(obj)
TEST_LIBS.append(PyUbjson)
# simplebjdata
try:
from simplebjdata import __version__ as sbjd_version, encode as sbjd_enc, decode as sbjd_dec
except ImportError:
print('Failed to import simplebjdata, ignoring')
else:
class SimpleUbjson(LibWrapper):
@staticmethod
def name():
return 'simplebjdata %s' % sbjd_version
@staticmethod
def encode(obj):
return sbjd_enc(obj)
@staticmethod
def decode(obj):
val = sbjd_dec(obj)
# ugly: decoder only returns iterator if object or array (and only know by name of generator which it is)
if isinstance(val, GeneratorType):
if val.__name__ == 'array_stream':
return list(val)
return dict(val)
return val
TEST_LIBS.append(SimpleUbjson)
# ------------------------------------------------------------------------------
@contextmanager
def profiled(name=None, no_profile=False):
if no_profile:
yield
else:
profile = cProfile.Profile()
profile.enable()
try:
yield
finally:
profile.disable()
if name:
print('stats for %s' % name)
profile.print_stats('tottime')
def test_all_with(name, repeats=1000):
no_profile = True
with open(name, 'r') as in_file:
obj = j_load(in_file)
row_start = '"%s",%d' % (name, in_file.tell())
gc.disable()
for lib in TEST_LIBS:
start = time()
with profiled(lib.name(), no_profile=no_profile):
for _ in range(repeats):
lib.encode(obj)
enc_time = time() - start
gc.collect()
encoded = lib.encode(obj)
start = time()
with profiled(lib.name(), no_profile=no_profile):
for _ in range(repeats):
lib.decode(encoded)
dec_time = time() - start
gc.collect()
print('%s,"%s",%.3f,%.3f' % (row_start, lib.name(), enc_time, dec_time))
gc.enable()
def main():
try:
if len(argv) < 3:
raise ValueError
repeats = int(argv[1])
if repeats < 1:
raise ValueError
except ValueError:
print('USAGE: perf.py REPEATS INPUT1 [INPUT2] ..')
return 1
for name in argv[2:]:
try:
test_all_with(name, repeats=repeats)
except: # pylint: disable=bare-except
print('Failed to test with %s' % name)
print_exc()
return 2
return 0
if __name__ == "__main__":
exit(main())
|