This file is indexed.

/usr/lib/python3/dist-packages/csb/build.py is in python3-csb 1.2.3+dfsg-3.

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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
"""
CSB build related tools and programs.

When executed as a program, this module will run the CSB Build Console and
build the source tree it belongs to. The source tree is added at the
B{beginning} of sys.path to make sure that all subsequent imports from the
Test and Doc consoles will import the right thing (think of multiple CSB
packages installed on the same server).

Here is how to build, test and package the whole project::

    $ hg clone https://hg.codeplex.com/csb CSB
    $ CSB/csb/build.py -o <output directory>

The Console can also be imported and instantiated as a regular Python class.
In this case the Console again builds the source tree it is part of, but
sys.path will remain intact. Therefore, the Console will assume that all
modules currently in memory, as well as those that can be subsequently imported
by the Console itself, belong to the same CSB package.

@note: The CSB build services no longer support the option to build external
       source trees.
@see: [CSB 0000038]
"""
from __future__ import print_function

import os
import sys
import getopt
import traceback
import compileall
        
if os.path.basename(__file__) == '__init__.py':
    PARENT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
else:
    PARENT = os.path.abspath(os.path.dirname(__file__))

ROOT = 'csb'
SOURCETREE = os.path.abspath(os.path.join(PARENT, ".."))

if __name__ == '__main__':

    # make sure "import io" imports the built in module, not csb.io
    # io is required by tarfile    
    for path in sys.path:
        if path.startswith(SOURCETREE):
            sys.path.remove(path)
            
    import io
    assert hasattr(io, 'BufferedIOBase')   
            
    sys.path = [SOURCETREE] + sys.path


"""
It is now safe to import any modules  
"""
import imp
import shutil
import tarfile

import csb

from abc import ABCMeta, abstractmethod
from csb.io import Shell


class BuildTypes(object):
    """
    Enumeration of build types.
    """
    
    SOURCE = 'source'
    BINARY = 'binary'

    _du = { SOURCE: 'sdist', BINARY: 'bdist' }    
    
    @staticmethod
    def get(key):
        try:
            return BuildTypes._du[key]
        except KeyError:
            raise ValueError('Unhandled build type: {0}'.format(key))
    
        
