Erster Stand der Hintergrundprozesse, die auf der Synology unter /volume1/homes/wagner/SolarManager laufen: der Manager selbst, die Sammler je Geraet, die MQTT-Bruecke, der Wecker und - neu hinzugezogen - der AutoAction-Runner, der als Hintergrundprozess hierher gehoert und nicht ins Web-Verzeichnis. Zugangsdaten stehen nicht mehr im Quelltext, sondern in config.ini, die nicht mit eingecheckt wird. Vorlage ist config.ini.example, gelesen wird sie von konfig.py. Betroffen waren solarManager.py (Datenbank und Wattpilot), zeit.py, gatherWaterData.py, wecker.py und skoda_testdaten.py, das sich das Passwort bisher aus dem Quelltext eines anderen Moduls herausgesucht hat. Die Kia-Anbindung ist mit dem Fahrzeug entfallen: kiaTest.py, gatherCarData.py und hyundai_kia_connect_api sind nicht mehr dabei, ebenso gatherInverterData.py, auf das nur noch eine auskommentierte Zeile zeigte. Die mitgelieferten Bibliotheken bleiben im Repository - die NAS hat kein pip, sie muessen neben den Skripten liegen. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
86 lines
1.9 KiB
C
86 lines
1.9 KiB
C
#ifndef _MULTIDICT_ISTR_H
|
|
#define _MULTIDICT_ISTR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
PyUnicodeObject str;
|
|
PyObject * canonical;
|
|
} istrobject;
|
|
|
|
PyDoc_STRVAR(istr__doc__, "istr class implementation");
|
|
|
|
static PyTypeObject istr_type;
|
|
|
|
static inline void
|
|
istr_dealloc(istrobject *self)
|
|
{
|
|
Py_XDECREF(self->canonical);
|
|
PyUnicode_Type.tp_dealloc((PyObject*)self);
|
|
}
|
|
|
|
static inline PyObject *
|
|
istr_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
|
{
|
|
PyObject *x = NULL;
|
|
static char *kwlist[] = {"object", "encoding", "errors", 0};
|
|
PyObject *encoding = NULL;
|
|
PyObject *errors = NULL;
|
|
PyObject *s = NULL;
|
|
PyObject * ret = NULL;
|
|
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OOO:str",
|
|
kwlist, &x, &encoding, &errors)) {
|
|
return NULL;
|
|
}
|
|
if (x != NULL && Py_TYPE(x) == &istr_type) {
|
|
Py_INCREF(x);
|
|
return x;
|
|
}
|
|
ret = PyUnicode_Type.tp_new(type, args, kwds);
|
|
if (!ret) {
|
|
goto fail;
|
|
}
|
|
s =_PyObject_CallMethodId(ret, &PyId_lower, NULL);
|
|
if (!s) {
|
|
goto fail;
|
|
}
|
|
((istrobject*)ret)->canonical = s;
|
|
s = NULL; /* the reference is stollen by .canonical */
|
|
return ret;
|
|
fail:
|
|
Py_XDECREF(ret);
|
|
return NULL;
|
|
}
|
|
|
|
static PyTypeObject istr_type = {
|
|
PyVarObject_HEAD_INIT(DEFERRED_ADDRESS(&PyType_Type), 0)
|
|
"multidict._multidict.istr",
|
|
sizeof(istrobject),
|
|
.tp_dealloc = (destructor)istr_dealloc,
|
|
.tp_flags = Py_TPFLAGS_DEFAULT
|
|
| Py_TPFLAGS_BASETYPE
|
|
| Py_TPFLAGS_UNICODE_SUBCLASS,
|
|
.tp_doc = istr__doc__,
|
|
.tp_base = DEFERRED_ADDRESS(&PyUnicode_Type),
|
|
.tp_new = (newfunc)istr_new,
|
|
};
|
|
|
|
|
|
static inline int
|
|
istr_init(void)
|
|
{
|
|
istr_type.tp_base = &PyUnicode_Type;
|
|
if (PyType_Ready(&istr_type) < 0) {
|
|
return -1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|