Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
catlizor
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
catlizor
Commits
198bb274
Kaydet (Commit)
198bb274
authored
Şub 27, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
reset functionality
üst
88ea7536
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
11 deletions
+26
-11
catlizor.py
catlizor/catlizor.py
+22
-11
example.py
example.py
+4
-0
No files found.
catlizor/catlizor.py
Dosyayı görüntüle @
198bb274
...
...
@@ -8,6 +8,7 @@ from functools import partial, reduce, wraps
from
types
import
FunctionType
from
typing
import
Any
,
Dict
,
Optional
,
Sequence
,
Union
,
Callable
,
Tuple
CATLIZOR_SIGN
=
"__catlized_methods"
HOOK_SIGN
=
"__condition"
HOOK_SPEC
=
"hook_spec"
...
...
@@ -28,6 +29,7 @@ def meth_wrapper(function: FunctionType, catlizor: Catlizor):
with
catlizor
.
dispatch
(
function
,
args
,
kwargs
)
as
catch
:
res
=
catch
(
function
(
*
args
,
**
kwargs
))
return
res
return
wrapper
...
...
@@ -52,16 +54,13 @@ class HookSpec:
setattr
(
self
,
attr
,
set
(
val
))
def
__add__
(
self
,
other
:
HookSpec
):
return
self
.
__class__
(
**
{
k
:
(
v
|
getattr
(
other
,
k
))
for
k
,
v
in
vars
(
self
)
.
items
()}
)
spec
=
{
k
:
(
v
|
getattr
(
other
,
k
))
for
k
,
v
in
vars
(
self
)
.
items
()}
return
self
.
__class__
(
**
spec
)
def
__radd__
(
self
,
other
:
HookSpec
):
if
not
isinstance
(
other
,
self
.
__class__
):
return
self
return
other
.
__class__
(
**
{
k
:
(
v
|
getattr
(
self
,
k
))
for
k
,
v
in
vars
(
other
)
.
items
()}
)
return
self
.
__class__
.
__add__
(
other
,
self
)
class
HookConditions
(
Enum
):
...
...
@@ -87,30 +86,38 @@ class Hook:
def
__init_subclass__
(
cls
):
methods
:
Sequence
[
str
]
=
getattr
(
cls
,
"methods"
,
[])
callbacks
:
Sequence
[
callable
]
=
getattr
(
cls
,
"callbacks"
,
[])
setattr
(
cls
,
HOOK_SPEC
,
HookSpec
(
methods
,
callbacks
))
super
()
.
__init_subclass__
()
@classmethod
def
update_hookspec
(
cls
):
methods
:
Sequence
[
str
]
=
getattr
(
cls
,
"methods"
,
[])
callbacks
:
Sequence
[
callable
]
=
getattr
(
cls
,
"callbacks"
,
[])
setattr
(
cls
,
HOOK_SPEC
,
HookSpec
(
methods
,
callbacks
))
class
Catlizor
:
"""A dispatcher class between your hooks and classes."""
def
__init__
(
self
,
klass
:
type
,
hook_spec
:
Dict
):
self
.
klass
=
klass
self
.
hook_spec
=
hook_spec
catlizor_wrapper
=
partial
(
meth_wrapper
,
catlizor
=
self
)
catlized_methods
=
set
()
for
spec
in
hook_spec
.
values
():
for
meth
in
spec
[
0
]:
try
:
setattr
(
self
.
klass
,
meth
,
catlizor_wrapper
(
getattr
(
self
.
klass
,
meth
)))
func
=
getattr
(
self
.
klass
,
meth
)
catlized_methods
.
add
(
func
)
setattr
(
self
.
klass
,
meth
,
catlizor_wrapper
(
func
))
except
AttributeError
as
exc
:
raise
Exception
(
f
"Class doesnt have a method named {meth}"
)
from
exc
setattr
(
self
.
klass
,
CATLIZOR_SIGN
,
catlized_methods
)
@classmethod
def
hook
(
cls
,
klass
:
type
,
*
hooks
:
Sequence
[
Hook
]):
pre_hooks
,
post_hooks
,
on_call_hooks
=
(
...
...
@@ -158,3 +165,7 @@ class Catlizor:
result
=
self
.
_last_result
self
.
_last_result
=
None
return
result
def
reset
(
self
):
for
func
in
getattr
(
self
.
klass
,
CATLIZOR_SIGN
):
setattr
(
self
.
klass
,
func
.
__name__
,
func
)
example.py
Dosyayı görüntüle @
198bb274
...
...
@@ -28,3 +28,7 @@ tm = TaskManager()
tm
.
add_task
(
"süt al"
,
"markete git"
,
"süt reyonuna ulaş"
)
tm
.
get_tasks
(
"süt al"
)
tm
.
pop_task
()
tm_catlizor
.
reset
()
tm
=
TaskManager
()
tm
.
add_task
(
"abc"
,
1
,
2
,
3
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment