aboutsummaryrefslogtreecommitdiff
blob: f25ee612462d48171348679b205713b037aba04d (plain)
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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
# R overlay -- overlay package, root of distdirs
# -*- coding: utf-8 -*-
# Copyright (C) 2013 André Erdmann <dywi@mailerd.de>
# Distributed under the terms of the GNU General Public License;
# either version 2 of the License, or (at your option) any later version.

__all__ = [
   'TemporaryDistroot', 'PersistentDistroot',
]

import atexit
import errno
import logging
import os
import shutil
import tempfile


import roverlay.db.distmap
import roverlay.overlay.pkgdir.distroot.distdir
import roverlay.util.common
import roverlay.util.hashpool
import roverlay.util.objects


class DistrootBase ( object ):
   """Base class for distroots."""

   HASHPOOL_JOB_COUNT = 2

   def __repr__ ( self ):
      return "{name}<root={root}>".format (
         name = self.__class__.__name__,
         root = self.get_root()
      )
   # --- end of __repr__ (...) ---

   def __str__ ( self ):
      return self.get_root()
   # --- end of __str__ (...) ---

   def __init__ ( self, root, flat, logger=None, distmap=None ):
      """DistrootBase constructor.

      arguments:
      * root    -- root directory
      * flat    -- whether to use a flat structure (all packages in a single
                    directory, True) or per-package sub directories (False)
      * logger  --
      * distmap --
      """
      super ( DistrootBase, self ).__init__()
      self.logger = logger or logging.getLogger ( self.__class__.__name__ )
      self._root  = root
      # or use hasattr ( self, '_default_distdir' )
      self._flat  = flat

      self.distmap            = None
      self._need_distmap_sync = None
      self._set_distmap ( distmap )

      if flat:
         self._default_distdir = (
            roverlay.overlay.pkgdir.distroot.distdir.Distdir ( self )
         )

      if not os.path.isdir ( self._root ):
         os.makedirs ( self._root, 0o755 )

      self._prepare()

      # python 2's atexit has no unregister()
      #  using a "guardian" function + a bool
      self.finalize_at_exit = True
      atexit.register ( self._atexit_run )
   # --- end of __init__ (...) ---

   def _set_distmap ( self, distmap ):
      self.distmap            = distmap
      self._need_distmap_sync = False
   # --- end of _set_distmap (...) ---

   def _atexit_run ( self ):
      """Performs at-exit actions unless already done."""
      if self.finalize_at_exit:
         self.finalize()
   # --- end of _atexit_run (...) ---

   def finalize ( self, backup_distmap=True ):
      """Finalizes this object, that is
      (a) disable at-exit behavior
      (b) clean up the distroot
      (c) write the distmap (if any)

      arguments:
      * backup_distmap -- whether to create a copy of the old distmap before
                          writing the new one
      """
      # disable finalize_at_exit first so that exceptions cannot trigger
      # _atexit_run()->this function
      #
      self.logger.info ( "finalizing" )
      self.finalize_at_exit = False

      self._cleanup()
      if self.distmap is not None:
         ## not necessary
         #self.distmap.remove_volatiles()
         if backup_distmap:
            self.distmap.backup_and_write ( force=False )
         else:
            self.distmap.write ( force=False )
      self.logger.debug ( "finalize() done" )
   # --- end of finalize (...) ---

   @roverlay.util.objects.abstractmethod
   def _add ( self, src, dest ):
      """Adds src to the distroot.

      This method should be called by distdir objects.

      arguments:
      * src --
      * dest --
      """
      pass
   # --- end of _add (...) ---

   def _add_symlink ( self, src, dest, filter_exceptions=False ):
      """Adds src as symbolic link to the distroot.

      Returns True if the operation succeeded and False if an exception has
      been filtered out ("symlinks are not supported - try something else").
      Any other exception will be passed.

      arguments:
      * src --
      * dest --
      * filter_exceptions --
      """
      if os.path.lexists ( dest ):
         # safe removal
         os.unlink ( dest )
      elif os.path.exists ( dest ):
         # FIXME 2014: exists(<file>) implies lexists(<file>),
         #             so this block is unreachable -- remove it
         #
         # unsafe removal (happens when switching from e.g. hardlinks)
         # FIXME log this
         os.unlink ( dest )

      if filter_exceptions:
         try:
            os.symlink ( src, dest )
         except OSError as err:
            if err.errno == errno.EPERM:
               # fs does not support symlinks
               return False
            else:
               raise
      else:
         os.symlink ( src, dest )

      return True
   # --- end of _add_symlink (...) ---

   def _add_hardlink ( self, src, dest, filter_exceptions=False ):
      """Adds src as hard link to the distroot.

      Returns True if the operation succeeded and False if an exception has
      been filtered out ("hardlinks are not supported").
      Any other exception will be passed.

      arguments:
      * src --
      * dest --
      * filter_exceptions --
      """
      self._try_remove ( dest )

      if filter_exceptions:
         try:
            os.link ( src, dest )
         except OSError as err:
            if err.errno == errno.EXDEV or err.errno == errno.EPERM:
               # cross-device link or filesystem does not support hard links
               return False
            else:
               raise
      else:
         os.link ( src, dest )

      return True
   # --- end of _add_hardlink (...) ---

   def _add_file ( self, src, dest, filter_exceptions=False ):
      """Copies src to the distroot.

      Returns True if the operation succeeded and False if an exception has
      been filtered out ("copy is not supported").
      Any other exception will be passed.

      arguments:
      * src --
      * dest --
      * filter_exceptions --

      *** this function is DISABLED; it will always raise an Exception ***
      """
      raise NotImplementedError ( "copy is disabled" )
