-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDecoratorApplicationDispatching.py
More file actions
486 lines (365 loc) · 11 KB
/
DecoratorApplicationDispatching.py
File metadata and controls
486 lines (365 loc) · 11 KB
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Apr 29 11:10:53 2021
@author: maherme
"""
#%%
from html import escape
def html_escape(arg):
return escape(str(arg))
def html_int(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
def html_real(a):
return '{0:.2f}'.format(round(a, 2))
def html_str(s):
return html_escape(s).replace('\n', '<br/>\n')
def html_list(l):
items = ('<li>{0}</li>'.format(html_escape(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
def html_dict(d):
items = ('<li>{0}={1}</li>'.format(k, v)
for k, v in d.items())
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
#%%
print(html_str(""" this is
a multi line string
with special characters: 10 < 100"""))
#%%
print(html_int(255))
#%%
print(html_escape(3+10j))
#%%
from decimal import Decimal
def htmlize(arg):
if isinstance(arg, int):
return html_int(arg)
elif isinstance(arg, float) or isinstance(arg, Decimal):
return html_real(arg)
elif isinstance(arg, str):
return html_str(arg)
elif isinstance(arg, list) or isinstance(arg, tuple):
return html_list(arg)
elif isinstance(arg, dict):
return html_dict(arg)
else:
return html_escape(arg)
print(htmlize(100))
print("------------------")
print(htmlize("""Python
rocks!
"""))
print("------------------")
print(htmlize([1, 2, 3]))
print("------------------")
print(htmlize(["""Python
rocks! 0 < 1
""", (10, 20, 30), 100])) # Notice some values have not been htmlized.
#%%
#Let's fix it:
def html_escape(arg):
return escape(str(arg))
def html_int(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
def html_real(a):
return '{0:.2f}'.format(round(a, 2))
def html_str(s):
return html_escape(s).replace('\n', '<br/>\n')
def html_list(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
def html_dict(d):
items = ('<li>{0}={1}</li>'.format(html_escape(k), htmlize(v))
for k, v in d.items())
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
print(htmlize(["""Python
rocks! 0 < 1
""", (10, 20, 30), 100])) # Not it works.
#%%
# We face other problem, every time we create a new function, we need to
# increase the elif function htmlize:
def html_set(arg): # We create this new function
return html_list(arg)
def htmlize(arg):
if isinstance(arg, int):
return html_int(arg)
elif isinstance(arg, float) or isinstance(arg, Decimal):
return html_real(arg)
elif isinstance(arg, str):
return html_str(arg)
elif isinstance(arg, list) or isinstance(arg, tuple):
return html_list(arg)
elif isinstance(arg, dict):
return html_dict(arg)
elif isinstance(arg, set): # We need to increase the htmlize function
return html_set(arg)
else:
return html_escape(arg)
print(htmlize({1, 2, 3}))
#%%
# Let's try fo fix this:
def htmlize(arg):
registry = {
object: html_escape,
int: html_int,
float: html_real,
Decimal: html_real,
str: html_str,
list: html_list,
tuple: html_list,
set: html_set,
dict: html_dict
}
fn = registry.get(type(arg), registry[object])
return fn(arg)
print(htmlize(100))
print("------------------")
print(htmlize([1, 2, 3]))
#%%
# Let's use a decorator, trying to do the above in a more general way avoiding
# these hardcoded variables in registry:
def singledispatch(fn):
registry = {}
registry[object] = fn # Here we add fn in a generic way
def inner(arg):
return registry[object](arg) # It looks the function in the registry
return inner
@singledispatch
def htmlize(a):
return escape(str(a))
print(htmlize('1 < 100'))
#%%
# Looking the code above can seem some weird, but let's expand the code a bit
# more:
def singledispatch(fn):
registry = {}
registry[object] = fn
registry[int] = lambda a: '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
registry[str] = lambda s: escape(s).replace('\n', '<br/>\n')
def inner(arg):
# Now we look for the type of arg in registry, we get the function associated
# and we call it with arg:
return registry.get(type(arg), registry[object])(arg)
return inner
@singledispatch
def htmlize(a):
return escape(str(a))
print(htmlize('1 < 100'))
print(htmlize(100))
#%%
# Notice the code above uses hardcoded functions as lambdas, let's try to
# avoid that:
def singledispatch(fn):
registry = {}
registry[object] = fn
def decorated(arg):
return registry.get(type(arg), registry[object])(arg)
def register(type_): # This will be the decorator factory
def inner(fn):
registry[type_] = fn
return fn
return inner
return decorated
@singledispatch
def htmlize(a):
return escape(str(a))
print(htmlize('1 < 100'))
print(htmlize(100)) # This is not htmlized because is not in the registry
#%%
# For fixing the code avobe we need to call register decorator:
def singledispatch(fn):
registry = {}
registry[object] = fn
def decorated(arg):
return registry.get(type(arg), registry[object])(arg)
def register(type_):
def inner(fn):
registry[type_] = fn
return fn
return inner
decorated.register = register # Here we fix the problem.
return decorated
@singledispatch
def htmlize(a):
return escape(str(a))
@htmlize.register(int)
def html_int(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
print(htmlize(100))
@htmlize.register(list)
def html_list(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
#%%
# You can stack decorators:
@htmlize.register(tuple)
@htmlize.register(list)
def html_sequence(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
print(htmlize([1, 2, 3]))
print("----------------")
print(htmlize((1, 2, 3)))
#%%
# We can add an attribute to watch the registry:
def singledispatch(fn):
registry = {}
registry[object] = fn
def decorated(arg):
return registry.get(type(arg), registry[object])(arg)
def register(type_):
def inner(fn):
registry[type_] = fn
return fn
return inner
decorated.register = register
decorated.registry = registry
return decorated
@singledispatch
def htmlize(a):
return escape(str(a))
@htmlize.register(int)
def html_int(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
print(htmlize.registry)
@htmlize.register(list)
def html_list(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
print("\n")
print(htmlize.registry)
@htmlize.register(tuple)
@htmlize.register(list)
def html_sequence(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
print("\n")
print(htmlize.registry)
#%%
# This is a better options, avoiding to give access to registry:
def singledispatch(fn):
registry = {}
registry[object] = fn
def decorated(arg):
return registry.get(type(arg), registry[object])(arg)
def register(type_):
def inner(fn):
registry[type_] = fn
return fn
return inner
def dispatch(type_):
return registry.get(type_, registry[object])
decorated.register = register
decorated.dispatch = dispatch
return decorated
@singledispatch
def htmlize(a):
return escape(str(a))
print(htmlize.dispatch(int)) # Prints default because any function was registered for int
@htmlize.register(int)
def html_int(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
print(htmlize(100))
print(htmlize.dispatch(int)) # Now we have one function for int
#%%
# There is some issues again:
from numbers import Integral
@singledispatch
def htmlize(a):
return escape(str(a))
@htmlize.register(Integral)
def html_integral_number(a):
return '{0}(<i>{1}</i>)'.format(1, str(hex(a)))
print(isinstance(10, Integral))
print(htmlize(10)) # Notice this does not work, we are using type not isinstance
#%%
from collections.abc import Sequence
print(isinstance([1, 2, 3], Sequence))
print(isinstance((1, 2, 3), Sequence))
@htmlize.register(Sequence) # We can register a Sequence abstract type
def html_sequence(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
res = type([1, 2, 3]) is Sequence
print(res) # Notice the type is not a Sequence
#%%
# Exists a decorator for doing the dispatcher above:
from functools import singledispatch
from numbers import Integral
from collections.abc import Sequence
@singledispatch
def htmlize(a):
return escape(str(a))
@htmlize.register(Integral)
def htmlize_integral_number(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
print(htmlize.dispatch(int))
print(htmlize.dispatch(bool))
print(htmlize(10))
print(htmlize(True))
#%%
@htmlize.register(Sequence)
def html_sequence(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
print(htmlize([1, 2, 3]))
print(htmlize((1, 2, 3)))
#%%
# But there is a problem here:
print(isinstance('python', Sequence))
#%%
print(htmlize('python')) # This fails, but it is a Sequence ...
# This fails because 'python' is a Sequence, is also a string, but when we
# iterate in the "for item in l" loop, we are getting each character, which is
# also a string and a Sequence ...
#%%
# We can fix this creating a more specific function than a Sequence:
@htmlize.register(str)
def html_str(s):
return html_escape(s).replace('\n', '<br/>\n')
print(htmlize('python'))
#%%
# Notice the name of the functios are labels, what Python manages are the
# memory addresses, so you can write a code like this:
@htmlize.register(Integral)
def _(a):
return '{0}(<i>{1}</i>)'.format(a, str(hex(a)))
@htmlize.register(Sequence)
def _(l):
items = ('<li>{0}</li>'.format(htmlize(item))
for item in l
)
return '<ul>\n' + '\n'.join(items) + '\n</ul>'
@htmlize.register(str)
def _(s):
return html_escape(s).replace('\n', '<br/>\n')
print(htmlize.registry)
print("-----------------")
print(_) # This is the last _ we have defined.
print("-----------------")
# But we can get access all the others _ functios defined above:
print(htmlize.dispatch(Integral))
print(id(htmlize.dispatch(Integral)))
print(htmlize.dispatch(str))
print(id(htmlize.dispatch(str)))
print(htmlize.dispatch(Sequence))
print(id(htmlize.dispatch(Sequence)))
print("-----------------")
print(id(_)) # Notice this memory address is the str because is the last function defined.
#%%