/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
1
# Copyright (C) 2006, 2007 Canonical Ltd
2
#
2052.3.1 by John Arbash Meinel
Add tests to cleanup the copyright of all source files
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2052.3.1 by John Arbash Meinel
Add tests to cleanup the copyright of all source files
16
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
17
"""Win32-specific helper functions
18
19
Only one dependency: ctypes should be installed.
20
"""
21
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
22
import glob
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
23
import os
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
24
import re
1185.16.86 by mbp at sourcefrog
- win32 get_console_size from Alexander
25
import struct
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
26
import sys
27
28
29
# Windows version
30
if sys.platform == 'win32':
31
    _major,_minor,_build,_platform,_text = sys.getwindowsversion()
2245.4.11 by Alexander Belchenko
Small fixes after John's review; added NEWS entry
32
    # from MSDN:
33
    # dwPlatformId
34
    #   The operating system platform.
35
    #   This member can be one of the following values.
36
    #   ==========================  ======================================
37
    #   Value                       Meaning
38
    #   --------------------------  --------------------------------------
39
    #   VER_PLATFORM_WIN32_NT       The operating system is Windows Vista,
40
    #   2                           Windows Server "Longhorn",
41
    #                               Windows Server 2003, Windows XP,
42
    #                               Windows 2000, or Windows NT.
43
    #
44
    #   VER_PLATFORM_WIN32_WINDOWS  The operating system is Windows Me,
45
    #   1                           Windows 98, or Windows 95.
46
    #   ==========================  ======================================
47
    if _platform == 2:
48
        winver = 'Windows NT'
49
    else:
50
        # don't care about real Windows name, just to force safe operations
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
51
        winver = 'Windows 98'
52
else:
53
    winver = None
54
1185.16.86 by mbp at sourcefrog
- win32 get_console_size from Alexander
55
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
56
# We can cope without it; use a separate variable to help pyflakes
1185.16.86 by mbp at sourcefrog
- win32 get_console_size from Alexander
57
try:
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
58
    import ctypes
59
    has_ctypes = True
1185.16.86 by mbp at sourcefrog
- win32 get_console_size from Alexander
60
except ImportError:
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
61
    has_ctypes = False
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
62
else:
63
    if winver == 'Windows 98':
64
        create_buffer = ctypes.create_string_buffer
65
        suffix = 'A'
66
    else:
67
        create_buffer = ctypes.create_unicode_buffer
68
        suffix = 'W'
3023.1.2 by Alexander Belchenko
Martin's review.
69
try:
70
    import win32file