#      # TODO: check whether copying is necessary
#      self._try_remove ( dest )
#      shutil.copyfile ( src, dest )
#      return True
   # --- end of _add_file (...) ---

   def _cleanup ( self ):
      """Cleans up this distroot."""
      pass
   # --- end of _cleanup (...) ---

   def _prepare ( self ):
      """Prepares the distroot."""
      pass
   # --- end of _prepare (...) ---

   def iter_distfiles ( self, distfile_only ):
      def recursive_iter ( root_abspath, root_relpath ):
         for item in os.listdir ( root_abspath ):
            abspath = root_abspath + os.sep + item
            relpath = (
               item if root_relpath is None
               else root_relpath + os.sep + item
            )
            if os.path.isdir ( abspath ):
               for result in recursive_iter ( abspath, relpath ):
                  yield result
            else:
               yield ( abspath, relpath )
      # --- end of recursive_iter (...) ---

      if distfile_only:
         for pkgfile, distfile in recursive_iter ( self.get_root(), None ):
            yield distfile
      else:
         for pkgfile, distfile in recursive_iter ( self.get_root(), None ):
            yield ( pkgfile, distfile )
   # --- end of iter_distfiles (...) ---

   def _remove_broken_symlinks ( self ):
      """Recursively removes broken/dead symlinks."""

      def recursive_remove ( dirpath, rel_dirpath, rmdir ):
         for item in os.listdir ( dirpath ):
            fpath   = dirpath + os.sep + item
            relpath = (
               item if rel_dirpath is None else rel_dirpath + os.sep + item
            )

            if not os.path.exists ( fpath ):
               # drop broken symlink
               self.logger.debug (
                  "Removing broken symlink {!r}".format ( fpath )
               )
               os.unlink ( fpath )
               if self.distmap is not None:
                  self.distmap.try_remove ( relpath )
            elif os.path.isdir ( fpath ):
               recursive_remove ( fpath, relpath, True )
               if rmdir:
                  try:
                     os.rmdir ( fpath )
                  except OSError:
                     pass
         # -- end for
      # --- end of recursive_remove (...) ---

      return recursive_remove ( self.get_root(), None, False )
   # --- end of _remove_broken_symlinks (...) ---

   def _try_remove ( self, dest ):
      """Tries to remove a file (from the distmap and the filesystem)
      and suppresses "file does not exist" exceptions.

      arguments:
      * dest -- file to remove (absolute path)
      """
      try:
         os.unlink ( dest )
      except OSError as e:
         if e.errno != errno.ENOENT:
            raise
      else:
         if self.distmap is not None:
            self.distmap.try_remove (
               os.path.relpath ( dest, self.get_root() )
            )
   # --- end of _try_remove (...) ---

   def get_distdir ( self, ebuild_name ):
      """Returns a distdir instance for given package.

      arguments:
      * package_name -- name of the ebuild (${PN}) for which a distdir will
                        be created. A "flat" distdir will be returned if this
                        is none.
      """
      if self._flat:
         assert self._default_distdir._distroot is self
         return self._default_distdir
      elif ebuild_name is None:
         return roverlay.overlay.pkgdir.distroot.distdir.Distdir ( self )
      else:
         return roverlay.overlay.pkgdir.distroot.distdir.PackageDistdir (
            self, ebuild_name
         )
   # --- end of get_distdir (...) ---

   def get_root ( self ):
      """Returns the filesystem path to this distroot (as str)."""
      return str ( self._root )
   # --- end of get_root (...) ---

   def get_fspath ( self, relpath ):
      """Returns the filesystem path prefixed with the distroot's directory
      path.

      arguments:
      * relpath --
      """
      return str ( self._root ) + os.sep + relpath
   # --- end of get_fspath (...) ---

   def get_relpath ( self, abspath ):
      return os.path.relpath ( abspath, str ( self._root ) )
   # --- end of get_relpath (...) ---

   def distmap_register ( self, p_info ):
      """Adds a new entry for the given PackageInfo instance to the distmap.

      arguments:
      p_info --
      """
      return self.distmap.add_entry_for ( p_info )
   # --- end of distmap_register (...) ---

   def distmap_update_entry ( self, p_info ):
      """Makes an already existing distmap entry for p_info persistent
      (so that it can be written to disk).

      arguments:
      * p_info --
      """
      return self.distmap.add_entry_for_volatile ( p_info )
   # --- end of distmap_update_entry (...) ---

   def sync_distmap ( self ):
      """Creates dummy entries for files missing in the distmap."""
      distmap = self.distmap
      if distmap is not None:
         hash_pool = roverlay.util.hashpool.HashPool (
            ( distmap.get_hash_type(), ), self.HASHPOOL_JOB_COUNT,
            use_threads=True
         )

         for abspath, relpath in self.iter_distfiles ( False ):
            if relpath not in distmap:
               hash_pool.add ( relpath, abspath, None )

         for relpath, hashdict in hash_pool.run_as_completed():
            distmap.add_dummy_entry ( relpath, hashdict=hashdict )
   # --- end of sync_distmap (...) ---

   def sync_distmap_if_required ( self ):
      if self._need_distmap_sync:
         self.sync_distmap()
         self._need_distmap_sync = False
   # --- end of sync_distmap_if_required (...) ---

   def need_distmap_sync ( self ):
      self._need_distmap_sync = True
   # --- end of need_distmap_sync (...) ---

   def check_integrity ( self ):
      """Verifies (and regenerates) the distmap:

      (a) creates checksums for all files in the distroot [threaded]
      (b) compares the checksums with the distmap's entries
      -> create entries for missing files
      -> drop entries if checksums do not match
      (c) drop distmap entries whose file do not exist
      """
      if self.distmap is not None:
         distfiles = set()
         distmap_hashtype = self.distmap.get_hash_type()
         checkfile = self.distmap.check_digest_integrity

         self.logger.info ( "calculating file hashes" )

         hash_pool = roverlay.util.hashpool.HashPool (
            ( distmap_hashtype, ), self.HASHPOOL_JOB_COUNT, use_threads=True
         )

         for abspath, relpath in self.iter_distfiles ( False ):
            hash_pool.add ( relpath, abspath, None )

         for relpath, hashdict in hash_pool.run_as_completed():
            status = checkfile ( relpath, hashdict[distmap_hashtype] )

            if status == 0:
               self.logger.debug (
                  "file has been verified: {!r}".format ( relpath )
               )
               distfiles.add ( relpath )
            elif status == 1:
               # file not in distmap
               self.logger.info (
                  "file not in distmap, creating dummy entry: {!r}".format ( relpath )
               )
               self.distmap.add_dummy_entry (
                  relpath, hashdict=hashdict, log_level=False
               )
               distfiles.add ( relpath )
            elif status == 2:
               # file in distmap, but not valid - remove it from distmap
               self.logger.warning (
                  "digest mismatch: {!r}".format ( relpath )
               )
               self.distmap.remove ( relpath )
         # -- end for

         distmap_keys = frozenset ( self.distmap.keys() )

         if distfiles:
            # reverse compare
            for distfile in distmap_keys:
               if distfile not in distfiles:
                  self.logger.warning (
                     "distmap file does not exist: {!r}".format ( distfile )
                  )
                  self.distmap.remove ( distfile )

         else:
            # no files from distroot in distmap -- invalidate distmap
            for distfile in distmap_keys:
               self.logger.warning (
                  "distmap file does not exist: {!r}".format ( distfile )
               )
               self.distmap.remove ( distfile )
      else:
         raise Exception ( "check_integrity() needs a distmap." )
   # --- end of check_integrity (...) ---

   @roverlay.util.objects.abstractmethod
   def set_distfile_owner ( self, backref, distfile ):
      pass
   # --- end of set_distfile_owner (...) ---

   @roverlay.util.objects.abstractmethod (
      params=[ 'package_dir', 'package_info' ]
   )
   def handle_file_collision ( self, package_dir, package_info ):
      pass
   # --- end of handle_file_collision (...) ---