class Console(object):
    """
    CSB Build Bot. Run with -h for usage.
    
    @param output: build output directory
    @type output: str
    @param verbosity: verbosity level
    @type verbosity: int
    
    @note: The build console automatically detects and builds the csb package
           it belongs to. You cannot build a different source tree with it.
           See the module documentation for more info.
    """
    
    PROGRAM = __file__
    
    USAGE = r"""
CSB Build Console: build, test and package the entire csb project.

Usage:
     python {program} -o output [-v verbosity] [-t type] [-h]
     
Options:
      -o  output     Build output directory
      -v  verbosity  Verbosity level, default is 1
      -t  type       Build type:
                        source - build source code distribution (default)
                        binary - build executable
      -h, --help     Display this help
    """    
    
    def __init__(self, output='.', verbosity=1, buildtype=BuildTypes.SOURCE):
        
        self._input = None
        self._output = None
        self._temp = None
        self._docs = None         
        self._apidocs = None
        self._root = None
        self._verbosity = None
        self._type = buildtype
        self._dist = BuildTypes.get(buildtype) 
            
        if os.path.join(SOURCETREE, ROOT) != PARENT:
            raise IOError('{0} must be a sub-package or sub-module of {1}'.format(__file__, ROOT))
        self._input = SOURCETREE
        
        self._success = True
                
        self.output = output
        self.verbosity = verbosity
        
    @property
    def input(self):
        return self._input        
        
    @property
    def output(self):
        return self._output
    @output.setter
    def output(self, value):
        #value = os.path.dirname(value)        
        self._output = os.path.abspath(value)
        self._temp = os.path.join(self._output, 'build')
        self._docs = os.path.join(self._temp, 'docs')         
        self._apidocs = os.path.join(self._docs, 'api')
        self._root = os.path.join(self._temp, ROOT)    

    @property
    def verbosity(self):
        return self._verbosity
    @verbosity.setter
    def verbosity(self, value):
        self._verbosity = int(value)                     

    def build(self):
        """
        Run the console.
        """
        self.log('\n# Building package {0} from {1}\n'.format(ROOT, SOURCETREE))
        
        self._init()        
        v = self._revision()
        self._doc(v)
        self._test()
        
        self._compile()        
        vn = self._package()     
        
        if self._success:
            self.log('\n# Done ({0}).\n'.format(vn.full))
        else:
            self.log('\n# Build failed.\n')
                 

    def log(self, message, level=1, ending='\n'):

        if self._verbosity >= level:             
            sys.stdout.write(message)
            sys.stdout.write(ending)
        sys.stdout.flush()
        
    def _init(self):
        """
        Collect all required stuff in the output folder.
        """
        self.log('# Preparing the file system...')
                
        if not os.path.exists(self._output):
            self.log('Creating output directory {0}'.format(self._output), level=2)
            os.mkdir(self._output)

        if os.path.exists(self._temp):
            self.log('Deleting existing temp directory {0}'.format(self._temp), level=2)         
            shutil.rmtree(self._temp)
                    
        self.log('Copying the source tree to temp directory {0}'.format(self._temp), level=2)            
        shutil.copytree(self._input, self._temp)
                    
        if os.path.exists(self._apidocs):
            self.log('Deleting existing API docs directory {0}'.format(self._apidocs), level=2)            
            shutil.rmtree(self._apidocs)
        if not os.path.isdir(self._docs):
            self.log('Creating docs directory {0}'.format(self._docs), level=2)
            os.mkdir(self._docs)            
        self.log('Creating API docs directory {0}'.format(self._apidocs), level=2)                        
        os.mkdir(self._apidocs)
        
    def _revision(self):
        """
        Write the actual revision number to L{ROOT}.__version__
        """
        self.log('\n# Setting the most recent Revision Number...')        
        root = os.path.join(self._root, '__init__.py')
        
        self.log('Retrieving revision number from {0}'.format(root), level=2)               
        rh = MercurialHandler(root)        
        revision = rh.read().revision
        
        self.log('Writing back revision number {0}'.format(revision), level=2)        
        version = rh.write(revision, root)

        self.log('  This is {0}.__version__ {1}'.format(ROOT, version), level=1)
        csb.__version__ = version
        
        return version 
                
    def _test(self):
        """
        Run tests. Also make sure the current environment loads all modules from
        the input folder.
        """
        import csb.test
        assert csb.test.__file__.startswith(self._input), 'csb.test not loaded from the input!'     #@UndefinedVariable
        
        from csb.test import unittest
                        
        newdata = os.path.join(self._temp, ROOT, 'test', 'data')
        csb.test.Config.setDefaultDataRoot(newdata)

        self.log('\n# Updating all test pickles in {0} if necessary...'.format(newdata), level=2)        
        csb.test.Config().ensureDataConsistency()

        self.log('\n# Running the Test Console...')
                        
        builder = csb.test.AnyTestBuilder()
        suite = builder.loadTests(ROOT + '.test.cases.*')

        runner = unittest.TextTestRunner(stream=sys.stderr, verbosity=self.verbosity)
        result = runner.run(suite)
        if result.wasSuccessful():
            self.log('\n  Passed all unit tests')
        else:
            self.log('\n  DID NOT PASS: The build might be broken')                             
        
    def _doc(self, version):
        """
        Build documentation in the output folder.        
        """
        self.log('\n# Generating API documentation...')
        try:
            import epydoc.cli
        except ImportError:
            self.log('\n  Skipped: epydoc is missing')
            return
                
        self.log('\n# Emulating ARGV for the Doc Builder...', level=2)        
        argv = sys.argv    
        sys.argv = ['epydoc', '--html', '-o', self._apidocs,
                    '--name', '{0} v{1}'.format(ROOT.upper(), version),
                    '--no-private', '--introspect-only', '--exclude', 'csb.test.cases',
                    '--css', os.path.join(self._temp, 'epydoc.css'),
                    '--fail-on-error', '--fail-on-warning', '--fail-on-docstring-warning',
                    self._root]
        
        if self._verbosity > 0:                
            sys.argv.append('-v')
        
        try:
            epydoc.cli.cli()
            sys.exit(0)
        except SystemExit as ex:
            if ex.code is 0:
                self.log('\n  Passed all doc tests')
            else:
                if ex.code == 2:
                    self.log('\n  DID NOT PASS: The docs might be broken')                    
                else:
                    self.log('\n  FAIL: Epydoc returned "#{0.code}: {0}"'.format(ex))
                    self._success = False

        self.log('\n# Restoring the previous ARGV...', level=2)    
        sys.argv = argv    
        
    def _compile(self):
        """
        Byte-compile all modules and packages.
        """
        self.log('\n# Byte-compiling all *.py files...')
        
        quiet = self.verbosity <= 1
        valid = compileall.compile_dir(self._root, quiet=quiet, force=True)
        
        if not valid:
            self.log('\n  FAIL: Compilation error(s)\n')
            self._success = False
                        
    def _package(self):
        """
        Make package.
        """
        self.log('\n# Configuring CWD and ARGV for the Setup...', level=2)
        cwd = os.curdir
        os.chdir(self._temp)
                                
        if self._verbosity > 1:
            verbosity = '-v'
        else:
            verbosity = '-q'
        argv = sys.argv            
        sys.argv = ['setup.py', verbosity, self._dist, '-d', self._output]        
            
        self.log('\n# Building {0} distribution...'.format(self._type))
        try:       
            setup = imp.load_source('setupcsb', 'setup.py')
            d = setup.build()
            version = setup.VERSION
            package = d.dist_files[0][2]
            
            if self._type == BuildTypes.BINARY:
                self._strip_source(package)
            
        except SystemExit as ex:
            if ex.code is not 0:
                self.log('\n  FAIL: Setup returned: \n\n{0}\n'.format(ex))
                self._success = False
                package = 'FAIL'
            
        self.log('\n# Restoring the previous CWD and ARGV...', level=2)
        os.chdir(cwd)
        sys.argv = argv   

        self.log('  Packaged ' + package)   
        return version
    
    def _strip_source(self, package, source='*.py'):
        """
        Delete plain text source code files from the package.
        """    
        cwd = os.getcwd()
        
        try:  
            tmp = os.path.join(self.output, 'tmp')
            os.mkdir(tmp)
        
            self.log('\n# Entering {1} in order to delete .py files from {0}...'.format(package, tmp), level=2)        
            os.chdir(tmp)
                
            oldtar = tarfile.open(package, mode='r:gz')
            oldtar.extractall(tmp)
            oldtar.close()
            
            newtar = tarfile.open(package, mode='w:gz')            
    
            try:
                for i in os.walk('.'):
                    for fn in i[2]:
                        if fn.endswith('.py'):
                            module = os.path.join(i[0], fn);
                            if not os.path.isfile(module.replace('.py', '.pyc')):
                                raise ValueError('Missing bytecode for module {0}'.format(module))
                            else:                                          
                                os.remove(os.path.join(i[0], fn))
                
                for i in os.listdir('.'):
                    newtar.add(i)        
            finally:
                newtar.close()
                
        finally:
            self.log('\n# Restoring the previous CWD...', level=2)            
            os.chdir(cwd)
            if os.path.exists(tmp):
                shutil.rmtree(tmp)    
        
    @staticmethod
    def exit(message=None, code=0, usage=True):
        
        if message:
            print(message)
        if usage:
            print(Console.USAGE.format(program=Console.PROGRAM))    
                
        sys.exit(code)               

    @staticmethod
    def run(argv=None):
        
        if argv is None:
            argv = sys.argv[1:]
            
        output = None
        verb = 1
        buildtype = BuildTypes.SOURCE
                
        try:   
            options, dummy = getopt.getopt(argv, 'o:v:t:h', ['output=', 'verbosity=', 'type=', 'help'])
            
            for option, value in options:
                if option in('-h', '--help'):
                    Console.exit(message=None, code=0)
                if option in('-o', '--output'):
                    if not os.path.isdir(value):
                        Console.exit(message='E: Output directory not found "{0}".'.format(value), code=3)
                    output = value
                if option in('-v', '--verbosity'):
                    try:
                        verb = int(value)
                    except ValueError:
                        Console.exit(message='E: Verbosity must be an integer.', code=4)
                if option in('-t', '--type'):
                    if value not in [BuildTypes.SOURCE, BuildTypes.BINARY]:
                        Console.exit(message='E: Invalid build type "{0}".'.format(value), code=5)
                    buildtype = value                                         
        except getopt.GetoptError as oe:
            Console.exit(message='E: ' + str(oe), code=1)        

        if not output:
            Console.exit(code=1, usage=True)
        else:
            try:
                Console(output, verbosity=verb, buildtype=buildtype).build()
            except Exception as ex:
                msg = 'Unexpected Error: {0}\n\n{1}'.format(ex, traceback.format_exc())
                Console.exit(message=msg, code=99, usage=False)
                
            
