This file is indexed.

/usr/lib/python3/dist-packages/odb/odbql.py is in python3-odb-api 0.17.6-2build1.

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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
"""
Python Database API (PEP 249) implementation for ODB API

@author Piotr Kuchta, ECMWF, August 2016

This module is a Python wrapper for ODB API, ECMWF library for encoding,
decoding and processing of observational data.

ODB API includes a streaming SQL engine and a MARS language syntax
based embedded scripting language, ECML. ECML verbs can be called using
this module as stored procedures via Cursor.callproc method.


Examples:

    # Select data from a file

    >>> import odbql
    >>> con = odbql.connect('')
    >>> c = con.cursor()
    >>> c.execute('''CREATE TABLE conv on 'conv.odb';''')
    >>> c.execute('select * from conv;')
    >>> c.fetchone()
        [262, '    0001', 1, 1025, 20160902, 120000, 16001, 3, 13, 11, 4287629, 0, 3, 17, 1, 14, None, '   89324', 20160902, 140000, 1, 0, 0, -80.0, -119.4000015258789, 1.0, 1534.8011474609375, 1530.0, None, 0, 1, 78120.0, 110, 2, 15004.1748046875, None, 1, 4096, 1, 3145728, 0, -200.0, -200.0, 106.85060119628906, 40.43746566772461, 0.44642725586891174, 0.0, 0.0, 53.77234649658203, 53.77234649658203, 19.578968048095703, 28.869945526123047, 80.12548828125]
    >>> print [d[0] for d in c.description]
        ['type', 'expver', 'class', 'stream', 'andate', 'antime', 'reportype', 'mxup_traj@desc', 'numtsl@desc', 'timeslot@timeslot_index', 'seqno@hdr', 'bufrtype@hdr', 'subtype@hdr', 'groupid@hdr', 'obstype@hdr', 'codetype@hdr', 'sensor@hdr', 'statid@hdr', 'date@hdr', 'time@hdr', 'report_status@hdr', 'report_event1@hdr', 'report_rdbflag@hdr', 'lat@hdr', 'lon@hdr', 'lsm@modsurf', 'orography@modsurf', 'stalt@hdr', 'sonde_type@conv', 'station_type@conv', 'entryno@body', 'obsvalue@body', 'varno@body', 'vertco_type@body', 'vertco_reference_1@body', 'vertco_reference_2@body', 'ppcode@conv_body', 'datum_anflag@body', 'datum_status@body', 'datum_event1@body', 'datum_rdbflag@body', 'biascorr@body', 'biascorr_fg@body', 'an_depar@body', 'fg_depar@body', 'qc_pge@body', 'fc_sens_obs@body', 'an_sens_obs@body', 'obs_error@errstat', 'final_obs_error@errstat', 'fg_error@errstat', 'eda_spread@errstat', 'hires@update_2']




"""

import os
from ctypes import *
import types
from sys import platform

apilevel = '2.0'
threadsafety = 1 # https://www.python.org/dev/peps/pep-0249/#threadsafety
paramstyle = 'qmark' # https://www.python.org/dev/peps/pep-0249/#paramstyle

def connect(file_name):
    """
    Returns a Connection object.

    Parameter: file_name  file to be open or empty string

    Examples:

        >>> conn1 = connect("conv.odb")

        >>> conn2 = connect("mars://RETRIEVE,DATABASE=marsod,CLASS=OD,TYPE=MFB,STREAM=OPER,EXPVER=0001,DATE=20160830,TIME=1200,REPORTYPE=16001")

    See also:

        https://www.python.org/dev/peps/pep-0249/#connect

    """
    return Connection(file_name)

def multiarch_path():
    """ Return the multiarch path to check on Debian"""
    import subprocess
    (ecode, res) = subprocess.getstatusoutput('dpkg-architecture')
    if ecode != 0:
        raise Exception("Failed to execute dpkg-architecture: is this a Debian system?")
    for line in res.split():
        var, val = line.split('=')
        if var == 'DEB_HOST_MULTIARCH':
            return '/usr/lib/' + val
    raise Exception("DEB_HOST_MULTIARCH not defined")
    