4505.2.1 by Alexander Belchenko
Set hidden attribute on .bzr directory below unicode path should never fail with error. The operation should succeed even if bzr unable to set the attribute. (related to bug #335362).
71
    import pywintypes
3023.1.2 by Alexander Belchenko
Martin's review.
72
    has_win32file = True
73
except ImportError:
74
    has_win32file = False
3626.1.2 by skip
win32utils.get_host_name() uses 'mbcs' encoding when decoding env vars
75
try:
76
    import win32api
77
    has_win32api = True
78
except ImportError:
79
    has_win32api = False
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
80
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
81
# pulling in win32com.shell is a bit of overhead, and normally we don't need
82
# it as ctypes is preferred and common.  lazy_imports and "optional"
83
# modules don't work well, so we do our own lazy thing...
84
has_win32com_shell = None # Set to True or False once we know for sure...
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
85
86
# Special Win32 API constants
87
# Handles of std streams
1704.2.3 by Martin Pool
(win32) Detect terminal width using GetConsoleScreenBufferInfo (Alexander)
88
WIN32_STDIN_HANDLE = -10
89
WIN32_STDOUT_HANDLE = -11
90
WIN32_STDERR_HANDLE = -12
91
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
92
# CSIDL constants (from MSDN 2003)
93
CSIDL_APPDATA = 0x001A      # Application Data folder
3638.4.10 by Aaron Bentley
Correct spelling of 'Application Data'
94
CSIDL_LOCAL_APPDATA = 0x001c# <user name>\Local Settings\Application Data (non roaming)
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
95
CSIDL_PERSONAL = 0x0005     # My Documents folder
96
97
# from winapi C headers
98
MAX_PATH = 260
99
UNLEN = 256
100
MAX_COMPUTERNAME_LENGTH = 31
101
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
102
# Registry data type ids
103
REG_SZ = 1
104
REG_EXPAND_SZ = 2
105
1704.2.3 by Martin Pool
(win32) Detect terminal width using GetConsoleScreenBufferInfo (Alexander)
106
4011.1.1 by John Arbash Meinel
Implement -Dmemory for win32
107
def debug_memory_win32api(message='', short=True):
108
    """Use trace.note() to dump the running memory info."""
109
    from bzrlib import trace
4011.1.2 by John Arbash Meinel
Fix some small bugs, and prefer the ctypes form.
110
    if has_ctypes:
4011.1.1 by John Arbash Meinel
Implement -Dmemory for win32
111
        class PROCESS_MEMORY_COUNTERS_EX(ctypes.Structure):
112
            """Used by GetProcessMemoryInfo"""
113
            _fields_ = [('cb', ctypes.c_ulong),
114
                        ('PageFaultCount', ctypes.c_ulong),
115
                        ('PeakWorkingSetSize', ctypes.c_size_t),
116
                        ('WorkingSetSize', ctypes.c_size_t),
117
                        ('QuotaPeakPagedPoolUsage', ctypes.c_size_t),
118
                        ('QuotaPagedPoolUsage', ctypes.c_size_t),
119
                        ('QuotaPeakNonPagedPoolUsage', ctypes.c_size_t),
120
                        ('QuotaNonPagedPoolUsage', ctypes.c_size_t),
121
                        ('PagefileUsage', ctypes.c_size_t),
122
                        ('PeakPagefileUsage', ctypes.c_size_t),
123
                        ('PrivateUsage', ctypes.c_size_t),
124
                       ]
125
        cur_process = ctypes.windll.kernel32.GetCurrentProcess()
126
        mem_struct = PROCESS_MEMORY_COUNTERS_EX()
127
        ret = ctypes.windll.psapi.GetProcessMemoryInfo(cur_process,
128
            ctypes.byref(mem_struct),
129
            ctypes.sizeof(mem_struct))
130
        if not ret:
131
            trace.note('Failed to GetProcessMemoryInfo()')
132
            return
133
        info = {'PageFaultCount': mem_struct.PageFaultCount,
134
                'PeakWorkingSetSize': mem_struct.PeakWorkingSetSize,
135
                'WorkingSetSize': mem_struct.WorkingSetSize,
136
                'QuotaPeakPagedPoolUsage': mem_struct.QuotaPeakPagedPoolUsage,
137
                'QuotaPagedPoolUsage': mem_struct.QuotaPagedPoolUsage,
138
                'QuotaPeakNonPagedPoolUsage': mem_struct.QuotaPeakNonPagedPoolUsage,
139
                'QuotaNonPagedPoolUsage': mem_struct.QuotaNonPagedPoolUsage,
140
                'PagefileUsage': mem_struct.PagefileUsage,
141
                'PeakPagefileUsage': mem_struct.PeakPagefileUsage,
142
                'PrivateUsage': mem_struct.PrivateUsage,
143
               }
4011.1.2 by John Arbash Meinel
Fix some small bugs, and prefer the ctypes form.
144
    elif has_win32api:
145
        import win32process
146
        # win32process does not return PrivateUsage, because it doesn't use
147
        # PROCESS_MEMORY_COUNTERS_EX (it uses the one without _EX).
148
        proc = win32process.GetCurrentProcess()
149
        info = win32process.GetProcessMemoryInfo(proc)
4011.1.1 by John Arbash Meinel
Implement -Dmemory for win32
150
    else:
151
        trace.note('Cannot debug memory on win32 without ctypes'
152
                   ' or win32process')
153
        return
4163.1.1 by John Arbash Meinel
Some small fixes for the win32 'trace.debug_mem()' code.
154
    if short:
4163.1.2 by John Arbash Meinel
Merge bzr.dev, which changed kB => KB.
155
        trace.note('WorkingSize %7dKB'
156
                   '\tPeakWorking %7dKB\t%s',
4163.1.1 by John Arbash Meinel
Some small fixes for the win32 'trace.debug_mem()' code.
157
                   info['WorkingSetSize'] / 1024,
158
                   info['PeakWorkingSetSize'] / 1024,
159
                   message)
160
        return
161
    if message:
162
        trace.note('%s', message)
4170.2.1 by Alexander Belchenko
Use KB not kB for 1024 bytes
163
    trace.note('WorkingSize       %8d KB', info['WorkingSetSize'] / 1024)
164
    trace.note('PeakWorking       %8d KB', info['PeakWorkingSetSize'] / 1024)
165
    trace.note('PagefileUsage     %8d KB', info.get('PagefileUsage', 0) / 1024)
166
    trace.note('PeakPagefileUsage %8d KB', info.get('PeakPagefileUsage', 0) / 1024)
167
    trace.note('PrivateUsage      %8d KB', info.get('PrivateUsage', 0) / 1024)
4011.1.1 by John Arbash Meinel
Implement -Dmemory for win32
168
    trace.note('PageFaultCount    %8d', info.get('PageFaultCount', 0))
169
170
1185.16.86 by mbp at sourcefrog
- win32 get_console_size from Alexander
171
def get_console_size(defaultx=80, defaulty=25):
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
172
    """Return size of current console.
173
174
    This function try to determine actual size of current working
175
    console window and return tuple (sizex, sizey) if success,
176
    or default size (defaultx, defaulty) otherwise.
177
    """
178
    if not has_ctypes:
179
        # no ctypes is found
180
        return (defaultx, defaulty)
181
182
    # To avoid problem with redirecting output via pipe
4747.3.6 by Vincent Ladeuil
terminal_width can now returns None.
183
    # we need to use stderr instead of stdout
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
184
    h = ctypes.windll.kernel32.GetStdHandle(WIN32_STDERR_HANDLE)
185
    csbi = ctypes.create_string_buffer(22)
186
    res = ctypes.windll.kernel32.GetConsoleScreenBufferInfo(h, csbi)
187
188
    if res:
189
        (bufx, bufy, curx, cury, wattr,
1185.16.86 by mbp at sourcefrog
- win32 get_console_size from Alexander
190
        left, top, right, bottom, maxx, maxy) = struct.unpack("hhhhHhhhhhh", csbi.raw)
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
191
        sizex = right - left + 1
192
        sizey = bottom - top + 1
193
        return (sizex, sizey)
194
    else:
195
        return (defaultx, defaulty)
196
197
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
198
def _get_sh_special_folder_path(csidl):
199
    """Call SHGetSpecialFolderPathW if available, or return None.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
200
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
201
    Result is always unicode (or None).
202
    """
203
    if has_ctypes:
204
        try:
205
            SHGetSpecialFolderPath = \
206
                ctypes.windll.shell32.SHGetSpecialFolderPathW
207
        except AttributeError:
208
            pass
209
        else:
210
            buf = ctypes.create_unicode_buffer(MAX_PATH)
211
            if SHGetSpecialFolderPath(None,buf,csidl,0):
212
                return buf.value
213
214
    global has_win32com_shell
215
    if has_win32com_shell is None:
216
        try:
217
            from win32com.shell import shell
218
            has_win32com_shell = True
219
        except ImportError:
220
            has_win32com_shell = False
221
    if has_win32com_shell:
222
        # still need to bind the name locally, but this is fast.
223
        from win32com.shell import shell
224
        try:
225
            return shell.SHGetSpecialFolderPath(0, csidl, 0)
226
        except shell.error:
227
            # possibly E_NOTIMPL meaning we can't load the function pointer,
228
            # or E_FAIL meaning the function failed - regardless, just ignore it
229
            pass
230
    return None
231
232
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
233
def get_appdata_location():
234
    """Return Application Data location.
235
    Return None if we cannot obtain location.
236
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
237
    Windows defines two 'Application Data' folders per user - a 'roaming'
238
    one that moves with the user as they logon to different machines, and
239
    a 'local' one that stays local to the machine.  This returns the 'roaming'
240
    directory, and thus is suitable for storing user-preferences, etc.
241
242
    Returned value can be unicode or plain string.
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
243
    To convert plain string to unicode use
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
244
    s.decode(osutils.get_user_encoding())
3638.4.2 by Mark Hammond
Add a reference to bug 262874 noting 'mbcs' may be the correct encoding.
245
    (XXX - but see bug 262874, which asserts the correct encoding is 'mbcs')
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
246
    """
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
247
    appdata = _get_sh_special_folder_path(CSIDL_APPDATA)
248
    if appdata:
249
        return appdata
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
250
    # from env variable
251
    appdata = os.environ.get('APPDATA')
252
    if appdata:
253
        return appdata
254
    # if we fall to this point we on win98
255
    # at least try C:/WINDOWS/Application Data
256
    windir = os.environ.get('windir')
257
    if windir:
258
        appdata = os.path.join(windir, 'Application Data')
259
        if os.path.isdir(appdata):
260
            return appdata
261
    # did not find anything
262
    return None
263
264
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
265
def get_local_appdata_location():
266
    """Return Local Application Data location.
267
    Return the same as get_appdata_location() if we cannot obtain location.
268
269
    Windows defines two 'Application Data' folders per user - a 'roaming'
270
    one that moves with the user as they logon to different machines, and
271
    a 'local' one that stays local to the machine.  This returns the 'local'
272
    directory, and thus is suitable for caches, temp files and other things
273
    which don't need to move with the user.
274
275
    Returned value can be unicode or plain string.
276
    To convert plain string to unicode use
4385.4.1 by Alexander Belchenko
removed all references to bzrlib.user_encoding
277
    s.decode(osutils.get_user_encoding())
3638.4.2 by Mark Hammond
Add a reference to bug 262874 noting 'mbcs' may be the correct encoding.
278
    (XXX - but see bug 262874, which asserts the correct encoding is 'mbcs')
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
279
    """
280
    local = _get_sh_special_folder_path(CSIDL_LOCAL_APPDATA)
281
    if local:
282
        return local
283
    # Vista supplies LOCALAPPDATA, but XP and earlier do not.
284
    local = os.environ.get('LOCALAPPDATA')
285
    if local:
286
        return local
287
    return get_appdata_location()
288
289
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
290
def get_home_location():
291
    """Return user's home location.
292
    Assume on win32 it's the <My Documents> folder.
293
    If location cannot be obtained return system drive root,
294
    i.e. C:\
295
4031.3.1 by Frank Aspell
Fixing various typos
296
    Returned value can be unicode or plain string.
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
297
    To convert plain string to unicode use
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
298
    s.decode(osutils.get_user_encoding())
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
299
    """
3638.4.1 by Mark Hammond
Add win32utils.get_local_appdata_location() so bzr and plugins can
300
    home = _get_sh_special_folder_path(CSIDL_PERSONAL)
301
    if home:
302
        return home
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
303
    # try for HOME env variable
304
    home = os.path.expanduser('~')
305
    if home != '~':
306
        return home
307
    # at least return windows root directory
308
    windir = os.environ.get('windir')
309
    if windir:
2610.1.1 by Martin Pool
Fix get_home_location on Win98 (gzlist,r=john,r=alexander)
310
        return os.path.splitdrive(windir)[0] + '/'
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
311
    # otherwise C:\ is good enough for 98% users
312
    return 'C:/'
313
314
315
def get_user_name():
316
    """Return user name as login name.
317
    If name cannot be obtained return None.
318
4031.3.1 by Frank Aspell
Fixing various typos
319
    Returned value can be unicode or plain string.
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
320
    To convert plain string to unicode use
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
321
    s.decode(osutils.get_user_encoding())
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
322
    """
323
    if has_ctypes:
324
        try:
325
            advapi32 = ctypes.windll.advapi32
326
            GetUserName = getattr(advapi32, 'GetUserName'+suffix)
327
        except AttributeError:
328
            pass
329
        else:
330
            buf = create_buffer(UNLEN+1)
331
            n = ctypes.c_int(UNLEN+1)
332
            if GetUserName(buf, ctypes.byref(n)):
333
                return buf.value
334
    # otherwise try env variables
335
    return os.environ.get('USERNAME', None)
336
337
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
338
# 1 == ComputerNameDnsHostname, which returns "The DNS host name of the local
339
# computer or the cluster associated with the local computer."
340
_WIN32_ComputerNameDnsHostname = 1
341
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
342
def get_host_name():
343
    """Return host machine name.
344
    If name cannot be obtained return None.
345
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
346
    :return: A unicode string representing the host name. On win98, this may be
347
        a plain string as win32 api doesn't support unicode.
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
348
    """
3626.1.2 by skip
win32utils.get_host_name() uses 'mbcs' encoding when decoding env vars
349
    if has_win32api:
350
        try:
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
351
            return win32api.GetComputerNameEx(_WIN32_ComputerNameDnsHostname)
3626.1.2 by skip
win32utils.get_host_name() uses 'mbcs' encoding when decoding env vars
352
        except (NotImplementedError, win32api.error):
353
            # NotImplemented will happen on win9x...
354
            pass
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
355
    if has_ctypes:
356
        try:
357
            kernel32 = ctypes.windll.kernel32
358
        except AttributeError:
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
359
            pass # Missing the module we need
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
360
        else:
361
            buf = create_buffer(MAX_COMPUTERNAME_LENGTH+1)
362
            n = ctypes.c_int(MAX_COMPUTERNAME_LENGTH+1)
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
363
364
            # Try GetComputerNameEx which gives a proper Unicode hostname
365
            GetComputerNameEx = getattr(kernel32, 'GetComputerNameEx'+suffix,
366
                                        None)
367
            if (GetComputerNameEx is not None
368
                and GetComputerNameEx(_WIN32_ComputerNameDnsHostname,
369
                                      buf, ctypes.byref(n))):
370
                return buf.value
371
372
            # Try GetComputerName in case GetComputerNameEx wasn't found
373
            # It returns the NETBIOS name, which isn't as good, but still ok.
374
            # The first GetComputerNameEx might have changed 'n', so reset it
375
            n = ctypes.c_int(MAX_COMPUTERNAME_LENGTH+1)
376
            GetComputerName = getattr(kernel32, 'GetComputerName'+suffix,
377
                                      None)
378
            if (GetComputerName is not None
379
                and GetComputerName(buf, ctypes.byref(n))):
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
380
                return buf.value
3626.1.2 by skip
win32utils.get_host_name() uses 'mbcs' encoding when decoding env vars
381
    # otherwise try env variables, which will be 'mbcs' encoded
382
    # on Windows (Python doesn't expose the native win32 unicode environment)
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
383
    # According to this:
384
    # http://msdn.microsoft.com/en-us/library/aa246807.aspx
385
    # environment variables should always be encoded in 'mbcs'.
3626.1.2 by skip
win32utils.get_host_name() uses 'mbcs' encoding when decoding env vars
386
    try:
387
        return os.environ['COMPUTERNAME'].decode("mbcs")
388
    except KeyError:
389
        return None
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
390
391
392
def _ensure_unicode(s):
393
    if s and type(s) != unicode:
3788.1.1 by John Arbash Meinel
Fix a missing import
394
        from bzrlib import osutils
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
395
        s = s.decode(osutils.get_user_encoding())
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
396
    return s
3626.1.3 by John Arbash Meinel
Use GetComputerNameEx from ctypes when available.
397
2245.4.1 by Alexander Belchenko
win32utils: Windows-specific functions that use Win32 API via ctypes
398
399
def get_appdata_location_unicode():
400
    return _ensure_unicode(get_appdata_location())
401
402
def get_home_location_unicode():
403
    return _ensure_unicode(get_home_location())
404
405
def get_user_name_unicode():
406
    return _ensure_unicode(get_user_name())
407
408
def get_host_name_unicode():
409
    return _ensure_unicode(get_host_name())
2568.2.2 by Robert Collins
* New method ``_glob_expand_file_list_if_needed`` on the ``Command`` class
410
411
2617.5.8 by Kuno Meyer
Extended tests for unicode chars outside of the iso-8859-* range
412
def _ensure_with_dir(path):
413
    if not os.path.split(path)[0] or path.startswith(u'*') or path.startswith(u'?'):
414
        return u'./' + path, True
415
    else:
416
        return path, False
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
417
2617.5.8 by Kuno Meyer
Extended tests for unicode chars outside of the iso-8859-* range
418
def _undo_ensure_with_dir(path, corrected):
419
    if corrected:
420
        return path[2:]
421
    else:
422
        return path
423
424
425
4786.1.2 by John Arbash Meinel
Refactor the glob_expand code a bit, making the inner function more reusable.
426
def glob_one(possible_glob):
427
    """Same as glob.glob().
428
429
    work around bugs in glob.glob()
430
    - Python bug #1001604 ("glob doesn't return unicode with ...")
431
    - failing expansion for */* with non-iso-8859-* chars
432
    """
433
    corrected_glob, corrected = _ensure_with_dir(possible_glob)
434
    glob_files = glob.glob(corrected_glob)
435
436
    if not glob_files:
437
        # special case to let the normal code path handle
438
        # files that do not exist, etc.
439
        glob_files = [possible_glob]
440
    elif corrected:
441
        glob_files = [_undo_ensure_with_dir(elem, corrected)
442
                      for elem in glob_files]
443
    return [elem.replace(u'\\', u'/') for elem in glob_files]
444
445
2598.3.1 by Kuno Meyer
fix method rename glob_expand_for_win32 -> win32utils.glob_expand
446
def glob_expand(file_list):
2568.2.2 by Robert Collins
* New method ``_glob_expand_file_list_if_needed`` on the ``Command`` class
447
    """Replacement for glob expansion by the shell.
448
449
    Win32's cmd.exe does not do glob expansion (eg ``*.py``), so we do our own
450
    here.
451
452
    :param file_list: A list of filenames which may include shell globs.
453
    :return: An expanded list of filenames.
454
455
    Introduced in bzrlib 0.18.
456
    """
457
    if not file_list:
458
        return []
459
    expanded_file_list = []
460
    for possible_glob in file_list:
4786.1.2 by John Arbash Meinel
Refactor the glob_expand code a bit, making the inner function more reusable.
461
        expanded_file_list.extend(glob_one(possible_glob))
462
    return expanded_file_list
2681.4.1 by Alexander Belchenko
win32: looking for full path of mail client executable in registry
463
464
465
def get_app_path(appname):
466
    """Look up in Windows registry for full path to application executable.
4031.3.1 by Frank Aspell
Fixing various typos
467
    Typically, applications create subkey with their basename
2681.4.1 by Alexander Belchenko
win32: looking for full path of mail client executable in registry
468
    in HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\
469
470
    :param  appname:    name of application (if no filename extension
471
                        is specified, .exe used)
472
    :return:    full path to aplication executable from registry,
473
                or appname itself if nothing found.
474
    """
2681.4.3 by Alexander Belchenko
move import _winreg into function get_app_path to avoid ImportError on non-win32 platforms
475
    import _winreg
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
476
477
    basename = appname
478
    if not os.path.splitext(basename)[1]:
479
        basename = appname + '.exe'
480
2681.4.1 by Alexander Belchenko
win32: looking for full path of mail client executable in registry
481
    try:
482
        hkey = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE,
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
483
            'SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\' +
484
            basename)
