~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/win32utils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-01 22:33:10 UTC
  • mfrom: (5452.3.1 doc-fix)
  • Revision ID: pqm@pqm.ubuntu.com-20101001223310-t8adqw9m9ogrvnlc
(jameinel) fixed link to main smart server doc from http smart server doc
 (dmuir)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
import glob
23
23
import os
24
 
import re
25
24
import struct
26
25
import sys
27
26
 
523
522
            trace.mutter('Unable to set hidden attribute on %r: %s', path, e)
524
523
 
525
524
 
526
 
def _command_line_to_argv(command_line, single_quotes_allowed=False):
 
525
def _command_line_to_argv(command_line, argv, single_quotes_allowed=False):
527
526
    """Convert a Unicode command line into a list of argv arguments.
528
527
 
529
528
    It performs wildcard expansion to make wildcards act closer to how they
536
535
                                  default.
537
536
    :return: A list of unicode strings.
538
537
    """
 
538
    # First, spit the command line
539
539
    s = cmdline.Splitter(command_line, single_quotes_allowed=single_quotes_allowed)
540
 
    # Now that we've split the content, expand globs if necessary
 
540
    
 
541
    # Bug #587868 Now make sure that the length of s agrees with sys.argv 
 
542
    # we do this by simply counting the number of arguments in each. The counts should 
 
543
    # agree no matter what encoding sys.argv is in (AFAIK) 
 
544
    # len(arguments) < len(sys.argv) should be an impossibility since python gets 
 
545
    # args from the very same PEB as does GetCommandLineW
 
546
    arguments = list(s)
 
547
    
 
548
    # Now shorten the command line we get from GetCommandLineW to match sys.argv
 
549
    if len(arguments) < len(argv):
 
550
        raise AssertionError("Split command line can't be shorter than argv")
 
551
    arguments = arguments[len(arguments) - len(argv):]
 
552
    
 
553
    # Carry on to process globs (metachars) in the command line
 
554
    # expand globs if necessary
541
555
    # TODO: Use 'globbing' instead of 'glob.glob', this gives us stuff like
542
556
    #       '**/' style globs
543
557
    args = []
544
 
    for is_quoted, arg in s:
 
558
    for is_quoted, arg in arguments:
545
559
        if is_quoted or not glob.has_magic(arg):
546
560
            args.append(arg)
547
561
        else:
558
572
        if command_line is None:
559
573
            raise ctypes.WinError()
560
574
        # Skip the first argument, since we only care about parameters
561
 
        argv = _command_line_to_argv(command_line)[1:]
562
 
        if getattr(sys, 'frozen', None) is None:
563
 
            # Invoked via 'python.exe' which takes the form:
564
 
            #   python.exe [PYTHON_OPTIONS] C:\Path\bzr [BZR_OPTIONS]
565
 
            # we need to get only BZR_OPTIONS part,
566
 
            # We already removed 'python.exe' so we remove everything up to and
567
 
            # including the first non-option ('-') argument.
568
 
            for idx in xrange(len(argv)):
569
 
                if argv[idx][:1] != '-':
570
 
                    break
571
 
            argv = argv[idx+1:]
 
575
        argv = _command_line_to_argv(command_line, sys.argv)[1:]
572
576
        return argv
573
577
else:
574
578
    get_unicode_argv = None