mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-24 21:55:26 +00:00
Fixed several macros and constants that should not have been renamed: - _Py_CAST, _Py_NULL, _Py_RVALUE (internal utility macros) - Py_UNUSED (unused parameter macro) - Py_EQ, Py_NE, Py_LT, Py_LE, Py_GT, Py_GE (comparison constants) - Py_RETURN_* macros (NONE, TRUE, FALSE, NOTIMPLEMENTED, RICHCOMPARE) - Py_READONLY, Py_ULL, Py_CONTEXT_SWITCHED - TyGC_Head in generated clinic files Build is still in progress with some remaining issues to resolve. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
112 lines
2.4 KiB
C
112 lines
2.4 KiB
C
// clinic/file.c.h uses internal pycore_modsupport.h API
|
|
#define PYTESTCAPI_NEED_INTERNAL_API
|
|
|
|
#include "parts.h"
|
|
#include "util.h"
|
|
#include "clinic/file.c.h"
|
|
|
|
|
|
/*[clinic input]
|
|
module _testcapi
|
|
[clinic start generated code]*/
|
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=6361033e795369fc]*/
|
|
|
|
|
|
/*[clinic input]
|
|
_testcapi.pyfile_newstdprinter
|
|
|
|
fd: int
|
|
/
|
|
|
|
[clinic start generated code]*/
|
|
|
|
static TyObject *
|
|
_testcapi_pyfile_newstdprinter_impl(TyObject *module, int fd)
|
|
/*[clinic end generated code: output=8a2d1c57b6892db3 input=442f1824142262ea]*/
|
|
{
|
|
return TyFile_NewStdPrinter(fd);
|
|
}
|
|
|
|
|
|
/*[clinic input]
|
|
_testcapi.py_fopen
|
|
|
|
path: object
|
|
mode: str(zeroes=True, accept={robuffer, str, NoneType})
|
|
/
|
|
|
|
Call Ty_fopen(), fread(256) and Ty_fclose(). Return read bytes.
|
|
[clinic start generated code]*/
|
|
|
|
static TyObject *
|
|
_testcapi_py_fopen_impl(TyObject *module, TyObject *path, const char *mode,
|
|
Ty_ssize_t mode_length)
|
|
/*[clinic end generated code: output=69840d0cfd8b7fbb input=f3a579dd7eb60926]*/
|
|
{
|
|
NULLABLE(path);
|
|
FILE *fp = Ty_fopen(path, mode);
|
|
if (fp == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
char buffer[256];
|
|
size_t size = fread(buffer, 1, Ty_ARRAY_LENGTH(buffer), fp);
|
|
Ty_fclose(fp);
|
|
|
|
return TyBytes_FromStringAndSize(buffer, size);
|
|
}
|
|
|
|
|
|
/*[clinic input]
|
|
_testcapi.py_universalnewlinefgets
|
|
|
|
file: object
|
|
size: int
|
|
/
|
|
|
|
Read a line from a file using Ty_UniversalNewlineFgets.
|
|
[clinic start generated code]*/
|
|
|
|
static TyObject *
|
|
_testcapi_py_universalnewlinefgets_impl(TyObject *module, TyObject *file,
|
|
int size)
|
|
/*[clinic end generated code: output=2ce1bc76c9dc871c input=02c236049d18569a]*/
|
|
{
|
|
FILE *fp = Ty_fopen(file, "rb");
|
|
if (fp == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
char *buf = (char *)TyMem_Malloc(size);
|
|
if (buf == NULL) {
|
|
Ty_fclose(fp);
|
|
return TyErr_NoMemory();
|
|
}
|
|
|
|
char *result = Ty_UniversalNewlineFgets(buf, size, fp, NULL);
|
|
if (result == NULL) {
|
|
TyMem_Free(buf);
|
|
Ty_fclose(fp);
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
TyObject *line = TyBytes_FromString(result);
|
|
TyMem_Free(buf);
|
|
Ty_fclose(fp);
|
|
|
|
return line;
|
|
}
|
|
|
|
static TyMethodDef test_methods[] = {
|
|
_TESTCAPI_PYFILE_NEWSTDPRINTER_METHODDEF
|
|
_TESTCAPI_PY_FOPEN_METHODDEF
|
|
_TESTCAPI_PY_UNIVERSALNEWLINEFGETS_METHODDEF
|
|
{NULL},
|
|
};
|
|
|
|
int
|
|
_PyTestCapi_Init_File(TyObject *m)
|
|
{
|
|
return TyModule_AddFunctions(m, test_methods);
|
|
}
|