2681.4.1 by Alexander Belchenko
win32: looking for full path of mail client executable in registry
485
    except EnvironmentError:
486
        return appname
487
488
    try:
489
        try:
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
490
            path, type_id = _winreg.QueryValueEx(hkey, '')
2681.4.1 by Alexander Belchenko
win32: looking for full path of mail client executable in registry
491
        except WindowsError:
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
492
            return appname
2681.4.1 by Alexander Belchenko
win32: looking for full path of mail client executable in registry
493
    finally:
494
        _winreg.CloseKey(hkey)
495
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
496
    if type_id == REG_SZ:
497
        return path
498
    if type_id == REG_EXPAND_SZ and has_win32api:
499
        fullpath = win32api.ExpandEnvironmentStrings(path)
4476.2.2 by Alexander Belchenko
remove quotes around value only if there is pair of quotes (igc review)
500
        if len(fullpath) > 1 and fullpath[0] == '"' and fullpath[-1] == '"':
4476.2.1 by Alexander Belchenko
win32utils.py: get_app_path() can read path for wordpad.exe (data type_id is REG_EXPAND_SZ).
501
            fullpath = fullpath[1:-1]   # remove quotes around value
502
        return fullpath
503
    return appname
3023.1.2 by Alexander Belchenko
Martin's review.
504
505
506
def set_file_attr_hidden(path):
507
    """Set file attributes to hidden if possible"""
