!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/include/   drwxr-xr-x
Free 3.89 GB of 27.03 GB (14.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mxDateTime.h (9.9 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef MXDATETIME_H
#define MXDATETIME_H
/*
  mxDateTime -- A generic date/time type

  Copyright (c) 2000, Marc-Andre Lemburg; mailto:mal@lemburg.com
  Copyright (c) 2000-2001, eGenix.com Software GmbH; mailto:info@egenix.com
  See the documentation for further copyright information or contact
  the author (mailto:mal@lemburg.com).
  
*/

/* The extension's name; must be the same as the init function's suffix */
#define MXDATETIME_MODULE "mxDateTime"

/* Name of the package or module that provides the extensions C API.
   If the extension is used inside a package, provide the complete
   import path. */
#define MXDATETIME_API_MODULE "mx.DateTime"

/* --- No servicable parts below this line ----------------------*/

/* Include generic mx extension header file */
#include "mxh.h"

#ifdef MX_BUILDING_MXDATETIME
# define MXDATETIME_EXTERNALIZE MX_EXPORT
#else
# define MXDATETIME_EXTERNALIZE MX_IMPORT
#endif

#ifdef __cplusplus
extern "C" {
#endif

/* Flags for the calendar ID: */
#define MXDATETIME_GREGORIAN_CALENDAR    0
#define MXDATETIME_JULIAN_CALENDAR    1

/* --- DateTime Object ------------------------------------------*/

/* Note: The objects internal values are only calculated once and
   are thereafter considered immutable ! */

typedef struct {
    PyObject_HEAD

    /* Representation used to do calculations */
    long absdate;        /* number of days since 31.12. in the year 1 BC
                   calculated in the Gregorian calendar. */
    double abstime;        /* seconds since 0:00:00.00 (midnight)
                   on the day pointed to by absdate */

    /* COM Date representation */
    double comdate;
    
    /* Broken down values (set at creation time and using the calendar
       specified in the calendar flag); depend on the calendar used. */
    long year;            /* starting from year 1 */
    signed char month;        /* 1-12 */
    signed char day;        /* 1-31 */
    signed char hour;        /* 0-24 */
    signed char minute;        /* 0-59 */
    double second;        /* 0-60.999... */

    signed char day_of_week;    /* 0 (Monday) - 6 (Sunday) */
    short day_of_year;        /* 1-366 */

    /* Hack to allow arithmetic without doing coercion */
    PyObject *argument;        /* Pointer to the argument object */

    unsigned char calendar;    /* Calendar ID; for possible value see
                   above. */

} mxDateTimeObject;

/* Type checking macro */

#define mxDateTime_Check(v) \
        (((mxDateTimeObject *)(v))->ob_type == mxDateTime.DateTime_Type)

/* --- DateTimeDelta Object ----------------------------------*/

/* Note: The objects internal values are only calculated once and
   are thereafter considered immutable ! */

typedef struct {
    PyObject_HEAD
    double seconds;        /* number of delta seconds */

    /* Broken down values (set at creation time); the sign can be
       deduced from seconds' sign. */
    long day;            /* >=0 */
    signed char hour;        /* 0-23 */
    signed char minute;        /* 0-59 */
    double second;        /* 0-60.999 */
    
    /* Hack to allow arithmetic without doing coercion */
    PyObject *argument;        /* Pointer to the argument object */

} mxDateTimeDeltaObject;

/* Type checking macro */

#define mxDateTimeDelta_Check(v) \
        (((mxDateTimeDeltaObject *)(v))->ob_type == \
     mxDateTime.DateTimeDelta_Type)

/* --- C API ----------------------------------------------------*/

/* C API for usage by other Python modules */
typedef struct {
    
    /* Type object for DateTime() */
    PyTypeObject *DateTime_Type;

    /* Construct a new object from the given absolute date and time */
    PyObject *(*DateTime_FromAbsDateAndTime)(long absdate,
                         double abstime);

    /* Construct new object from Python 6-tuple
       (year,month,day,hour,minute,second) */
    PyObject *(*DateTime_FromTuple)(PyObject *v);

    /* Construct new object from year,month,day,hour,minute,second */
    PyObject *(*DateTime_FromDateAndTime)(int year,
                      int month,
                      int day,
                      int hour,
                      int minute,
                      double second);

    /* Construct new object from a given struct tm. DST, weekday and
       day of year are ignored. */
    PyObject *(*DateTime_FromTmStruct)(struct tm *tm);

    /* Construct new object from the given ticks; these are first
       converted to a gmtime struct and this is then used as basis for
       the object value. Note that you have to pass in the ticks value
       as double and not as time_t value (see the note below on
       this). */
    PyObject *(*DateTime_FromTicks)(double ticks);

    /* Construct new object from a given COM date double */
    PyObject *(*DateTime_FromCOMDate)(double comdate);

    /* !!! Changed in 1.2.1: Fill the given struct tm with the
       object's value. Seconds are truncated before assigning them to
       the struct tm seconds integer slot (previous version rounded
       the seconds part which sometimes resulted in the value being
       60). Returns a pointer to the changed struct. */
    struct tm *(*DateTime_AsTmStruct)(mxDateTimeObject *datetime,
                      struct tm *tm);

    /* Return the objects value as time_t value. It is assumed that
       the object contains local time information, so
       time.localtime(object.as_ticks()) == object.tuple(). Note that
       this functions returns a double and not a time_t value -- this
       is because some systems define time_t to be a long which would
       cause the conversion to lose the fraction part. */
    double (*DateTime_AsTicks)(mxDateTimeObject *datetime);

    /* Return the objects value as COM date double */
    double (*DateTime_AsCOMDate)(mxDateTimeObject *datetime);

    /* Type object for DateTimeDelta() */
    PyTypeObject *DateTimeDelta_Type;

    /* Construct a new object from the given days and seconds deltas.
       The internal value is calculated using a 86400.0 seconds/day
       basis. */
    PyObject *(*DateTimeDelta_FromDaysAndSeconds)(long days,
                          double seconds);

    /* Construct a new object from the given values repesenting
       time. The parameters are used to calculate a number-of-seconds
       since midnight value. */
    PyObject *(*DateTimeDelta_FromTime)(int hours,
                    int minutes,
                    double seconds);
    
    /* Same as DateTimeDelta_FromDaysAndSeconds() except that you
       pass the two arguments in a Python tuple. */
    PyObject *(*DateTimeDelta_FromTuple)(PyObject *v);

    /* Same as DateTimeDelta_FromTime() except that you pass the
       three arguments in a Python tuple. */
    PyObject *(*DateTimeDelta_FromTimeTuple)(PyObject *v);

    /* Using 86400.0 seconds/day a seconds value is calculated from
       the days and seconds part of the passed object. */
    double (*DateTimeDelta_AsDouble)(mxDateTimeDeltaObject *delta);

    /* New in version 0.8: */

    /* Construct a new DateTime object from the given days value which
       represents absolute days and the absolute time as fraction of a
       day.  The internal value is calculated using a 86400.0
       seconds/day basis. */
    PyObject *(*DateTime_FromAbsDays)(double days);

    /* Using 86400.0 seconds/day a days value is calculated from the
       internal value of the passed object. */
    double (*DateTime_AsAbsDays)(mxDateTimeObject *datetime);

    /* Construct a new DateTimeDelta object from the given days value.
       The internal value is calculated using a 86400.0 seconds/day
       basis. */
    PyObject *(*DateTimeDelta_FromDays)(double days);
    
    /* Using 86400.0 seconds/day a days value is calculated from
       the internal value of the passed object. */
    double (*DateTimeDelta_AsDays)(mxDateTimeDeltaObject *delta);

    /* Sets the given variables to values corresponding to the given
       DateTime object.  You can pass a NULL pointer if you don't want
       that variable to be set. Returns -1 and sets an error in case
       of failure. */
    int (*DateTime_BrokenDown)(mxDateTimeObject *datetime,
                long *year,
                int *month,
                int *day,
                int *hour,
                int *minute,
                double *second);

    /* Sets the given variables to values corresponding to the given
       DateTimeDelta object. You can pass a NULL pointer if you don't
       want that variable to be set. Returns -1 and sets an error in
       case of failure. */
    int (*DateTimeDelta_BrokenDown)(mxDateTimeDeltaObject *delta,
                     long *day,
                     int *hour,
                     int *minute,
                     double *second);

} mxDateTimeModule_APIObject;

#ifndef MX_BUILDING_MXDATETIME

/* --- C API ----------------------------------------------------*/

/* Interfacestructure to C API for other modules.
   Call mxDateTime_ImportModuleAPI() to initialize this
   structure. After that usage is simple:

   PyObject *v;
    
   v = mxDateTime.DateTime_FromAbsDateAndTime(1,1);
   if (!v)
       goto onError;
   ...

*/



static
mxDateTimeModule_APIObject mxDateTime;

/* You *must* call this before using any of the functions in
   mxDateTime and check its outcome; otherwise all accesses will
   result in a segfault. Returns 0 on success. */

#ifndef DPRINTF
# define DPRINTF if (0) printf
#endif

static
int mxDateTime_ImportModuleAndAPI(void)
{
    PyObject *mod = 0, *v = 0;
    char *apimodule = MXDATETIME_API_MODULE;
    char *apiname = MXDATETIME_MODULE"API";
    void *api;
    
    DPRINTF("Importing the %s C API...\n",apimodule);
    mod = PyImport_ImportModule(apimodule);
    if (mod == NULL) {
    /* Fallback solution to remain backward compatible */
    PyErr_Clear();
    apimodule = "DateTime";
    DPRINTF(" package not found, trying %s instead\n",apimodule);
    mod = PyImport_ImportModule(apimodule);
    if (mod == NULL)
        goto onError;
    }
    DPRINTF(" %s package found\n",apimodule);
    v = PyObject_GetAttrString(mod,apiname);
    if (v == NULL)
    goto onError;
    Py_DECREF(mod);
    DPRINTF(" API object %s found\n",apiname);
    api = PyCObject_AsVoidPtr(v);
    if (api == NULL)
    goto onError;
    Py_DECREF(v);
    memcpy(&mxDateTime,api,sizeof(mxDateTime));
    DPRINTF(" API object loaded and initialized.\n");
    return 0;
    
onError:
    DPRINTF(" not found.\n");
    Py_XDECREF(mod);
    Py_XDECREF(v);
    return -1;
}

#endif

/* EOF */
#ifdef __cplusplus
}
#endif
#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0079 ]--