This file is indexed.

/usr/lib/python2.7/dist-packages/fftw3f/lib.py is in python-fftw 0.2.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
#   This file is part of PyFFTW.
#
#    Copyright (C) 2009 Jochen Schroeder
#    Email: jschrod@berlios.de
#
#    PyFFTW is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    PyFFTW is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with PyFFTW.  If not, see <http://www.gnu.org/licenses/>.

import ctypes
from ctypes import pythonapi, util, py_object
from numpy import ctypeslib, typeDict
from platform import system as psystem
from os.path import splitext, join, isfile, dirname, abspath, basename
from os.path import join as joinpath
from os import name as osname
from os import environ
from warnings import warn

try:
    fftw_path = environ['FFTW_PATH']
    libfullpath = joinpath(abspath(fftw_path),r'libfftw3f.so')
    if not isfile(libfullpath):
        raise IOError
except KeyError:
    libfullpath = r'libfftw3f.so.3'
except IOError:
    warn('could not find %s in FFTW_PATH using installtime path'
             %'libfftw3f.so')
    libfullpath = r'libfftw3f.so.3'

if not isfile(libfullpath) and (osname=='nt' or psystem=='Windows'):
    if isfile(joinpath(dirname(__file__), libfullpath)):
        libfullpath = joinpath(dirname(__file__), libfullpath)

# must use ctypes.RTLD_GLOBAL for threading support
ctypes._dlopen(libfullpath, ctypes.RTLD_GLOBAL)
lib = ctypes.cdll.LoadLibrary(libfullpath)
#check if library is actually loaded there doesn't seem to be a better way to
#do this in ctypes
if not hasattr(lib, 'fftwf_plan_dft_1d'):
    raise OSError('Could not load libfftw3f.so')

if osname == 'nt' or psystem() == 'Windows':
    lib_threads = lib
else:
    libbase, dot, ext = basename(libfullpath).partition('.')
    libdir = dirname(libfullpath)
    lib_threads = joinpath(libdir, libbase + '_threads.'+ ext)
    try:
        lib_threads = ctypes.cdll.LoadLibrary(lib_threads)
    except OSError, e:
        warn("Could not load threading library %s, threading support is disabled"
            %lib_threads)
        lib_threads = None


_typelist =    [('fftwf_plan_dft_1d', (typeDict['singlecomplex'], typeDict['singlecomplex'], 1)),
                       ('fftwf_plan_dft_2d', (typeDict['singlecomplex'], typeDict['singlecomplex'], 2)),
                       ('fftwf_plan_dft_3d', (typeDict['singlecomplex'], typeDict['singlecomplex'], 3)),
                       ('fftwf_plan_dft', (typeDict['singlecomplex'], typeDict['singlecomplex'])),
                       ('fftwf_plan_dft_c2r_1d', (typeDict['singlecomplex'], typeDict['single'], 1)),
                       ('fftwf_plan_dft_c2r_2d', (typeDict['singlecomplex'], typeDict['single'], 2)),
                       ('fftwf_plan_dft_c2r_3d', (typeDict['singlecomplex'], typeDict['single'], 3)),
                       ('fftwf_plan_dft_c2r', (typeDict['singlecomplex'], typeDict['single'])),
                       ('fftwf_plan_dft_r2c_1d', (typeDict['single'], typeDict['singlecomplex'], 1)),
                       ('fftwf_plan_dft_r2c_2d', (typeDict['single'], typeDict['singlecomplex'], 2)),
                       ('fftwf_plan_dft_r2c_3d', (typeDict['single'], typeDict['singlecomplex'], 3)),
                       ('fftwf_plan_dft_r2c', (typeDict['single'], typeDict['singlecomplex'])),
                       ('fftwf_plan_r2r_1d', (typeDict['single'], typeDict['single'], 1)),
                       ('fftwf_plan_r2r_2d', (typeDict['single'], typeDict['single'], 2)),
                       ('fftwf_plan_r2r_3d', (typeDict['single'], typeDict['single'], 3)),
                       ('fftwf_plan_r2r', (typeDict['single'], typeDict['single']))]

_adv_typelist = [('fftwf_plan_many_dft', (typeDict['singlecomplex'],
                                              typeDict['singlecomplex'])),
                  ('fftwf_plan_many_dft_c2r', (typeDict['singlecomplex'],
                                                   typeDict['single'])),
                  ('fftwf_plan_many_dft_r2c', (typeDict['single'],
                                                   typeDict['singlecomplex'])),
                  ('fftwf_plan_many_r2r', (typeDict['single'],
                                                   typeDict['single']))]