508
    if has_win32file:
4505.2.1 by Alexander Belchenko
Set hidden attribute on .bzr directory below unicode path should never fail with error. The operation should succeed even if bzr unable to set the attribute. (related to bug #335362).
509
        if winver != 'Windows 98':
510
            SetFileAttributes = win32file.SetFileAttributesW
511
        else:
512
            SetFileAttributes = win32file.SetFileAttributes
513
        try:
514
            SetFileAttributes(path, win32file.FILE_ATTRIBUTE_HIDDEN)
515
        except pywintypes.error, e:
4505.2.2 by Alexander Belchenko
forgotten import
516
            from bzrlib import trace
4505.2.1 by Alexander Belchenko
Set hidden attribute on .bzr directory below unicode path should never fail with error. The operation should succeed even if bzr unable to set the attribute. (related to bug #335362).
517
            trace.mutter('Unable to set hidden attribute on %r: %s', path, e)
4355.2.1 by Alexander Belchenko
Using unicode Windows API to obtain command-line arguments.
518
519
4913.5.10 by Gordon Tyler
Renamed UnicodeCommandLineSplitter back to UnicodeShlex and fixed spacing.
520
_whitespace_match = re.compile(u'\s').match
521
522
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
523
class _PushbackSequence(object):
524
    def __init__(self, orig):
525
        self._iter = iter(orig)
526
        self._pushback_buffer = []
527
        
528
    def next(self):
529
        if len(self._pushback_buffer) > 0:
530
            return self._pushback_buffer.pop()
531
        else:
532
            return self._iter.next()
533
    
534
    def pushback(self, char):
535
        self._pushback_buffer.append(char)
536
        
537
    def __iter__(self):
538
        return self
539
4913.5.10 by Gordon Tyler
Renamed UnicodeCommandLineSplitter back to UnicodeShlex and fixed spacing.
540
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
541
class _Whitespace(object):
542
    def process(self, next_char, seq, context):
543
        if _whitespace_match(next_char):
4913.5.6 by Gordon Tyler
Fixed handling of multiple quoted arguments.
544
            if len(context.token) > 0:
545
                return None
546
            else:
547
                return self
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
548
        elif (next_char == u'"'
549
              or (context.single_quotes_allowed and next_char == u"'")):
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
550
            context.quoted = True
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
551
            return _Quotes(next_char, self)
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
552
        elif next_char == u'\\':
553
            return _Backslash(self)
554
        else:
555
            context.token.append(next_char)
556
            return _Word()
557
4913.5.10 by Gordon Tyler
Renamed UnicodeCommandLineSplitter back to UnicodeShlex and fixed spacing.
558
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
559
class _Quotes(object):
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
560
    def __init__(self, quote_char, exit_state):
561
        self.quote_char = quote_char
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
562
        self.exit_state = exit_state
563
564
    def process(self, next_char, seq, context):
565
        if next_char == u'\\':
566
            return _Backslash(self)
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
567
        elif next_char == self.quote_char:
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
568
            return self.exit_state
569
        else:
570
            context.token.append(next_char)
571
            return self
4913.5.10 by Gordon Tyler
Renamed UnicodeCommandLineSplitter back to UnicodeShlex and fixed spacing.
572
573
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
574
class _Backslash(object):
575
    # See http://msdn.microsoft.com/en-us/library/bb776391(VS.85).aspx
576
    def __init__(self, exit_state):
577
        self.exit_state = exit_state
578
        self.count = 1
579
        
580
    def process(self, next_char, seq, context):
581
        if next_char == u'\\':
582
            self.count += 1
583
            return self
584
        elif next_char == u'"':
585
            # 2N backslashes followed by '"' are N backslashes
586
            context.token.append(u'\\' * (self.count/2))
587
            # 2N+1 backslashes follwed by '"' are N backslashes followed by '"'
588
            # which should not be processed as the start or end of quoted arg
589
            if self.count % 2 == 1:
590
                context.token.append(next_char) # odd number of '\' escapes the '"'
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
591
            else:
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
592
                seq.pushback(next_char) # let exit_state handle next_char
593
            self.count = 0
594
            return self.exit_state
595
        else:
596
            # N backslashes not followed by '"' are just N backslashes
597
            if self.count > 0:
598
                context.token.append(u'\\' * self.count)
599
                self.count = 0
600
            seq.pushback(next_char) # let exit_state handle next_char
601
            return self.exit_state
602
    
603
    def finish(self, context):
604
        if self.count > 0:
605
            context.token.append(u'\\' * self.count)
606
4913.5.10 by Gordon Tyler
Renamed UnicodeCommandLineSplitter back to UnicodeShlex and fixed spacing.
607
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
608
class _Word(object):
609
    def process(self, next_char, seq, context):
610
        if _whitespace_match(next_char):
611
            return None
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
612
        elif (next_char == u'"'
613
              or (context.single_quotes_allowed and next_char == u"'")):
614
            return _Quotes(next_char, self)
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
615
        elif next_char == u'\\':
616
            return _Backslash(self)
617
        else:
618
            context.token.append(next_char)
619
            return self
620
4913.5.10 by Gordon Tyler
Renamed UnicodeCommandLineSplitter back to UnicodeShlex and fixed spacing.
621
622
class UnicodeShlex(object):
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
623
    def __init__(self, command_line, single_quotes_allowed=False):
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
624
        self._seq = _PushbackSequence(command_line)
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
625
        self.single_quotes_allowed = single_quotes_allowed
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
626
    
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
627
    def __iter__(self):
628
        return self
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
629
    
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
630
    def next(self):
631
        quoted, token = self._get_token()
632
        if token is None:
633
            raise StopIteration
634
        return quoted, token
4913.5.5 by Gordon Tyler
Replaced UnicodeShlex with UnicodeCommandLineSplitter, a commandline parser that works more like the win32 CommandLineToArgvW function.
635
    
636
    def _get_token(self):
637
        self.quoted = False
638
        self.token = []
639
        state = _Whitespace()
640
        for next_char in self._seq:
641
            state = state.process(next_char, self._seq, self)
642
            if state is None:
643
                break
644
        if not state is None and not getattr(state, 'finish', None) is None:
645
            state.finish(self)
646
        result = u''.join(self.token)
647
        if not self.quoted and result == '':
648
            result = None
649
        return self.quoted, result
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
650
651
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
652
def command_line_to_argv(command_line, wildcard_expansion=True,
653
                         single_quotes_allowed=False):
4913.5.2 by Gordon Tyler
Changed shlex_split_unicode to prevent wildcard expansion in the win32 codepath.
654
    """Convert a Unicode command line into a list of argv arguments.
655
656
    This optionally does wildcard expansion, etc. It is intended to make
657
    wildcards act closer to how they work in posix shells, versus how they
658
    work by default on Windows. Quoted arguments are left untouched.
659
660
    :param command_line: The unicode string to split into an arg list.
661
    :param wildcard_expansion: Whether wildcard expansion should be applied to
662
                               each argument. True by default.
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
663
    :param single_quotes_allowed: Whether single quotes are accepted as quoting
664
                                  characters like double quotes. False by
665
                                  default.
4913.5.2 by Gordon Tyler
Changed shlex_split_unicode to prevent wildcard expansion in the win32 codepath.
666
    :return: A list of unicode strings.
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
667
    """
4913.5.11 by Gordon Tyler
Added optional single quote support to UnicodeShlex and thus command_line_to_argv (defaults to disabled).
668
    s = UnicodeShlex(command_line, single_quotes_allowed=single_quotes_allowed)
4913.5.2 by Gordon Tyler
Changed shlex_split_unicode to prevent wildcard expansion in the win32 codepath.
669
    # Now that we've split the content, expand globs if necessary
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
670
    # TODO: Use 'globbing' instead of 'glob.glob', this gives us stuff like
671
    #       '**/' style globs
672
    args = []
673
    for is_quoted, arg in s:
4913.5.2 by Gordon Tyler
Changed shlex_split_unicode to prevent wildcard expansion in the win32 codepath.
674
        if is_quoted or not glob.has_magic(arg) or not wildcard_expansion:
4818.1.1 by John Arbash Meinel
Fix bug #485771. Only change '/' to '/' when expanding globs.
675
            args.append(arg)
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
676
        else:
4786.1.2 by John Arbash Meinel
Refactor the glob_expand code a bit, making the inner function more reusable.
677
            args.extend(glob_one(arg))
4786.1.1 by John Arbash Meinel
Work on doing globbing, etc for all commands on Windows.
678
    return args
679
680
4355.2.1 by Alexander Belchenko
Using unicode Windows API to obtain command-line arguments.
681
if has_ctypes and winver != 'Windows 98':
682
    def get_unicode_argv():
4913.5.1 by Gordon Tyler
Changed shlex_split_unicode in commands.py to use win32utils.command_line_to_argv on win32 and cleaned up win32utils.get_unicode_argv.
683
        prototype = ctypes.WINFUNCTYPE(ctypes.c_wchar_p, use_last_error=True)
684
        GetCommandLineW = prototype(("GetCommandLineW",
685
                                     ctypes.windll.kernel32))
686
        command_line = GetCommandLineW()
687
        if command_line is None:
688
            raise ctypes.WinError()
4355.2.4 by Alexander Belchenko
win32utils.py: get_unicode_argv: get bzr options as tail of argv list based on the number of items in sys.argv[1:] list.
689
        # Skip the first argument, since we only care about parameters
4913.5.1 by Gordon Tyler
Changed shlex_split_unicode in commands.py to use win32utils.command_line_to_argv on win32 and cleaned up win32utils.get_unicode_argv.
690
        argv = command_line_to_argv(command_line)[1:]
4355.2.1 by Alexander Belchenko
Using unicode Windows API to obtain command-line arguments.
691
        if getattr(sys, 'frozen', None) is None:
4355.2.4 by Alexander Belchenko
win32utils.py: get_unicode_argv: get bzr options as tail of argv list based on the number of items in sys.argv[1:] list.
692
            # Invoked via 'python.exe' which takes the form:
693
            #   python.exe [PYTHON_OPTIONS] C:\Path\bzr [BZR_OPTIONS]
694
            # we need to get only BZR_OPTIONS part,
4786.1.3 by John Arbash Meinel
Remove '_maybe_glob' in favor of globbing at the commandline level.
695
            # We already removed 'python.exe' so we remove everything up to and
696
            # including the first non-option ('-') argument.
697
            for idx in xrange(len(argv)):
698
                if argv[idx][:1] != '-':
699
                    break
700
            argv = argv[idx+1:]
4355.2.1 by Alexander Belchenko
Using unicode Windows API to obtain command-line arguments.
701
        return argv
4355.2.2 by Alexander Belchenko
osutils.py: get_unicode_argv function (to obtain unicode command line arguments from sys.argv) moved to the beginning of module based on suggestions from review of John Meinel.
702
else:
703
    get_unicode_argv = None