2009-10-22 12:12:39 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright 2007-2009 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
2010-08-26 16:56:29 -06:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2009-10-22 12:12:39 -06:00
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
'''Mercurial interface to codereview.appspot.com.
|
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
To configure, set the following options in
|
2009-10-22 12:12:39 -06:00
|
|
|
your repository's .hg/hgrc file.
|
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
[extensions]
|
|
|
|
codereview = path/to/codereview.py
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
[codereview]
|
2009-11-01 06:49:35 -07:00
|
|
|
server = codereview.appspot.com
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
The server should be running Rietveld; see http://code.google.com/p/rietveld/.
|
2009-11-05 15:44:57 -07:00
|
|
|
|
|
|
|
In addition to the new commands, this extension introduces
|
|
|
|
the file pattern syntax @nnnnnn, where nnnnnn is a change list
|
2009-11-07 18:30:40 -07:00
|
|
|
number, to mean the files included in that change list, which
|
2009-11-05 15:44:57 -07:00
|
|
|
must be associated with the current client.
|
|
|
|
|
|
|
|
For example, if change 123456 contains the files x.go and y.go,
|
|
|
|
"hg diff @123456" is equivalent to"hg diff x.go y.go".
|
2009-10-22 12:12:39 -06:00
|
|
|
'''
|
|
|
|
|
|
|
|
from mercurial import cmdutil, commands, hg, util, error, match
|
|
|
|
from mercurial.node import nullrev, hex, nullid, short
|
2009-11-18 00:23:18 -07:00
|
|
|
import os, re, time
|
2009-10-22 12:12:39 -06:00
|
|
|
import stat
|
2009-11-05 15:44:57 -07:00
|
|
|
import subprocess
|
2009-11-01 06:49:35 -07:00
|
|
|
import threading
|
2009-10-22 12:12:39 -06:00
|
|
|
from HTMLParser import HTMLParser
|
2009-12-02 02:16:38 -07:00
|
|
|
try:
|
|
|
|
from xml.etree import ElementTree as ET
|
|
|
|
except:
|
2009-12-02 09:18:26 -07:00
|
|
|
from elementtree import ElementTree as ET
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
try:
|
|
|
|
hgversion = util.version()
|
2009-11-01 06:49:35 -07:00
|
|
|
except:
|
2009-10-22 12:12:39 -06:00
|
|
|
from mercurial.version import version as v
|
|
|
|
hgversion = v.get_version()
|
|
|
|
|
2010-07-16 19:54:38 -06:00
|
|
|
try:
|
|
|
|
from mercurial.discovery import findcommonincoming
|
|
|
|
except:
|
|
|
|
def findcommonincoming(repo, remote):
|
|
|
|
return repo.findcommonincoming(remote)
|
|
|
|
|
2009-11-07 18:30:40 -07:00
|
|
|
oldMessage = """
|
|
|
|
The code review extension requires Mercurial 1.3 or newer.
|
|
|
|
|
|
|
|
To install a new Mercurial,
|
|
|
|
|
|
|
|
sudo easy_install mercurial
|
|
|
|
|
|
|
|
works on most systems.
|
|
|
|
"""
|
|
|
|
|
|
|
|
linuxMessage = """
|
|
|
|
You may need to clear your current Mercurial installation by running:
|
|
|
|
|
|
|
|
sudo apt-get remove mercurial mercurial-common
|
|
|
|
sudo rm -rf /etc/mercurial
|
|
|
|
"""
|
|
|
|
|
|
|
|
if hgversion < '1.3':
|
|
|
|
msg = oldMessage
|
|
|
|
if os.access("/etc/mercurial", 0):
|
|
|
|
msg += linuxMessage
|
|
|
|
raise util.Abort(msg)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-01-20 10:49:35 -07:00
|
|
|
def promptyesno(ui, msg):
|
|
|
|
# Arguments to ui.prompt changed between 1.3 and 1.3.1.
|
|
|
|
# Even so, some 1.3.1 distributions seem to have the old prompt!?!?
|
|
|
|
# What a terrible way to maintain software.
|
|
|
|
try:
|
|
|
|
return ui.promptchoice(msg, ["&yes", "&no"], 0) == 0
|
|
|
|
except AttributeError:
|
|
|
|
return ui.prompt(msg, ["&yes", "&no"], "y") != "n"
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
# To experiment with Mercurial in the python interpreter:
|
2009-10-22 12:12:39 -06:00
|
|
|
# >>> repo = hg.repository(ui.ui(), path = ".")
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Normally I would split this into multiple files, but it simplifies
|
|
|
|
# import path headaches to keep it all in one file. Sorry.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print >>sys.stderr, "This is a Mercurial extension and should not be invoked directly."
|
|
|
|
sys.exit(2)
|
|
|
|
|
2009-12-15 14:36:05 -07:00
|
|
|
server = "codereview.appspot.com"
|
|
|
|
server_url_base = None
|
2010-01-13 10:09:06 -07:00
|
|
|
defaultcc = None
|
2010-07-01 00:34:11 -06:00
|
|
|
contributors = {}
|
2010-08-25 15:52:25 -06:00
|
|
|
missing_codereview = None
|
2009-12-15 14:36:05 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
#######################################################################
|
|
|
|
# Change list parsing.
|
|
|
|
#
|
|
|
|
# Change lists are stored in .hg/codereview/cl.nnnnnn
|
|
|
|
# where nnnnnn is the number assigned by the code review server.
|
|
|
|
# Most data about a change list is stored on the code review server
|
|
|
|
# too: the description, reviewer, and cc list are all stored there.
|
|
|
|
# The only thing in the cl.nnnnnn file is the list of relevant files.
|
|
|
|
# Also, the existence of the cl.nnnnnn file marks this repository
|
|
|
|
# as the one where the change list lives.
|
|
|
|
|
2009-12-15 14:36:05 -07:00
|
|
|
emptydiff = """Index: ~rietveld~placeholder~
|
|
|
|
===================================================================
|
|
|
|
diff --git a/~rietveld~placeholder~ b/~rietveld~placeholder~
|
|
|
|
new file mode 100644
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
class CL(object):
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
self.desc = ''
|
|
|
|
self.files = []
|
|
|
|
self.reviewer = []
|
|
|
|
self.cc = []
|
|
|
|
self.url = ''
|
|
|
|
self.local = False
|
|
|
|
self.web = False
|
2010-01-09 10:47:14 -07:00
|
|
|
self.copied_from = None # None means current user
|
2010-01-07 19:23:30 -07:00
|
|
|
self.mailed = False
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
def DiskText(self):
|
|
|
|
cl = self
|
|
|
|
s = ""
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.copied_from:
|
|
|
|
s += "Author: " + cl.copied_from + "\n\n"
|
2010-01-07 19:23:30 -07:00
|
|
|
s += "Mailed: " + str(self.mailed) + "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
s += "Description:\n"
|
|
|
|
s += Indent(cl.desc, "\t")
|
|
|
|
s += "Files:\n"
|
|
|
|
for f in cl.files:
|
|
|
|
s += "\t" + f + "\n"
|
|
|
|
return s
|
|
|
|
|
|
|
|
def EditorText(self):
|
|
|
|
cl = self
|
|
|
|
s = _change_prolog
|
|
|
|
s += "\n"
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.copied_from:
|
|
|
|
s += "Author: " + cl.copied_from + "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
if cl.url != '':
|
|
|
|
s += 'URL: ' + cl.url + ' # cannot edit\n\n'
|
|
|
|
s += "Reviewer: " + JoinComma(cl.reviewer) + "\n"
|
|
|
|
s += "CC: " + JoinComma(cl.cc) + "\n"
|
|
|
|
s += "\n"
|
|
|
|
s += "Description:\n"
|
|
|
|
if cl.desc == '':
|
|
|
|
s += "\t<enter description here>\n"
|
|
|
|
else:
|
|
|
|
s += Indent(cl.desc, "\t")
|
|
|
|
s += "\n"
|
2009-11-05 15:44:57 -07:00
|
|
|
if cl.local or cl.name == "new":
|
|
|
|
s += "Files:\n"
|
|
|
|
for f in cl.files:
|
|
|
|
s += "\t" + f + "\n"
|
|
|
|
s += "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
return s
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def PendingText(self):
|
|
|
|
cl = self
|
|
|
|
s = cl.name + ":" + "\n"
|
|
|
|
s += Indent(cl.desc, "\t")
|
|
|
|
s += "\n"
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.copied_from:
|
|
|
|
s += "\tAuthor: " + cl.copied_from + "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
s += "\tReviewer: " + JoinComma(cl.reviewer) + "\n"
|
|
|
|
s += "\tCC: " + JoinComma(cl.cc) + "\n"
|
|
|
|
s += "\tFiles:\n"
|
|
|
|
for f in cl.files:
|
|
|
|
s += "\t\t" + f + "\n"
|
|
|
|
return s
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def Flush(self, ui, repo):
|
|
|
|
if self.name == "new":
|
2009-11-06 10:45:24 -07:00
|
|
|
self.Upload(ui, repo, gofmt_just_warn=True)
|
2009-10-22 12:12:39 -06:00
|
|
|
dir = CodeReviewDir(ui, repo)
|
|
|
|
path = dir + '/cl.' + self.name
|
|
|
|
f = open(path+'!', "w")
|
|
|
|
f.write(self.DiskText())
|
|
|
|
f.close()
|
2009-12-13 13:21:44 -07:00
|
|
|
if sys.platform == "win32" and os.path.isfile(path):
|
|
|
|
os.remove(path)
|
2009-10-22 12:12:39 -06:00
|
|
|
os.rename(path+'!', path)
|
2010-01-09 10:47:14 -07:00
|
|
|
if self.web and not self.copied_from:
|
2009-11-01 19:46:07 -07:00
|
|
|
EditDesc(self.name, desc=self.desc,
|
2009-10-22 12:12:39 -06:00
|
|
|
reviewers=JoinComma(self.reviewer), cc=JoinComma(self.cc))
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def Delete(self, ui, repo):
|
|
|
|
dir = CodeReviewDir(ui, repo)
|
|
|
|
os.unlink(dir + "/cl." + self.name)
|
|
|
|
|
2009-11-05 00:43:55 -07:00
|
|
|
def Subject(self):
|
2009-11-01 19:46:07 -07:00
|
|
|
s = line1(self.desc)
|
2009-11-02 12:37:21 -07:00
|
|
|
if len(s) > 60:
|
|
|
|
s = s[0:55] + "..."
|
2009-11-01 19:46:07 -07:00
|
|
|
if self.name != "new":
|
2009-11-02 12:37:21 -07:00
|
|
|
s = "code review %s: %s" % (self.name, s)
|
2009-11-01 19:46:07 -07:00
|
|
|
return s
|
|
|
|
|
2009-11-06 10:45:24 -07:00
|
|
|
def Upload(self, ui, repo, send_mail=False, gofmt=True, gofmt_just_warn=False):
|
2009-12-15 14:36:05 -07:00
|
|
|
if not self.files:
|
|
|
|
ui.warn("no files in change list\n")
|
2009-11-06 10:45:24 -07:00
|
|
|
if ui.configbool("codereview", "force_gofmt", True) and gofmt:
|
|
|
|
CheckGofmt(ui, repo, self.files, just_warn=gofmt_just_warn)
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("uploading CL metadata + diffs")
|
2009-10-22 12:12:39 -06:00
|
|
|
os.chdir(repo.root)
|
|
|
|
form_fields = [
|
|
|
|
("content_upload", "1"),
|
|
|
|
("reviewers", JoinComma(self.reviewer)),
|
|
|
|
("cc", JoinComma(self.cc)),
|
|
|
|
("description", self.desc),
|
|
|
|
("base_hashes", ""),
|
2009-11-01 19:46:07 -07:00
|
|
|
# Would prefer not to change the subject
|
|
|
|
# on reupload, but /upload requires it.
|
|
|
|
("subject", self.Subject()),
|
2009-10-22 12:12:39 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
if self.name != "new":
|
|
|
|
form_fields.append(("issue", self.name))
|
2009-12-15 14:36:05 -07:00
|
|
|
vcs = None
|
|
|
|
if self.files:
|
2010-08-26 16:56:29 -06:00
|
|
|
vcs = MercurialVCS(upload_options, ui, repo)
|
2009-12-15 14:36:05 -07:00
|
|
|
data = vcs.GenerateDiff(self.files)
|
|
|
|
files = vcs.GetBaseFiles(data)
|
|
|
|
if len(data) > MAX_UPLOAD_SIZE:
|
|
|
|
uploaded_diff_file = []
|
|
|
|
form_fields.append(("separate_patches", "1"))
|
|
|
|
else:
|
|
|
|
uploaded_diff_file = [("data", "data.diff", data)]
|
2009-10-22 12:12:39 -06:00
|
|
|
else:
|
2009-12-15 14:36:05 -07:00
|
|
|
uploaded_diff_file = [("data", "data.diff", emptydiff)]
|
2009-10-22 12:12:39 -06:00
|
|
|
ctype, body = EncodeMultipartFormData(form_fields, uploaded_diff_file)
|
|
|
|
response_body = MySend("/upload", body, content_type=ctype)
|
|
|
|
patchset = None
|
|
|
|
msg = response_body
|
|
|
|
lines = msg.splitlines()
|
|
|
|
if len(lines) >= 2:
|
|
|
|
msg = lines[0]
|
|
|
|
patchset = lines[1].strip()
|
|
|
|
patches = [x.split(" ", 1) for x in lines[2:]]
|
2009-11-01 06:49:35 -07:00
|
|
|
ui.status(msg + "\n")
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("uploaded CL metadata + diffs")
|
2009-10-22 12:12:39 -06:00
|
|
|
if not response_body.startswith("Issue created.") and not response_body.startswith("Issue updated."):
|
2009-11-04 04:15:24 -07:00
|
|
|
raise util.Abort("failed to update issue: " + response_body)
|
2009-10-22 12:12:39 -06:00
|
|
|
issue = msg[msg.rfind("/")+1:]
|
|
|
|
self.name = issue
|
2009-11-01 06:49:35 -07:00
|
|
|
if not self.url:
|
|
|
|
self.url = server_url_base + self.name
|
2009-10-22 12:12:39 -06:00
|
|
|
if not uploaded_diff_file:
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("uploading patches")
|
2009-10-22 12:12:39 -06:00
|
|
|
patches = UploadSeparatePatches(issue, rpc, patchset, data, upload_options)
|
2009-12-15 14:36:05 -07:00
|
|
|
if vcs:
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("uploading base files")
|
2009-12-15 14:36:05 -07:00
|
|
|
vcs.UploadBaseFiles(issue, rpc, patches, patchset, upload_options, files)
|
2009-10-22 12:12:39 -06:00
|
|
|
if send_mail:
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("sending mail")
|
2009-10-22 12:12:39 -06:00
|
|
|
MySend("/" + issue + "/mail", payload="")
|
|
|
|
self.web = True
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("flushing changes to disk")
|
2009-10-22 12:12:39 -06:00
|
|
|
self.Flush(ui, repo)
|
|
|
|
return
|
|
|
|
|
2010-01-07 19:23:30 -07:00
|
|
|
def Mail(self, ui,repo):
|
|
|
|
pmsg = "Hello " + JoinComma(self.reviewer)
|
|
|
|
if self.cc:
|
|
|
|
pmsg += " (cc: %s)" % (', '.join(self.cc),)
|
|
|
|
pmsg += ",\n"
|
|
|
|
pmsg += "\n"
|
|
|
|
if not self.mailed:
|
|
|
|
pmsg += "I'd like you to review this change.\n"
|
|
|
|
else:
|
|
|
|
pmsg += "Please take another look.\n"
|
|
|
|
PostMessage(ui, self.name, pmsg, subject=self.Subject())
|
|
|
|
self.mailed = True
|
|
|
|
self.Flush(ui, repo)
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def GoodCLName(name):
|
2009-11-01 06:49:35 -07:00
|
|
|
return re.match("^[0-9]+$", name)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
def ParseCL(text, name):
|
|
|
|
sname = None
|
|
|
|
lineno = 0
|
|
|
|
sections = {
|
2009-11-05 15:44:57 -07:00
|
|
|
'Author': '',
|
2009-10-22 12:12:39 -06:00
|
|
|
'Description': '',
|
|
|
|
'Files': '',
|
|
|
|
'URL': '',
|
|
|
|
'Reviewer': '',
|
|
|
|
'CC': '',
|
2010-01-07 19:23:30 -07:00
|
|
|
'Mailed': '',
|
2009-10-22 12:12:39 -06:00
|
|
|
}
|
|
|
|
for line in text.split('\n'):
|
|
|
|
lineno += 1
|
|
|
|
line = line.rstrip()
|
|
|
|
if line != '' and line[0] == '#':
|
|
|
|
continue
|
|
|
|
if line == '' or line[0] == ' ' or line[0] == '\t':
|
|
|
|
if sname == None and line != '':
|
|
|
|
return None, lineno, 'text outside section'
|
|
|
|
if sname != None:
|
|
|
|
sections[sname] += line + '\n'
|
|
|
|
continue
|
|
|
|
p = line.find(':')
|
|
|
|
if p >= 0:
|
|
|
|
s, val = line[:p].strip(), line[p+1:].strip()
|
|
|
|
if s in sections:
|
|
|
|
sname = s
|
|
|
|
if val != '':
|
|
|
|
sections[sname] += val + '\n'
|
|
|
|
continue
|
|
|
|
return None, lineno, 'malformed section header'
|
|
|
|
|
|
|
|
for k in sections:
|
|
|
|
sections[k] = StripCommon(sections[k]).rstrip()
|
|
|
|
|
|
|
|
cl = CL(name)
|
2009-11-05 15:44:57 -07:00
|
|
|
if sections['Author']:
|
2010-01-09 10:47:14 -07:00
|
|
|
cl.copied_from = sections['Author']
|
2009-10-22 12:12:39 -06:00
|
|
|
cl.desc = sections['Description']
|
|
|
|
for line in sections['Files'].split('\n'):
|
|
|
|
i = line.find('#')
|
|
|
|
if i >= 0:
|
|
|
|
line = line[0:i].rstrip()
|
2010-08-12 01:04:17 -06:00
|
|
|
line = line.strip()
|
2009-10-22 12:12:39 -06:00
|
|
|
if line == '':
|
|
|
|
continue
|
|
|
|
cl.files.append(line)
|
|
|
|
cl.reviewer = SplitCommaSpace(sections['Reviewer'])
|
|
|
|
cl.cc = SplitCommaSpace(sections['CC'])
|
|
|
|
cl.url = sections['URL']
|
2010-01-07 19:23:30 -07:00
|
|
|
if sections['Mailed'] != 'False':
|
|
|
|
# Odd default, but avoids spurious mailings when
|
|
|
|
# reading old CLs that do not have a Mailed: line.
|
|
|
|
# CLs created with this update will always have
|
|
|
|
# Mailed: False on disk.
|
|
|
|
cl.mailed = True
|
2009-10-22 12:12:39 -06:00
|
|
|
if cl.desc == '<enter description here>':
|
2010-01-07 19:23:30 -07:00
|
|
|
cl.desc = ''
|
2009-10-22 12:12:39 -06:00
|
|
|
return cl, 0, ''
|
|
|
|
|
|
|
|
def SplitCommaSpace(s):
|
2010-01-13 10:09:06 -07:00
|
|
|
s = s.strip()
|
|
|
|
if s == "":
|
|
|
|
return []
|
|
|
|
return re.split(", *", s)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-04 04:15:24 -07:00
|
|
|
def CutDomain(s):
|
|
|
|
i = s.find('@')
|
|
|
|
if i >= 0:
|
|
|
|
s = s[0:i]
|
|
|
|
return s
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def JoinComma(l):
|
|
|
|
return ", ".join(l)
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
def ExceptionDetail():
|
|
|
|
s = str(sys.exc_info()[0])
|
|
|
|
if s.startswith("<type '") and s.endswith("'>"):
|
|
|
|
s = s[7:-2]
|
|
|
|
elif s.startswith("<class '") and s.endswith("'>"):
|
|
|
|
s = s[8:-2]
|
|
|
|
arg = str(sys.exc_info()[1])
|
|
|
|
if len(arg) > 0:
|
|
|
|
s += ": " + arg
|
|
|
|
return s
|
|
|
|
|
2009-11-04 16:17:01 -07:00
|
|
|
def IsLocalCL(ui, repo, name):
|
|
|
|
return GoodCLName(name) and os.access(CodeReviewDir(ui, repo) + "/cl." + name, 0)
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
# Load CL from disk and/or the web.
|
|
|
|
def LoadCL(ui, repo, name, web=True):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("loading CL " + name)
|
2009-10-22 12:12:39 -06:00
|
|
|
if not GoodCLName(name):
|
|
|
|
return None, "invalid CL name"
|
|
|
|
dir = CodeReviewDir(ui, repo)
|
|
|
|
path = dir + "cl." + name
|
2009-11-01 06:49:35 -07:00
|
|
|
if os.access(path, 0):
|
2009-10-22 12:12:39 -06:00
|
|
|
ff = open(path)
|
|
|
|
text = ff.read()
|
|
|
|
ff.close()
|
|
|
|
cl, lineno, err = ParseCL(text, name)
|
|
|
|
if err != "":
|
2009-11-01 06:49:35 -07:00
|
|
|
return None, "malformed CL data: "+err
|
2009-10-22 12:12:39 -06:00
|
|
|
cl.local = True
|
2009-11-01 06:49:35 -07:00
|
|
|
else:
|
2009-10-22 12:12:39 -06:00
|
|
|
cl = CL(name)
|
|
|
|
if web:
|
|
|
|
try:
|
|
|
|
f = GetSettings(name)
|
2009-11-01 06:49:35 -07:00
|
|
|
except:
|
2009-11-05 15:44:57 -07:00
|
|
|
return None, "cannot load CL %s from code review server: %s" % (name, ExceptionDetail())
|
2009-11-01 06:49:35 -07:00
|
|
|
if 'reviewers' not in f:
|
|
|
|
return None, "malformed response loading CL data from code review server"
|
2009-10-22 12:12:39 -06:00
|
|
|
cl.reviewer = SplitCommaSpace(f['reviewers'])
|
|
|
|
cl.cc = SplitCommaSpace(f['cc'])
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.local and cl.copied_from and cl.desc:
|
2009-11-30 11:28:48 -07:00
|
|
|
# local copy of CL written by someone else
|
|
|
|
# and we saved a description. use that one,
|
|
|
|
# so that committers can edit the description
|
|
|
|
# before doing hg submit.
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
cl.desc = f['description']
|
2009-10-22 12:12:39 -06:00
|
|
|
cl.url = server_url_base + name
|
|
|
|
cl.web = True
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("loaded CL " + name)
|
2009-10-22 12:12:39 -06:00
|
|
|
return cl, ''
|
|
|
|
|
2010-08-26 14:27:42 -06:00
|
|
|
global_status = ""
|
|
|
|
|
|
|
|
def set_status(s):
|
|
|
|
# print >>sys.stderr, "\t", time.asctime(), s
|
|
|
|
global global_status
|
|
|
|
global_status = s
|
|
|
|
|
|
|
|
class StatusThread(threading.Thread):
|
|
|
|
def __init__(self):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
def run(self):
|
|
|
|
# pause a reasonable amount of time before
|
|
|
|
# starting to display status messages, so that
|
|
|
|
# most hg commands won't ever see them.
|
|
|
|
time.sleep(30)
|
|
|
|
|
|
|
|
# now show status every 15 seconds
|
|
|
|
while True:
|
|
|
|
time.sleep(15 - time.time() % 15)
|
|
|
|
s = global_status
|
|
|
|
if s is None:
|
|
|
|
continue
|
|
|
|
if s == "":
|
|
|
|
s = "(unknown status)"
|
|
|
|
print >>sys.stderr, time.asctime(), s
|
|
|
|
|
|
|
|
def start_status_thread():
|
2010-08-26 15:06:36 -06:00
|
|
|
t = StatusThread()
|
|
|
|
t.setDaemon(True) # allowed to exit if t is still running
|
|
|
|
t.start()
|
2010-08-26 14:27:42 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
class LoadCLThread(threading.Thread):
|
|
|
|
def __init__(self, ui, repo, dir, f, web):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.ui = ui
|
|
|
|
self.repo = repo
|
2009-11-01 19:46:07 -07:00
|
|
|
self.dir = dir
|
2009-11-01 06:49:35 -07:00
|
|
|
self.f = f
|
|
|
|
self.web = web
|
|
|
|
self.cl = None
|
|
|
|
def run(self):
|
|
|
|
cl, err = LoadCL(self.ui, self.repo, self.f[3:], web=self.web)
|
|
|
|
if err != '':
|
|
|
|
self.ui.warn("loading "+self.dir+self.f+": " + err + "\n")
|
|
|
|
return
|
|
|
|
self.cl = cl
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
# Load all the CLs from this repository.
|
|
|
|
def LoadAllCL(ui, repo, web=True):
|
|
|
|
dir = CodeReviewDir(ui, repo)
|
|
|
|
m = {}
|
2009-11-01 06:49:35 -07:00
|
|
|
files = [f for f in os.listdir(dir) if f.startswith('cl.')]
|
|
|
|
if not files:
|
|
|
|
return m
|
|
|
|
active = []
|
2009-11-07 19:56:29 -07:00
|
|
|
first = True
|
2009-11-01 06:49:35 -07:00
|
|
|
for f in files:
|
|
|
|
t = LoadCLThread(ui, repo, dir, f, web)
|
|
|
|
t.start()
|
2009-11-07 19:56:29 -07:00
|
|
|
if web and first:
|
|
|
|
# first request: wait in case it needs to authenticate
|
|
|
|
# otherwise we get lots of user/password prompts
|
|
|
|
# running in parallel.
|
|
|
|
t.join()
|
|
|
|
if t.cl:
|
|
|
|
m[t.cl.name] = t.cl
|
|
|
|
first = False
|
|
|
|
else:
|
|
|
|
active.append(t)
|
2009-11-01 06:49:35 -07:00
|
|
|
for t in active:
|
|
|
|
t.join()
|
|
|
|
if t.cl:
|
|
|
|
m[t.cl.name] = t.cl
|
2009-10-22 12:12:39 -06:00
|
|
|
return m
|
|
|
|
|
|
|
|
# Find repository root. On error, ui.warn and return None
|
|
|
|
def RepoDir(ui, repo):
|
|
|
|
url = repo.url();
|
2009-11-30 12:53:11 -07:00
|
|
|
if not url.startswith('file:'):
|
2009-10-22 12:12:39 -06:00
|
|
|
ui.warn("repository %s is not in local file system\n" % (url,))
|
|
|
|
return None
|
|
|
|
url = url[5:]
|
|
|
|
if url.endswith('/'):
|
|
|
|
url = url[:-1]
|
|
|
|
return url
|
|
|
|
|
|
|
|
# Find (or make) code review directory. On error, ui.warn and return None
|
|
|
|
def CodeReviewDir(ui, repo):
|
|
|
|
dir = RepoDir(ui, repo)
|
|
|
|
if dir == None:
|
|
|
|
return None
|
|
|
|
dir += '/.hg/codereview/'
|
|
|
|
if not os.path.isdir(dir):
|
|
|
|
try:
|
|
|
|
os.mkdir(dir, 0700)
|
2009-11-01 06:49:35 -07:00
|
|
|
except:
|
|
|
|
ui.warn('cannot mkdir %s: %s\n' % (dir, ExceptionDetail()))
|
2009-10-22 12:12:39 -06:00
|
|
|
return None
|
|
|
|
return dir
|
|
|
|
|
|
|
|
# Strip maximal common leading white space prefix from text
|
|
|
|
def StripCommon(text):
|
|
|
|
ws = None
|
|
|
|
for line in text.split('\n'):
|
|
|
|
line = line.rstrip()
|
|
|
|
if line == '':
|
|
|
|
continue
|
|
|
|
white = line[:len(line)-len(line.lstrip())]
|
|
|
|
if ws == None:
|
|
|
|
ws = white
|
|
|
|
else:
|
|
|
|
common = ''
|
|
|
|
for i in range(min(len(white), len(ws))+1):
|
|
|
|
if white[0:i] == ws[0:i]:
|
|
|
|
common = white[0:i]
|
|
|
|
ws = common
|
|
|
|
if ws == '':
|
|
|
|
break
|
|
|
|
if ws == None:
|
|
|
|
return text
|
|
|
|
t = ''
|
|
|
|
for line in text.split('\n'):
|
|
|
|
line = line.rstrip()
|
|
|
|
if line.startswith(ws):
|
|
|
|
line = line[len(ws):]
|
|
|
|
if line == '' and t == '':
|
|
|
|
continue
|
|
|
|
t += line + '\n'
|
|
|
|
while len(t) >= 2 and t[-2:] == '\n\n':
|
|
|
|
t = t[:-1]
|
|
|
|
return t
|
|
|
|
|
|
|
|
# Indent text with indent.
|
|
|
|
def Indent(text, indent):
|
|
|
|
t = ''
|
|
|
|
for line in text.split('\n'):
|
|
|
|
t += indent + line + '\n'
|
|
|
|
return t
|
|
|
|
|
|
|
|
# Return the first line of l
|
|
|
|
def line1(text):
|
|
|
|
return text.split('\n')[0]
|
|
|
|
|
|
|
|
_change_prolog = """# Change list.
|
|
|
|
# Lines beginning with # are ignored.
|
|
|
|
# Multi-line values should be indented.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Mercurial helper functions
|
|
|
|
|
2010-05-24 15:37:00 -06:00
|
|
|
# Get effective change nodes taking into account applied MQ patches
|
|
|
|
def effective_revpair(repo):
|
|
|
|
try:
|
|
|
|
return cmdutil.revpair(repo, ['qparent'])
|
|
|
|
except:
|
|
|
|
return cmdutil.revpair(repo, None)
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
# Return list of changed files in repository that match pats.
|
|
|
|
def ChangedFiles(ui, repo, pats, opts):
|
|
|
|
# Find list of files being operated on.
|
2009-11-01 06:49:35 -07:00
|
|
|
matcher = cmdutil.match(repo, pats, opts)
|
2010-05-24 15:37:00 -06:00
|
|
|
node1, node2 = effective_revpair(repo)
|
2009-11-01 06:49:35 -07:00
|
|
|
modified, added, removed = repo.status(node1, node2, matcher)[:3]
|
|
|
|
l = modified + added + removed
|
|
|
|
l.sort()
|
|
|
|
return l
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-05 00:43:55 -07:00
|
|
|
# Return list of changed files in repository that match pats and still exist.
|
|
|
|
def ChangedExistingFiles(ui, repo, pats, opts):
|
|
|
|
matcher = cmdutil.match(repo, pats, opts)
|
2010-05-24 15:37:00 -06:00
|
|
|
node1, node2 = effective_revpair(repo)
|
2009-11-05 00:43:55 -07:00
|
|
|
modified, added, _ = repo.status(node1, node2, matcher)[:3]
|
|
|
|
l = modified + added
|
|
|
|
l.sort()
|
|
|
|
return l
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
# Return list of files claimed by existing CLs
|
|
|
|
def TakenFiles(ui, repo):
|
2009-11-01 06:49:35 -07:00
|
|
|
return Taken(ui, repo).keys()
|
|
|
|
|
|
|
|
def Taken(ui, repo):
|
2009-10-22 12:12:39 -06:00
|
|
|
all = LoadAllCL(ui, repo, web=False)
|
|
|
|
taken = {}
|
|
|
|
for _, cl in all.items():
|
|
|
|
for f in cl.files:
|
|
|
|
taken[f] = cl
|
|
|
|
return taken
|
|
|
|
|
|
|
|
# Return list of changed files that are not claimed by other CLs
|
|
|
|
def DefaultFiles(ui, repo, pats, opts):
|
|
|
|
return Sub(ChangedFiles(ui, repo, pats, opts), TakenFiles(ui, repo))
|
|
|
|
|
|
|
|
def Sub(l1, l2):
|
|
|
|
return [l for l in l1 if l not in l2]
|
|
|
|
|
|
|
|
def Add(l1, l2):
|
2009-11-01 06:49:35 -07:00
|
|
|
l = l1 + Sub(l2, l1)
|
|
|
|
l.sort()
|
|
|
|
return l
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
def Intersect(l1, l2):
|
|
|
|
return [l for l in l1 if l in l2]
|
|
|
|
|
2009-11-01 19:46:07 -07:00
|
|
|
def getremote(ui, repo, opts):
|
|
|
|
# save $http_proxy; creating the HTTP repo object will
|
|
|
|
# delete it in an attempt to "help"
|
|
|
|
proxy = os.environ.get('http_proxy')
|
2010-03-02 15:03:31 -07:00
|
|
|
source = hg.parseurl(ui.expandpath("default"), None)[0]
|
2010-07-14 18:17:04 -06:00
|
|
|
try:
|
|
|
|
remoteui = hg.remoteui # hg 1.6
|
2010-08-26 16:56:29 -06:00
|
|
|
except:
|
2010-07-14 18:17:04 -06:00
|
|
|
remoteui = cmdutil.remoteui
|
|
|
|
other = hg.repository(remoteui(repo, opts), source)
|
2009-11-01 19:46:07 -07:00
|
|
|
if proxy is not None:
|
|
|
|
os.environ['http_proxy'] = proxy
|
|
|
|
return other
|
|
|
|
|
|
|
|
def Incoming(ui, repo, opts):
|
2010-07-16 19:54:38 -06:00
|
|
|
_, incoming, _ = findcommonincoming(repo, getremote(ui, repo, opts))
|
2009-10-22 12:12:39 -06:00
|
|
|
return incoming
|
|
|
|
|
|
|
|
def EditCL(ui, repo, cl):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status(None) # do not show status
|
2009-10-22 12:12:39 -06:00
|
|
|
s = cl.EditorText()
|
|
|
|
while True:
|
|
|
|
s = ui.edit(s, ui.username())
|
|
|
|
clx, line, err = ParseCL(s, cl.name)
|
|
|
|
if err != '':
|
2010-01-20 10:49:35 -07:00
|
|
|
if not promptyesno(ui, "error parsing change list: line %d: %s\nre-edit (y/n)?" % (line, err)):
|
2009-10-22 12:12:39 -06:00
|
|
|
return "change list not modified"
|
|
|
|
continue
|
|
|
|
cl.desc = clx.desc;
|
|
|
|
cl.reviewer = clx.reviewer
|
|
|
|
cl.cc = clx.cc
|
|
|
|
cl.files = clx.files
|
|
|
|
if cl.desc == '':
|
2010-01-20 10:49:35 -07:00
|
|
|
if promptyesno(ui, "change list should have description\nre-edit (y/n)?"):
|
2009-10-22 12:12:39 -06:00
|
|
|
continue
|
|
|
|
break
|
|
|
|
return ""
|
|
|
|
|
|
|
|
# For use by submit, etc. (NOT by change)
|
|
|
|
# Get change list number or list of files from command line.
|
|
|
|
# If files are given, make a new change list.
|
2009-12-15 14:36:05 -07:00
|
|
|
def CommandLineCL(ui, repo, pats, opts, defaultcc=None):
|
2009-10-22 12:12:39 -06:00
|
|
|
if len(pats) > 0 and GoodCLName(pats[0]):
|
|
|
|
if len(pats) != 1:
|
|
|
|
return None, "cannot specify change number and file names"
|
|
|
|
if opts.get('message'):
|
|
|
|
return None, "cannot use -m with existing CL"
|
|
|
|
cl, err = LoadCL(ui, repo, pats[0], web=True)
|
2009-11-05 15:44:57 -07:00
|
|
|
if err != "":
|
|
|
|
return None, err
|
2009-10-22 12:12:39 -06:00
|
|
|
else:
|
|
|
|
cl = CL("new")
|
|
|
|
cl.local = True
|
|
|
|
cl.files = Sub(ChangedFiles(ui, repo, pats, opts), TakenFiles(ui, repo))
|
|
|
|
if not cl.files:
|
|
|
|
return None, "no files changed"
|
|
|
|
if opts.get('reviewer'):
|
|
|
|
cl.reviewer = Add(cl.reviewer, SplitCommaSpace(opts.get('reviewer')))
|
|
|
|
if opts.get('cc'):
|
|
|
|
cl.cc = Add(cl.cc, SplitCommaSpace(opts.get('cc')))
|
2009-12-15 14:36:05 -07:00
|
|
|
if defaultcc:
|
|
|
|
cl.cc = Add(cl.cc, defaultcc)
|
2009-10-22 12:12:39 -06:00
|
|
|
if cl.name == "new":
|
|
|
|
if opts.get('message'):
|
|
|
|
cl.desc = opts.get('message')
|
|
|
|
else:
|
|
|
|
err = EditCL(ui, repo, cl)
|
|
|
|
if err != '':
|
|
|
|
return None, err
|
|
|
|
return cl, ""
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
# reposetup replaces cmdutil.match with this wrapper,
|
|
|
|
# which expands the syntax @clnumber to mean the files
|
|
|
|
# in that CL.
|
|
|
|
original_match = None
|
|
|
|
def ReplacementForCmdutilMatch(repo, pats=[], opts={}, globbed=False, default='relpath'):
|
|
|
|
taken = []
|
|
|
|
files = []
|
2010-08-26 16:56:29 -06:00
|
|
|
pats = pats or []
|
2009-11-01 06:49:35 -07:00
|
|
|
for p in pats:
|
|
|
|
if p.startswith('@'):
|
|
|
|
taken.append(p)
|
|
|
|
clname = p[1:]
|
|
|
|
if not GoodCLName(clname):
|
|
|
|
raise util.Abort("invalid CL name " + clname)
|
|
|
|
cl, err = LoadCL(repo.ui, repo, clname, web=False)
|
|
|
|
if err != '':
|
|
|
|
raise util.Abort("loading CL " + clname + ": " + err)
|
2010-08-26 16:56:29 -06:00
|
|
|
if not cl.files:
|
2009-12-15 14:36:05 -07:00
|
|
|
raise util.Abort("no files in CL " + clname)
|
2009-11-01 06:49:35 -07:00
|
|
|
files = Add(files, cl.files)
|
2010-06-09 22:37:11 -06:00
|
|
|
pats = Sub(pats, taken) + ['path:'+f for f in files]
|
2009-11-01 06:49:35 -07:00
|
|
|
return original_match(repo, pats=pats, opts=opts, globbed=globbed, default=default)
|
|
|
|
|
2009-11-05 00:43:55 -07:00
|
|
|
def RelativePath(path, cwd):
|
|
|
|
n = len(cwd)
|
|
|
|
if path.startswith(cwd) and path[n] == '/':
|
|
|
|
return path[n+1:]
|
|
|
|
return path
|
|
|
|
|
|
|
|
# Check that gofmt run on the list of files does not change them
|
2009-11-06 10:45:24 -07:00
|
|
|
def CheckGofmt(ui, repo, files, just_warn=False):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("running gofmt")
|
2009-11-20 14:11:42 -07:00
|
|
|
files = [f for f in files if (f.startswith('src/') or f.startswith('test/bench/')) and f.endswith('.go')]
|
2009-11-05 09:11:44 -07:00
|
|
|
if not files:
|
2009-11-05 00:43:55 -07:00
|
|
|
return
|
|
|
|
cwd = os.getcwd()
|
|
|
|
files = [RelativePath(repo.root + '/' + f, cwd) for f in files]
|
2009-12-03 18:23:11 -07:00
|
|
|
files = [f for f in files if os.access(f, 0)]
|
2010-07-15 17:43:06 -06:00
|
|
|
if not files:
|
|
|
|
return
|
2009-11-05 00:43:55 -07:00
|
|
|
try:
|
2009-11-07 18:30:40 -07:00
|
|
|
cmd = subprocess.Popen(["gofmt", "-l"] + files, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True)
|
|
|
|
cmd.stdin.close()
|
2009-11-05 00:43:55 -07:00
|
|
|
except:
|
|
|
|
raise util.Abort("gofmt: " + ExceptionDetail())
|
2009-11-07 18:30:40 -07:00
|
|
|
data = cmd.stdout.read()
|
|
|
|
errors = cmd.stderr.read()
|
|
|
|
cmd.wait()
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("done with gofmt")
|
2009-11-05 00:43:55 -07:00
|
|
|
if len(errors) > 0:
|
|
|
|
ui.warn("gofmt errors:\n" + errors.rstrip() + "\n")
|
|
|
|
return
|
|
|
|
if len(data) > 0:
|
2009-11-06 19:40:30 -07:00
|
|
|
msg = "gofmt needs to format these files (run hg gofmt):\n" + Indent(data, "\t").rstrip()
|
2009-11-06 10:45:24 -07:00
|
|
|
if just_warn:
|
2009-11-06 19:40:30 -07:00
|
|
|
ui.warn("warning: " + msg + "\n")
|
2009-11-06 10:45:24 -07:00
|
|
|
else:
|
2009-11-06 19:40:30 -07:00
|
|
|
raise util.Abort(msg)
|
2009-11-05 00:43:55 -07:00
|
|
|
return
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
#######################################################################
|
|
|
|
# Mercurial commands
|
|
|
|
|
|
|
|
# every command must take a ui and and repo as arguments.
|
|
|
|
# opts is a dict where you can find other command line flags
|
|
|
|
#
|
|
|
|
# Other parameters are taken in order from items on the command line that
|
|
|
|
# don't start with a dash. If no default value is given in the parameter list,
|
|
|
|
# they are required.
|
2009-11-01 06:49:35 -07:00
|
|
|
#
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
def change(ui, repo, *pats, **opts):
|
2010-04-10 02:53:43 -06:00
|
|
|
"""create, edit or delete a change list
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2010-04-10 02:53:43 -06:00
|
|
|
Create, edit or delete a change list.
|
2009-10-22 12:12:39 -06:00
|
|
|
A change list is a group of files to be reviewed and submitted together,
|
|
|
|
plus a textual description of the change.
|
|
|
|
Change lists are referred to by simple alphanumeric names.
|
|
|
|
|
|
|
|
Changes must be reviewed before they can be submitted.
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
In the absence of options, the change command opens the
|
2009-11-01 06:49:35 -07:00
|
|
|
change list for editing in the default editor.
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
Deleting a change with the -d or -D flag does not affect
|
|
|
|
the contents of the files listed in that change. To revert
|
|
|
|
the files listed in a change, use
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
hg revert @123456
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
before running hg change -d 123456.
|
2009-10-22 12:12:39 -06:00
|
|
|
"""
|
|
|
|
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
dirty = {}
|
|
|
|
if len(pats) > 0 and GoodCLName(pats[0]):
|
|
|
|
name = pats[0]
|
2009-11-01 06:49:35 -07:00
|
|
|
if len(pats) != 1:
|
|
|
|
return "cannot specify CL name and file patterns"
|
2009-10-22 12:12:39 -06:00
|
|
|
pats = pats[1:]
|
|
|
|
cl, err = LoadCL(ui, repo, name, web=True)
|
|
|
|
if err != '':
|
|
|
|
return err
|
2009-11-01 06:49:35 -07:00
|
|
|
if not cl.local and (opts["stdin"] or not opts["stdout"]):
|
2009-10-22 12:12:39 -06:00
|
|
|
return "cannot change non-local CL " + name
|
|
|
|
else:
|
|
|
|
name = "new"
|
|
|
|
cl = CL("new")
|
|
|
|
dirty[cl] = True
|
2009-11-01 06:49:35 -07:00
|
|
|
files = ChangedFiles(ui, repo, pats, opts)
|
|
|
|
taken = TakenFiles(ui, repo)
|
|
|
|
files = Sub(files, taken)
|
2009-11-05 00:43:55 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
if opts["delete"] or opts["deletelocal"]:
|
|
|
|
if opts["delete"] and opts["deletelocal"]:
|
|
|
|
return "cannot use -d and -D together"
|
|
|
|
flag = "-d"
|
|
|
|
if opts["deletelocal"]:
|
|
|
|
flag = "-D"
|
2009-11-01 06:49:35 -07:00
|
|
|
if name == "new":
|
2009-11-05 15:44:57 -07:00
|
|
|
return "cannot use "+flag+" with file patterns"
|
2009-11-01 06:49:35 -07:00
|
|
|
if opts["stdin"] or opts["stdout"]:
|
2009-11-05 15:44:57 -07:00
|
|
|
return "cannot use "+flag+" with -i or -o"
|
2009-11-01 06:49:35 -07:00
|
|
|
if not cl.local:
|
|
|
|
return "cannot change non-local CL " + name
|
2009-11-05 15:44:57 -07:00
|
|
|
if opts["delete"]:
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.copied_from:
|
2009-11-05 15:44:57 -07:00
|
|
|
return "original author must delete CL; hg change -D will remove locally"
|
2010-08-12 15:58:38 -06:00
|
|
|
PostMessage(ui, cl.name, "*** Abandoned ***", send_mail=cl.mailed)
|
2009-11-05 15:44:57 -07:00
|
|
|
EditDesc(cl.name, closed="checked")
|
2009-11-01 06:49:35 -07:00
|
|
|
cl.Delete(ui, repo)
|
|
|
|
return
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
if opts["stdin"]:
|
|
|
|
s = sys.stdin.read()
|
|
|
|
clx, line, err = ParseCL(s, name)
|
|
|
|
if err != '':
|
|
|
|
return "error parsing change list: line %d: %s" % (line, err)
|
|
|
|
if clx.desc is not None:
|
|
|
|
cl.desc = clx.desc;
|
|
|
|
dirty[cl] = True
|
|
|
|
if clx.reviewer is not None:
|
|
|
|
cl.reviewer = clx.reviewer
|
|
|
|
dirty[cl] = True
|
|
|
|
if clx.cc is not None:
|
|
|
|
cl.cc = clx.cc
|
|
|
|
dirty[cl] = True
|
|
|
|
if clx.files is not None:
|
|
|
|
cl.files = clx.files
|
|
|
|
dirty[cl] = True
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
if not opts["stdin"] and not opts["stdout"]:
|
2009-10-22 12:12:39 -06:00
|
|
|
if name == "new":
|
|
|
|
cl.files = files
|
|
|
|
err = EditCL(ui, repo, cl)
|
|
|
|
if err != "":
|
|
|
|
return err
|
|
|
|
dirty[cl] = True
|
|
|
|
|
|
|
|
for d, _ in dirty.items():
|
|
|
|
d.Flush(ui, repo)
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
if opts["stdout"]:
|
|
|
|
ui.write(cl.EditorText())
|
|
|
|
elif name == "new":
|
|
|
|
if ui.quiet:
|
|
|
|
ui.write(cl.name)
|
|
|
|
else:
|
2009-11-01 06:49:35 -07:00
|
|
|
ui.write("CL created: " + cl.url + "\n")
|
2009-10-22 12:12:39 -06:00
|
|
|
return
|
|
|
|
|
2009-11-05 00:43:55 -07:00
|
|
|
def code_login(ui, repo, **opts):
|
2009-11-01 06:49:35 -07:00
|
|
|
"""log in to code review server
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
Logs in to the code review server, saving a cookie in
|
|
|
|
a file in your home directory.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
MySend(None)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
def clpatch(ui, repo, clname, **opts):
|
|
|
|
"""import a patch from the code review server
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
Imports a patch from the code review server into the local client.
|
|
|
|
If the local client has already modified any of the files that the
|
|
|
|
patch modifies, this command will refuse to apply the patch.
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
Submitting an imported patch will keep the original author's
|
|
|
|
name as the Author: line but add your own name to a Committer: line.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
cl, patch, err = DownloadCL(ui, repo, clname)
|
|
|
|
argv = ["hgpatch"]
|
|
|
|
if opts["no_incoming"]:
|
|
|
|
argv += ["--checksync=false"]
|
|
|
|
if err != "":
|
|
|
|
return err
|
|
|
|
try:
|
|
|
|
cmd = subprocess.Popen(argv, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None, close_fds=True)
|
|
|
|
except:
|
|
|
|
return "hgpatch: " + ExceptionDetail()
|
|
|
|
if os.fork() == 0:
|
|
|
|
cmd.stdin.write(patch)
|
|
|
|
os._exit(0)
|
|
|
|
cmd.stdin.close()
|
|
|
|
out = cmd.stdout.read()
|
2009-11-17 09:47:48 -07:00
|
|
|
if cmd.wait() != 0 and not opts["ignore_hgpatch_failure"]:
|
2009-11-05 15:44:57 -07:00
|
|
|
return "hgpatch failed"
|
|
|
|
cl.local = True
|
|
|
|
cl.files = out.strip().split()
|
|
|
|
files = ChangedFiles(ui, repo, [], opts)
|
|
|
|
extra = Sub(cl.files, files)
|
|
|
|
if extra:
|
|
|
|
ui.warn("warning: these files were listed in the patch but not changed:\n\t" + "\n\t".join(extra) + "\n")
|
|
|
|
cl.Flush(ui, repo)
|
|
|
|
ui.write(cl.PendingText() + "\n")
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
def download(ui, repo, clname, **opts):
|
|
|
|
"""download a change from the code review server
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
Download prints a description of the given change list
|
|
|
|
followed by its diff, downloaded from the code review server.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
cl, patch, err = DownloadCL(ui, repo, clname)
|
|
|
|
if err != "":
|
|
|
|
return err
|
|
|
|
ui.write(cl.EditorText() + "\n")
|
|
|
|
ui.write(patch + "\n")
|
|
|
|
return
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
def file(ui, repo, clname, pat, *pats, **opts):
|
|
|
|
"""assign files to or remove files from a change list
|
2009-11-05 00:43:55 -07:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
Assign files to or (with -d) remove files from a change list.
|
2009-11-05 00:43:55 -07:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
The -d option only removes files from the change list.
|
|
|
|
It does not edit them or remove them from the repository.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
pats = tuple([pat] + list(pats))
|
|
|
|
if not GoodCLName(clname):
|
|
|
|
return "invalid CL name " + clname
|
2009-11-05 00:43:55 -07:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
dirty = {}
|
|
|
|
cl, err = LoadCL(ui, repo, clname, web=False)
|
|
|
|
if err != '':
|
2009-10-22 12:12:39 -06:00
|
|
|
return err
|
|
|
|
if not cl.local:
|
2009-11-01 06:49:35 -07:00
|
|
|
return "cannot change non-local CL " + clname
|
|
|
|
|
|
|
|
files = ChangedFiles(ui, repo, pats, opts)
|
|
|
|
|
|
|
|
if opts["delete"]:
|
|
|
|
oldfiles = Intersect(files, cl.files)
|
|
|
|
if oldfiles:
|
|
|
|
if not ui.quiet:
|
|
|
|
ui.status("# Removing files from CL. To undo:\n")
|
|
|
|
ui.status("# cd %s\n" % (repo.root))
|
|
|
|
for f in oldfiles:
|
|
|
|
ui.status("# hg file %s %s\n" % (cl.name, f))
|
|
|
|
cl.files = Sub(cl.files, oldfiles)
|
|
|
|
cl.Flush(ui, repo)
|
|
|
|
else:
|
|
|
|
ui.status("no such files in CL")
|
|
|
|
return
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
if not files:
|
|
|
|
return "no such modified files"
|
|
|
|
|
|
|
|
files = Sub(files, cl.files)
|
|
|
|
taken = Taken(ui, repo)
|
|
|
|
warned = False
|
|
|
|
for f in files:
|
|
|
|
if f in taken:
|
|
|
|
if not warned and not ui.quiet:
|
|
|
|
ui.status("# Taking files from other CLs. To undo:\n")
|
|
|
|
ui.status("# cd %s\n" % (repo.root))
|
|
|
|
warned = True
|
|
|
|
ocl = taken[f]
|
|
|
|
if not ui.quiet:
|
|
|
|
ui.status("# hg file %s %s\n" % (ocl.name, f))
|
|
|
|
if ocl not in dirty:
|
|
|
|
ocl.files = Sub(ocl.files, files)
|
|
|
|
dirty[ocl] = True
|
|
|
|
cl.files = Add(cl.files, files)
|
|
|
|
dirty[cl] = True
|
|
|
|
for d, _ in dirty.items():
|
|
|
|
d.Flush(ui, repo)
|
|
|
|
return
|
2009-11-05 00:43:55 -07:00
|
|
|
|
|
|
|
def gofmt(ui, repo, *pats, **opts):
|
|
|
|
"""apply gofmt to modified files
|
|
|
|
|
|
|
|
Applies gofmt to the modified files in the repository that match
|
|
|
|
the given patterns.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-05 00:43:55 -07:00
|
|
|
files = ChangedExistingFiles(ui, repo, pats, opts)
|
|
|
|
files = [f for f in files if f.endswith(".go")]
|
|
|
|
if not files:
|
|
|
|
return "no modified go files"
|
|
|
|
cwd = os.getcwd()
|
|
|
|
files = [RelativePath(repo.root + '/' + f, cwd) for f in files]
|
|
|
|
try:
|
2009-11-05 09:11:44 -07:00
|
|
|
cmd = ["gofmt", "-l"]
|
|
|
|
if not opts["list"]:
|
|
|
|
cmd += ["-w"]
|
|
|
|
if os.spawnvp(os.P_WAIT, "gofmt", cmd + files) != 0:
|
2009-11-05 00:43:55 -07:00
|
|
|
raise util.Abort("gofmt did not exit cleanly")
|
|
|
|
except error.Abort, e:
|
|
|
|
raise
|
|
|
|
except:
|
|
|
|
raise util.Abort("gofmt: " + ExceptionDetail())
|
|
|
|
return
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def mail(ui, repo, *pats, **opts):
|
2009-11-05 00:43:55 -07:00
|
|
|
"""mail a change for review
|
|
|
|
|
|
|
|
Uploads a patch to the code review server and then sends mail
|
|
|
|
to the reviewer and CC list asking for a review.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-12-15 14:36:05 -07:00
|
|
|
cl, err = CommandLineCL(ui, repo, pats, opts, defaultcc=defaultcc)
|
2009-10-22 12:12:39 -06:00
|
|
|
if err != "":
|
|
|
|
return err
|
2009-11-08 23:13:10 -07:00
|
|
|
cl.Upload(ui, repo, gofmt_just_warn=True)
|
2010-01-28 13:48:21 -07:00
|
|
|
if not cl.reviewer:
|
|
|
|
# If no reviewer is listed, assign the review to defaultcc.
|
|
|
|
# This makes sure that it appears in the
|
|
|
|
# codereview.appspot.com/user/defaultcc
|
|
|
|
# page, so that it doesn't get dropped on the floor.
|
|
|
|
if not defaultcc:
|
|
|
|
return "no reviewers listed in CL"
|
|
|
|
cl.cc = Sub(cl.cc, defaultcc)
|
|
|
|
cl.reviewer = defaultcc
|
|
|
|
cl.Flush(ui, repo)
|
2010-01-07 19:23:30 -07:00
|
|
|
cl.Mail(ui, repo)
|
2009-11-01 06:49:35 -07:00
|
|
|
|
|
|
|
def nocommit(ui, repo, *pats, **opts):
|
2009-11-05 00:43:55 -07:00
|
|
|
"""(disabled when using this extension)"""
|
2009-11-01 06:49:35 -07:00
|
|
|
return "The codereview extension is enabled; do not use commit."
|
|
|
|
|
|
|
|
def pending(ui, repo, *pats, **opts):
|
2009-11-05 00:43:55 -07:00
|
|
|
"""show pending changes
|
|
|
|
|
|
|
|
Lists pending changes followed by a list of unassigned but modified files.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
m = LoadAllCL(ui, repo, web=True)
|
|
|
|
names = m.keys()
|
|
|
|
names.sort()
|
|
|
|
for name in names:
|
|
|
|
cl = m[name]
|
|
|
|
ui.write(cl.PendingText() + "\n")
|
|
|
|
|
|
|
|
files = DefaultFiles(ui, repo, [], opts)
|
|
|
|
if len(files) > 0:
|
|
|
|
s = "Changed files not in any CL:\n"
|
|
|
|
for f in files:
|
|
|
|
s += "\t" + f + "\n"
|
|
|
|
ui.write(s)
|
|
|
|
|
|
|
|
def reposetup(ui, repo):
|
|
|
|
global original_match
|
2009-11-04 16:17:01 -07:00
|
|
|
if original_match is None:
|
2010-08-26 14:27:42 -06:00
|
|
|
start_status_thread()
|
2009-11-04 16:17:01 -07:00
|
|
|
original_match = cmdutil.match
|
|
|
|
cmdutil.match = ReplacementForCmdutilMatch
|
|
|
|
RietveldSetup(ui, repo)
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
def CheckContributor(ui, repo, user=None):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("checking CONTRIBUTORS file")
|
2009-11-04 04:15:24 -07:00
|
|
|
if not user:
|
2009-11-05 15:44:57 -07:00
|
|
|
user = ui.config("ui", "username")
|
|
|
|
if not user:
|
|
|
|
raise util.Abort("[ui] username is not configured in .hgrc")
|
2009-11-06 18:02:47 -07:00
|
|
|
_, userline = FindContributor(ui, repo, user, warn=False)
|
2009-11-05 15:44:57 -07:00
|
|
|
if not userline:
|
|
|
|
raise util.Abort("cannot find %s in CONTRIBUTORS" % (user,))
|
|
|
|
return userline
|
|
|
|
|
|
|
|
def FindContributor(ui, repo, user, warn=True):
|
2010-09-11 21:42:29 -06:00
|
|
|
user = user.lower()
|
2010-07-01 00:34:11 -06:00
|
|
|
m = re.match(r".*<(.*)>", user)
|
|
|
|
if m:
|
2010-09-11 21:42:29 -06:00
|
|
|
user = m.group(1)
|
2010-07-01 00:34:11 -06:00
|
|
|
|
|
|
|
if user not in contributors:
|
|
|
|
if warn:
|
|
|
|
ui.warn("warning: cannot find %s in CONTRIBUTORS\n" % (user,))
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
user, email = contributors[user]
|
|
|
|
return email, "%s <%s>" % (user, email)
|
2009-11-04 04:15:24 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
def submit(ui, repo, *pats, **opts):
|
|
|
|
"""submit change to remote repository
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
Submits change to remote repository.
|
|
|
|
Bails out if the local repository is not in sync with the remote one.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
repo.ui.quiet = True
|
2009-11-01 19:46:07 -07:00
|
|
|
if not opts["no_incoming"] and Incoming(ui, repo, opts):
|
2009-10-22 12:12:39 -06:00
|
|
|
return "local repository out of date; must sync before submit"
|
|
|
|
|
2010-01-07 19:23:30 -07:00
|
|
|
cl, err = CommandLineCL(ui, repo, pats, opts, defaultcc=defaultcc)
|
2009-10-22 12:12:39 -06:00
|
|
|
if err != "":
|
|
|
|
return err
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
user = None
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.copied_from:
|
|
|
|
user = cl.copied_from
|
2009-11-05 15:44:57 -07:00
|
|
|
userline = CheckContributor(ui, repo, user)
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
about = ""
|
|
|
|
if cl.reviewer:
|
2009-11-04 04:15:24 -07:00
|
|
|
about += "R=" + JoinComma([CutDomain(s) for s in cl.reviewer]) + "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
if opts.get('tbr'):
|
|
|
|
tbr = SplitCommaSpace(opts.get('tbr'))
|
|
|
|
cl.reviewer = Add(cl.reviewer, tbr)
|
2009-11-04 04:15:24 -07:00
|
|
|
about += "TBR=" + JoinComma([CutDomain(s) for s in tbr]) + "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
if cl.cc:
|
2009-11-04 04:15:24 -07:00
|
|
|
about += "CC=" + JoinComma([CutDomain(s) for s in cl.cc]) + "\n"
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
if not cl.reviewer:
|
|
|
|
return "no reviewers listed in CL"
|
|
|
|
|
|
|
|
if not cl.local:
|
|
|
|
return "cannot submit non-local CL"
|
|
|
|
|
|
|
|
# upload, to sync current patch and also get change number if CL is new.
|
2010-01-09 10:47:14 -07:00
|
|
|
if not cl.copied_from:
|
2009-11-08 23:13:10 -07:00
|
|
|
cl.Upload(ui, repo, gofmt_just_warn=True)
|
|
|
|
|
|
|
|
# check gofmt for real; allowed upload to warn in order to save CL.
|
|
|
|
cl.Flush(ui, repo)
|
|
|
|
CheckGofmt(ui, repo, cl.files)
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
about += "%s%s\n" % (server_url_base, cl.name)
|
|
|
|
|
2010-01-09 10:47:14 -07:00
|
|
|
if cl.copied_from:
|
2009-11-05 15:44:57 -07:00
|
|
|
about += "\nCommitter: " + CheckContributor(ui, repo, None) + "\n"
|
|
|
|
|
2010-01-09 10:47:14 -07:00
|
|
|
if not cl.mailed and not cl.copied_from: # in case this is TBR
|
2010-01-07 19:23:30 -07:00
|
|
|
cl.Mail(ui, repo)
|
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
# submit changes locally
|
|
|
|
date = opts.get('date')
|
|
|
|
if date:
|
|
|
|
opts['date'] = util.parsedate(date)
|
|
|
|
opts['message'] = cl.desc.rstrip() + "\n\n" + about
|
2009-11-05 15:44:57 -07:00
|
|
|
|
|
|
|
if opts['dryrun']:
|
|
|
|
print "NOT SUBMITTING:"
|
|
|
|
print "User: ", userline
|
|
|
|
print "Message:"
|
|
|
|
print Indent(opts['message'], "\t")
|
|
|
|
print "Files:"
|
|
|
|
print Indent('\n'.join(cl.files), "\t")
|
|
|
|
return "dry run; not submitted"
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
m = match.exact(repo.root, repo.getcwd(), cl.files)
|
2009-11-05 15:44:57 -07:00
|
|
|
node = repo.commit(opts['message'], userline, opts.get('date'), m)
|
2009-10-22 12:12:39 -06:00
|
|
|
if not node:
|
|
|
|
return "nothing changed"
|
|
|
|
|
2009-11-18 00:23:18 -07:00
|
|
|
# push to remote; if it fails for any reason, roll back
|
|
|
|
try:
|
|
|
|
log = repo.changelog
|
|
|
|
rev = log.rev(node)
|
|
|
|
parents = log.parentrevs(rev)
|
|
|
|
if (rev-1 not in parents and
|
|
|
|
(parents == (nullrev, nullrev) or
|
|
|
|
len(log.heads(log.node(parents[0]))) > 1 and
|
|
|
|
(parents[1] == nullrev or len(log.heads(log.node(parents[1]))) > 1))):
|
|
|
|
# created new head
|
|
|
|
raise util.Abort("local repository out of date; must sync before submit")
|
|
|
|
|
|
|
|
# push changes to remote.
|
|
|
|
# if it works, we're committed.
|
|
|
|
# if not, roll back
|
|
|
|
other = getremote(ui, repo, opts)
|
|
|
|
r = repo.push(other, False, None)
|
|
|
|
if r == 0:
|
|
|
|
raise util.Abort("local repository out of date; must sync before submit")
|
|
|
|
except:
|
2009-10-22 12:12:39 -06:00
|
|
|
repo.rollback()
|
2009-11-18 00:23:18 -07:00
|
|
|
raise
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
# we're committed. upload final patch, close review, add commit message
|
|
|
|
changeURL = short(node)
|
|
|
|
url = other.url()
|
|
|
|
m = re.match("^https?://([^@/]+@)?([^.]+)\.googlecode\.com/hg/", url)
|
|
|
|
if m:
|
|
|
|
changeURL = "http://code.google.com/p/%s/source/detail?r=%s" % (m.group(2), changeURL)
|
|
|
|
else:
|
|
|
|
print >>sys.stderr, "URL: ", url
|
|
|
|
pmsg = "*** Submitted as " + changeURL + " ***\n\n" + opts['message']
|
2009-12-02 10:10:59 -07:00
|
|
|
|
|
|
|
# When posting, move reviewers to CC line,
|
|
|
|
# so that the issue stops showing up in their "My Issues" page.
|
|
|
|
PostMessage(ui, cl.name, pmsg, reviewers="", cc=JoinComma(cl.reviewer+cl.cc))
|
|
|
|
|
2010-01-09 10:47:14 -07:00
|
|
|
if not cl.copied_from:
|
2009-11-05 15:44:57 -07:00
|
|
|
EditDesc(cl.name, closed="checked")
|
2009-10-22 12:12:39 -06:00
|
|
|
cl.Delete(ui, repo)
|
|
|
|
|
|
|
|
def sync(ui, repo, **opts):
|
|
|
|
"""synchronize with remote repository
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
Incorporates recent changes from the remote repository
|
|
|
|
into the local repository.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-04 16:17:01 -07:00
|
|
|
if not opts["local"]:
|
|
|
|
ui.status = sync_note
|
|
|
|
ui.note = sync_note
|
|
|
|
other = getremote(ui, repo, opts)
|
|
|
|
modheads = repo.pull(other)
|
|
|
|
err = commands.postincoming(ui, repo, modheads, True, "tip")
|
|
|
|
if err:
|
|
|
|
return err
|
2009-11-20 14:11:42 -07:00
|
|
|
commands.update(ui, repo)
|
2009-11-01 06:49:35 -07:00
|
|
|
sync_changes(ui, repo)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
def sync_note(msg):
|
2009-11-08 22:08:27 -07:00
|
|
|
# we run sync (pull -u) in verbose mode to get the
|
|
|
|
# list of files being updated, but that drags along
|
|
|
|
# a bunch of messages we don't care about.
|
|
|
|
# omit them.
|
|
|
|
if msg == 'resolving manifests\n':
|
|
|
|
return
|
|
|
|
if msg == 'searching for changes\n':
|
|
|
|
return
|
|
|
|
if msg == "couldn't find merge tool hgmerge\n":
|
2009-11-01 06:49:35 -07:00
|
|
|
return
|
|
|
|
sys.stdout.write(msg)
|
2009-10-22 15:14:17 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
def sync_changes(ui, repo):
|
2009-11-04 16:17:01 -07:00
|
|
|
# Look through recent change log descriptions to find
|
|
|
|
# potential references to http://.*/our-CL-number.
|
|
|
|
# Double-check them by looking at the Rietveld log.
|
2009-11-20 01:30:38 -07:00
|
|
|
def Rev(rev):
|
2009-11-04 16:17:01 -07:00
|
|
|
desc = repo[rev].description().strip()
|
|
|
|
for clname in re.findall('(?m)^http://(?:[^\n]+)/([0-9]+)$', desc):
|
|
|
|
if IsLocalCL(ui, repo, clname) and IsRietveldSubmitted(ui, clname, repo[rev].hex()):
|
|
|
|
ui.warn("CL %s submitted as %s; closing\n" % (clname, repo[rev]))
|
|
|
|
cl, err = LoadCL(ui, repo, clname, web=False)
|
|
|
|
if err != "":
|
|
|
|
ui.warn("loading CL %s: %s\n" % (clname, err))
|
|
|
|
continue
|
2010-01-09 10:47:14 -07:00
|
|
|
if not cl.copied_from:
|
2009-11-20 01:30:38 -07:00
|
|
|
EditDesc(cl.name, closed="checked")
|
2009-11-04 16:17:01 -07:00
|
|
|
cl.Delete(ui, repo)
|
|
|
|
|
2009-11-20 01:30:38 -07:00
|
|
|
if hgversion < '1.4':
|
|
|
|
get = util.cachefunc(lambda r: repo[r].changeset())
|
|
|
|
changeiter, matchfn = cmdutil.walkchangerevs(ui, repo, [], get, {'rev': None})
|
|
|
|
n = 0
|
|
|
|
for st, rev, fns in changeiter:
|
|
|
|
if st != 'iter':
|
|
|
|
continue
|
|
|
|
n += 1
|
|
|
|
if n > 100:
|
|
|
|
break
|
|
|
|
Rev(rev)
|
|
|
|
else:
|
|
|
|
matchfn = cmdutil.match(repo, [], {'rev': None})
|
|
|
|
def prep(ctx, fns):
|
|
|
|
pass
|
|
|
|
for ctx in cmdutil.walkchangerevs(repo, matchfn, {'rev': None}, prep):
|
|
|
|
Rev(ctx.rev())
|
|
|
|
|
2009-11-04 16:17:01 -07:00
|
|
|
# Remove files that are not modified from the CLs in which they appear.
|
|
|
|
all = LoadAllCL(ui, repo, web=False)
|
|
|
|
changed = ChangedFiles(ui, repo, [], {})
|
|
|
|
for _, cl in all.items():
|
|
|
|
extra = Sub(cl.files, changed)
|
|
|
|
if extra:
|
|
|
|
ui.warn("Removing unmodified files from CL %s:\n" % (cl.name,))
|
|
|
|
for f in extra:
|
|
|
|
ui.warn("\t%s\n" % (f,))
|
|
|
|
cl.files = Sub(cl.files, extra)
|
|
|
|
cl.Flush(ui, repo)
|
|
|
|
if not cl.files:
|
|
|
|
ui.warn("CL %s has no files; suggest hg change -d %s\n" % (cl.name, cl.name))
|
|
|
|
return
|
2009-10-22 15:14:17 -06:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
def upload(ui, repo, name, **opts):
|
2009-11-05 00:43:55 -07:00
|
|
|
"""upload diffs to the code review server
|
|
|
|
|
|
|
|
Uploads the current modifications for a given change to the server.
|
|
|
|
"""
|
2010-08-25 15:52:25 -06:00
|
|
|
if missing_codereview:
|
|
|
|
return missing_codereview
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
repo.ui.quiet = True
|
|
|
|
cl, err = LoadCL(ui, repo, name, web=True)
|
|
|
|
if err != "":
|
|
|
|
return err
|
|
|
|
if not cl.local:
|
|
|
|
return "cannot upload non-local change"
|
|
|
|
cl.Upload(ui, repo)
|
|
|
|
print "%s%s\n" % (server_url_base, cl.name)
|
|
|
|
return
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
review_opts = [
|
|
|
|
('r', 'reviewer', '', 'add reviewer'),
|
|
|
|
('', 'cc', '', 'add cc'),
|
|
|
|
('', 'tbr', '', 'add future reviewer'),
|
|
|
|
('m', 'message', '', 'change description (for new change)'),
|
|
|
|
]
|
|
|
|
|
|
|
|
cmdtable = {
|
|
|
|
# The ^ means to show this command in the help text that
|
|
|
|
# is printed when running hg with no arguments.
|
|
|
|
"^change": (
|
|
|
|
change,
|
|
|
|
[
|
2009-11-01 06:49:35 -07:00
|
|
|
('d', 'delete', None, 'delete existing change list'),
|
2009-11-05 15:44:57 -07:00
|
|
|
('D', 'deletelocal', None, 'delete locally, but do not change CL on server'),
|
2009-10-22 12:12:39 -06:00
|
|
|
('i', 'stdin', None, 'read change list from standard input'),
|
2009-11-01 06:49:35 -07:00
|
|
|
('o', 'stdout', None, 'print change list to standard output'),
|
|
|
|
],
|
2009-11-05 15:44:57 -07:00
|
|
|
"[-d | -D] [-i] [-o] change# or FILE ..."
|
|
|
|
),
|
|
|
|
"^clpatch": (
|
|
|
|
clpatch,
|
|
|
|
[
|
2009-11-17 09:47:48 -07:00
|
|
|
('', 'ignore_hgpatch_failure', None, 'create CL metadata even if hgpatch fails'),
|
2009-11-05 15:44:57 -07:00
|
|
|
('', 'no_incoming', None, 'disable check for incoming changes'),
|
|
|
|
],
|
|
|
|
"change#"
|
2009-11-01 06:49:35 -07:00
|
|
|
),
|
2009-11-05 00:43:55 -07:00
|
|
|
# Would prefer to call this codereview-login, but then
|
|
|
|
# hg help codereview prints the help for this command
|
|
|
|
# instead of the help for the extension.
|
|
|
|
"code-login": (
|
|
|
|
code_login,
|
2009-11-01 06:49:35 -07:00
|
|
|
[],
|
|
|
|
"",
|
|
|
|
),
|
2009-11-05 15:44:57 -07:00
|
|
|
"^download": (
|
|
|
|
download,
|
|
|
|
[],
|
|
|
|
"change#"
|
|
|
|
),
|
2009-11-01 06:49:35 -07:00
|
|
|
"^file": (
|
|
|
|
file,
|
|
|
|
[
|
|
|
|
('d', 'delete', None, 'delete files from change list (but not repository)'),
|
2009-10-22 12:12:39 -06:00
|
|
|
],
|
2009-11-01 06:49:35 -07:00
|
|
|
"[-d] change# FILE ..."
|
2009-10-22 12:12:39 -06:00
|
|
|
),
|
2009-11-05 00:43:55 -07:00
|
|
|
"^gofmt": (
|
|
|
|
gofmt,
|
2009-11-05 09:11:44 -07:00
|
|
|
[
|
|
|
|
('l', 'list', None, 'list files that would change, but do not edit them'),
|
|
|
|
],
|
2009-11-05 00:43:55 -07:00
|
|
|
"FILE ..."
|
|
|
|
),
|
2009-10-22 12:12:39 -06:00
|
|
|
"^pending|p": (
|
|
|
|
pending,
|
|
|
|
[],
|
|
|
|
"[FILE ...]"
|
|
|
|
),
|
|
|
|
"^mail": (
|
|
|
|
mail,
|
|
|
|
review_opts + [
|
|
|
|
] + commands.walkopts,
|
|
|
|
"[-r reviewer] [--cc cc] [change# | file ...]"
|
|
|
|
),
|
|
|
|
"^submit": (
|
|
|
|
submit,
|
|
|
|
review_opts + [
|
|
|
|
('', 'no_incoming', None, 'disable initial incoming check (for testing)'),
|
2009-11-05 15:44:57 -07:00
|
|
|
('n', 'dryrun', None, 'make change only locally (for testing)'),
|
2009-10-22 12:12:39 -06:00
|
|
|
] + commands.walkopts + commands.commitopts + commands.commitopts2,
|
|
|
|
"[-r reviewer] [--cc cc] [change# | file ...]"
|
|
|
|
),
|
|
|
|
"^sync": (
|
|
|
|
sync,
|
2009-11-04 16:17:01 -07:00
|
|
|
[
|
|
|
|
('', 'local', None, 'do not pull changes from remote repository')
|
|
|
|
],
|
|
|
|
"[--local]",
|
2009-10-22 12:12:39 -06:00
|
|
|
),
|
2009-11-01 06:49:35 -07:00
|
|
|
"^upload": (
|
|
|
|
upload,
|
2009-10-22 15:14:17 -06:00
|
|
|
[],
|
2009-11-01 06:49:35 -07:00
|
|
|
"change#"
|
2009-10-22 15:14:17 -06:00
|
|
|
),
|
2009-10-22 12:12:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Wrappers around upload.py for interacting with Rietveld
|
|
|
|
|
|
|
|
# HTML form parser
|
|
|
|
class FormParser(HTMLParser):
|
|
|
|
def __init__(self):
|
|
|
|
self.map = {}
|
|
|
|
self.curtag = None
|
|
|
|
self.curdata = None
|
|
|
|
HTMLParser.__init__(self)
|
|
|
|
def handle_starttag(self, tag, attrs):
|
|
|
|
if tag == "input":
|
|
|
|
key = None
|
|
|
|
value = ''
|
|
|
|
for a in attrs:
|
|
|
|
if a[0] == 'name':
|
|
|
|
key = a[1]
|
|
|
|
if a[0] == 'value':
|
|
|
|
value = a[1]
|
|
|
|
if key is not None:
|
|
|
|
self.map[key] = value
|
|
|
|
if tag == "textarea":
|
|
|
|
key = None
|
|
|
|
for a in attrs:
|
|
|
|
if a[0] == 'name':
|
|
|
|
key = a[1]
|
|
|
|
if key is not None:
|
|
|
|
self.curtag = key
|
|
|
|
self.curdata = ''
|
|
|
|
def handle_endtag(self, tag):
|
|
|
|
if tag == "textarea" and self.curtag is not None:
|
|
|
|
self.map[self.curtag] = self.curdata
|
|
|
|
self.curtag = None
|
|
|
|
self.curdata = None
|
|
|
|
def handle_charref(self, name):
|
2009-10-22 12:21:13 -06:00
|
|
|
self.handle_data(unichr(int(name)))
|
2009-10-22 12:12:39 -06:00
|
|
|
def handle_entityref(self, name):
|
|
|
|
import htmlentitydefs
|
|
|
|
if name in htmlentitydefs.entitydefs:
|
|
|
|
self.handle_data(htmlentitydefs.entitydefs[name])
|
|
|
|
else:
|
|
|
|
self.handle_data("&" + name + ";")
|
|
|
|
def handle_data(self, data):
|
|
|
|
if self.curdata is not None:
|
2009-11-20 12:19:16 -07:00
|
|
|
self.curdata += data.decode("utf-8").encode("utf-8")
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2009-11-04 16:17:01 -07:00
|
|
|
# XML parser
|
|
|
|
def XMLGet(ui, path):
|
|
|
|
try:
|
|
|
|
data = MySend(path, force_auth=False);
|
|
|
|
except:
|
|
|
|
ui.warn("XMLGet %s: %s\n" % (path, ExceptionDetail()))
|
|
|
|
return None
|
|
|
|
return ET.XML(data)
|
|
|
|
|
|
|
|
def IsRietveldSubmitted(ui, clname, hex):
|
|
|
|
feed = XMLGet(ui, "/rss/issue/" + clname)
|
|
|
|
if feed is None:
|
|
|
|
return False
|
|
|
|
for sum in feed.findall("{http://www.w3.org/2005/Atom}entry/{http://www.w3.org/2005/Atom}summary"):
|
|
|
|
text = sum.findtext("", None).strip()
|
|
|
|
m = re.match('\*\*\* Submitted as [^*]*?([0-9a-f]+) \*\*\*', text)
|
|
|
|
if m is not None and len(m.group(1)) >= 8 and hex.startswith(m.group(1)):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
def DownloadCL(ui, repo, clname):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("downloading CL " + clname)
|
2009-11-05 15:44:57 -07:00
|
|
|
cl, err = LoadCL(ui, repo, clname)
|
|
|
|
if err != "":
|
|
|
|
return None, None, "error loading CL %s: %s" % (clname, ExceptionDetail())
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
# Grab RSS feed to learn about CL
|
|
|
|
feed = XMLGet(ui, "/rss/issue/" + clname)
|
|
|
|
if feed is None:
|
|
|
|
return None, None, "cannot download CL"
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
# Find most recent diff
|
|
|
|
diff = None
|
|
|
|
prefix = 'http://' + server + '/'
|
|
|
|
for link in feed.findall("{http://www.w3.org/2005/Atom}entry/{http://www.w3.org/2005/Atom}link"):
|
|
|
|
if link.get('rel') != 'alternate':
|
|
|
|
continue
|
|
|
|
text = link.get('href')
|
|
|
|
if not text.startswith(prefix) or not text.endswith('.diff'):
|
|
|
|
continue
|
|
|
|
diff = text[len(prefix)-1:]
|
|
|
|
if diff is None:
|
|
|
|
return None, None, "CL has no diff"
|
|
|
|
diffdata = MySend(diff, force_auth=False)
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
# Find author - first entry will be author who created CL.
|
|
|
|
nick = None
|
|
|
|
for author in feed.findall("{http://www.w3.org/2005/Atom}entry/{http://www.w3.org/2005/Atom}author/{http://www.w3.org/2005/Atom}name"):
|
|
|
|
nick = author.findtext("", None).strip()
|
|
|
|
break
|
|
|
|
if not nick:
|
|
|
|
return None, None, "CL has no author"
|
|
|
|
|
|
|
|
# The author is just a nickname: get the real email address.
|
|
|
|
try:
|
2009-11-17 17:52:36 -07:00
|
|
|
# want URL-encoded nick, but without a=, and rietveld rejects + for %20.
|
|
|
|
url = "/user_popup/" + urllib.urlencode({"a": nick})[2:].replace("+", "%20")
|
|
|
|
data = MySend(url, force_auth=False)
|
2009-11-05 15:44:57 -07:00
|
|
|
except:
|
2009-11-12 19:37:39 -07:00
|
|
|
ui.warn("error looking up %s: %s\n" % (nick, ExceptionDetail()))
|
2010-01-09 10:47:14 -07:00
|
|
|
cl.copied_from = nick+"@needtofix"
|
2009-11-12 19:37:39 -07:00
|
|
|
return cl, diffdata, ""
|
2009-11-05 15:44:57 -07:00
|
|
|
match = re.match(r"<b>(.*) \((.*)\)</b>", data)
|
2009-11-12 19:37:39 -07:00
|
|
|
if not match:
|
|
|
|
return None, None, "error looking up %s: cannot parse result %s" % (nick, repr(data))
|
|
|
|
if match.group(1) != nick and match.group(2) != nick:
|
|
|
|
return None, None, "error looking up %s: got info for %s, %s" % (nick, match.group(1), match.group(2))
|
2009-11-05 15:44:57 -07:00
|
|
|
email = match.group(1)
|
2009-11-07 18:30:40 -07:00
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
# Print warning if email is not in CONTRIBUTORS file.
|
|
|
|
FindContributor(ui, repo, email)
|
2010-01-09 10:47:14 -07:00
|
|
|
cl.copied_from = email
|
2009-11-05 15:44:57 -07:00
|
|
|
|
|
|
|
return cl, diffdata, ""
|
|
|
|
|
2009-11-18 00:23:18 -07:00
|
|
|
def MySend(request_path, payload=None,
|
2010-08-26 16:56:29 -06:00
|
|
|
content_type="application/octet-stream",
|
|
|
|
timeout=None, force_auth=True,
|
|
|
|
**kwargs):
|
|
|
|
"""Run MySend1 maybe twice, because Rietveld is unreliable."""
|
|
|
|
try:
|
|
|
|
return MySend1(request_path, payload, content_type, timeout, force_auth, **kwargs)
|
|
|
|
except Exception, e:
|
|
|
|
if type(e) == urllib2.HTTPError and e.code == 403: # forbidden, it happens
|
|
|
|
raise
|
|
|
|
print >>sys.stderr, "Loading "+request_path+": "+ExceptionDetail()+"; trying again in 2 seconds."
|
|
|
|
time.sleep(2)
|
|
|
|
return MySend1(request_path, payload, content_type, timeout, force_auth, **kwargs)
|
2009-11-18 00:23:18 -07:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
# Like upload.py Send but only authenticates when the
|
2009-10-22 12:12:39 -06:00
|
|
|
# redirect is to www.google.com/accounts. This keeps
|
|
|
|
# unnecessary redirects from happening during testing.
|
2009-11-18 00:23:18 -07:00
|
|
|
def MySend1(request_path, payload=None,
|
2010-08-26 16:24:14 -06:00
|
|
|
content_type="application/octet-stream",
|
|
|
|
timeout=None, force_auth=True,
|
|
|
|
**kwargs):
|
|
|
|
"""Sends an RPC and returns the response.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request_path: The path to send the request to, eg /api/appversion/create.
|
|
|
|
payload: The body of the request, or None to send an empty request.
|
|
|
|
content_type: The Content-Type header to use.
|
|
|
|
timeout: timeout in seconds; default None i.e. no timeout.
|
|
|
|
(Note: for large requests on OS X, the timeout doesn't work right.)
|
|
|
|
kwargs: Any keyword arguments are converted into query string parameters.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The response body, as a string.
|
|
|
|
"""
|
|
|
|
# TODO: Don't require authentication. Let the server say
|
|
|
|
# whether it is necessary.
|
|
|
|
global rpc
|
|
|
|
if rpc == None:
|
|
|
|
rpc = GetRpcServer(upload_options)
|
|
|
|
self = rpc
|
|
|
|
if not self.authenticated and force_auth:
|
|
|
|
self._Authenticate()
|
|
|
|
if request_path is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
old_timeout = socket.getdefaulttimeout()
|
|
|
|
socket.setdefaulttimeout(timeout)
|
|
|
|
try:
|
|
|
|
tries = 0
|
|
|
|
while True:
|
|
|
|
tries += 1
|
|
|
|
args = dict(kwargs)
|
|
|
|
url = "http://%s%s" % (self.host, request_path)
|
|
|
|
if args:
|
|
|
|
url += "?" + urllib.urlencode(args)
|
|
|
|
req = self._CreateRequest(url=url, data=payload)
|
|
|
|
req.add_header("Content-Type", content_type)
|
|
|
|
try:
|
|
|
|
f = self.opener.open(req)
|
|
|
|
response = f.read()
|
|
|
|
f.close()
|
|
|
|
# Translate \r\n into \n, because Rietveld doesn't.
|
|
|
|
response = response.replace('\r\n', '\n')
|
|
|
|
return response
|
|
|
|
except urllib2.HTTPError, e:
|
|
|
|
if tries > 3:
|
|
|
|
raise
|
|
|
|
elif e.code == 401:
|
|
|
|
self._Authenticate()
|
|
|
|
elif e.code == 302:
|
|
|
|
loc = e.info()["location"]
|
|
|
|
if not loc.startswith('https://www.google.com/a') or loc.find('/ServiceLogin') < 0:
|
|
|
|
return ''
|
|
|
|
self._Authenticate()
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
finally:
|
|
|
|
socket.setdefaulttimeout(old_timeout)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
def GetForm(url):
|
|
|
|
f = FormParser()
|
|
|
|
f.feed(MySend(url))
|
|
|
|
f.close()
|
|
|
|
for k,v in f.map.items():
|
|
|
|
f.map[k] = v.replace("\r\n", "\n");
|
|
|
|
return f.map
|
|
|
|
|
2009-11-05 15:44:57 -07:00
|
|
|
# Fetch the settings for the CL, like reviewer and CC list, by
|
|
|
|
# scraping the Rietveld editing forms.
|
2009-10-22 12:12:39 -06:00
|
|
|
def GetSettings(issue):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("getting issue metadata from web")
|
2009-11-05 15:44:57 -07:00
|
|
|
# The /issue/edit page has everything but only the
|
|
|
|
# CL owner is allowed to fetch it (and submit it).
|
|
|
|
f = None
|
|
|
|
try:
|
|
|
|
f = GetForm("/" + issue + "/edit")
|
|
|
|
except:
|
|
|
|
pass
|
2009-11-01 06:49:35 -07:00
|
|
|
if not f or 'reviewers' not in f:
|
2009-11-05 15:44:57 -07:00
|
|
|
# Maybe we're not the CL owner. Fall back to the
|
|
|
|
# /publish page, which has the reviewer and CC lists,
|
|
|
|
# and then fetch the description separately.
|
2009-10-22 12:12:39 -06:00
|
|
|
f = GetForm("/" + issue + "/publish")
|
2009-11-05 15:44:57 -07:00
|
|
|
f['description'] = MySend("/"+issue+"/description", force_auth=False)
|
2009-10-22 12:12:39 -06:00
|
|
|
return f
|
|
|
|
|
|
|
|
def EditDesc(issue, subject=None, desc=None, reviewers=None, cc=None, closed=None):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("uploading change to description")
|
2009-10-22 12:12:39 -06:00
|
|
|
form_fields = GetForm("/" + issue + "/edit")
|
|
|
|
if subject is not None:
|
|
|
|
form_fields['subject'] = subject
|
|
|
|
if desc is not None:
|
|
|
|
form_fields['description'] = desc
|
|
|
|
if reviewers is not None:
|
|
|
|
form_fields['reviewers'] = reviewers
|
|
|
|
if cc is not None:
|
|
|
|
form_fields['cc'] = cc
|
|
|
|
if closed is not None:
|
|
|
|
form_fields['closed'] = closed
|
|
|
|
ctype, body = EncodeMultipartFormData(form_fields.items(), [])
|
|
|
|
response = MySend("/" + issue + "/edit", body, content_type=ctype)
|
|
|
|
if response != "":
|
|
|
|
print >>sys.stderr, "Error editing description:\n" + "Sent form: \n", form_fields, "\n", response
|
|
|
|
sys.exit(2)
|
|
|
|
|
2009-12-02 10:10:59 -07:00
|
|
|
def PostMessage(ui, issue, message, reviewers=None, cc=None, send_mail=True, subject=None):
|
2010-08-26 14:27:42 -06:00
|
|
|
set_status("uploading message")
|
2009-10-22 12:12:39 -06:00
|
|
|
form_fields = GetForm("/" + issue + "/publish")
|
|
|
|
if reviewers is not None:
|
|
|
|
form_fields['reviewers'] = reviewers
|
|
|
|
if cc is not None:
|
|
|
|
form_fields['cc'] = cc
|
2009-12-02 10:10:59 -07:00
|
|
|
if send_mail:
|
|
|
|
form_fields['send_mail'] = "checked"
|
|
|
|
else:
|
|
|
|
del form_fields['send_mail']
|
2009-10-22 12:12:39 -06:00
|
|
|
if subject is not None:
|
|
|
|
form_fields['subject'] = subject
|
|
|
|
form_fields['message'] = message
|
2009-12-02 10:10:59 -07:00
|
|
|
|
|
|
|
form_fields['message_only'] = '1' # Don't include draft comments
|
|
|
|
if reviewers is not None or cc is not None:
|
|
|
|
form_fields['message_only'] = '' # Must set '' in order to override cc/reviewer
|
|
|
|
ctype = "applications/x-www-form-urlencoded"
|
|
|
|
body = urllib.urlencode(form_fields)
|
2009-10-22 12:12:39 -06:00
|
|
|
response = MySend("/" + issue + "/publish", body, content_type=ctype)
|
|
|
|
if response != "":
|
|
|
|
print response
|
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
class opt(object):
|
|
|
|
pass
|
|
|
|
|
2010-08-25 15:52:25 -06:00
|
|
|
def disabled(*opts, **kwopts):
|
|
|
|
raise util.Abort("commit is disabled when codereview is in use")
|
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
def RietveldSetup(ui, repo):
|
2010-07-01 00:34:11 -06:00
|
|
|
global defaultcc, upload_options, rpc, server, server_url_base, force_google_account, verbosity, contributors
|
2010-08-25 15:52:25 -06:00
|
|
|
global missing_codereview
|
2010-01-13 10:09:06 -07:00
|
|
|
|
2010-08-25 15:52:25 -06:00
|
|
|
repo_config_path = ''
|
2010-01-13 10:09:06 -07:00
|
|
|
# Read repository-specific options from lib/codereview/codereview.cfg
|
|
|
|
try:
|
2010-08-25 15:52:25 -06:00
|
|
|
repo_config_path = repo.root + '/lib/codereview/codereview.cfg'
|
|
|
|
f = open(repo_config_path)
|
2010-01-13 10:09:06 -07:00
|
|
|
for line in f:
|
|
|
|
if line.startswith('defaultcc: '):
|
|
|
|
defaultcc = SplitCommaSpace(line[10:])
|
|
|
|
except:
|
2010-07-26 18:33:50 -06:00
|
|
|
# If there are no options, chances are good this is not
|
|
|
|
# a code review repository; stop now before we foul
|
|
|
|
# things up even worse. Might also be that repo doesn't
|
|
|
|
# even have a root. See issue 959.
|
2010-08-25 15:52:25 -06:00
|
|
|
if repo_config_path == '':
|
|
|
|
missing_codereview = 'codereview disabled: repository has no root'
|
|
|
|
else:
|
|
|
|
missing_codereview = 'codereview disabled: cannot open ' + repo_config_path
|
2010-07-26 18:33:50 -06:00
|
|
|
return
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-25 15:52:25 -06:00
|
|
|
# Should only modify repository with hg submit.
|
|
|
|
# Disable the built-in Mercurial commands that might
|
|
|
|
# trip things up.
|
|
|
|
cmdutil.commit = disabled
|
|
|
|
|
2010-07-01 00:34:11 -06:00
|
|
|
try:
|
|
|
|
f = open(repo.root + '/CONTRIBUTORS', 'r')
|
|
|
|
except:
|
|
|
|
raise util.Abort("cannot open %s: %s" % (repo.root+'/CONTRIBUTORS', ExceptionDetail()))
|
|
|
|
for line in f:
|
|
|
|
# CONTRIBUTORS is a list of lines like:
|
|
|
|
# Person <email>
|
|
|
|
# Person <email> <alt-email>
|
|
|
|
# The first email address is the one used in commit logs.
|
|
|
|
if line.startswith('#'):
|
|
|
|
continue
|
|
|
|
m = re.match(r"([^<>]+\S)\s+(<[^<>\s]+>)((\s+<[^<>\s]+>)*)\s*$", line)
|
|
|
|
if m:
|
|
|
|
name = m.group(1)
|
|
|
|
email = m.group(2)[1:-1]
|
|
|
|
contributors[email.lower()] = (name, email)
|
|
|
|
for extra in m.group(3).split():
|
|
|
|
contributors[extra[1:-1].lower()] = (name, email)
|
2009-11-05 00:43:55 -07:00
|
|
|
|
2009-11-01 06:49:35 -07:00
|
|
|
if not ui.verbose:
|
|
|
|
verbosity = 0
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
# Config options.
|
|
|
|
x = ui.config("codereview", "server")
|
|
|
|
if x is not None:
|
|
|
|
server = x
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
# TODO(rsc): Take from ui.username?
|
|
|
|
email = None
|
|
|
|
x = ui.config("codereview", "email")
|
|
|
|
if x is not None:
|
|
|
|
email = x
|
|
|
|
|
|
|
|
server_url_base = "http://" + server + "/"
|
2009-11-04 04:15:24 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
testing = ui.config("codereview", "testing")
|
2009-11-01 06:49:35 -07:00
|
|
|
force_google_account = ui.configbool("codereview", "force_google_account", False)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
upload_options = opt()
|
|
|
|
upload_options.email = email
|
|
|
|
upload_options.host = None
|
|
|
|
upload_options.verbose = 0
|
|
|
|
upload_options.description = None
|
|
|
|
upload_options.description_file = None
|
|
|
|
upload_options.reviewers = None
|
2010-01-13 10:09:06 -07:00
|
|
|
upload_options.cc = None
|
2009-10-22 12:12:39 -06:00
|
|
|
upload_options.message = None
|
|
|
|
upload_options.issue = None
|
|
|
|
upload_options.download_base = False
|
|
|
|
upload_options.revision = None
|
|
|
|
upload_options.send_mail = False
|
|
|
|
upload_options.vcs = None
|
|
|
|
upload_options.server = server
|
|
|
|
upload_options.save_cookies = True
|
2009-11-01 06:49:35 -07:00
|
|
|
|
2009-10-22 12:12:39 -06:00
|
|
|
if testing:
|
|
|
|
upload_options.save_cookies = False
|
|
|
|
upload_options.email = "test@example.com"
|
|
|
|
|
|
|
|
rpc = None
|
|
|
|
|
|
|
|
#######################################################################
|
2010-08-26 16:24:14 -06:00
|
|
|
# http://codereview.appspot.com/static/upload.py, heavily edited.
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright 2007 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
2010-08-26 16:56:29 -06:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2009-10-22 12:12:39 -06:00
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""Tool for uploading diffs from a version control system to the codereview app.
|
|
|
|
|
|
|
|
Usage summary: upload.py [options] [-- diff_options]
|
|
|
|
|
|
|
|
Diff options are passed to the diff command of the underlying system.
|
|
|
|
|
|
|
|
Supported version control systems:
|
2010-08-26 16:24:14 -06:00
|
|
|
Git
|
|
|
|
Mercurial
|
|
|
|
Subversion
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
It is important for Git/Mercurial users to specify a tree/node/branch to diff
|
|
|
|
against by using the '--rev' option.
|
|
|
|
"""
|
|
|
|
# This code is derived from appcfg.py in the App Engine SDK (open source),
|
|
|
|
# and from ASPN recipe #146306.
|
|
|
|
|
|
|
|
import cookielib
|
|
|
|
import getpass
|
|
|
|
import logging
|
|
|
|
import mimetypes
|
|
|
|
import optparse
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import socket
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import urllib
|
|
|
|
import urllib2
|
|
|
|
import urlparse
|
|
|
|
|
|
|
|
# The md5 module was deprecated in Python 2.5.
|
|
|
|
try:
|
2010-08-26 16:24:14 -06:00
|
|
|
from hashlib import md5
|
2009-10-22 12:12:39 -06:00
|
|
|
except ImportError:
|
2010-08-26 16:24:14 -06:00
|
|
|
from md5 import md5
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
try:
|
2010-08-26 16:24:14 -06:00
|
|
|
import readline
|
2009-10-22 12:12:39 -06:00
|
|
|
except ImportError:
|
2010-08-26 16:24:14 -06:00
|
|
|
pass
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
# The logging verbosity:
|
|
|
|
# 0: Errors only.
|
|
|
|
# 1: Status messages.
|
|
|
|
# 2: Info logs.
|
|
|
|
# 3: Debug logs.
|
|
|
|
verbosity = 1
|
|
|
|
|
|
|
|
# Max size of patch or base file.
|
|
|
|
MAX_UPLOAD_SIZE = 900 * 1024
|
|
|
|
|
|
|
|
# whitelist for non-binary filetypes which do not start with "text/"
|
|
|
|
# .mm (Objective-C) shows up as application/x-freemind on my Linux box.
|
2010-08-26 16:24:14 -06:00
|
|
|
TEXT_MIMETYPES = [
|
|
|
|
'application/javascript',
|
|
|
|
'application/x-javascript',
|
|
|
|
'application/x-freemind'
|
|
|
|
]
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
def GetEmail(prompt):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Prompts the user for their email address and returns it.
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
The last used email address is saved to a file and offered up as a suggestion
|
|
|
|
to the user. If the user presses enter without typing in anything the last
|
|
|
|
used email address is used. If the user enters a new address, it is saved
|
|
|
|
for next time we prompt.
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
"""
|
|
|
|
last_email_file_name = os.path.expanduser("~/.last_codereview_email_address")
|
|
|
|
last_email = ""
|
|
|
|
if os.path.exists(last_email_file_name):
|
|
|
|
try:
|
|
|
|
last_email_file = open(last_email_file_name, "r")
|
|
|
|
last_email = last_email_file.readline().strip("\n")
|
|
|
|
last_email_file.close()
|
|
|
|
prompt += " [%s]" % last_email
|
|
|
|
except IOError, e:
|
|
|
|
pass
|
|
|
|
email = raw_input(prompt + ": ").strip()
|
|
|
|
if email:
|
|
|
|
try:
|
|
|
|
last_email_file = open(last_email_file_name, "w")
|
|
|
|
last_email_file.write(email)
|
|
|
|
last_email_file.close()
|
|
|
|
except IOError, e:
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
email = last_email
|
|
|
|
return email
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def StatusUpdate(msg):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Print a status message to stdout.
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
If 'verbosity' is greater than 0, print the message.
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
Args:
|
|
|
|
msg: The string to print.
|
|
|
|
"""
|
|
|
|
if verbosity > 0:
|
|
|
|
print msg
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def ErrorExit(msg):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Print an error message to stderr and exit."""
|
|
|
|
print >>sys.stderr, msg
|
|
|
|
sys.exit(1)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
class ClientLoginError(urllib2.HTTPError):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Raised to indicate there was an error authenticating with ClientLogin."""
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
def __init__(self, url, code, msg, headers, args):
|
|
|
|
urllib2.HTTPError.__init__(self, url, code, msg, headers, None)
|
|
|
|
self.args = args
|
|
|
|
self.reason = args["Error"]
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
class AbstractRpcServer(object):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Provides a common interface for a simple RPC server."""
|
|
|
|
|
|
|
|
def __init__(self, host, auth_function, host_override=None, extra_headers={}, save_cookies=False):
|
|
|
|
"""Creates a new HttpRpcServer.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
host: The host to send requests to.
|
|
|
|
auth_function: A function that takes no arguments and returns an
|
|
|
|
(email, password) tuple when called. Will be called if authentication
|
|
|
|
is required.
|
|
|
|
host_override: The host header to send to the server (defaults to host).
|
|
|
|
extra_headers: A dict of extra headers to append to every request.
|
|
|
|
save_cookies: If True, save the authentication cookies to local disk.
|
|
|
|
If False, use an in-memory cookiejar instead. Subclasses must
|
|
|
|
implement this functionality. Defaults to False.
|
|
|
|
"""
|
|
|
|
self.host = host
|
|
|
|
self.host_override = host_override
|
|
|
|
self.auth_function = auth_function
|
|
|
|
self.authenticated = False
|
|
|
|
self.extra_headers = extra_headers
|
|
|
|
self.save_cookies = save_cookies
|
|
|
|
self.opener = self._GetOpener()
|
|
|
|
if self.host_override:
|
|
|
|
logging.info("Server: %s; Host: %s", self.host, self.host_override)
|
|
|
|
else:
|
|
|
|
logging.info("Server: %s", self.host)
|
|
|
|
|
|
|
|
def _GetOpener(self):
|
|
|
|
"""Returns an OpenerDirector for making HTTP requests.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A urllib2.OpenerDirector object.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def _CreateRequest(self, url, data=None):
|
|
|
|
"""Creates a new urllib request."""
|
|
|
|
logging.debug("Creating request for: '%s' with payload:\n%s", url, data)
|
|
|
|
req = urllib2.Request(url, data=data)
|
|
|
|
if self.host_override:
|
|
|
|
req.add_header("Host", self.host_override)
|
|
|
|
for key, value in self.extra_headers.iteritems():
|
|
|
|
req.add_header(key, value)
|
|
|
|
return req
|
|
|
|
|
|
|
|
def _GetAuthToken(self, email, password):
|
|
|
|
"""Uses ClientLogin to authenticate the user, returning an auth token.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
email: The user's email address
|
|
|
|
password: The user's password
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ClientLoginError: If there was an error authenticating with ClientLogin.
|
|
|
|
HTTPError: If there was some other form of HTTP error.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The authentication token returned by ClientLogin.
|
|
|
|
"""
|
|
|
|
account_type = "GOOGLE"
|
|
|
|
if self.host.endswith(".google.com") and not force_google_account:
|
|
|
|
# Needed for use inside Google.
|
|
|
|
account_type = "HOSTED"
|
|
|
|
req = self._CreateRequest(
|
|
|
|
url="https://www.google.com/accounts/ClientLogin",
|
|
|
|
data=urllib.urlencode({
|
|
|
|
"Email": email,
|
|
|
|
"Passwd": password,
|
|
|
|
"service": "ah",
|
|
|
|
"source": "rietveld-codereview-upload",
|
|
|
|
"accountType": account_type,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
try:
|
|
|
|
response = self.opener.open(req)
|
|
|
|
response_body = response.read()
|
|
|
|
response_dict = dict(x.split("=") for x in response_body.split("\n") if x)
|
|
|
|
return response_dict["Auth"]
|
|
|
|
except urllib2.HTTPError, e:
|
|
|
|
if e.code == 403:
|
|
|
|
body = e.read()
|
|
|
|
response_dict = dict(x.split("=", 1) for x in body.split("\n") if x)
|
|
|
|
raise ClientLoginError(req.get_full_url(), e.code, e.msg, e.headers, response_dict)
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
|
|
|
def _GetAuthCookie(self, auth_token):
|
|
|
|
"""Fetches authentication cookies for an authentication token.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
auth_token: The authentication token returned by ClientLogin.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
HTTPError: If there was an error fetching the authentication cookies.
|
|
|
|
"""
|
|
|
|
# This is a dummy value to allow us to identify when we're successful.
|
|
|
|
continue_location = "http://localhost/"
|
|
|
|
args = {"continue": continue_location, "auth": auth_token}
|
|
|
|
req = self._CreateRequest("http://%s/_ah/login?%s" % (self.host, urllib.urlencode(args)))
|
|
|
|
try:
|
|
|
|
response = self.opener.open(req)
|
|
|
|
except urllib2.HTTPError, e:
|
|
|
|
response = e
|
|
|
|
if (response.code != 302 or
|
|
|
|
response.info()["location"] != continue_location):
|
|
|
|
raise urllib2.HTTPError(req.get_full_url(), response.code, response.msg, response.headers, response.fp)
|
|
|
|
self.authenticated = True
|
|
|
|
|
|
|
|
def _Authenticate(self):
|
|
|
|
"""Authenticates the user.
|
|
|
|
|
|
|
|
The authentication process works as follows:
|
|
|
|
1) We get a username and password from the user
|
|
|
|
2) We use ClientLogin to obtain an AUTH token for the user
|
|
|
|
(see http://code.google.com/apis/accounts/AuthForInstalledApps.html).
|
|
|
|
3) We pass the auth token to /_ah/login on the server to obtain an
|
|
|
|
authentication cookie. If login was successful, it tries to redirect
|
|
|
|
us to the URL we provided.
|
|
|
|
|
|
|
|
If we attempt to access the upload API without first obtaining an
|
|
|
|
authentication cookie, it returns a 401 response (or a 302) and
|
|
|
|
directs us to authenticate ourselves with ClientLogin.
|
|
|
|
"""
|
|
|
|
for i in range(3):
|
|
|
|
credentials = self.auth_function()
|
|
|
|
try:
|
|
|
|
auth_token = self._GetAuthToken(credentials[0], credentials[1])
|
|
|
|
except ClientLoginError, e:
|
|
|
|
if e.reason == "BadAuthentication":
|
|
|
|
print >>sys.stderr, "Invalid username or password."
|
|
|
|
continue
|
|
|
|
if e.reason == "CaptchaRequired":
|
|
|
|
print >>sys.stderr, (
|
|
|
|
"Please go to\n"
|
|
|
|
"https://www.google.com/accounts/DisplayUnlockCaptcha\n"
|
|
|
|
"and verify you are a human. Then try again.")
|
|
|
|
break
|
|
|
|
if e.reason == "NotVerified":
|
|
|
|
print >>sys.stderr, "Account not verified."
|
|
|
|
break
|
|
|
|
if e.reason == "TermsNotAgreed":
|
|
|
|
print >>sys.stderr, "User has not agreed to TOS."
|
|
|
|
break
|
|
|
|
if e.reason == "AccountDeleted":
|
|
|
|
print >>sys.stderr, "The user account has been deleted."
|
|
|
|
break
|
|
|
|
if e.reason == "AccountDisabled":
|
|
|
|
print >>sys.stderr, "The user account has been disabled."
|
|
|
|
break
|
|
|
|
if e.reason == "ServiceDisabled":
|
|
|
|
print >>sys.stderr, "The user's access to the service has been disabled."
|
|
|
|
break
|
|
|
|
if e.reason == "ServiceUnavailable":
|
|
|
|
print >>sys.stderr, "The service is not available; try again later."
|
|
|
|
break
|
|
|
|
raise
|
|
|
|
self._GetAuthCookie(auth_token)
|
|
|
|
return
|
|
|
|
|
|
|
|
def Send(self, request_path, payload=None,
|
|
|
|
content_type="application/octet-stream",
|
|
|
|
timeout=None,
|
|
|
|
**kwargs):
|
|
|
|
"""Sends an RPC and returns the response.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
request_path: The path to send the request to, eg /api/appversion/create.
|
|
|
|
payload: The body of the request, or None to send an empty request.
|
|
|
|
content_type: The Content-Type header to use.
|
|
|
|
timeout: timeout in seconds; default None i.e. no timeout.
|
|
|
|
(Note: for large requests on OS X, the timeout doesn't work right.)
|
|
|
|
kwargs: Any keyword arguments are converted into query string parameters.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The response body, as a string.
|
|
|
|
"""
|
|
|
|
# TODO: Don't require authentication. Let the server say
|
|
|
|
# whether it is necessary.
|
|
|
|
if not self.authenticated:
|
|
|
|
self._Authenticate()
|
|
|
|
|
|
|
|
old_timeout = socket.getdefaulttimeout()
|
|
|
|
socket.setdefaulttimeout(timeout)
|
|
|
|
try:
|
|
|
|
tries = 0
|
|
|
|
while True:
|
|
|
|
tries += 1
|
|
|
|
args = dict(kwargs)
|
|
|
|
url = "http://%s%s" % (self.host, request_path)
|
|
|
|
if args:
|
|
|
|
url += "?" + urllib.urlencode(args)
|
|
|
|
req = self._CreateRequest(url=url, data=payload)
|
|
|
|
req.add_header("Content-Type", content_type)
|
|
|
|
try:
|
|
|
|
f = self.opener.open(req)
|
|
|
|
response = f.read()
|
|
|
|
f.close()
|
|
|
|
return response
|
|
|
|
except urllib2.HTTPError, e:
|
|
|
|
if tries > 3:
|
|
|
|
raise
|
|
|
|
elif e.code == 401 or e.code == 302:
|
|
|
|
self._Authenticate()
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
finally:
|
|
|
|
socket.setdefaulttimeout(old_timeout)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
class HttpRpcServer(AbstractRpcServer):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Provides a simplified RPC-style interface for HTTP requests."""
|
|
|
|
|
|
|
|
def _Authenticate(self):
|
|
|
|
"""Save the cookie jar after authentication."""
|
|
|
|
super(HttpRpcServer, self)._Authenticate()
|
|
|
|
if self.save_cookies:
|
|
|
|
StatusUpdate("Saving authentication cookies to %s" % self.cookie_file)
|
|
|
|
self.cookie_jar.save()
|
|
|
|
|
|
|
|
def _GetOpener(self):
|
|
|
|
"""Returns an OpenerDirector that supports cookies and ignores redirects.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A urllib2.OpenerDirector object.
|
|
|
|
"""
|
|
|
|
opener = urllib2.OpenerDirector()
|
|
|
|
opener.add_handler(urllib2.ProxyHandler())
|
|
|
|
opener.add_handler(urllib2.UnknownHandler())
|
|
|
|
opener.add_handler(urllib2.HTTPHandler())
|
|
|
|
opener.add_handler(urllib2.HTTPDefaultErrorHandler())
|
|
|
|
opener.add_handler(urllib2.HTTPSHandler())
|
|
|
|
opener.add_handler(urllib2.HTTPErrorProcessor())
|
|
|
|
if self.save_cookies:
|
|
|
|
self.cookie_file = os.path.expanduser("~/.codereview_upload_cookies_" + server)
|
|
|
|
self.cookie_jar = cookielib.MozillaCookieJar(self.cookie_file)
|
|
|
|
if os.path.exists(self.cookie_file):
|
|
|
|
try:
|
|
|
|
self.cookie_jar.load()
|
|
|
|
self.authenticated = True
|
|
|
|
StatusUpdate("Loaded authentication cookies from %s" % self.cookie_file)
|
|
|
|
except (cookielib.LoadError, IOError):
|
|
|
|
# Failed to load cookies - just ignore them.
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
# Create an empty cookie file with mode 600
|
|
|
|
fd = os.open(self.cookie_file, os.O_CREAT, 0600)
|
|
|
|
os.close(fd)
|
|
|
|
# Always chmod the cookie file
|
|
|
|
os.chmod(self.cookie_file, 0600)
|
|
|
|
else:
|
|
|
|
# Don't save cookies across runs of update.py.
|
|
|
|
self.cookie_jar = cookielib.CookieJar()
|
|
|
|
opener.add_handler(urllib2.HTTPCookieProcessor(self.cookie_jar))
|
|
|
|
return opener
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def GetRpcServer(options):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Returns an instance of an AbstractRpcServer.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A new AbstractRpcServer, on which RPC calls can be made.
|
|
|
|
"""
|
|
|
|
|
|
|
|
rpc_server_class = HttpRpcServer
|
|
|
|
|
|
|
|
def GetUserCredentials():
|
|
|
|
"""Prompts the user for a username and password."""
|
|
|
|
email = options.email
|
|
|
|
if email is None:
|
|
|
|
email = GetEmail("Email (login for uploading to %s)" % options.server)
|
|
|
|
password = getpass.getpass("Password for %s: " % email)
|
|
|
|
return (email, password)
|
|
|
|
|
|
|
|
# If this is the dev_appserver, use fake authentication.
|
|
|
|
host = (options.host or options.server).lower()
|
|
|
|
if host == "localhost" or host.startswith("localhost:"):
|
|
|
|
email = options.email
|
|
|
|
if email is None:
|
|
|
|
email = "test@example.com"
|
|
|
|
logging.info("Using debug user %s. Override with --email" % email)
|
|
|
|
server = rpc_server_class(
|
|
|
|
options.server,
|
|
|
|
lambda: (email, "password"),
|
|
|
|
host_override=options.host,
|
|
|
|
extra_headers={"Cookie": 'dev_appserver_login="%s:False"' % email},
|
|
|
|
save_cookies=options.save_cookies)
|
|
|
|
# Don't try to talk to ClientLogin.
|
|
|
|
server.authenticated = True
|
|
|
|
return server
|
|
|
|
|
|
|
|
return rpc_server_class(options.server, GetUserCredentials,
|
|
|
|
host_override=options.host, save_cookies=options.save_cookies)
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def EncodeMultipartFormData(fields, files):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Encode form fields for multipart/form-data.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
fields: A sequence of (name, value) elements for regular form fields.
|
|
|
|
files: A sequence of (name, filename, value) elements for data to be
|
|
|
|
uploaded as files.
|
|
|
|
Returns:
|
|
|
|
(content_type, body) ready for httplib.HTTP instance.
|
|
|
|
|
|
|
|
Source:
|
|
|
|
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/146306
|
|
|
|
"""
|
|
|
|
BOUNDARY = '-M-A-G-I-C---B-O-U-N-D-A-R-Y-'
|
|
|
|
CRLF = '\r\n'
|
|
|
|
lines = []
|
|
|
|
for (key, value) in fields:
|
|
|
|
lines.append('--' + BOUNDARY)
|
|
|
|
lines.append('Content-Disposition: form-data; name="%s"' % key)
|
|
|
|
lines.append('')
|
|
|
|
if type(value) == unicode:
|
|
|
|
value = value.encode("utf-8")
|
|
|
|
lines.append(value)
|
|
|
|
for (key, filename, value) in files:
|
|
|
|
if type(filename) == unicode:
|
|
|
|
filename = filename.encode("utf-8")
|
|
|
|
if type(value) == unicode:
|
|
|
|
value = value.encode("utf-8")
|
|
|
|
lines.append('--' + BOUNDARY)
|
|
|
|
lines.append('Content-Disposition: form-data; name="%s"; filename="%s"' % (key, filename))
|
|
|
|
lines.append('Content-Type: %s' % GetContentType(filename))
|
|
|
|
lines.append('')
|
|
|
|
lines.append(value)
|
|
|
|
lines.append('--' + BOUNDARY + '--')
|
|
|
|
lines.append('')
|
|
|
|
body = CRLF.join(lines)
|
|
|
|
content_type = 'multipart/form-data; boundary=%s' % BOUNDARY
|
|
|
|
return content_type, body
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def GetContentType(filename):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Helper to guess the content-type from the filename."""
|
|
|
|
return mimetypes.guess_type(filename)[0] or 'application/octet-stream'
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
# Use a shell for subcommands on Windows to get a PATH search.
|
|
|
|
use_shell = sys.platform.startswith("win")
|
|
|
|
|
|
|
|
def RunShellWithReturnCode(command, print_output=False,
|
2010-08-26 16:24:14 -06:00
|
|
|
universal_newlines=True, env=os.environ):
|
|
|
|
"""Executes a command and returns the output from stdout and the return code.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
command: Command to execute.
|
|
|
|
print_output: If True, the output is printed to stdout.
|
|
|
|
If False, both stdout and stderr are ignored.
|
|
|
|
universal_newlines: Use universal_newlines flag (default: True).
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple (output, return code)
|
|
|
|
"""
|
|
|
|
logging.info("Running %s", command)
|
|
|
|
p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
|
|
|
shell=use_shell, universal_newlines=universal_newlines, env=env)
|
|
|
|
if print_output:
|
|
|
|
output_array = []
|
|
|
|
while True:
|
|
|
|
line = p.stdout.readline()
|
|
|
|
if not line:
|
|
|
|
break
|
|
|
|
print line.strip("\n")
|
|
|
|
output_array.append(line)
|
|
|
|
output = "".join(output_array)
|
|
|
|
else:
|
|
|
|
output = p.stdout.read()
|
|
|
|
p.wait()
|
|
|
|
errout = p.stderr.read()
|
|
|
|
if print_output and errout:
|
|
|
|
print >>sys.stderr, errout
|
|
|
|
p.stdout.close()
|
|
|
|
p.stderr.close()
|
|
|
|
return output, p.returncode
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def RunShell(command, silent_ok=False, universal_newlines=True,
|
2010-08-26 16:24:14 -06:00
|
|
|
print_output=False, env=os.environ):
|
|
|
|
data, retcode = RunShellWithReturnCode(command, print_output, universal_newlines, env)
|
|
|
|
if retcode:
|
|
|
|
ErrorExit("Got error status from %s:\n%s" % (command, data))
|
|
|
|
if not silent_ok and not data:
|
|
|
|
ErrorExit("No output from %s" % command)
|
|
|
|
return data
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
class VersionControlSystem(object):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Abstract base class providing an interface to the VCS."""
|
|
|
|
|
|
|
|
def __init__(self, options):
|
|
|
|
"""Constructor.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
options: Command line options.
|
|
|
|
"""
|
|
|
|
self.options = options
|
|
|
|
|
|
|
|
def GenerateDiff(self, args):
|
|
|
|
"""Return the current diff as a string.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
args: Extra arguments to pass to the diff command.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError(
|
|
|
|
"abstract method -- subclass %s must override" % self.__class__)
|
|
|
|
|
|
|
|
def GetUnknownFiles(self):
|
|
|
|
"""Return a list of files unknown to the VCS."""
|
|
|
|
raise NotImplementedError(
|
|
|
|
"abstract method -- subclass %s must override" % self.__class__)
|
|
|
|
|
|
|
|
def CheckForUnknownFiles(self):
|
|
|
|
"""Show an "are you sure?" prompt if there are unknown files."""
|
|
|
|
unknown_files = self.GetUnknownFiles()
|
|
|
|
if unknown_files:
|
|
|
|
print "The following files are not added to version control:"
|
|
|
|
for line in unknown_files:
|
|
|
|
print line
|
|
|
|
prompt = "Are you sure to continue?(y/N) "
|
|
|
|
answer = raw_input(prompt).strip()
|
|
|
|
if answer != "y":
|
|
|
|
ErrorExit("User aborted")
|
|
|
|
|
|
|
|
def GetBaseFile(self, filename):
|
|
|
|
"""Get the content of the upstream version of a file.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A tuple (base_content, new_content, is_binary, status)
|
|
|
|
base_content: The contents of the base file.
|
|
|
|
new_content: For text files, this is empty. For binary files, this is
|
|
|
|
the contents of the new file, since the diff output won't contain
|
|
|
|
information to reconstruct the current file.
|
|
|
|
is_binary: True iff the file is binary.
|
|
|
|
status: The status of the file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
raise NotImplementedError(
|
|
|
|
"abstract method -- subclass %s must override" % self.__class__)
|
|
|
|
|
|
|
|
|
|
|
|
def GetBaseFiles(self, diff):
|
|
|
|
"""Helper that calls GetBase file for each file in the patch.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A dictionary that maps from filename to GetBaseFile's tuple. Filenames
|
|
|
|
are retrieved based on lines that start with "Index:" or
|
|
|
|
"Property changes on:".
|
|
|
|
"""
|
|
|
|
files = {}
|
|
|
|
for line in diff.splitlines(True):
|
|
|
|
if line.startswith('Index:') or line.startswith('Property changes on:'):
|
|
|
|
unused, filename = line.split(':', 1)
|
|
|
|
# On Windows if a file has property changes its filename uses '\'
|
|
|
|
# instead of '/'.
|
|
|
|
filename = filename.strip().replace('\\', '/')
|
|
|
|
files[filename] = self.GetBaseFile(filename)
|
|
|
|
return files
|
|
|
|
|
|
|
|
|
|
|
|
def UploadBaseFiles(self, issue, rpc_server, patch_list, patchset, options,
|
|
|
|
files):
|
|
|
|
"""Uploads the base files (and if necessary, the current ones as well)."""
|
|
|
|
|
|
|
|
def UploadFile(filename, file_id, content, is_binary, status, is_base):
|
|
|
|
"""Uploads a file to the server."""
|
|
|
|
set_status("uploading " + filename)
|
|
|
|
file_too_large = False
|
|
|
|
if is_base:
|
|
|
|
type = "base"
|
|
|
|
else:
|
|
|
|
type = "current"
|
|
|
|
if len(content) > MAX_UPLOAD_SIZE:
|
|
|
|
print ("Not uploading the %s file for %s because it's too large." %
|
|
|
|
(type, filename))
|
|
|
|
file_too_large = True
|
|
|
|
content = ""
|
|
|
|
checksum = md5(content).hexdigest()
|
|
|
|
if options.verbose > 0 and not file_too_large:
|
|
|
|
print "Uploading %s file for %s" % (type, filename)
|
|
|
|
url = "/%d/upload_content/%d/%d" % (int(issue), int(patchset), file_id)
|
|
|
|
form_fields = [
|
|
|
|
("filename", filename),
|
|
|
|
("status", status),
|
|
|
|
("checksum", checksum),
|
|
|
|
("is_binary", str(is_binary)),
|
|
|
|
("is_current", str(not is_base)),
|
|
|
|
]
|
|
|
|
if file_too_large:
|
|
|
|
form_fields.append(("file_too_large", "1"))
|
|
|
|
if options.email:
|
|
|
|
form_fields.append(("user", options.email))
|
|
|
|
ctype, body = EncodeMultipartFormData(form_fields, [("data", filename, content)])
|
|
|
|
response_body = rpc_server.Send(url, body, content_type=ctype)
|
|
|
|
if not response_body.startswith("OK"):
|
|
|
|
StatusUpdate(" --> %s" % response_body)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2010-08-26 16:56:29 -06:00
|
|
|
# Don't want to spawn too many threads, nor do we want to
|
|
|
|
# hit Rietveld too hard, or it will start serving 500 errors.
|
|
|
|
# When 8 works, it's no better than 4, and sometimes 8 is
|
|
|
|
# too many for Rietveld to handle.
|
|
|
|
MAX_PARALLEL_UPLOADS = 4
|
|
|
|
|
|
|
|
sema = threading.BoundedSemaphore(MAX_PARALLEL_UPLOADS)
|
|
|
|
upload_threads = []
|
|
|
|
finished_upload_threads = []
|
|
|
|
|
|
|
|
class UploadFileThread(threading.Thread):
|
|
|
|
def __init__(self, args):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.args = args
|
|
|
|
def run(self):
|
|
|
|
UploadFile(*self.args)
|
|
|
|
finished_upload_threads.append(self)
|
|
|
|
sema.release()
|
|
|
|
|
|
|
|
def StartUploadFile(*args):
|
|
|
|
sema.acquire()
|
|
|
|
while len(finished_upload_threads) > 0:
|
|
|
|
t = finished_upload_threads.pop()
|
|
|
|
upload_threads.remove(t)
|
|
|
|
t.join()
|
|
|
|
t = UploadFileThread(args)
|
|
|
|
upload_threads.append(t)
|
|
|
|
t.start()
|
|
|
|
|
|
|
|
def WaitForUploads():
|
|
|
|
for t in upload_threads:
|
|
|
|
t.join()
|
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
patches = dict()
|
|
|
|
[patches.setdefault(v, k) for k, v in patch_list]
|
|
|
|
for filename in patches.keys():
|
|
|
|
base_content, new_content, is_binary, status = files[filename]
|
|
|
|
file_id_str = patches.get(filename)
|
|
|
|
if file_id_str.find("nobase") != -1:
|
|
|
|
base_content = None
|
|
|
|
file_id_str = file_id_str[file_id_str.rfind("_") + 1:]
|
|
|
|
file_id = int(file_id_str)
|
|
|
|
if base_content != None:
|
2010-08-26 16:56:29 -06:00
|
|
|
StartUploadFile(filename, file_id, base_content, is_binary, status, True)
|
2010-08-26 16:24:14 -06:00
|
|
|
if new_content != None:
|
2010-08-26 16:56:29 -06:00
|
|
|
StartUploadFile(filename, file_id, new_content, is_binary, status, False)
|
|
|
|
WaitForUploads()
|
2010-08-26 16:24:14 -06:00
|
|
|
|
|
|
|
def IsImage(self, filename):
|
|
|
|
"""Returns true if the filename has an image extension."""
|
|
|
|
mimetype = mimetypes.guess_type(filename)[0]
|
|
|
|
if not mimetype:
|
|
|
|
return False
|
|
|
|
return mimetype.startswith("image/")
|
|
|
|
|
|
|
|
def IsBinary(self, filename):
|
|
|
|
"""Returns true if the guessed mimetyped isnt't in text group."""
|
|
|
|
mimetype = mimetypes.guess_type(filename)[0]
|
|
|
|
if not mimetype:
|
|
|
|
return False # e.g. README, "real" binaries usually have an extension
|
|
|
|
# special case for text files which don't start with text/
|
|
|
|
if mimetype in TEXT_MIMETYPES:
|
|
|
|
return False
|
|
|
|
return not mimetype.startswith("text/")
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:56:29 -06:00
|
|
|
class FakeMercurialUI(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.quiet = True
|
|
|
|
self.output = ''
|
|
|
|
|
2010-08-29 21:04:05 -06:00
|
|
|
def write(self, *args, **opts):
|
|
|
|
self.output += ' '.join(args)
|
2010-08-26 16:56:29 -06:00
|
|
|
|
|
|
|
use_hg_shell = False # set to True to shell out to hg always; slower
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
class MercurialVCS(VersionControlSystem):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Implementation of the VersionControlSystem interface for Mercurial."""
|
|
|
|
|
2010-08-26 16:56:29 -06:00
|
|
|
def __init__(self, options, ui, repo):
|
2010-08-26 16:24:14 -06:00
|
|
|
super(MercurialVCS, self).__init__(options)
|
2010-08-26 16:56:29 -06:00
|
|
|
self.ui = ui
|
|
|
|
self.repo = repo
|
2010-08-26 16:24:14 -06:00
|
|
|
# Absolute path to repository (we can be in a subdir)
|
2010-08-26 16:56:29 -06:00
|
|
|
self.repo_dir = os.path.normpath(repo.root)
|
2010-08-26 16:24:14 -06:00
|
|
|
# Compute the subdir
|
|
|
|
cwd = os.path.normpath(os.getcwd())
|
|
|
|
assert cwd.startswith(self.repo_dir)
|
|
|
|
self.subdir = cwd[len(self.repo_dir):].lstrip(r"\/")
|
|
|
|
if self.options.revision:
|
|
|
|
self.base_rev = self.options.revision
|
|
|
|
else:
|
|
|
|
mqparent, err = RunShellWithReturnCode(['hg', 'log', '--rev', 'qparent', '--template={node}'])
|
|
|
|
if not err:
|
|
|
|
self.base_rev = mqparent
|
|
|
|
else:
|
|
|
|
self.base_rev = RunShell(["hg", "parents", "-q"]).split(':')[1].strip()
|
|
|
|
def _GetRelPath(self, filename):
|
|
|
|
"""Get relative path of a file according to the current directory,
|
|
|
|
given its logical path in the repo."""
|
|
|
|
assert filename.startswith(self.subdir), (filename, self.subdir)
|
|
|
|
return filename[len(self.subdir):].lstrip(r"\/")
|
|
|
|
|
|
|
|
def GenerateDiff(self, extra_args):
|
|
|
|
# If no file specified, restrict to the current subdir
|
|
|
|
extra_args = extra_args or ["."]
|
|
|
|
cmd = ["hg", "diff", "--git", "-r", self.base_rev] + extra_args
|
|
|
|
data = RunShell(cmd, silent_ok=True)
|
|
|
|
svndiff = []
|
|
|
|
filecount = 0
|
|
|
|
for line in data.splitlines():
|
|
|
|
m = re.match("diff --git a/(\S+) b/(\S+)", line)
|
|
|
|
if m:
|
|
|
|
# Modify line to make it look like as it comes from svn diff.
|
|
|
|
# With this modification no changes on the server side are required
|
|
|
|
# to make upload.py work with Mercurial repos.
|
|
|
|
# NOTE: for proper handling of moved/copied files, we have to use
|
|
|
|
# the second filename.
|
|
|
|
filename = m.group(2)
|
|
|
|
svndiff.append("Index: %s" % filename)
|
|
|
|
svndiff.append("=" * 67)
|
|
|
|
filecount += 1
|
|
|
|
logging.info(line)
|
|
|
|
else:
|
|
|
|
svndiff.append(line)
|
|
|
|
if not filecount:
|
|
|
|
ErrorExit("No valid patches found in output from hg diff")
|
|
|
|
return "\n".join(svndiff) + "\n"
|
|
|
|
|
|
|
|
def GetUnknownFiles(self):
|
|
|
|
"""Return a list of files unknown to the VCS."""
|
|
|
|
args = []
|
|
|
|
status = RunShell(["hg", "status", "--rev", self.base_rev, "-u", "."],
|
|
|
|
silent_ok=True)
|
|
|
|
unknown_files = []
|
|
|
|
for line in status.splitlines():
|
|
|
|
st, fn = line.split(" ", 1)
|
|
|
|
if st == "?":
|
|
|
|
unknown_files.append(fn)
|
|
|
|
return unknown_files
|
|
|
|
|
|
|
|
def GetBaseFile(self, filename):
|
|
|
|
set_status("inspecting " + filename)
|
|
|
|
# "hg status" and "hg cat" both take a path relative to the current subdir
|
|
|
|
# rather than to the repo root, but "hg diff" has given us the full path
|
|
|
|
# to the repo root.
|
|
|
|
base_content = ""
|
|
|
|
new_content = None
|
|
|
|
is_binary = False
|
|
|
|
oldrelpath = relpath = self._GetRelPath(filename)
|
|
|
|
# "hg status -C" returns two lines for moved/copied files, one otherwise
|
2010-08-26 16:56:29 -06:00
|
|
|
if use_hg_shell:
|
|
|
|
out = RunShell(["hg", "status", "-C", "--rev", self.base_rev, relpath])
|
|
|
|
else:
|
|
|
|
fui = FakeMercurialUI()
|
|
|
|
ret = commands.status(fui, self.repo, *[relpath], **{'rev': [self.base_rev], 'copies': True})
|
|
|
|
if ret:
|
|
|
|
raise util.Abort(ret)
|
|
|
|
out = fui.output
|
2010-08-26 16:24:14 -06:00
|
|
|
out = out.splitlines()
|
|
|
|
# HACK: strip error message about missing file/directory if it isn't in
|
|
|
|
# the working copy
|
|
|
|
if out[0].startswith('%s: ' % relpath):
|
|
|
|
out = out[1:]
|
|
|
|
status, what = out[0].split(' ', 1)
|
|
|
|
if len(out) > 1 and status == "A" and what == relpath:
|
|
|
|
oldrelpath = out[1].strip()
|
|
|
|
status = "M"
|
|
|
|
if ":" in self.base_rev:
|
|
|
|
base_rev = self.base_rev.split(":", 1)[0]
|
|
|
|
else:
|
|
|
|
base_rev = self.base_rev
|
|
|
|
if status != "A":
|
2010-08-26 16:56:29 -06:00
|
|
|
if use_hg_shell:
|
|
|
|
base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath], silent_ok=True)
|
|
|
|
else:
|
2010-09-28 18:29:20 -06:00
|
|
|
base_content = str(self.repo[base_rev][oldrelpath].data())
|
2010-08-26 16:24:14 -06:00
|
|
|
is_binary = "\0" in base_content # Mercurial's heuristic
|
|
|
|
if status != "R":
|
|
|
|
new_content = open(relpath, "rb").read()
|
|
|
|
is_binary = is_binary or "\0" in new_content
|
2010-08-26 16:56:29 -06:00
|
|
|
if is_binary and base_content and use_hg_shell:
|
2010-08-26 16:24:14 -06:00
|
|
|
# Fetch again without converting newlines
|
|
|
|
base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath],
|
|
|
|
silent_ok=True, universal_newlines=False)
|
|
|
|
if not is_binary or not self.IsImage(relpath):
|
|
|
|
new_content = None
|
|
|
|
return base_content, new_content, is_binary, status
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
# NOTE: The SplitPatch function is duplicated in engine.py, keep them in sync.
|
|
|
|
def SplitPatch(data):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Splits a patch into separate pieces for each file.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
data: A string containing the output of svn diff.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A list of 2-tuple (filename, text) where text is the svn diff output
|
|
|
|
pertaining to filename.
|
|
|
|
"""
|
|
|
|
patches = []
|
|
|
|
filename = None
|
|
|
|
diff = []
|
|
|
|
for line in data.splitlines(True):
|
|
|
|
new_filename = None
|
|
|
|
if line.startswith('Index:'):
|
|
|
|
unused, new_filename = line.split(':', 1)
|
|
|
|
new_filename = new_filename.strip()
|
|
|
|
elif line.startswith('Property changes on:'):
|
|
|
|
unused, temp_filename = line.split(':', 1)
|
|
|
|
# When a file is modified, paths use '/' between directories, however
|
|
|
|
# when a property is modified '\' is used on Windows. Make them the same
|
|
|
|
# otherwise the file shows up twice.
|
|
|
|
temp_filename = temp_filename.strip().replace('\\', '/')
|
|
|
|
if temp_filename != filename:
|
|
|
|
# File has property changes but no modifications, create a new diff.
|
|
|
|
new_filename = temp_filename
|
|
|
|
if new_filename:
|
|
|
|
if filename and diff:
|
|
|
|
patches.append((filename, ''.join(diff)))
|
|
|
|
filename = new_filename
|
|
|
|
diff = [line]
|
|
|
|
continue
|
|
|
|
if diff is not None:
|
|
|
|
diff.append(line)
|
|
|
|
if filename and diff:
|
|
|
|
patches.append((filename, ''.join(diff)))
|
|
|
|
return patches
|
2009-10-22 12:12:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
def UploadSeparatePatches(issue, rpc_server, patchset, data, options):
|
2010-08-26 16:24:14 -06:00
|
|
|
"""Uploads a separate patch for each file in the diff output.
|
2009-10-22 12:12:39 -06:00
|
|
|
|
2010-08-26 16:24:14 -06:00
|
|
|
Returns a list of [patch_key, filename] for each file.
|
|
|
|
"""
|
|
|
|
patches = SplitPatch(data)
|
|
|
|
rv = []
|
|
|
|
for patch in patches:
|
|
|
|
set_status("uploading patch for " + patch[0])
|
|
|
|
if len(patch[1]) > MAX_UPLOAD_SIZE:
|
|
|
|
print ("Not uploading the patch for " + patch[0] +
|
|
|
|
" because the file is too large.")
|
|
|
|
continue
|
|
|
|
form_fields = [("filename", patch[0])]
|
|
|
|
if not options.download_base:
|
|
|
|
form_fields.append(("content_upload", "1"))
|
|
|
|
files = [("data", "data.diff", patch[1])]
|
|
|
|
ctype, body = EncodeMultipartFormData(form_fields, files)
|
|
|
|
url = "/%d/upload_patch/%d" % (int(issue), int(patchset))
|
|
|
|
print "Uploading patch for " + patch[0]
|
|
|
|
response_body = rpc_server.Send(url, body, content_type=ctype)
|
|
|
|
lines = response_body.splitlines()
|
|
|
|
if not lines or lines[0] != "OK":
|
|
|
|
StatusUpdate(" --> %s" % response_body)
|
|
|
|
sys.exit(1)
|
|
|
|
rv.append([lines[1], patch[0]])
|
|
|
|
return rv
|