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
39cc6624
Kaydet (Commit)
39cc6624
authored
Şub 26, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Return empty HookSpec if no hook assigned
üst
2a57ce3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
6 deletions
+30
-6
catlizor.py
catlizor/catlizor.py
+30
-6
No files found.
catlizor/catlizor.py
Dosyayı görüntüle @
39cc6624
...
...
@@ -4,7 +4,7 @@ from collections.abc import Sequence as SequenceBase
from
contextlib
import
contextmanager
from
dataclasses
import
dataclass
from
enum
import
Enum
,
auto
from
functools
import
partial
,
wraps
from
functools
import
partial
,
wraps
,
reduce
from
types
import
FunctionType
from
typing
import
Optional
,
Dict
,
Sequence
,
Union
,
Any
...
...
@@ -14,9 +14,12 @@ HOOK_SPEC = 'hook_spec'
def
get_hooks
(
cond
,
hooks
:
Sequence
[
Hooks
]):
def
compare_hook
(
hook
):
return
getattr
(
hook
,
HOOK_SIGN
)
is
getattr
(
HookConditions
,
cond
)
return
sum
(
getattr
(
hook
,
HOOK_SPEC
)
for
hook
in
filter
(
lambda
hook
:
compare_hook
,
hooks
))
return
getattr
(
HookConditions
,
cond
)
in
getattr
(
hook
,
HOOK_SIGN
)
res
=
sum
(
getattr
(
hook
,
HOOK_SPEC
)
for
hook
in
filter
(
compare_hook
,
hooks
))
if
res
==
0
:
res
=
HookSpec
({},
{})
return
res
def
meth_wrapper
(
function
:
FunctionType
,
catlizor
:
Catlizor
):
@wraps
(
function
)
...
...
@@ -46,7 +49,12 @@ class HookSpec:
def
__add__
(
self
,
other
:
HookSpec
):
return
self
.
__class__
(
**
{
k
:
(
v
|
getattr
(
other
,
k
))
for
k
,
v
in
vars
(
self
)
.
items
()})
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
()})
class
HookConditions
(
Enum
):
PRE
=
auto
()
POST
=
auto
()
...
...
@@ -82,7 +90,23 @@ class Catlizor:
@classmethod
def
hook
(
cls
,
klass
:
type
,
*
hooks
:
Sequence
[
Hook
]):
pre_hooks
,
post_hooks
,
on_call_hooks
=
get_hooks
(
'pre'
),
get_hooks
(
'post'
),
get_hooks
(
'on_call'
)
pre_hooks
,
post_hooks
,
on_call_hooks
=
get_hooks
(
'PRE'
,
hooks
),
get_hooks
(
'POST'
,
hooks
),
get_hooks
(
'ON_CALL'
,
hooks
)
hook_spec
=
{
HookConditions
.
PRE
:
[
pre_hooks
.
methods
,
pre_hooks
.
callbacks
],
HookConditions
.
POST
:
[
post_hooks
.
methods
,
post_hooks
.
callbacks
],
HookConditions
.
ON_CALL
:
[
on_call_hooks
.
methods
,
on_call_hooks
.
callbacks
]
}
return
cls
(
klass
,
hook_spec
)
@contextmanager
def
dispatch
(
self
,
function
:
FunctionType
,
args
,
kwargs
):
spec
=
(
method_name
,
args
,
kwargs
)
...
...
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