Lichen

Annotated importer.py

102:7de3090fed03
2016-10-15 Paul Boddie Refined accessor and provider computation in order to provide context testing information. Record access plan cases where any context will be ignored.
paul@0 1
#!/usr/bin/env python
paul@0 2
paul@0 3
"""
paul@0 4
Import logic.
paul@0 5
paul@0 6
Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013,
paul@0 7
              2014, 2015, 2016 Paul Boddie <paul@boddie.org.uk>
paul@0 8
paul@0 9
This program is free software; you can redistribute it and/or modify it under
paul@0 10
the terms of the GNU General Public License as published by the Free Software
paul@0 11
Foundation; either version 3 of the License, or (at your option) any later
paul@0 12
version.
paul@0 13
paul@0 14
This program is distributed in the hope that it will be useful, but WITHOUT
paul@0 15
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
paul@0 16
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
paul@0 17
details.
paul@0 18
paul@0 19
You should have received a copy of the GNU General Public License along with
paul@0 20
this program.  If not, see <http://www.gnu.org/licenses/>.
paul@0 21
"""
paul@0 22
paul@0 23
from errors import ProgramError
paul@0 24
from os.path import exists, extsep, getmtime, join
paul@0 25
from os import listdir, makedirs, remove
paul@0 26
from common import init_item, readfile, writefile
paul@13 27
from modules import CachedModule
paul@0 28
from referencing import Reference
paul@0 29
import inspector
paul@0 30
import sys
paul@0 31
paul@0 32
class Importer:
paul@0 33
paul@0 34
    "An import machine, searching for and loading modules."
paul@0 35
paul@0 36
    def __init__(self, path, cache=None, verbose=False):
paul@0 37
paul@0 38
        """
paul@0 39
        Initialise the importer with the given search 'path' - a list of
paul@0 40
        directories to search for Python modules.
paul@0 41
paul@0 42
        The optional 'cache' should be the name of a directory used to store
paul@0 43
        cached module information.
paul@0 44
paul@0 45
        The optional 'verbose' parameter causes output concerning the activities
paul@0 46
        of the object to be produced if set to a true value (not the default).
paul@0 47
        """
paul@0 48
paul@0 49
        self.path = path
paul@0 50
        self.cache = cache
paul@0 51
        self.verbose = verbose
paul@0 52
paul@41 53
        # Module importing queue, required modules, removed modules and active
paul@41 54
        # modules in the final program.
paul@41 55
paul@12 56
        self.to_import = set()
paul@16 57
        self.required = set(["__main__"])
paul@24 58
        self.removed = {}
paul@41 59
        self.modules = {}
paul@12 60
paul@41 61
        # Module relationships and invalidated cached modules.
paul@41 62
paul@12 63
        self.accessing_modules = {}
paul@0 64
        self.invalidated = set()
paul@0 65
paul@41 66
        # Basic program information.
paul@41 67
paul@0 68
        self.objects = {}
paul@0 69
        self.classes = {}
paul@0 70
        self.function_parameters = {}
paul@0 71
        self.function_defaults = {}
paul@0 72
        self.function_targets = {}
paul@0 73
        self.function_arguments = {}
paul@0 74
paul@41 75
        # Unresolved names.
paul@41 76
paul@41 77
        self.missing = set()
paul@41 78
paul@0 79
        # Derived information.
paul@0 80
paul@0 81
        self.subclasses = {}
paul@0 82
paul@0 83
        # Attributes of different object types.
paul@0 84
paul@0 85
        self.all_class_attrs = {}
paul@0 86
        self.all_instance_attrs = {}
paul@0 87
        self.all_instance_attr_constants = {}
paul@0 88
        self.all_combined_attrs = {}
paul@0 89
        self.all_module_attrs = {}
paul@0 90
        self.all_shadowed_attrs = {}
paul@0 91
paul@0 92
        # References to external names and aliases within program units.
paul@0 93
paul@0 94
        self.all_name_references = {}
paul@0 95
        self.all_initialised_names = {}
paul@0 96
        self.all_aliased_names = {}
paul@0 97
paul@0 98
        # General attribute accesses.
paul@0 99
paul@0 100
        self.all_attr_accesses = {}
