blob: b9ef6187573665afd74f931b15b1e5dac89e107d [file] [log] [blame]
epoger@google.com27442af2011-12-29 21:13:08 +00001'''
2Copyright 2011 Google Inc.
3
4Use of this source code is governed by a BSD-style license that can be
5found in the LICENSE file.
6'''
7
epoger@google.com20ad5ac2012-01-17 21:26:05 +00008import fnmatch
9import os
epoger@google.com27442af2011-12-29 21:13:08 +000010import re
11import subprocess
12
13PROPERTY_MIMETYPE = 'svn:mime-type'
14
epoger@google.com6dbf6cd2012-05-29 21:28:12 +000015# Status types for GetFilesWithStatus()
16STATUS_ADDED = 0x01
17STATUS_DELETED = 0x02
18STATUS_MODIFIED = 0x04
19STATUS_NOT_UNDER_SVN_CONTROL = 0x08
20
epoger@google.com27442af2011-12-29 21:13:08 +000021class Svn:
22
23 def __init__(self, directory):
24 """Set up to manipulate SVN control within the given directory.
25
26 @param directory
27 """
28 self._directory = directory
29
30 def _RunCommand(self, args):
31 """Run a command (from self._directory) and return stdout as a single
32 string.
33
34 @param args a list of arguments
35 """
epoger@google.com20ad5ac2012-01-17 21:26:05 +000036 print 'RunCommand: %s' % args
epoger@google.com27442af2011-12-29 21:13:08 +000037 proc = subprocess.Popen(args, cwd=self._directory,
epoger@google.com20ad5ac2012-01-17 21:26:05 +000038 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
39 (stdout, stderr) = proc.communicate()
40 if proc.returncode is not 0:
41 raise Exception('command "%s" failed in dir "%s": %s' %
42 (args, self._directory, stderr))
epoger@google.com27442af2011-12-29 21:13:08 +000043 return stdout
44
epoger@google.com20ad5ac2012-01-17 21:26:05 +000045 def Checkout(self, url, path):
46 """Check out a working copy from a repository.
47 Returns stdout as a single string.
48
49 @param url URL from which to check out the working copy
50 @param path path (within self._directory) where the local copy will be
51 written
52 """
53 return self._RunCommand(['svn', 'checkout', url, path])
54
epoger@google.com27442af2011-12-29 21:13:08 +000055 def GetNewFiles(self):
56 """Return a list of files which are in this directory but NOT under
57 SVN control.
58 """
epoger@google.com6dbf6cd2012-05-29 21:28:12 +000059 return self.GetFilesWithStatus(STATUS_NOT_UNDER_SVN_CONTROL)
epoger@google.comd6256552012-01-10 14:10:34 +000060
61 def GetNewAndModifiedFiles(self):
62 """Return a list of files in this dir which are newly added or modified,
63 including those that are not (yet) under SVN control.
64 """
epoger@google.com6dbf6cd2012-05-29 21:28:12 +000065 return self.GetFilesWithStatus(
66 STATUS_ADDED | STATUS_MODIFIED | STATUS_NOT_UNDER_SVN_CONTROL)
epoger@google.com27442af2011-12-29 21:13:08 +000067
epoger@google.com6dbf6cd2012-05-29 21:28:12 +000068 def GetFilesWithStatus(self, status):
69 """Return a list of files in this dir with the given SVN status.
70
71 @param status bitfield combining one or more STATUS_xxx values
epoger@google.com2e0a0612012-05-25 19:48:05 +000072 """
epoger@google.com6dbf6cd2012-05-29 21:28:12 +000073 status_types_string = ''
74 if status & STATUS_ADDED:
75 status_types_string += 'A'
76 if status & STATUS_DELETED:
77 status_types_string += 'D'
78 if status & STATUS_MODIFIED:
79 status_types_string += 'M'
80 if status & STATUS_NOT_UNDER_SVN_CONTROL:
81 status_types_string += '\?'
82 status_regex_string = '^[%s].....\s+(.+)$' % status_types_string
epoger@google.com2e0a0612012-05-25 19:48:05 +000083 stdout = self._RunCommand(['svn', 'status'])
epoger@google.com6dbf6cd2012-05-29 21:28:12 +000084 status_regex = re.compile(status_regex_string, re.MULTILINE)
85 files = status_regex.findall(stdout)
epoger@google.com2e0a0612012-05-25 19:48:05 +000086 return files
87
epoger@google.com27442af2011-12-29 21:13:08 +000088 def AddFiles(self, filenames):
89 """Adds these files to SVN control.
90
91 @param filenames files to add to SVN control
92 """
epoger@google.com20ad5ac2012-01-17 21:26:05 +000093 self._RunCommand(['svn', 'add'] + filenames)
epoger@google.com27442af2011-12-29 21:13:08 +000094
95 def SetProperty(self, filenames, property_name, property_value):
96 """Sets a svn property for these files.
97
98 @param filenames files to set property on
99 @param property_name property_name to set for each file
100 @param property_value what to set the property_name to
101 """
epoger@google.com20ad5ac2012-01-17 21:26:05 +0000102 if filenames:
103 self._RunCommand(
104 ['svn', 'propset', property_name, property_value] + filenames)
105
106 def SetPropertyByFilenamePattern(self, filename_pattern,
107 property_name, property_value):
108 """Sets a svn property for all files matching filename_pattern.
109
110 @param filename_pattern set the property for all files whose names match
111 this Unix-style filename pattern (e.g., '*.jpg')
112 @param property_name property_name to set for each file
113 @param property_value what to set the property_name to
114 """
115 all_files = os.listdir(self._directory)
epoger@google.com0f645b62012-05-22 19:14:01 +0000116 matching_files = sorted(fnmatch.filter(all_files, filename_pattern))
epoger@google.com20ad5ac2012-01-17 21:26:05 +0000117 self.SetProperty(matching_files, property_name, property_value)
epoger@google.com2e0a0612012-05-25 19:48:05 +0000118
119 def ExportBaseVersionOfFile(self, file_within_repo, dest_path):
120 """Retrieves a copy of the base version (what you would get if you ran
121 'svn revert') of a file within the repository.
122
123 @param file_within_repo path to the file within the repo whose base
124 version you wish to obtain
125 @param dest_path destination to which to write the base content
126 """
127 self._RunCommand(['svn', 'export', '--revision', 'BASE',
128 file_within_repo, dest_path])