File: config.pxi

package info (click to toggle)
apache-arrow 23.0.1-1
  • links: PTS
  • area: main
  • in suites: sid
  • size: 76,220 kB
  • sloc: cpp: 654,608; python: 70,522; ruby: 45,964; ansic: 18,742; sh: 7,365; makefile: 669; javascript: 125; xml: 41
file content (116 lines) | stat: -rw-r--r-- 3,926 bytes parent folder | download | duplicates (5)
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
106
107
108
109
110
111
112
113
114
115
116
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

cimport pyarrow.includes.libarrow as libarrow
cimport pyarrow.includes.libarrow_python as libarrow_python

from collections import namedtuple
import os


VersionInfo = namedtuple('VersionInfo', ('major', 'minor', 'patch'))

RuntimeInfo = namedtuple('RuntimeInfo',
                         ('simd_level', 'detected_simd_level'))


def runtime_info():
    """
    Get runtime information.

    Returns
    -------
    info : pyarrow.RuntimeInfo
    """
    cdef:
        CRuntimeInfo c_info

    c_info = GetRuntimeInfo()

    return RuntimeInfo(
        simd_level=frombytes(c_info.simd_level),
        detected_simd_level=frombytes(c_info.detected_simd_level))


BuildInfo = namedtuple(
    'BuildInfo',
    ('build_type', 'cpp_build_info'))

CppBuildInfo = namedtuple(
    'CppBuildInfo',
    ('version', 'version_info', 'so_version', 'full_so_version',
     'compiler_id', 'compiler_version', 'compiler_flags',
     'git_id', 'git_description', 'package_kind', 'build_type'))


def _build_info():
    """
    Get PyArrow build information.

    Returns
    -------
    info : pyarrow.BuildInfo
    """
    cdef:
        const libarrow_python.CBuildInfo* c_info
        const libarrow.CCppBuildInfo* c_cpp_info

    c_info = &libarrow_python.GetBuildInfo()
    c_cpp_info = &libarrow.GetCppBuildInfo()

    cpp_build_info = CppBuildInfo(version=frombytes(c_cpp_info.version_string),
                                  version_info=VersionInfo(c_cpp_info.version_major,
                                                           c_cpp_info.version_minor,
                                                           c_cpp_info.version_patch),
                                  so_version=frombytes(c_cpp_info.so_version),
                                  full_so_version=frombytes(c_cpp_info.full_so_version),
                                  compiler_id=frombytes(c_cpp_info.compiler_id),
                                  compiler_version=frombytes(
                                      c_cpp_info.compiler_version),
                                  compiler_flags=frombytes(c_cpp_info.compiler_flags),
                                  git_id=frombytes(c_cpp_info.git_id),
                                  git_description=frombytes(c_cpp_info.git_description),
                                  package_kind=frombytes(c_cpp_info.package_kind),
                                  build_type=frombytes(c_cpp_info.build_type).lower(),
                                  )

    return BuildInfo(build_type=c_info.build_type.decode('utf-8').lower(),
                     cpp_build_info=cpp_build_info)


build_info = _build_info()
cpp_build_info = build_info.cpp_build_info
cpp_version = build_info.cpp_build_info.version
cpp_version_info = build_info.cpp_build_info.version_info


def set_timezone_db_path(path):
    """
    Configure the path to text timezone database on Windows.

    Parameters
    ----------
    path : str
        Path to text timezone database.
    """
    cdef:
        CGlobalOptions options

    if path is not None:
        options.timezone_db_path = <c_string>tobytes(path)

    check_status(Initialize(options))