943acbc573
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
55 lines
1.3 KiB
Cython
55 lines
1.3 KiB
Cython
cdef class UVBaseTransport(UVSocketHandle):
|
|
|
|
cdef:
|
|
readonly bint _closing
|
|
|
|
bint _protocol_connected
|
|
bint _protocol_paused
|
|
object _protocol_data_received
|
|
size_t _high_water
|
|
size_t _low_water
|
|
|
|
object _protocol
|
|
Server _server
|
|
object _waiter
|
|
|
|
dict _extra_info
|
|
|
|
uint32_t _conn_lost
|
|
|
|
object __weakref__
|
|
|
|
# All "inline" methods are final
|
|
|
|
cdef inline _maybe_pause_protocol(self)
|
|
cdef inline _maybe_resume_protocol(self)
|
|
|
|
cdef inline _schedule_call_connection_made(self)
|
|
cdef inline _schedule_call_connection_lost(self, exc)
|
|
|
|
cdef _wakeup_waiter(self)
|
|
cdef _call_connection_made(self)
|
|
cdef _call_connection_lost(self, exc)
|
|
|
|
# Overloads of UVHandle methods:
|
|
cdef _fatal_error(self, exc, throw, reason=?)
|
|
cdef _close(self)
|
|
|
|
cdef inline _set_server(self, Server server)
|
|
cdef inline _set_waiter(self, object waiter)
|
|
|
|
cdef _set_protocol(self, object protocol)
|
|
cdef _clear_protocol(self)
|
|
|
|
cdef inline _init_protocol(self)
|
|
cdef inline _add_extra_info(self, str name, object obj)
|
|
|
|
# === overloads ===
|
|
|
|
cdef _new_socket(self)
|
|
cdef size_t _get_write_buffer_size(self)
|
|
|
|
cdef bint _is_reading(self)
|
|
cdef _start_reading(self)
|
|
cdef _stop_reading(self)
|