class RevisionError(RuntimeError):
    
    def __init__(self, msg, code, cmd):
        
        super(RevisionError, self).__init__(msg)
        self.code = code
        self.cmd = cmd

class RevisionHandler(object):
    """
    Determines the current repository revision number of a working copy.
    
    @param path: a local checkout path to be examined
    @type path: str
    @param sc: name of the source control program
    @type sc: str 
    """    
    
    def __init__(self, path, sc):
        
        self._path = None
        self._sc = None
        
        if os.path.exists(path):
            self._path = path
        else:
            raise IOError('Path not found: {0}'.format(path))
        if Shell.run([sc, 'help']).code is 0:
            self._sc = sc
        else:
            raise RevisionError('Source control binary probe failed', None, None)
        
    @property
    def path(self):
        return self._path
    
    @property
    def sc(self):
        return self._sc
    
    @abstractmethod
    def read(self):
        """
        Return the current revision information.
        @rtype: L{RevisionInfo}
        """
        pass
    
    def write(self, revision, sourcefile):
        """
        Finalize the __version__ = major.minor.micro.{revision} tag.
        Overwrite C{sourcefile} in place by substituting the {revision} macro.
        
        @param revision: revision number to write to the source file.
        @type revision: int
        @param sourcefile: python source file with a __version__ tag, typically
                           "csb/__init__.py"
        @type sourcefile: str
        
        @return: sourcefile.__version__
        """
        content = open(sourcefile).readlines()
        
        with open(sourcefile, 'w') as src:
            for line in content:
                if line.startswith('__version__'):
                    src.write(line.format(revision=revision))
                else:
                    src.write(line)

        self._delcache(sourcefile)
        return imp.load_source('____source', sourcefile).__version__      
    
    def _run(self, cmd):
        
        si = Shell.run(cmd)
        if si.code > 0:
            raise RevisionError('SC failed ({0.code}): {0.stderr}'.format(si), si.code, si.cmd)
        
        return si.stdout.splitlines()
    
    def _delcache(self, sourcefile):
        
        compiled = os.path.splitext(sourcefile)[0] + '.pyc'
        if os.path.isfile(compiled):
            os.remove(compiled)
            
        pycache = os.path.join(os.path.dirname(compiled), '__pycache__')
        if os.path.isdir(pycache): 
            shutil.rmtree(pycache)
            
