mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
Merge "Add regex matching to repo list command"
This commit is contained in:
commit
13657c407d
@ -13,13 +13,16 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
from command import Command, MirrorSafeCommand
|
from command import Command, MirrorSafeCommand
|
||||||
|
|
||||||
class List(Command, MirrorSafeCommand):
|
class List(Command, MirrorSafeCommand):
|
||||||
common = True
|
common = True
|
||||||
helpSummary = "List projects and their associated directories"
|
helpSummary = "List projects and their associated directories"
|
||||||
helpUsage = """
|
helpUsage = """
|
||||||
%prog [<project>...]
|
%prog [-f] [<project>...]
|
||||||
|
%prog [-f] -r str1 [str2]..."
|
||||||
"""
|
"""
|
||||||
helpDescription = """
|
helpDescription = """
|
||||||
List all projects; pass '.' to list the project for the cwd.
|
List all projects; pass '.' to list the project for the cwd.
|
||||||
@ -27,6 +30,14 @@ List all projects; pass '.' to list the project for the cwd.
|
|||||||
This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def _Options(self, p, show_smart=True):
|
||||||
|
p.add_option('-r', '--regex',
|
||||||
|
dest='regex', action='store_true',
|
||||||
|
help="Filter the project list based on regex or wildcard matching of strings")
|
||||||
|
p.add_option('-f', '--fullpath',
|
||||||
|
dest='fullpath', action='store_true',
|
||||||
|
help="Display the full work tree path instead of the relative path")
|
||||||
|
|
||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
"""List all projects and the associated directories.
|
"""List all projects and the associated directories.
|
||||||
|
|
||||||
@ -35,14 +46,33 @@ This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'.
|
|||||||
discoverable.
|
discoverable.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
opt: The options. We don't take any.
|
opt: The options.
|
||||||
args: Positional args. Can be a list of projects to list, or empty.
|
args: Positional args. Can be a list of projects to list, or empty.
|
||||||
"""
|
"""
|
||||||
|
if not opt.regex:
|
||||||
projects = self.GetProjects(args)
|
projects = self.GetProjects(args)
|
||||||
|
else:
|
||||||
|
projects = self.FindProjects(args)
|
||||||
|
|
||||||
|
def _getpath(x):
|
||||||
|
if opt.fullpath:
|
||||||
|
return x.worktree
|
||||||
|
return x.relpath
|
||||||
|
|
||||||
lines = []
|
lines = []
|
||||||
for project in projects:
|
for project in projects:
|
||||||
lines.append("%s : %s" % (project.relpath, project.name))
|
lines.append("%s : %s" % (_getpath(project), project.name))
|
||||||
|
|
||||||
lines.sort()
|
lines.sort()
|
||||||
print '\n'.join(lines)
|
print '\n'.join(lines)
|
||||||
|
|
||||||
|
def FindProjects(self, args):
|
||||||
|
result = []
|
||||||
|
for project in self.GetProjects(''):
|
||||||
|
for arg in args:
|
||||||
|
pattern = re.compile(r'%s' % arg, re.IGNORECASE)
|
||||||
|
if pattern.search(project.name) or pattern.search(project.relpath):
|
||||||
|
result.append(project)
|
||||||
|
break
|
||||||
|
result.sort(key=lambda project: project.relpath)
|
||||||
|
return result
|
||||||
|
Loading…
Reference in New Issue
Block a user