# --- end of DistrootBase ---


class TemporaryDistroot ( DistrootBase ):
   # TODO/FIXME: remove this class, it's not used

   def __init__ ( self, logger=None ):
      # temporary distroots always use the non-flat distdir layout
      super ( TemporaryDistroot, self ).__init__ (
         root   = tempfile.mkdtemp ( prefix='tmp_roverlay_distroot_' ),
         flat   = False,
         logger = logger,
      )
      self._file_index = set()
   # --- end of __init__ (...) ---

   def handle_file_collision ( self, package_dir, package_info ):
      distfile_rel = package_info.get ( 'package_src_destpath' )
      return distfile_rel not in self._file_index
   # --- end of handle_file_collision (...) ---

   def _add ( self, src, dest ):
      ret = self._add_symlink ( src, dest, filter_exceptions=False )
      if ret:
         self._file_index.add ( self.get_relpath ( dest ) )
      return ret
   # --- end of _add (...) ---

   def _cleanup ( self ):
      """Cleans up the temporary distroot by simply wiping it."""
      super ( TemporaryDistroot, self )._cleanup()
      shutil.rmtree ( self._root )
   # --- end of _cleanup (...) ---

   def set_distfile_owner ( self, backref, distfile ):
      self._file_index.add ( distfile )
      return None
   # --- end of set_distfile_owner (...) ---

