-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Split out JSON Date Converters #31057
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
// Conversion routines that are useful for seralization, | ||
// but which don't interact with JSON objects directly | ||
|
||
#include "date_conversions.h" | ||
#include <../../../tslibs/src/datetime/np_datetime.h> | ||
#include <../../../tslibs/src/datetime/np_datetime_strings.h> | ||
|
||
/* | ||
* Function: scaleNanosecToUnit | ||
* ----------------------------- | ||
* | ||
* Scales an integer value representing time in nanoseconds to provided unit. | ||
* | ||
* Mutates the provided value directly. Returns 0 on success, non-zero on error. | ||
*/ | ||
int scaleNanosecToUnit(npy_int64 *value, NPY_DATETIMEUNIT unit) { | ||
switch (unit) { | ||
case NPY_FR_ns: | ||
break; | ||
case NPY_FR_us: | ||
*value /= 1000LL; | ||
break; | ||
case NPY_FR_ms: | ||
*value /= 1000000LL; | ||
break; | ||
case NPY_FR_s: | ||
*value /= 1000000000LL; | ||
break; | ||
default: | ||
return -1; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
/* Converts the int64_t representation of a datetime to ISO; mutates len */ | ||
char *int64ToIso(int64_t value, NPY_DATETIMEUNIT base, size_t *len) { | ||
npy_datetimestruct dts; | ||
int ret_code; | ||
|
||
pandas_datetime_to_datetimestruct(value, NPY_FR_ns, &dts); | ||
|
||
*len = (size_t)get_datetime_iso_8601_strlen(0, base); | ||
char *result = PyObject_Malloc(*len); | ||
|
||
if (result == NULL) { | ||
PyErr_NoMemory(); | ||
return NULL; | ||
} | ||
|
||
ret_code = make_iso_8601_datetime(&dts, result, *len, base); | ||
if (ret_code != 0) { | ||
PyErr_SetString(PyExc_ValueError, | ||
"Could not convert datetime value to string"); | ||
PyObject_Free(result); | ||
} | ||
|
||
// Note that get_datetime_iso_8601_strlen just gives a generic size | ||
// for ISO string conversion, not the actual size used | ||
*len = strlen(result); | ||
return result; | ||
} | ||
|
||
npy_datetime NpyDateTimeToEpoch(npy_datetime dt, NPY_DATETIMEUNIT base) { | ||
scaleNanosecToUnit(&dt, base); | ||
return dt; | ||
} | ||
|
||
/* Convert PyDatetime To ISO C-string. mutates len */ | ||
char *PyDateTimeToIso(PyDateTime_Date *obj, NPY_DATETIMEUNIT base, | ||
size_t *len) { | ||
npy_datetimestruct dts; | ||
int ret; | ||
|
||
ret = convert_pydatetime_to_datetimestruct(obj, &dts); | ||
if (ret != 0) { | ||
if (!PyErr_Occurred()) { | ||
PyErr_SetString(PyExc_ValueError, | ||
"Could not convert PyDateTime to numpy datetime"); | ||
} | ||
return NULL; | ||
} | ||
|
||
*len = (size_t)get_datetime_iso_8601_strlen(0, base); | ||
char *result = PyObject_Malloc(*len); | ||
ret = make_iso_8601_datetime(&dts, result, *len, base); | ||
|
||
if (ret != 0) { | ||
PyErr_SetString(PyExc_ValueError, | ||
"Could not convert datetime value to string"); | ||
PyObject_Free(result); | ||
return NULL; | ||
} | ||
|
||
// Note that get_datetime_iso_8601_strlen just gives a generic size | ||
// for ISO string conversion, not the actual size used | ||
*len = strlen(result); | ||
return result; | ||
} | ||
|
||
npy_datetime PyDateTimeToEpoch(PyDateTime_Date *dt, NPY_DATETIMEUNIT base) { | ||
npy_datetimestruct dts; | ||
int ret; | ||
|
||
ret = convert_pydatetime_to_datetimestruct(dt, &dts); | ||
if (ret != 0) { | ||
if (!PyErr_Occurred()) { | ||
PyErr_SetString(PyExc_ValueError, | ||
"Could not convert PyDateTime to numpy datetime"); | ||
} | ||
// TODO: is setting errMsg required? | ||
//((JSONObjectEncoder *)tc->encoder)->errorMsg = ""; | ||
// return NULL; | ||
} | ||
|
||
npy_datetime npy_dt = npy_datetimestruct_to_datetime(NPY_FR_ns, &dts); | ||
return NpyDateTimeToEpoch(npy_dt, base); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#ifndef PANDAS__LIBS_SRC_UJSON_DATE_CONVERSIONS | ||
#define PANDAS__LIBS_SRC_UJSON_DATE_CONVERSIONS | ||
|
||
#define PY_SSIZE_T_CLEAN | ||
#include <Python.h> | ||
#include <numpy/ndarraytypes.h> | ||
#include "datetime.h" | ||
|
||
// Scales value inplace from nanosecond resolution to unit resolution | ||
int scaleNanosecToUnit(npy_int64 *value, NPY_DATETIMEUNIT unit); | ||
|
||
// Converts an int64 object representing a date to ISO format | ||
// up to precision `base` e.g. base="s" yields 2020-01-03T00:00:00Z | ||
// while base="ns" yields "2020-01-01T00:00:00.000000000Z" | ||
// len is mutated to save the length of the returned string | ||
char *int64ToIso(int64_t value, NPY_DATETIMEUNIT base, size_t *len); | ||
|
||
// TODO: this function doesn't do a lot; should augment or replace with | ||
// scaleNanosecToUnit | ||
npy_datetime NpyDateTimeToEpoch(npy_datetime dt, NPY_DATETIMEUNIT base); | ||
|
||
// Converts a Python object representing a Date / Datetime to ISO format | ||
// up to precision `base` e.g. base="s" yields 2020-01-03T00:00:00Z | ||
// while base="ns" yields "2020-01-01T00:00:00.000000000Z" | ||
// len is mutated to save the length of the returned string | ||
char *PyDateTimeToIso(PyDateTime_Date *obj, NPY_DATETIMEUNIT base, size_t *len); | ||
|
||
// Convert a Python Date/Datetime to Unix epoch with resolution base | ||
npy_datetime PyDateTimeToEpoch(PyDateTime_Date *dt, NPY_DATETIMEUNIT base); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As a minor detail I had to modify the signature of this which previously accepted a PyObject and perform a We didn't explicitly do anything with the check previously and this aligns better with |
||
|
||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seralization -> serialization