paul@0 101
        self.all_const_accesses = {}
paul@0 102
        self.all_attr_access_modifiers = {}
paul@0 103
paul@0 104
        # Constant literals and values.
paul@0 105
paul@0 106
        self.all_constants = {}
paul@0 107
        self.all_constant_values = {}
paul@0 108
paul@0 109
        self.make_cache()
paul@0 110
paul@0 111
    def make_cache(self):
paul@0 112
        if self.cache and not exists(self.cache):
paul@0 113
            makedirs(self.cache)
paul@0 114
paul@0 115
    def check_cache(self, details):
paul@0 116
paul@0 117
        """
paul@0 118
        Check whether the cache applies for the given 'details', invalidating it
paul@0 119
        if it does not.
paul@0 120
        """
paul@0 121
paul@0 122
        recorded_details = self.get_cache_details()
paul@0 123
paul@0 124
        if recorded_details != details:
paul@0 125
            self.remove_cache()
paul@0 126
paul@0 127
        writefile(self.get_cache_details_filename(), details)
paul@0 128
paul@0 129
    def get_cache_details_filename(self):
paul@0 130
paul@0 131
        "Return the filename for the cache details."
paul@0 132
paul@0 133
        return join(self.cache, "$details")
paul@0 134
paul@0 135
    def get_cache_details(self):
paul@0 136
paul@0 137
        "Return details of the cache."
paul@0 138
paul@0 139
        details_filename = self.get_cache_details_filename()
paul@0 140
paul@0 141
        if not exists(details_filename):
paul@0 142
            return None
paul@0 143
        else:
paul@0 144
            return readfile(details_filename)
paul@0 145
paul@0 146
    def remove_cache(self):
paul@0 147
paul@0 148
        "Remove the contents of the cache."
paul@0 149
paul@0 150
        for filename in listdir(self.cache):
paul@0 151
            remove(join(self.cache, filename))
paul@0 152
paul@0 153
    def to_cache(self):
paul@0 154
paul@0 155
        "Write modules to the cache."
paul@0 156
paul@0 157
        if self.cache:
paul@0 158
            for module_name, module in self.modules.items():
paul@0 159
                module.to_cache(join(self.cache, module_name))
paul@0 160
paul@0 161
    # Object retrieval and storage.
paul@0 162
paul@0 163
    def get_object(self, name):
paul@0 164
paul@0 165
        """
paul@0 166
        Return a reference for the given 'name' or None if no such object
paul@0 167
        exists.
paul@0 168
        """
paul@0 169
paul@0 170
        return self.objects.get(name)
paul@0 171
paul@0 172
    def set_object(self, name, value=None):
paul@0 173
paul@0 174
        "Set the object with the given 'name' and the given 'value'."
paul@0 175
paul@0 176
        if isinstance(value, Reference):
paul@0 177
            ref = value.alias(name)
paul@0 178
        else:
paul@0 179
            ref = Reference(value, name)
paul@0 180
paul@0 181
        self.objects[name] = ref
paul@0 182
paul@27 183
    # Identification of both stored object names and name references.
paul@27 184
paul@27 185
    def identify(self, name):
paul@27 186
paul@27 187
        "Identify 'name' using stored object and external name records."
paul@27 188
paul@27 189
        return self.objects.get(name) or self.all_name_references.get(name)
paul@27 190
paul@0 191
    # Indirect object retrieval.
paul@0 192
paul@0 193
    def get_attributes(self, ref, attrname):
paul@0 194
paul@0 195
        """
paul@0 196
        Return attributes provided by 'ref' for 'attrname'. Class attributes
paul@0 197
        may be provided by instances.
paul@0 198
        """
paul@0 199
paul@0 200
        kind = ref.get_kind()
paul@0 201
        if kind == "<class>":
paul@0 202
            ref = self.get_class_attribute(ref.get_origin(), attrname)
paul@0 203
            return ref and set([ref]) or set()
paul@0 204
        elif kind == "<instance>":
paul@0 205
            return self.get_combined_attributes(ref.get_origin(), attrname)
paul@0 206
        elif kind == "<module>":
