File: gender.cpp

package info (click to toggle)
pyicu 2.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,888 kB
  • sloc: cpp: 32,904; python: 1,740; makefile: 5
file content (105 lines) | stat: -rw-r--r-- 3,269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* ====================================================================
 * Copyright (c) 2019 Open Source Applications Foundation.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 * ====================================================================
 */

#include "common.h"
#include "structmember.h"

#include "bases.h"
#include "gender.h"
#include "locale.h"
#include "macros.h"

#if U_ICU_VERSION_HEX >= VERSION_HEX(50, 0, 0)

DECLARE_CONSTANTS_TYPE(UGender)

/* GenderInfo */

class t_genderinfo : public _wrapper {
public:
    GenderInfo *object;
};

static PyObject *t_genderinfo_getInstance(PyTypeObject *type, PyObject *arg);
static PyObject *t_genderinfo_getListGender(t_genderinfo *self, PyObject *arg);

static PyMethodDef t_genderinfo_methods[] = {
    DECLARE_METHOD(t_genderinfo, getInstance, METH_O | METH_CLASS),
    DECLARE_METHOD(t_genderinfo, getListGender, METH_O),
    { NULL, NULL, 0, NULL }
};

DECLARE_TYPE(GenderInfo, t_genderinfo, UObject,
             GenderInfo, abstract_init, NULL)


/* GenderInfo */

static PyObject *t_genderinfo_getInstance(PyTypeObject *type, PyObject *arg)
{
    Locale *locale;

    if (!parseArg(arg, "P", TYPE_CLASSID(Locale), &locale))
    {
        const GenderInfo *result;
        STATUS_CALL(result = GenderInfo::getInstance(*locale, status));

        return wrap_GenderInfo(const_cast<GenderInfo *>(result), 0);
    }

    return PyErr_SetArgsError(type, "getInstance", arg);
}

static PyObject *t_genderinfo_getListGender(t_genderinfo *self, PyObject *arg)
{
    UGender *genders;
    int len;

    if (!parseArg(arg, "H", &genders, &len))
    {
        UGender result;
        STATUS_CALL(
            {
                result = self->object->getListGender(genders, len, status);
                delete[] genders;
            });

        return PyInt_FromLong(result);
    }

    return PyErr_SetArgsError((PyObject *) self, "getListGender", arg);
}

#endif

void _init_gender(PyObject *m)
{
#if U_ICU_VERSION_HEX >= VERSION_HEX(50, 0, 0)
    INSTALL_CONSTANTS_TYPE(UGender, m);
    REGISTER_TYPE(GenderInfo, m);

    INSTALL_ENUM(UGender, "MALE", UGENDER_MALE);
    INSTALL_ENUM(UGender, "FEMALE", UGENDER_FEMALE);
    INSTALL_ENUM(UGender, "OTHER", UGENDER_OTHER);
#endif
}