Files
requirements/openstack_requirements/cmds/edit_constraint.py
Robert Collins 63e5747001 Fix editing constraints files with urls in them.
constraints files, unlike global_requirements, need to be able to
contain urls (specifically file:/// paths) so that we can constrain
libraries to be run from their git trees, rather than having them flap
all over the place as different servers specify different bounds. The
first edit-constraints implementation failed to parse such lines,
throwing errors instead.

This patch makes the support for urls optional, preventing changing
the semantics of requirements update.py logic.

Change-Id: I33bd2d9dff9cb7dc1a50177db7286b7317966784
Depends-On: I0f07858e96ea3baf46f8a453e253b9ed29c7f7e2
2015-07-04 09:54:39 +12:00

75 lines
2.3 KiB
Python

# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
import optparse
import os.path
import sys
import textwrap
from openstack_requirements import requirement
def edit(reqs, name, replacement):
if not replacement:
reqs.pop(name, None)
else:
reqs[name] = [
(requirement.Requirement('', '', '', '', replacement), '')]
result = []
for entries in reqs.values():
for entry, _ in entries:
result.append(entry)
return requirement.Requirements(sorted(result))
# -- untested UI glue from here down.
def _validate_options(options, args):
"""Check that options and arguments are valid.
:param options: The optparse options for this program.
:param args: The args for this program.
"""
if len(args) < 2:
raise Exception("No enough arguments given")
if not os.path.exists(args[0]):
raise Exception(
"Constraints file %(con)s not found."
% dict(con=args[0]))
def main(argv=None, stdout=None):
parser = optparse.OptionParser(
usage="%prog [options] constraintpath name replacement",
epilog=textwrap.dedent("""\
Replaces any entries of "name" in the constraints file with
"replacement". If "name" is not present, it is added to the end of
the file. If "replacement" is missing or empty, remove "name" from
the file.
"""))
options, args = parser.parse_args(argv)
if stdout is None:
stdout = sys.stdout
_validate_options(options, args)
args = args + [""]
content = open(args[0], 'rt').read()
reqs = requirement.parse(content, permit_urls=True)
out_reqs = edit(reqs, args[1], args[2])
out = requirement.to_content(out_reqs, prefix=False)
with open(args[0] + '.tmp', 'wt') as f:
f.write(out)
os.rename(args[0] + '.tmp', args[0])
return 0