paul@0 207
            ref = self.get_module_attribute(ref.get_origin(), attrname)
paul@0 208
            return ref and set([ref]) or set()
paul@0 209
        else:
paul@0 210
            return set()
paul@0 211
paul@0 212
    def get_class_attribute(self, object_type, attrname):
paul@0 213
paul@0 214
        "Return from 'object_type' the details of class attribute 'attrname'."
paul@0 215
paul@0 216
        attr = self.all_class_attrs[object_type].get(attrname)
paul@0 217
        return attr and self.get_object(attr)
paul@0 218
paul@0 219
    def get_instance_attributes(self, object_type, attrname):
paul@0 220
paul@0 221
        """
paul@0 222
        Return from 'object_type' the details of instance attribute 'attrname'.
paul@0 223
        """
paul@0 224
paul@0 225
        consts = self.all_instance_attr_constants.get(object_type)
paul@0 226
        attrs = set()
paul@0 227
        for attr in self.all_instance_attrs[object_type].get(attrname, []):
paul@0 228
            attrs.add(consts and consts.get(attrname) or Reference("<var>", attr))
paul@0 229
        return attrs
paul@0 230
paul@0 231
    def get_combined_attributes(self, object_type, attrname):
paul@0 232
paul@0 233
        """
paul@0 234
        Return from 'object_type' the details of class or instance attribute
paul@0 235
        'attrname'.
paul@0 236
        """
paul@0 237
paul@0 238
        ref = self.get_class_attribute(object_type, attrname)
paul@0 239
        refs = ref and set([ref]) or set()
paul@0 240
        refs.update(self.get_instance_attributes(object_type, attrname))
paul@0 241
        return refs
paul@0 242
paul@0 243
    def get_module_attribute(self, object_type, attrname):
paul@0 244
paul@0 245
        "Return from 'object_type' the details of module attribute 'attrname'."
paul@0 246
paul@0 247
        if attrname in self.all_module_attrs[object_type]:
paul@0 248
            return self.get_object("%s.%s" % (object_type, attrname))
paul@0 249
        else:
paul@0 250
            return None
paul@0 251
paul@96 252
    # Convenience methods for deducing which kind of object provided an
paul@96 253
    # attribute.
paul@96 254
paul@96 255
    def get_attribute_provider(self, ref, attrname):
paul@96 256
paul@96 257
        """
paul@96 258
        Return the kind of provider of the attribute accessed via 'ref' using
paul@96 259
        'attrname'.
paul@96 260
        """
paul@96 261
paul@96 262
        kind = ref.get_kind()
paul@96 263
paul@96 264
        if kind in ["<class>", "<module>"]:
paul@96 265
            return kind
paul@96 266
        else:
paul@96 267
            return self.get_instance_attribute_provider(ref.get_origin(), attrname)
paul@96 268
paul@96 269
    def get_instance_attribute_provider(self, object_type, attrname):
paul@96 270
paul@96 271
        """
paul@96 272
        Return the kind of provider of the attribute accessed via an instance of
paul@96 273
        'object_type' using 'attrname'.
paul@96 274
        """
paul@96 275
paul@96 276
        if self.get_class_attribute(object_type, attrname):
paul@96 277
            return "<class>"
paul@96 278
        else:
paul@96 279
            return "<instance>"
paul@96 280
paul@0 281
    # Module management.
paul@0 282
paul@16 283
    def queue_module(self, name, accessor, required=False):
paul@12 284
paul@12 285
        """
paul@12 286
        Queue the module with the given 'name' for import from the given
paul@16 287
        'accessor' module. If 'required' is true (it is false by default), the
paul@16 288
        module will be required in the final program.
paul@12 289
        """
paul@12 290
paul@12 291
        if not self.modules.has_key(name):
paul@12 292
            self.to_import.add(name)
paul@12 293
paul@16 294
        if required:
paul@16 295
            self.required.add(name)
paul@16 296
paul@12 297
        init_item(self.accessing_modules, name, set)
paul@16 298
        self.accessing_modules[name].add(accessor.name)
paul@12 299
paul@0 300
    def get_modules(self):
paul@0 301
paul@0 302
        "Return all modules known to the importer."
