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
71cdabe3
Kaydet (Commit)
71cdabe3
authored
Şub 26, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
mypy free
üst
d6306f42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
catlizor.py
catlizor/catlizor.py
+8
-7
No files found.
catlizor/catlizor.py
Dosyayı görüntüle @
71cdabe3
...
...
@@ -6,19 +6,19 @@ from dataclasses import dataclass
from
enum
import
Enum
,
auto
from
functools
import
partial
,
reduce
,
wraps
from
types
import
FunctionType
from
typing
import
Any
,
Dict
,
Optional
,
Sequence
,
Union
from
typing
import
Any
,
Dict
,
Optional
,
Sequence
,
Union
,
Callable
,
Tuple
HOOK_SIGN
=
"__condition"
HOOK_SPEC
=
"hook_spec"
def
get_hooks
(
cond
,
hooks
:
Sequence
[
Hooks
]):
def
get_hooks
(
cond
,
hooks
:
Tuple
[
Sequence
[
Hook
],
...
]):
def
compare_hook
(
hook
):
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
(
{},
{}
)
res
=
HookSpec
(
None
,
None
)
return
res
...
...
@@ -42,8 +42,8 @@ class Result:
@dataclass
class
HookSpec
:
methods
:
Sequence
[
str
]
callbacks
:
Sequence
[
Callable
]
methods
:
Optional
[
Sequence
[
str
]
]
callbacks
:
Optional
[
Sequence
[
Callable
]
]
def
__post_init__
(
self
):
for
attr
in
vars
(
self
)
.
keys
():
...
...
@@ -70,7 +70,7 @@ class HookConditions(Enum):
ON_CALL
=
auto
()
def
hook_condition
(
cls
:
type
,
condition
:
HookCondition
):
def
hook_condition
(
cls
:
type
,
condition
:
HookCondition
s
):
if
not
hasattr
(
cls
,
HOOK_SIGN
):
setattr
(
cls
,
HOOK_SIGN
,
[
condition
])
else
:
...
...
@@ -99,7 +99,8 @@ class Hook:
setattr
(
cls
,
HOOK_SPEC
,
HookSpec
(
methods
,
callbacks
))
class
Catlizor
:
def
__init__
(
self
,
klass
,
hook_spec
):
"""A dispatcher class between your hooks and classes."""
def
__init__
(
self
,
klass
:
type
,
hook_spec
:
Dict
):
self
.
klass
=
klass
self
.
hook_spec
=
hook_spec
...
...
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