def lib_extension():
    if 'linux' in platform: return '.so.0d'
    if 'darwin' in platform: return '.dylib'
    if 'win' in platform: return '.DLL'
    raise Exception("Don't know lib extension for platform " + platform)

def __find_lib(paths, lib='libOdb', extension = lib_extension()):
    file_name = lib + extension
    for p in paths:
        path = p.split(os.sep)
        pth = os.sep.join(path + [file_name])
        try:
            r = CDLL(pth)
            return r
        except OSError:
            pass
        for i in range(len(path)):
            pth = os.sep.join(path[:-1] + ['..'] * i + ['lib', file_name])
            try:
                r = CDLL(pth)
                return r
            except OSError:
                pass
    raise Exception("Can't find " + file_name)

libodb = __find_lib([__file__, multiarch_path()])

# odbql prototypes
odbql_open = libodb.odbql_open
odbql_prepare_v2 = libodb.odbql_prepare_v2
odbql_step = libodb.odbql_step
odbql_column_name = libodb.odbql_column_name
odbql_column_name.restype = c_char_p
odbql_column_count = libodb.odbql_column_count
odbql_finalize = libodb.odbql_finalize
odbql_close = libodb.odbql_close
odbql_bind_null = libodb.odbql_bind_null
odbql_bind_int = libodb.odbql_bind_int
odbql_bind_double = libodb.odbql_bind_double
odbql_bind_text = libodb.odbql_bind_text
odbql_bind_int = libodb.odbql_bind_int
odbql_column_value = libodb.odbql_column_value
odbql_column_text = libodb.odbql_column_text
odbql_column_text.restype = c_char_p  # TODO: should be unsigned: const unsigned char *odbql_column_text(odbql_stmt* stmt, int iCol)
odbql_column_type = libodb.odbql_column_type
odbql_value_double = libodb.odbql_value_double
odbql_value_double.restype = c_double
odbql_value_int = libodb.odbql_value_int
odbql_errmsg = libodb.odbql_errmsg
odbql_errmsg.restype = c_char_p

# odbql constants
ODBQL_OK               = 0
ODBQL_ROW              = 100
ODBQL_DONE             = 101
ODBQL_METADATA_CHANGED = 102

ODBQL_STATIC           = c_voidp(0)

ODBQL_INTEGER          = 1
ODBQL_FLOAT            = 2
ODBQL_TEXT             = 3
ODBQL_BLOB             = 4
ODBQL_NULL             = 5
ODBQL_BITFIELD         = 6

def type_name(i):
    return [None, 'INTEGER', 'REAL', 'TEXT', 'BLOB', 'NULL', 'BITFIELD'][i]

class Connection:
    def __init__(self, file_name):
        self.file_name = file_name
        self.db = c_voidp()
        rc = odbql_open(self.file_name, byref(self.db))
        # TODO
        #self.assertEqual(rc, ODBQL_OK)

    def close(self): pass
    def commit(self): pass
    # Not supported:
    #def rollback(self): pass

    def cursor(self):
        return Cursor(self.file_name, self)


class fetchall_generator(object):
    def __init__(self, cursor):
        self.cursor = cursor
    def __iter__(self): return self
    def __next__(self):
        v = self.cursor.fetchone()
        if not v:
            raise StopIteration()
        return v