paul@0 303
paul@0 304
        return self.modules.values()
paul@0 305
paul@12 306
    def get_module(self, name):
paul@0 307
paul@0 308
        "Return the module with the given 'name'."
paul@0 309
paul@0 310
        if not self.modules.has_key(name):
paul@0 311
            return None
paul@0 312
paul@12 313
        return self.modules[name]
paul@0 314
paul@0 315
    # Program operations.
paul@0 316
paul@0 317
    def initialise(self, filename, reset=False):
paul@0 318
paul@0 319
        """
paul@0 320
        Initialise a program whose main module is 'filename', resetting the
paul@0 321
        cache if 'reset' is true. Return the main module.
paul@0 322
        """
paul@0 323
paul@0 324
        if reset:
paul@0 325
            self.remove_cache()
paul@0 326
        self.check_cache(filename)
paul@0 327
paul@0 328
        # Load the program itself.
paul@0 329
paul@0 330
        m = self.load_from_file(filename)
paul@0 331
paul@12 332
        # Load any queued modules.
paul@12 333
paul@12 334
        while self.to_import:
paul@12 335
            for name in list(self.to_import): # avoid mutation issue
paul@12 336
                self.load(name)
paul@12 337
paul@12 338
        # Resolve dependencies between modules.
paul@12 339
paul@12 340
        self.resolve()
paul@12 341
paul@16 342
        # Record the type of all classes.
paul@16 343
paul@16 344
        self.type_ref = self.get_object("__builtins__.type")
paul@16 345
paul@0 346
        # Resolve dependencies within the program.
paul@0 347
paul@12 348
        for module in self.modules.values():
paul@12 349
            module.complete()
paul@0 350
paul@16 351
        # Remove unneeded modules.
paul@16 352
paul@16 353
        all_modules = self.modules.items()
paul@16 354
paul@16 355
        for name, module in all_modules:
paul@16 356
            if name not in self.required:
paul@16 357
                module.unpropagate()
paul@16 358
                del self.modules[name]
paul@24 359
                self.removed[name] = module
paul@16 360
paul@68 361
        # Collect redundant objects.
paul@68 362
paul@68 363
        for module in self.removed.values():
paul@68 364
            module.collect()
paul@68 365
paul@68 366
        # Assert module objects where aliases have been removed.
paul@68 367
paul@68 368
        for name in self.required:
paul@68 369
            if not self.objects.has_key(name):
paul@68 370
                self.objects[name] = Reference("<module>", name)
paul@68 371
paul@0 372
        return m
paul@0 373
paul@0 374
    def finalise(self):
paul@0 375
paul@41 376
        """
paul@41 377
        Finalise the inspected program, returning whether the program could be
paul@41 378
        finalised.
paul@41 379
        """
paul@41 380
paul@41 381
        if self.missing:
paul@41 382
            return False
paul@0 383
paul@0 384
        self.finalise_classes()
paul@0 385
        self.to_cache()
paul@0 386
        self.set_class_types()
paul@0 387
        self.define_instantiators()
paul@0 388
        self.collect_constants()
paul@0 389
paul@41 390
        return True
paul@41 391
paul@12 392
    # Supporting operations.
paul@12 393
paul@12 394
    def resolve(self):
paul@12 395
paul@12 396
        "Resolve dependencies between modules."
paul@12 397
paul@35 398
        self.waiting = {}
paul@35 399
paul@35 400
        for module in self.modules.values():
paul@35 401
paul@35 402
            # Resolve all deferred references in each module.
paul@12 403
paul@35 404
            for ref in module.deferred:
paul@35 405
                found = self.find_dependency(ref)
paul@35 406
                if not found:
paul@41 407
                    self.missing.add((module.name, ref.get_origin()))
paul@35 408
paul@35 409
                # Record the resolved names and identify required modules.
paul@12 410
paul@35 411
                else:
paul@35 412
                    ref.mutate(found)
paul@35 413
paul@35 414
                    # Find the providing module of this reference.
paul@35 415
paul@35 416
                    provider = self.get_module_provider(ref)
paul@35 417
                    if provider:
paul@16 418
paul@35 419
                        module.required.add(provider)
