~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/mutabletree.py

Merge lockable-config-files into remove-gratuitous-ensure-config-dir-exist-calls resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    hooks,
33
33
    osutils,
34
34
    revisiontree,
 
35
    inventory,
35
36
    symbol_versioning,
36
37
    trace,
37
38
    tree,
375
376
        This is designed more towards DWIM for humans than API clarity.
376
377
        For the specific behaviour see the help for cmd_add().
377
378
 
 
379
        :param file_list: List of zero or more paths.  *NB: these are 
 
380
            interpreted relative to the process cwd, not relative to the 
 
381
            tree.*  (Add and most other tree methods use tree-relative
 
382
            paths.)
378
383
        :param action: A reporter to be called with the inventory, parent_ie,
379
384
            path and kind of the path being added. It may return a file_id if
380
385
            a specific one should be used.
411
416
            for c in self.conflicts():
412
417
                conflicts_related.update(c.associated_filenames())
413
418
 
 
419
        # expand any symlinks in the directory part, while leaving the
 
420
        # filename alone
 
421
        file_list = map(osutils.normalizepath, file_list)
 
422
 
414
423
        # validate user file paths and convert all paths to tree
415
424
        # relative : it's cheaper to make a tree relative path an abspath
416
425
        # than to convert an abspath to tree relative, and it's cheaper to
715
724
        file_id or None to generate a new file id
716
725
    :returns: None
717
726
    """
 
727
    # if the parent exists, but isn't a directory, we have to do the
 
728
    # kind change now -- really the inventory shouldn't pretend to know
 
729
    # the kind of wt files, but it does.
 
730
    if parent_ie.kind != 'directory':
 
731
        # nb: this relies on someone else checking that the path we're using
 
732
        # doesn't contain symlinks.
 
733
        new_parent_ie = inventory.make_entry('directory', parent_ie.name,
 
734
            parent_ie.parent_id, parent_ie.file_id)
 
735
        del inv[parent_ie.file_id]
 
736
        inv.add(new_parent_ie)
 
737
        parent_ie = new_parent_ie
718
738
    file_id = file_id_callback(inv, parent_ie, path, kind)
719
739
    entry = inv.make_entry(kind, path.base_path, parent_ie.file_id,
720
740
        file_id=file_id)