class Cursor:

    def __init__(self, file_name, connection):
        self.file_name = file_name
        self.stmt = c_voidp(0)
        self.number_of_columns = None
        ## https://www.python.org/dev/peps/pep-0249/#id28
        self.connection = connection

        ## https://www.python.org/dev/peps/pep-0249/#description
        #
        #  This read-only attribute is a sequence of 7-item sequences.
        #
        # Each of these sequences contains information describing one result column:
        #   name, type_code, display_size, internal_size, precision, scale, null_ok
        self.description = []

    def __column_info(self, name, typ):
        return (name,
                typ,   # type_code ## TODO
                None,  # display_size
                None,  # internal_size
                None,  # precision
                None,  # scale
                True   # null_ok
                )

    def close(self):
        if self.stmt is not None:
            rc = odbql_finalize(self.stmt)
            assert rc == ODBQL_OK
            self.stmt = None

    def execute(self, operation, parameters = None):
        self.close()
        self.stmt, tail, db = c_voidp(0), c_char_p(0), self.connection.db

        operation = self.__add_semicolon_if_needed(operation)
        rc = odbql_prepare_v2(db, operation, -1, byref(self.stmt), byref(tail))
        if rc != ODBQL_OK:
            err_msg = odbql_errmsg(db).strip()
            #print 'execute: odbql_prepare_v2 failed with error message: "%s"' % err_msg
            if err_msg == "syntax error":
                raise SyntaxError()

            if err_msg.startswith('Cannot open ') and err_msg.endswith('(No such file or directory)'):
                #'Cannot open non_existing.odb  (No such file or directory)'
                raise IOError("No such file or directory: '" + err_msg.split()[2] + "'")

            raise Exception('execute: prepare failed')

        self.__populate_meta_data()

    def __populate_meta_data(self):
        self.number_of_columns = odbql_column_count(self.stmt)
        self.names = [odbql_column_name(self.stmt, i) for i in range(self.number_of_columns)]
        self.types = [odbql_column_type(self.stmt, i) for i in range(self.number_of_columns)]
        self.description = list(map (self.__column_info, self.names, self.types))

    def fetchall(self):
        return fetchall_generator(self)

    def __iter__(self): return self

    def __next__(self):
        r = self.fetchone()
        if r:
            return r
        raise StopIteration()

    def fetchone(self):
        if not self.stmt:
            raise Exception('fetchone: you must call execute first')

        rc = odbql_step(self.stmt)

        if rc == ODBQL_METADATA_CHANGED or not self.description:
            self.__populate_meta_data()

        if not rc in (ODBQL_ROW, ODBQL_METADATA_CHANGED):
            return None

        r = [self.value(column) for column in range(self.number_of_columns)]
        return r

    def value(self, column):
        v = odbql_column_value(self.stmt, column)
        if not v: return None
        else:
            t = self.types[column]
            if t == ODBQL_FLOAT: return odbql_value_double(v)
            if t == ODBQL_INTEGER: return odbql_value_int(v)
            if t == ODBQL_TEXT: return odbql_column_text(self.stmt, column)
            if t == ODBQL_NULL: return None
            if t == ODBQL_BITFIELD: return odbql_value_int(v)
            #ODBQL_BLOB     = 4
            return odbql_column_text(self.stmt, column)

    def executemany(self, operation, parameters):
        """
        """

        self.close()
        self.stmt, tail, db = c_voidp(0), c_char_p(0), self.connection.db

        operation = self.__add_semicolon_if_needed(operation)
        rc = odbql_prepare_v2(db, operation, -1, byref(self.stmt), byref(tail))
        #self.assertEqual(rc, ODBQL_OK)

        for ps in parameters:
            self.__bind(ps)
            rc = odbql_step(self.stmt)
            #self.assertEqual(rc, ODBQL_ROW)

        #rc = odbql_finalize(self.stmt)
        #self.assertEqual(rc, ODBQL_OK)

    def callproc(self, procname, *parameters, **keyword_parameters):
        """
        Execute ECML verb
        """
        db, self.stmt, tail = c_voidp(), c_voidp(), c_char_p()
        rc = odbql_open(self.file_name, byref(db))

        operation = '{ ' + self.__marsify(procname, keyword_parameters) + ' }; '

        rc = odbql_prepare_v2(db, operation, -1, byref(self.stmt), byref(tail))
        rc = odbql_step(self.stmt)
        #rc = odbql_finalize(self.stmt)
        return ODBQL_OK


    def __marsify(self, procname, keyword_parameters):

        def marslist(l):
            try:
                if type(l) in (types.GeneratorType, types.ListType, types.TupleType):
                    return '/'.join([str(x) for x in l])
            except: # on python3
                if type(l) in (types.GeneratorType, list, tuple):
                    return '/'.join([str(x) for x in l])
            else:
                return str(l)

        r = procname + "".join ( [ ',' + k + '=' + marslist(v) for k,v in list(keyword_parameters.items())] )
        return r


    def __bind(self, parameters):
        for i in range(len(parameters)):

            p = parameters[i]

            if p is None:
                rc = odbql_bind_null(self.stmt, i)
                #self.assertEqual(rc, ODBQL_OK)

            if type(p) == str:
                rc = odbql_bind_text(self.stmt, i, p, len(p), ODBQL_STATIC)
                #self.assertEqual(rc, ODBQL_OK)
            elif type(p) == int:
                rc = odbql_bind_int(self.stmt, i, p)
                #self.assertEqual(rc, ODBQL_OK)
            elif type(p) == float:
                rc = odbql_bind_double(self.stmt, i, c_double(p))
                #self.assertEqual(rc, ODBQL_OK)
            else:
                raise "Don't know how to bind parameter " + str(p) + ' of type ' + str(type(p))

    def __add_semicolon_if_needed(self, s):
        if s.strip().endswith(';'):
            return s
        else:
            return s + ';'