paul@35 420
                        self.accessing_modules[provider].add(module.name)
paul@35 421
paul@35 422
                        # Postpone any inclusion of the provider until this
paul@35 423
                        # module becomes required.
paul@12 424
paul@35 425
                        if module.name not in self.required:
paul@35 426
                            init_item(self.waiting, module.name, set)
paul@35 427
                            self.waiting[module.name].add(provider)
paul@35 428
paul@35 429
                        # Make this module required in the accessing module.
paul@32 430
paul@53 431
                        elif provider not in self.required:
paul@35 432
                            self.required.add(provider)
paul@53 433
                            if self.verbose:
paul@53 434
                                print >>sys.stderr, "Requiring", provider, "for", ref
paul@35 435
paul@38 436
        # Check modules again to see if they are now required and should now
paul@38 437
        # cause the inclusion of other modules providing objects to the program.
paul@38 438
paul@35 439
        for module_name in self.waiting.keys():
paul@35 440
            self.require_providers(module_name)
paul@16 441
paul@35 442
    def require_providers(self, module_name):
paul@38 443
paul@38 444
        """
paul@38 445
        Test if 'module_name' is itself required and, if so, require modules
paul@38 446
        containing objects provided to the module.
paul@38 447
        """
paul@38 448
paul@35 449
        if module_name in self.required and self.waiting.has_key(module_name):
paul@35 450
            for provider in self.waiting[module_name]:
paul@35 451
                if provider not in self.required:
paul@35 452
                    self.required.add(provider)
paul@53 453
                    if self.verbose:
paul@53 454
                        print >>sys.stderr, "Requiring", provider
paul@35 455
                    self.require_providers(provider)
paul@32 456
paul@12 457
    def find_dependency(self, ref):
paul@12 458
paul@12 459
        "Find the ultimate dependency for 'ref'."
paul@12 460
paul@12 461
        found = set()
paul@12 462
        while ref and ref.has_kind("<depends>") and not ref in found:
paul@12 463
            found.add(ref)
paul@35 464
            ref = self.identify(ref.get_origin())
paul@12 465
        return ref
paul@12 466
paul@16 467
    def get_module_provider(self, ref):
paul@16 468
paul@16 469
        "Identify the provider of the given 'ref'."
paul@16 470
paul@16 471
        for ancestor in ref.ancestors():
paul@16 472
            if self.modules.has_key(ancestor):
paul@16 473
                return ancestor
paul@16 474
        return None
paul@16 475
paul@0 476
    def finalise_classes(self):
paul@0 477
paul@0 478
        "Finalise the class relationships and attributes."
paul@0 479
paul@0 480
        self.derive_inherited_attrs()
paul@0 481
        self.derive_subclasses()
paul@0 482
        self.derive_shadowed_attrs()
paul@0 483
paul@0 484
    def derive_inherited_attrs(self):
paul@0 485
paul@0 486
        "Derive inherited attributes for classes throughout the program."
paul@0 487
paul@0 488
        for name in self.classes.keys():
paul@0 489
            self.propagate_attrs_for_class(name)
paul@0 490
paul@0 491
    def propagate_attrs_for_class(self, name, visited=None):
paul@0 492
paul@0 493
        "Propagate inherited attributes for class 'name'."
paul@0 494
paul@0 495
        # Visit classes only once.
paul@0 496
paul@0 497
        if self.all_combined_attrs.has_key(name):
paul@0 498
            return
paul@0 499
paul@0 500
        visited = visited or []
paul@0 501
paul@0 502
        if name in visited:
paul@0 503
            raise ProgramError, "Class %s may not inherit from itself: %s -> %s." % (name, " -> ".join(visited), name)
paul@0 504
paul@0 505
        visited.append(name)
paul@0 506
paul@0 507
        class_attrs = {}
paul@0 508
        instance_attrs = {}
paul@0 509
paul@0 510
        # Aggregate the attributes from base classes, recording the origins of
paul@0 511
        # applicable attributes.
paul@0 512
paul@0 513
        for base in self.classes[name][::-1]:
paul@0 514
paul@0 515
            # Get the identity of the class from the reference.
paul@0 516
paul@0 517
            base = base.get_origin()