# --- end of TemporaryDistroot ---


class PersistentDistroot ( DistrootBase ):

   USE_SYMLINK    = 1
   USE_HARDLINK   = 2
   USE_COPY       = 4

   USE_EVERYTHING = USE_SYMLINK | USE_HARDLINK | USE_COPY

   def __repr__ ( self ):
      return (
         '{name}<root={root}, strategy={s}, '
         'mode_mask={m_now}/{m_init}>'.format (
            name   = self.__class__.__name__,
            root   = self.get_root(),
            s      = self._strategy,
            m_now  = self._supported_modes,
            m_init = self._supported_modes_initial,
         )
      )
   # --- end of __repr__ (...) ---

   def __init__ ( self,
      root, flat, strategy, distmap, verify=False, logger=None
   ):
      """Initializes a non-temporary distroot.

      arguments:
      * root     -- root directory
      * flat     -- whether to per-package subdirs (False) or not (True)
      * strategy -- the distroot 'strategy' that determines what mode (sym-
                    link, hardlink, copy) will be tried in which order
                    This has to be an iterable with valid items.
      * distmap  --
      * verify   --
      * logger   --
      """
      super ( PersistentDistroot, self ).__init__ (
         root=root, flat=flat, logger=logger, distmap=distmap
      )

      self._strategy = self._get_int_strategy ( strategy )

      # determine supported modes
      self._supported_modes = 0
      for s in self._strategy:
         self._supported_modes |= s
      # finally, restrict supported modes to what is available
      self._supported_modes &= self.USE_EVERYTHING

      self._supported_modes_initial = self._supported_modes

      # dict ( mode => function (arg^2, kwarg^1) )
      self._add_functions = {
         self.USE_SYMLINK  : self._add_symlink,
         self.USE_HARDLINK : self._add_hardlink,
         self.USE_COPY     : self._add_file,
      }

      if verify and self.distmap is not None:
         # expensive task, print a message
         print (
            "Checking distroot file integrity, this may take some time ... "
         )
         self.check_integrity()
   # --- end of __init__ (...) ---

   def _set_distmap ( self, distmap ):
      self.distmap = distmap
      if distmap is not None:
         self.set_distfile_owner = self._set_distfile_owner_distmap
      else:
         self.set_distfile_owner = self._set_distfile_owner_nop
   # --- end of _set_distmap (...) ---

   def _set_distfile_owner_nop ( self, backref, distfile ):
      return None
   # --- end of _set_distfile_owner_nop (...) ---

   def _set_distfile_owner_distmap ( self, backref, distfile ):
      return self.distmap.add_distfile_owner (
         backref, distfile, self.get_fspath ( distfile )
      )
   # --- end of _set_distfile_owner_distmap (...) ---

   def _add ( self, src, dest ):
      # race condition when accessing self._supported_modes
      #  * this can result in repeated log messages
      roverlay.util.common.dodir_for_file ( dest )
      for mode in self._strategy:
         if self._supported_modes & mode:
            if self._add_functions [mode] (
               src, dest, filter_exceptions=True
            ):
               return True
            else:
               self.logger.warning (
                  "mode {} is not supported!".format ( mode )
               )
               # the _add function returned False, which means that the
               # operation is not supported
               # => remove mode from self._supported_modes
               self._supported_modes &= ~mode

               # any other exception is unexpected
               #  and will be passed to the caller

      else:
         raise Exception (
            "cannot add {src!r} to {root!r} as {destname!r}".format (
               src      = src,
               root     = self.get_root(),
               destname = os.path.basename ( dest )
            )
         )
   # --- end of _add (...) ---

   def _cleanup ( self ):
      super ( PersistentDistroot, self )._cleanup()
      if hasattr ( self, '_supported_modes_initial' ):
         if self._supported_modes_initial & self.USE_SYMLINK:
            self._remove_broken_symlinks()
   # --- end of _cleanup (...) ---

   def _get_int_strategy ( self, strategy ):
      """Converts the given strategy into its integer tuple representation.

      arguments:
      * strategy --
      """
      def get_int ( item ):
         if hasattr ( item, '__int__' ):
            return int ( item )
         elif item == 'symlink':
            return self.USE_SYMLINK
         elif item == 'hardlink':
            return self.USE_HARDLINK
         elif item == 'copy':
            return  self.USE_COPY
         else:
            raise Exception (
               "unknown mode in strategy {!r}: {!r}".format ( strategy, item )
            )
      # --- end of get_int (...) ---

      #return [ get_int ( s ) for s in strategy ]
      return tuple ( get_int ( s ) for s in strategy )
   # --- end of _get_int_strategy (...) ---

   def handle_file_collision ( self, package_dir, package_info ):
      if self.distmap.get_distfile_slot ( package_dir, package_info ):
         return True
      else:
         orig_src_uri_dest = package_info.get_src_uri_dest()
         # distfile_dirname, distfile_os_sep, distfile_basename
         distfile          = orig_src_uri_dest.rpartition ( os.sep )
         rename_prefix     = (
            package_info ['repo_name'].lower().replace ( os.sep, '_' ) + '_'
         )
         rename_prefix_len = len ( rename_prefix )

         assert distfile[2]

         if (
            len(distfile[2]) > rename_prefix_len
            and distfile[2][:rename_prefix_len] == rename_prefix
         ):
            # already prefixed with the repo name
            return False

         else:
            package_info.update (
               src_uri_dest=(
                  distfile[0] + distfile[1] + rename_prefix + distfile[2]
               )
            )

            if self.distmap.get_distfile_slot ( package_dir, package_info ):
               return True
            else:
               # restore src_uri_dest
               package_info.update ( src_uri_dest=orig_src_uri_dest )
               return False
   # --- end of handle_file_collision (...) ---

# --- end of PersistentDistroot ---