3 Command line module that the "command line" script. 5 Works by taking the main keyword (first command given to the script), 6 passing that to the function that will deal with that action, along with the following arguments as parameters for that function. 8 from __future__
import print_function
9 from __future__
import absolute_import
11 from .
import querying
18 connection =
querying.connect(arguments.db, secrets=arguments.secrets, mode=arguments.mode)
20 options = [
"tag",
"gt",
"gts_for_tag"]
21 number_of_options_given = 0
22 for option
in options:
23 if getattr(arguments, option):
24 number_of_options_given += 1
25 if number_of_options_given != 1:
26 print(
"You must specify a single object to list.")
30 tag_name = arguments.tag
31 tag = connection.tag(name=tag_name)
33 iovs = tag.iovs(amount=arguments.limit)
36 print(
"The Tag '%s' was not found in the database '%s'." % (tag_name, arguments.db))
40 gt_name = arguments.gt
41 gt = connection.global_tag(name=gt_name)
43 gt_maps = gt.tags(amount=arguments.limit)
44 gt_maps.as_table(hide=[
"global_tag_name"])
46 print(
"The Global Tag '%s' was not found in the database '%s'." % (gt_name, arguments.db))
49 elif arguments.gts_for_tag:
50 tag_name = arguments.gts_for_tag
51 tag = connection.tag(name=tag_name)
52 gts = tag.parent_global_tags(amount=arguments.limit)
53 gts.as_table(columns=[
"name",
"insertion_time",
"snapshot_time"])
60 connection =
querying.connect(arguments.db, secrets=arguments.secrets, mode=arguments.mode)
62 tag1 = connection.tag(name=arguments.tag1)
63 tag2 = connection.tag(name=arguments.tag2)
65 tag1.diff(tag2).as_table(columns=[
"since", arguments.tag1, arguments.tag2])
72 connection =
querying.connect(arguments.db, secrets=arguments.secrets, mode=arguments.mode)
74 gt1 = connection.global_tag(name=arguments.gt1)
75 gt2 = connection.global_tag(name=arguments.gt2)
77 gt1.diff(gt2).as_table(columns=[
"Record",
"Label",
"%s Tag" % arguments.gt1,
"%s Tag" % arguments.gt2])
81 raise NotImplementedError(
"Todo")
83 connection =
querying.connect(arguments.db, secrets=arguments.secrets, mode=arguments.mode)
85 search_string = connection.regexp(
".*%s.*" % arguments.string)
90 source_connection =
querying.connect(arguments.db, secrets=arguments.secrets, mode=arguments.mode, map_blobs=
True)
91 dest_connection =
querying.connect(arguments.dest_db, secrets=arguments.secrets, mode=arguments.mode, map_blobs=
True)
95 print(
"Reading source Tag.")
96 source_tag = source_connection.tag(name=arguments.input_tag)
97 if source_tag ==
None:
98 raise Exception(
"Source Tag doesn't exist.")
101 print(
"Reading source IOVs.")
102 since_range = source_connection.range(arguments.start, arguments.end)
103 source_iovs = source_tag.iovs(since=since_range).
data()
106 print(
"Reading source Payloads.")
107 hashes = source_tag.iovs().get_members(
"payload_hash").
data()
108 payloads = source_connection.payload(hash=hashes)
110 print(
"Writing to destination database...")
113 source_tag.end_of_validity = -1
114 source_tag.name = arguments.dest_tag
115 source_tag.modification_time = datetime.datetime.now()
119 for iov
in source_iovs:
120 new_iovs.append(dest_connection.models[
"iov"](iov.as_dicts(convert_timestamps=
False), convert_timestamps=
False))
123 print(
"Writing destination Tag.")
124 if dest_connection.tag(name=arguments.dest_tag) !=
None:
125 dest_connection.write_and_commit(source_tag)
128 print(
"Writing IOVs to destination Tag.")
130 if dest_connection.iov(tag_name=iov.tag_name, since=iov.since, insertion_time=iov.insertion_time) ==
None:
131 dest_connection.write_and_commit(iov)
134 print(
"Copying Payloads over.")
135 for payload
in payloads:
136 if dest_connection.payload(hash=payload.hash) ==
None:
137 dest_connection.write_and_commit(payload)
139 print(
"Copy complete.")
142 raise NotImplementedError(
"Copying Global Tags is currently not supported for this transition command-line interface for CondDBFW.")
145 source_connection =
querying.connect(arguments.db, secrets=arguments.secrets, mode=arguments.mode, map_blobs=
True)
146 dest_connection =
querying.connect(arguments.dest_db, secrets=arguments.secrets, mode=arguments.mode, map_blobs=
True)
149 global_tag = source_connection.global_tag(name=arguments.input_gt)
150 if global_tag ==
None:
151 raise Exception(
"Source Global Tag doesn't exist.")
153 tag_names = global_tag.tags().get_members(
"tag_name").
data()
154 tags = source_connection.tag(name=tags)
157 global_tag.insertion_time = datetime.datetime.now()
158 global_tag.validity = -1
159 dest_connection.write_and_commit(global_tag)
165 self.input_tag = tag.name
166 self.dest_tag = tag.name
168 self.end = tag.latest_iov()+1
169 for attribute
in dir(arguments):
170 self.__dict__[attribute] = getattr(arguments, attribute)
176 Assumes script name has been removed from the list of arguments. 177 Hence, arguments[0] is the subcommand. 179 top_level_parser = argparse.ArgumentParser(description=
"CondDBFW Command line tool")
180 top_level_parser.add_argument(
"--db", type=str, required=
False, default=
"frontier://FrontierProd/CMS_CONDITIONS")
181 top_level_parser.add_argument(
"--mode", type=str, required=
False, default=
"w")
182 top_level_parser.add_argument(
"--secrets", type=str, required=
False)
183 top_level_parser.add_argument(
"--limit", type=int, required=
False, default=10)
185 subparser = top_level_parser.add_subparsers(title=
"Subcommands")
187 list_parser = subparser.add_parser(
"list", description=
"Lists the Metadata objects contained within the given object.")
188 list_parser.add_argument(
"--tag", required=
False, help=
"List all IOVs in a Tag.")
189 list_parser.add_argument(
"--gt", required=
False, help=
"List all Global Tag Maps linked to a Global Tag.")
190 list_parser.add_argument(
"--gts-for-tag", required=
False, help=
"List all Global Tags that contain a Tag.")
192 list_parser.set_defaults(func=list_object)
194 diff_parser = subparser.add_parser(
"diff-tags", description=
"Gives the differences in payload hashes used by IOVs between Tags.")
195 diff_parser.add_argument(
"--tag1", required=
True, help=
"First Tag to use in the comparison.")
196 diff_parser.add_argument(
"--tag2", required=
True, help=
"Second Tag to use in the comparison.")
198 diff_parser.set_defaults(func=diff_of_tags)
200 gt_diff_parser = subparser.add_parser(
"diff-gts", description=
"Gives the differences in Global Tag Maps contained within Global Tag.")
201 gt_diff_parser.add_argument(
"--gt1", required=
True, help=
"First Global Tag to use in the comparison.")
202 gt_diff_parser.add_argument(
"--gt2", required=
True, help=
"Second Global Tag to use in the comparison.")
204 gt_diff_parser.set_defaults(func=diff_of_gts)
206 copy_tag_parser = subparser.add_parser(
"copy-tag", description=
"Copies a Tag with its IOVs and Payloads to a destination database." 207 +
"\nFor copying to official databases, use cmsDbCondUpload (https://cms-conddb-dev.cern.ch/cmsDbCondUpload).")
208 copy_tag_parser.add_argument(
"--dest-db", required=
True, help=
"Database to copy the Tag and its IOVs to.")
209 copy_tag_parser.add_argument(
"--input-tag", required=
True, help=
"Tag to take data from in source database.")
210 copy_tag_parser.add_argument(
"--dest-tag", required=
True, help=
"Tag to copy input Tag to in the destination database.")
211 copy_tag_parser.add_argument(
"--start", required=
True, help=
"Since to start from. If this is between two, the highest one is taken (no adjustments are made).")
212 copy_tag_parser.add_argument(
"--end", required=
True, help=
"Since to finidh at. If this is between two, the lowest one is taken (no adjustments are made).")
214 copy_tag_parser.set_defaults(func=copy_tag)
216 parsed_arguments = top_level_parser.parse_args()
218 print(
"Using database '%s'." % parsed_arguments.db)
220 parsed_arguments.func(parsed_arguments)
222 if __name__ ==
"__main__":
def connect(connection_data, mode="r", map_blobs=False, secrets=None, pooling=True)
def diff_of_gts(arguments)
S & print(S &os, JobReport::InputFile const &f)
def diff_of_tags(arguments)
def parse_command_line(arguments)
def list_object(arguments)
def copy_global_tag(arguments)
char data[epos_bytes_allocation]