paul@0 518
paul@0 519
            # Define the base class completely before continuing with this
paul@0 520
            # class.
paul@0 521
paul@0 522
            self.propagate_attrs_for_class(base, visited)
paul@0 523
            class_attrs.update(self.all_class_attrs[base])
paul@0 524
paul@0 525
            # Instance attribute origins are combined if different.
paul@0 526
paul@0 527
            for key, values in self.all_instance_attrs[base].items():
paul@0 528
                init_item(instance_attrs, key, set)
paul@0 529
                instance_attrs[key].update(values)
paul@0 530
paul@0 531
        # Class attributes override those defined earlier in the hierarchy.
paul@0 532
paul@0 533
        class_attrs.update(self.all_class_attrs.get(name, {}))
paul@0 534
paul@0 535
        # Instance attributes are merely added if not already defined.
paul@0 536
paul@0 537
        for key in self.all_instance_attrs.get(name, []):
paul@0 538
            if not instance_attrs.has_key(key):
paul@0 539
                instance_attrs[key] = set(["%s.%s" % (name, key)])
paul@0 540
paul@0 541
        self.all_class_attrs[name] = class_attrs
paul@0 542
        self.all_instance_attrs[name] = instance_attrs
paul@0 543
        self.all_combined_attrs[name] = set(class_attrs.keys()).union(instance_attrs.keys())
paul@0 544
paul@0 545
    def derive_subclasses(self):
paul@0 546
paul@0 547
        "Derive subclass details for classes."
paul@0 548
paul@0 549
        for name, bases in self.classes.items():
paul@0 550
            for base in bases:
paul@0 551
paul@0 552
                # Get the identity of the class from the reference.
paul@0 553
paul@0 554
                base = base.get_origin()
paul@0 555
                self.subclasses[base].add(name)
paul@0 556
paul@0 557
    def derive_shadowed_attrs(self):
paul@0 558
paul@0 559
        "Derive shadowed attributes for classes."
paul@0 560
paul@0 561
        for name, attrs in self.all_instance_attrs.items():
paul@0 562
            attrs = set(attrs.keys()).intersection(self.all_class_attrs[name].keys())
paul@0 563
            if attrs:
paul@0 564
                self.all_shadowed_attrs[name] = attrs
paul@0 565
paul@0 566
    def set_class_types(self):
paul@0 567
paul@0 568
        "Set the type of each class."
paul@0 569
paul@0 570
        for attrs in self.all_class_attrs.values():
paul@16 571
            attrs["__class__"] = self.type_ref.get_origin()
paul@0 572
paul@0 573
    def define_instantiators(self):
paul@0 574
paul@0 575
        """
paul@0 576
        Consolidate parameter and default details, incorporating initialiser
paul@0 577
        details to define instantiator signatures.
paul@0 578
        """
paul@0 579
paul@0 580
        for cls, attrs in self.all_class_attrs.items():
paul@0 581
            initialiser = attrs["__init__"]
paul@0 582
            self.function_parameters[cls] = self.function_parameters[initialiser][1:]
paul@0 583
            self.function_defaults[cls] = self.function_defaults[initialiser]
paul@0 584
paul@0 585
    def collect_constants(self):
paul@0 586
paul@0 587
        "Get constants from all active modules."
paul@0 588
paul@0 589
        for module in self.modules.values():
paul@0 590
            self.all_constants.update(module.constants)
paul@0 591
paul@0 592
    # Import methods.
paul@0 593
paul@0 594
    def find_in_path(self, name):
paul@0 595
paul@0 596
        """
paul@0 597
        Find the given module 'name' in the search path, returning None where no
paul@0 598
        such module could be found, or a 2-tuple from the 'find' method
paul@0 599
        otherwise.
paul@0 600
        """
paul@0 601
paul@0 602
        for d in self.path:
paul@0 603
            m = self.find(d, name)
paul@0 604
            if m: return m
paul@0 605
        return None
paul@0 606
paul@0 607
    def find(self, d, name):