def set_argtypes(val, types):
    if types[0] == typeDict['singlecomplex'] and types[1] == typeDict['singlecomplex']:
        set_argtypes_c2c(val,types)
    elif types[0] == typeDict['singlecomplex'] or types[1] == typeDict['singlecomplex']:
        set_argtypes_c2r(val,types)
    else:
        set_argtypes_r2r(val,types)

def set_argtypes_c2c(val,types):
    if len(types) >2:
        val.argtypes = [ctypes.c_int for i in range(types[2])] +\
                       [ctypeslib.ndpointer(dtype=types[0],ndim=types[2], \
                                            flags='contiguous, writeable, '\
                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=types[1], ndim=types[2],\
                                            flags='contiguous, writeable, '\
                                                  'aligned'),
                        ctypes.c_int, ctypes.c_uint]
    else:
        val.argtypes = [ctypes.c_int, ctypeslib.ndpointer(dtype=ctypes.c_int,
                                                          ndim=1,\
                                                          flags='contiguous, '\
                                                                'aligned'),
                        ctypeslib.ndpointer(dtype=types[0], flags='contiguous,'\
                                                                 ' writeable, '\
                                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=types[1],flags='contiguous, '\
                                                                 'writeable,'\
                                                                 'aligned'),
                        ctypes.c_int, ctypes.c_uint]

def set_argtypes_c2r(val,types):
    if len(types) >2:
        val.argtypes = [ctypes.c_int for i in range(types[2])] +\
                       [ctypeslib.ndpointer(dtype=types[0],ndim=types[2], \
                                            flags='contiguous, writeable, '\
                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=types[1], ndim=types[2],\
                                            flags='contiguous, writeable, '\
                                                  'aligned'),
                        ctypes.c_uint]
    else:
        val.argtypes = [ctypes.c_int, ctypeslib.ndpointer(dtype=ctypes.c_int, 
                                                          ndim=1,\
                                                          flags='contiguous, '\
                                                                'aligned'),
                        ctypeslib.ndpointer(dtype=types[0], flags='contiguous,'\
                                                                 ' writeable, '\
                                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=types[1],flags='contiguous, '\
                                                                 'writeable,'\
                                                                 'aligned'),
                        ctypes.c_uint]