class SubversionHandler(RevisionHandler):

    def __init__(self, path, sc='svn'):   
        super(SubversionHandler, self).__init__(path, sc)    

    def read(self):

        cmd = '{0.sc} info {0.path} -R'.format(self)
        maxrevision = None
            
        for line in self._run(cmd):
            if line.startswith('Revision:'):
                rev = int(line[9:] .strip())
                if rev > maxrevision:
                    maxrevision = rev
        
        if maxrevision is None:
            raise RevisionError('No revision number found', code=0, cmd=cmd)
        
        return RevisionInfo(self.path, maxrevision)

class MercurialHandler(RevisionHandler):  

    def __init__(self, path, sc='hg'):
        
        if os.path.isfile(path):
            path = os.path.dirname(path)
                         
        super(MercurialHandler, self).__init__(path, sc)
        
    def read(self):
        
        wd = os.getcwd()
        os.chdir(self.path)
        
        try:
            cmd = '{0.sc} log -r tip'.format(self)
    
            revision = None
            changeset = ''
            
            for line in self._run(cmd):
                if line.startswith('changeset:'):
                    items = line[10:].split(':')
                    revision = int(items[0])
                    changeset = items[1].strip()
                    break
    
            if revision is None:
                raise RevisionError('No revision number found', code=0, cmd=cmd)
            
            return RevisionInfo(self.path, revision, changeset)  
        
        finally:
            os.chdir(wd)
                    
class RevisionInfo(object):
    
    def __init__(self, item, revision, id=None):
        
        self.item = item
        self.revision = revision
        self.id = id

        
def main():
    Console.run()
        

if __name__ == '__main__':
    
    main()