paul@0 608
paul@0 609
        """
paul@0 610
        In the directory 'd', find the given module 'name', where 'name' can
paul@0 611
        either refer to a single file module or to a package. Return None if the
paul@0 612
        'name' cannot be associated with either a file or a package directory,
paul@0 613
        or a 2-tuple from '_find_package' or '_find_module' otherwise.
paul@0 614
        """
paul@0 615
paul@0 616
        m = self._find_package(d, name)
paul@0 617
        if m: return m
paul@0 618
        m = self._find_module(d, name)
paul@0 619
        if m: return m
paul@0 620
        return None
paul@0 621
paul@0 622
    def _find_module(self, d, name):
paul@0 623
paul@0 624
        """
paul@0 625
        In the directory 'd', find the given module 'name', returning None where
paul@0 626
        no suitable file exists in the directory, or a 2-tuple consisting of
paul@0 627
        None (indicating that no package directory is involved) and a filename
paul@0 628
        indicating the location of the module.
paul@0 629
        """
paul@0 630
paul@0 631
        name_py = name + extsep + "py"
paul@0 632
        filename = self._find_file(d, name_py)
paul@0 633
        if filename:
paul@0 634
            return None, filename
paul@0 635
        return None
paul@0 636
paul@0 637
    def _find_package(self, d, name):
paul@0 638
paul@0 639
        """
paul@0 640
        In the directory 'd', find the given package 'name', returning None
paul@0 641
        where no suitable package directory exists, or a 2-tuple consisting of
paul@0 642
        a directory (indicating the location of the package directory itself)
paul@0 643
        and a filename indicating the location of the __init__.py module which
paul@0 644
        declares the package's top-level contents.
paul@0 645
        """
paul@0 646
paul@0 647
        filename = self._find_file(d, name)
paul@0 648
        if filename:
paul@0 649
            init_py = "__init__" + extsep + "py"
paul@0 650
            init_py_filename = self._find_file(filename, init_py)
paul@0 651
            if init_py_filename:
paul@0 652
                return filename, init_py_filename
paul@0 653
        return None
paul@0 654
paul@0 655
    def _find_file(self, d, filename):
paul@0 656
paul@0 657
        """
paul@0 658
        Return the filename obtained when searching the directory 'd' for the
paul@0 659
        given 'filename', or None if no actual file exists for the filename.
paul@0 660
        """
paul@0 661
paul@0 662
        filename = join(d, filename)
paul@0 663
        if exists(filename):
paul@0 664
            return filename
paul@0 665
        else:
paul@0 666
            return None
paul@0 667
paul@12 668
    def load(self, name):
paul@0 669
paul@0 670
        """
paul@0 671
        Load the module or package with the given 'name'. Return an object
paul@0 672
        referencing the loaded module or package, or None if no such module or
paul@0 673
        package exists.
paul@0 674
        """
paul@0 675
paul@0 676
        # Loaded modules are returned immediately.
paul@0 677
        # Modules may be known but not yet loading (having been registered as
paul@0 678
        # submodules), loading, loaded, or completely unknown.
paul@0 679
paul@12 680
        module = self.get_module(name)
paul@0 681
paul@0 682
        if module:
paul@12 683
            return self.modules[name]
paul@0 684
paul@0 685
        # Otherwise, modules are loaded.
paul@0 686
paul@0 687
        # Split the name into path components, and try to find the uppermost in
paul@0 688
        # the search path.
paul@0 689
paul@0 690
        path = name.split(".")
paul@0 691
        path_so_far = []
paul@12 692
        module = None
paul@0 693
paul@0 694
        for p in path:
paul@0 695
paul@0 696
            # Get the module's filesystem details.
paul@0 697
paul@0 698
            if not path_so_far:
paul@0 699
                m = self.find_in_path(p)
paul@0 700
            elif d:
paul@0 701
                m = self.find(d, p)
paul@0 702
            else:
paul@0 703
                m = None
paul@0 704
paul@0 705
            path_so_far.append(p)
paul@0 706
            module_name = ".".join(path_so_far)
paul@0 707
paul@0 708
            if not m:
paul@0 709
                if self.verbose:
paul@0 710
                    print >>sys.stderr, "Not found (%s)" % name
paul@0 711
paul@0 712
                return None # NOTE: Import error.
paul@0 713
paul@0 714
            # Get the module itself.