def set_argtypes_r2r(val, types):
    if len(types) > 2:
        val.argtypes = [ctypes.c_int for i in range(types[2])] +\
                       [ctypeslib.ndpointer(dtype=types[0], ndim=types[2],
                                            flags='contiguous, writeable, '\
                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=types[1], ndim=types[2],
                                            flags='contiguous, writeable, '\
                                                  'aligned')] +\
                        [ctypes.c_int for i in range(types[2])] +\
                        [ctypes.c_uint]
    else:
        val.argtypes = [ctypes.c_int, ctypeslib.ndpointer(dtype=ctypes.c_int, 
                                                            ndim=1,
                                                          flags='contiguous, '\
                                                                'aligned'),
                        ctypeslib.ndpointer(dtype=types[0], flags='contiguous,'\
                                                                  'writeable, '\
                                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=types[1], flags='contiguous,'\
                                                                  'writeable, '\
                                                                  'aligned'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous, aligned'),
                        ctypes.c_uint]

def set_argtypes_adv(val, types):
    if types[0] == typeDict['singlecomplex'] and types[1] == typeDict['singlecomplex']:
        val.argtypes = [ctypes.c_int, ctypeslib.ndpointer(dtype=ctypes.c_int, 
                                                          ndim=1,
                                                          flags='contiguous, '\
                                                                'aligned'),
                        ctypes.c_int,
                        ctypeslib.ndpointer(dtype=types[0], flags='contiguous,'\
                                                                  'aligned,'\
                                                                  'writeable'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous,aligned'),
                        ctypes.c_int, ctypes.c_int,
                        ctypeslib.ndpointer(dtype=types[1], flags='contiguous,'\
                                                                  'aligned,'\
                                                                  'writeable'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous,aligned'),
                        ctypes.c_int, ctypes.c_int,
                        ctypes.c_int, ctypes.c_uint]
    elif types[0] == typeDict['singlecomplex'] or types[1]==typeDict['singlecomplex']:
        val.argtypes = [ctypes.c_int, ctypeslib.ndpointer(dtype=ctypes.c_int, 
                                                            ndim=1,
                                                          flags='contiguous, '\
                                                                'aligned'),
                        ctypes.c_int,
                        ctypeslib.ndpointer(dtype=types[0], flags='contiguous,'\
                                                                  'aligned,'\
                                                                  'writeable'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous,aligned'),
                        ctypes.c_int, ctypes.c_int,
                        ctypeslib.ndpointer(dtype=types[1], flags='contiguous,'\
                                                                  'aligned,'\
                                                                  'writeable'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous,aligned'),
                        ctypes.c_int, ctypes.c_int,
                        ctypes.c_uint]
    elif types[0] == typeDict['single'] and types[1]==typeDict['single']:
        val.argtypes = [ctypes.c_int, ctypeslib.ndpointer(dtype=ctypes.c_int, 
                                                          ndim=1,
                                                          flags='contiguous, '\
                                                                'aligned'),
                        ctypes.c_int,
                        ctypeslib.ndpointer(dtype=types[0], flags='contiguous,'\
                                                                  'aligned,'\
                                                                  'writeable'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous,aligned'),
                        ctypes.c_int, ctypes.c_int,
                        ctypeslib.ndpointer(dtype=types[1], flags='contiguous,'\
                                                                  'aligned,'\
                                                                  'writeable'),
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous, aligned'),
                        ctypes.c_int, ctypes.c_int,
                        ctypeslib.ndpointer(dtype=ctypes.c_int, ndim=1,
                                            flags='contiguous, aligned'),
                        ctypes.c_uint]



# set the return and argument types on the plan functions
for name, types in _typelist:
    val = getattr(lib, name)
    val.restype = ctypes.c_void_p
    set_argtypes(val,types)

##do the same for advanced plans
for name, types in _adv_typelist:
    val = getattr(lib, name)
    val.restype = ctypes.c_void_p
    set_argtypes_adv(val,types)

#malloc and free
lib.fftwf_malloc.restype = ctypes.c_void_p
lib.fftwf_malloc.argtypes = [ctypes.c_int]
lib.fftwf_free.restype = None
lib.fftwf_free.argtypes = [ctypes.c_void_p]

#create a buffer from memory (necessary for array allocation)
PyBuffer_FromReadWriteMemory = pythonapi.PyBuffer_FromReadWriteMemory
PyBuffer_FromReadWriteMemory.restype = py_object
PyBuffer_FromReadWriteMemory.argtypes = [ctypes.c_void_p, ctypes.c_int]

#executing arrays
lib.fftwf_execute.restype = None
lib.fftwf_execute.argtypes = [ctypes.c_void_p]

#guru execution
lib.fftwf_execute_dft.restype = None
lib.fftwf_execute_dft.argtypes = [ctypes.c_void_p,
                        ctypeslib.ndpointer(flags='aligned, contiguous, '\
                                                        'writeable'),\
                        ctypeslib.ndpointer(flags='aligned, contiguous, '\
                                                        'writeable')]

#destroy plans
lib.fftwf_destroy_plan.restype = None
lib.fftwf_destroy_plan.argtypes = [ctypes.c_void_p]

#enable threading for plans
if lib_threads is not None:
    lib_threads.fftwf_init_threads.restype = ctypes.c_int
    lib_threads.fftwf_init_threads.argtypes = []
    lib_threads.fftwf_plan_with_nthreads.restype = None
    lib_threads.fftwf_plan_with_nthreads.argtypes = [ctypes.c_int]
    lib_threads.fftwf_cleanup_threads.restype = None
    lib_threads.fftwf_cleanup_threads.argtypes = []

    s = lib_threads.fftwf_init_threads()
    if not s:
        sys.stderr.write('fftwf_init_threads call failed, disabling threads support\n')
        lib_threads = None

#wisdom

# create c-file object from python
PyFile_AsFile = pythonapi.PyFile_AsFile
PyFile_AsFile.argtypes = [ctypes.py_object]
PyFile_AsFile.restype = ctypes.c_void_p

#export to file
lib.fftwf_export_wisdom_to_file.argtypes = [ctypes.c_void_p]
lib.fftwf_export_wisdom_to_file.restype = None

#export to string
lib.fftwf_export_wisdom_to_string.argtypes = None
lib.fftwf_export_wisdom_to_string.restype = ctypes.c_char_p

#import from file
lib.fftwf_import_wisdom_from_file.argtypes = [ctypes.c_void_p]
lib.fftwf_import_wisdom_from_file.restype = ctypes.c_int

#import from string
lib.fftwf_import_wisdom_from_string.argtypes = [ctypes.c_char_p]
lib.fftwf_import_wisdom_from_string.restype = ctypes.c_int

#import system wisdom
lib.fftwf_import_system_wisdom.restype = ctypes.c_int
lib.fftwf_import_system_wisdom.argtypes = None

#forget wisdom
lib.fftwf_forget_wisdom.restype = None
lib.fftwf_forget_wisdom.argtype = None