class __new_sql_generator:
    def __init__(self, cursor): self.cursor = cursor
    def __iter__(self): return self
    def __next__(self):
        v = self.cursor.fetchone()
        if not v:
            raise StopIteration()
        return v

## Support for legacy functions open and sql

class new_sql_row(object):

    def __init__(self, cursor):
        self.cursor = cursor
        self.name_to_index = None
        self.names = None

    def __getitem__(self, *indices):
        if len(indices) == 1:
            if type(indices[0]) == tuple:
                return tuple(self.__getitem__(i) for i in indices[0])
            else:
                return self.__get_one_item__(indices[0])

        return [self.__get_one_item__(i) for i in indices]

    def columns(self):
        class column_info:
            def __init__(self, name, typ):
                self.__name = name
                self.__typ = typ

            def name(self): return self.__name
            def type(self): return self.__typ

        return [column_info(c[0],c[1]) for c in self.cursor.description]


    def __get_one_item__(self, index):
        if type(index) == int: return self.cursor.value(index)
        if type(index) == str: return self.__value_by_name(index)
        if type(index) == tuple: return tuple(self.__get_one_item__(i) for i in index)
        if index == slice(None,None,None):
            return [self.cursor.value(i) for i in range(len(self.cursor.description))]
        if type(index) == slice:
            return [self.__get_one_item__(i) for i in [t[0] for t in enumerate(self.cursor.description)][index.start : index.stop : index.step]]

        raise TypeError('__get_one_item__: index == ' + str(index))

    def __value_by_name(self, index):
        if self.name_to_index is None:
            self.name_to_index = dict([(self.cursor.description[i][0], i) for i in range(len(self.cursor.description))])
            self.names = [self.cursor.description[i][0] for i in range(len(self.cursor.description))]
        try:
            return self.cursor.value(self.name_to_index[index])
        except KeyError:
            simillar_columns = [n for n in self.names if n.startswith(index)]

            if len(simillar_columns) == 1 and simillar_columns[0].startswith(index + '@'):
                self.name_to_index[index] = self.name_to_index[simillar_columns[0]]
                return self.cursor.value(self.name_to_index[index])

            msg = simillar_columns and \
                  'could be: ' + ','.join(simillar_columns) \
                  or 'should be one of: ' + ','.join(self.names)

            raise KeyError(str(index) + ', ' + msg)


class new_sql_generator(object):
    def __init__(self, cursor):
        self.cursor = cursor
    def __iter__(self): return self
    def __next__(self): return self.next()
    def next(self):
        if not self.cursor.stmt:
            raise Exception('execute must be called first')

        rc = odbql_step(self.cursor.stmt)
        if not rc in (ODBQL_ROW, ODBQL_METADATA_CHANGED):
            raise StopIteration()
        return new_sql_row(self.cursor)

def new_sql(s):
    conn = connect("")
    c = conn.cursor()
    c.execute(s)
    return new_sql_generator(c)

def new_open(fn):
    s = '''select all * from "{}";'''.format(fn)
    conn = connect("")
    c = conn.cursor()
    c.execute(s)
    return new_sql_generator(c)