paul@0 715
paul@0 716
            d, filename = m
paul@12 717
            module = self.load_from_file(filename, module_name)
paul@0 718
paul@12 719
        return module
paul@0 720
paul@12 721
    def load_from_file(self, filename, module_name=None):
paul@0 722
paul@0 723
        "Load the module from the given 'filename'."
paul@0 724
paul@0 725
        if module_name is None:
paul@0 726
            module_name = "__main__"
paul@0 727
paul@0 728
        module = self.modules.get(module_name)
paul@0 729
paul@0 730
        if not module:
paul@0 731
paul@0 732
            # Try to load from cache.
paul@0 733
paul@12 734
            module = self.load_from_cache(filename, module_name)
paul@0 735
            if module:
paul@0 736
                return module
paul@0 737
paul@0 738
            # If no cache entry exists, load from file.
paul@0 739
paul@0 740
            module = inspector.InspectedModule(module_name, self)
paul@0 741
            self.add_module(module_name, module)
paul@0 742
            self.update_cache_validity(module)
paul@0 743
paul@12 744
            self._load(module, module_name, lambda m: m.parse, filename)
paul@0 745
paul@0 746
        return module
paul@0 747
paul@0 748
    def update_cache_validity(self, module):
paul@0 749
paul@0 750
        "Make 'module' valid in the cache, but invalidate accessing modules."
paul@0 751
paul@12 752
        accessing = self.accessing_modules.get(module.name)
paul@12 753
        if accessing:
paul@12 754
            self.invalidated.update(accessing)
paul@0 755
        if module.name in self.invalidated:
paul@0 756
            self.invalidated.remove(module.name)
paul@0 757
paul@0 758
    def source_is_new(self, filename, module_name):
paul@0 759
paul@0 760
        "Return whether 'filename' is newer than the cached 'module_name'."
paul@0 761
paul@0 762
        if self.cache:
paul@0 763
            cache_filename = join(self.cache, module_name)
paul@0 764
            return not exists(cache_filename) or \
paul@0 765
                getmtime(filename) > getmtime(cache_filename) or \
paul@0 766
                module_name in self.invalidated
paul@0 767
        else:
paul@0 768
            return True
paul@0 769
paul@12 770
    def load_from_cache(self, filename, module_name):
paul@0 771
paul@0 772
        "Return a module residing in the cache."
paul@0 773
paul@0 774
        module = self.modules.get(module_name)
paul@0 775
paul@12 776
        if not module and not self.source_is_new(filename, module_name):
paul@13 777
            module = CachedModule(module_name, self)
paul@12 778
            self.add_module(module_name, module)
paul@0 779
paul@12 780
            filename = join(self.cache, module_name)
paul@12 781
            self._load(module, module_name, lambda m: m.from_cache, filename)
paul@0 782
paul@0 783
        return module
paul@0 784
paul@12 785
    def _load(self, module, module_name, fn, filename):
paul@0 786
paul@0 787
        """
paul@12 788
        Load 'module' for the given 'module_name', and with 'fn' performing an
paul@12 789
        invocation on the module with the given 'filename'.
paul@0 790
        """
paul@0 791
paul@12 792
        # Load the module.
paul@0 793
paul@0 794
        if self.verbose:
paul@53 795
            print >>sys.stderr, module_name in self.required and "Required" or "Loading", module_name, "from", filename
paul@0 796
        fn(module)(filename)
paul@0 797
paul@54 798
        # Add the module object if not already defined.
paul@54 799
paul@54 800
        if not self.objects.has_key(module_name):
paul@54 801
            self.objects[module_name] = Reference("<module>", module_name)
paul@54 802
paul@0 803
    def add_module(self, module_name, module):
paul@0 804
paul@0 805
        """
paul@0 806
        Return the module with the given 'module_name', adding a new module
paul@0 807
        object if one does not already exist.
paul@0 808
        """
paul@0 809
paul@0 810
        self.modules[module_name] = module
paul@12 811
        if module_name in self.to_import:
paul@12 812
            self.to_import.remove(module_name)
paul@0 813
paul@0 814
# vim: tabstop=4 expandtab shiftwidth=4