blob: bfd081016635d82f52488c0fb00f114f5a0d1ea5 [file] [log] [blame]
mblighe8819cd2008-02-15 16:48:40 +00001"""\
2Functions to expose over the RPC interface.
3
4For all modify* and delete* functions that ask for an 'id' parameter to
5identify the object to operate on, the id may be either
6 * the database row ID
7 * the name of the object (label name, hostname, user login, etc.)
8 * a dictionary containing uniquely identifying field (this option should seldom
9 be used)
10
11When specifying foreign key fields (i.e. adding hosts to a label, or adding
12users to an ACL group), the given value may be either the database row ID or the
13name of the object.
14
15All get* functions return lists of dictionaries. Each dictionary represents one
16object and maps field names to values.
17
18Some examples:
19modify_host(2, hostname='myhost') # modify hostname of host with database ID 2
20modify_host('ipaj2', hostname='myhost') # modify hostname of host 'ipaj2'
21modify_test('sleeptest', test_type='Client', params=', seconds=60')
22delete_acl_group(1) # delete by ID
23delete_acl_group('Everyone') # delete by name
24acl_group_add_users('Everyone', ['mbligh', 'showard'])
25get_jobs(owner='showard', status='Queued')
26
mbligh93c80e62009-02-03 17:48:30 +000027See doctests/001_rpc_test.txt for (lots) more examples.
mblighe8819cd2008-02-15 16:48:40 +000028"""
29
30__author__ = 'showard@google.com (Steve Howard)'
31
showard29f7cd22009-04-29 21:16:24 +000032import datetime
showardcafd16e2009-05-29 18:37:49 +000033import common
34from autotest_lib.frontend import thread_local
showard6d7b2ff2009-06-10 00:16:47 +000035from autotest_lib.frontend.afe import models, model_logic
36from autotest_lib.frontend.afe import control_file, rpc_utils
showard3bb499f2008-07-03 19:42:20 +000037from autotest_lib.client.common_lib import global_config
38
mblighe8819cd2008-02-15 16:48:40 +000039
40# labels
41
showard989f25d2008-10-01 11:38:11 +000042def add_label(name, kernel_config=None, platform=None, only_if_needed=None):
showardc92da832009-04-07 18:14:34 +000043 return models.Label.add_object(
44 name=name, kernel_config=kernel_config, platform=platform,
45 only_if_needed=only_if_needed).id
mblighe8819cd2008-02-15 16:48:40 +000046
47
48def modify_label(id, **data):
jadmanski0afbb632008-06-06 21:10:57 +000049 models.Label.smart_get(id).update_object(data)
mblighe8819cd2008-02-15 16:48:40 +000050
51
52def delete_label(id):
jadmanski0afbb632008-06-06 21:10:57 +000053 models.Label.smart_get(id).delete()
mblighe8819cd2008-02-15 16:48:40 +000054
55
showardbbabf502008-06-06 00:02:02 +000056def label_add_hosts(id, hosts):
showardbe3ec042008-11-12 18:16:07 +000057 host_objs = models.Host.smart_get_bulk(hosts)
showardcafd16e2009-05-29 18:37:49 +000058 label = models.Label.smart_get(id)
59 if label.platform:
60 models.Host.check_no_platform(host_objs)
61 label.host_set.add(*host_objs)
showardbbabf502008-06-06 00:02:02 +000062
63
64def label_remove_hosts(id, hosts):
showardbe3ec042008-11-12 18:16:07 +000065 host_objs = models.Host.smart_get_bulk(hosts)
jadmanski0afbb632008-06-06 21:10:57 +000066 models.Label.smart_get(id).host_set.remove(*host_objs)
showardbbabf502008-06-06 00:02:02 +000067
68
mblighe8819cd2008-02-15 16:48:40 +000069def get_labels(**filter_data):
showardc92da832009-04-07 18:14:34 +000070 """\
71 @returns A sequence of nested dictionaries of label information.
72 """
73 return rpc_utils.prepare_rows_as_nested_dicts(
74 models.Label.query_objects(filter_data),
75 ('atomic_group',))
76
77
78# atomic groups
79
showarde9450c92009-06-30 01:58:52 +000080def add_atomic_group(name, max_number_of_machines=None, description=None):
showardc92da832009-04-07 18:14:34 +000081 return models.AtomicGroup.add_object(
82 name=name, max_number_of_machines=max_number_of_machines,
83 description=description).id
84
85
86def modify_atomic_group(id, **data):
87 models.AtomicGroup.smart_get(id).update_object(data)
88
89
90def delete_atomic_group(id):
91 models.AtomicGroup.smart_get(id).delete()
92
93
94def atomic_group_add_labels(id, labels):
95 label_objs = models.Label.smart_get_bulk(labels)
96 models.AtomicGroup.smart_get(id).label_set.add(*label_objs)
97
98
99def atomic_group_remove_labels(id, labels):
100 label_objs = models.Label.smart_get_bulk(labels)
101 models.AtomicGroup.smart_get(id).label_set.remove(*label_objs)
102
103
104def get_atomic_groups(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000105 return rpc_utils.prepare_for_serialization(
showardc92da832009-04-07 18:14:34 +0000106 models.AtomicGroup.list_objects(filter_data))
mblighe8819cd2008-02-15 16:48:40 +0000107
108
109# hosts
110
showarddf062562008-07-03 19:56:37 +0000111def add_host(hostname, status=None, locked=None, protection=None):
jadmanski0afbb632008-06-06 21:10:57 +0000112 return models.Host.add_object(hostname=hostname, status=status,
showarddf062562008-07-03 19:56:37 +0000113 locked=locked, protection=protection).id
mblighe8819cd2008-02-15 16:48:40 +0000114
115
116def modify_host(id, **data):
jadmanski0afbb632008-06-06 21:10:57 +0000117 models.Host.smart_get(id).update_object(data)
mblighe8819cd2008-02-15 16:48:40 +0000118
119
showard276f9442009-05-20 00:33:16 +0000120def modify_hosts(host_filter_data, update_data):
121 """
122 @param host_filter_data filters out which hosts to modify
123 @param update_data dictionary with the changes to make to the hosts
124 """
125 hosts = models.Host.query_objects(host_filter_data)
126 for host in hosts:
127 host.update_object(update_data)
128
129
mblighe8819cd2008-02-15 16:48:40 +0000130def host_add_labels(id, labels):
showardbe3ec042008-11-12 18:16:07 +0000131 labels = models.Label.smart_get_bulk(labels)
showardcafd16e2009-05-29 18:37:49 +0000132 host = models.Host.smart_get(id)
133
134 platforms = [label.name for label in labels if label.platform]
135 if len(platforms) > 1:
136 raise model_logic.ValidationError(
137 {'labels': 'Adding more than one platform label: %s' %
138 ', '.join(platforms)})
139 if len(platforms) == 1:
140 models.Host.check_no_platform([host])
141 host.labels.add(*labels)
mblighe8819cd2008-02-15 16:48:40 +0000142
143
144def host_remove_labels(id, labels):
showardbe3ec042008-11-12 18:16:07 +0000145 labels = models.Label.smart_get_bulk(labels)
jadmanski0afbb632008-06-06 21:10:57 +0000146 models.Host.smart_get(id).labels.remove(*labels)
mblighe8819cd2008-02-15 16:48:40 +0000147
148
showard0957a842009-05-11 19:25:08 +0000149def set_host_attribute(attribute, value, **host_filter_data):
150 """
151 @param attribute string name of attribute
152 @param value string, or None to delete an attribute
153 @param host_filter_data filter data to apply to Hosts to choose hosts to act
154 upon
155 """
156 assert host_filter_data # disallow accidental actions on all hosts
157 hosts = models.Host.query_objects(host_filter_data)
158 models.AclGroup.check_for_acl_violation_hosts(hosts)
159
160 for host in hosts:
showardf8b19042009-05-12 17:22:49 +0000161 host.set_or_delete_attribute(attribute, value)
showard0957a842009-05-11 19:25:08 +0000162
163
mblighe8819cd2008-02-15 16:48:40 +0000164def delete_host(id):
jadmanski0afbb632008-06-06 21:10:57 +0000165 models.Host.smart_get(id).delete()
mblighe8819cd2008-02-15 16:48:40 +0000166
167
showard87cc38f2009-08-20 23:37:04 +0000168def get_hosts(multiple_labels=(), exclude_only_if_needed_labels=False,
169 exclude_atomic_group_hosts=False, **filter_data):
170 """
171 @param multiple_labels: match hosts in all of the labels given. Should
172 be a list of label names.
173 @param exclude_only_if_needed_labels: Exclude hosts with at least one
174 "only_if_needed" label applied.
175 @param exclude_atomic_group_hosts: Exclude hosts that have one or more
176 atomic group labels associated with them.
jadmanski0afbb632008-06-06 21:10:57 +0000177 """
showard43a3d262008-11-12 18:17:05 +0000178 hosts = rpc_utils.get_host_query(multiple_labels,
179 exclude_only_if_needed_labels,
showard87cc38f2009-08-20 23:37:04 +0000180 exclude_atomic_group_hosts,
showard43a3d262008-11-12 18:17:05 +0000181 filter_data)
showard0957a842009-05-11 19:25:08 +0000182 hosts = list(hosts)
183 models.Host.objects.populate_relationships(hosts, models.Label,
184 'label_list')
185 models.Host.objects.populate_relationships(hosts, models.AclGroup,
186 'acl_list')
187 models.Host.objects.populate_relationships(hosts, models.HostAttribute,
188 'attribute_list')
showard43a3d262008-11-12 18:17:05 +0000189 host_dicts = []
190 for host_obj in hosts:
191 host_dict = host_obj.get_object_dict()
showard0957a842009-05-11 19:25:08 +0000192 host_dict['labels'] = [label.name for label in host_obj.label_list]
showard909c9142009-07-07 20:54:42 +0000193 host_dict['platform'], host_dict['atomic_group'] = (rpc_utils.
194 find_platform_and_atomic_group(host_obj))
showard0957a842009-05-11 19:25:08 +0000195 host_dict['acls'] = [acl.name for acl in host_obj.acl_list]
196 host_dict['attributes'] = dict((attribute.attribute, attribute.value)
197 for attribute in host_obj.attribute_list)
showard43a3d262008-11-12 18:17:05 +0000198 host_dicts.append(host_dict)
199 return rpc_utils.prepare_for_serialization(host_dicts)
mblighe8819cd2008-02-15 16:48:40 +0000200
201
showard87cc38f2009-08-20 23:37:04 +0000202def get_num_hosts(multiple_labels=(), exclude_only_if_needed_labels=False,
203 exclude_atomic_group_hosts=False, **filter_data):
204 """
205 Same parameters as get_hosts().
206
207 @returns The number of matching hosts.
208 """
showard43a3d262008-11-12 18:17:05 +0000209 hosts = rpc_utils.get_host_query(multiple_labels,
210 exclude_only_if_needed_labels,
showard87cc38f2009-08-20 23:37:04 +0000211 exclude_atomic_group_hosts,
showard43a3d262008-11-12 18:17:05 +0000212 filter_data)
213 return hosts.count()
showard1385b162008-03-13 15:59:40 +0000214
mblighe8819cd2008-02-15 16:48:40 +0000215
216# tests
217
showard909c7a62008-07-15 21:52:38 +0000218def add_test(name, test_type, path, author=None, dependencies=None,
showard3d9899a2008-07-31 02:11:58 +0000219 experimental=True, run_verify=None, test_class=None,
showard909c7a62008-07-15 21:52:38 +0000220 test_time=None, test_category=None, description=None,
221 sync_count=1):
jadmanski0afbb632008-06-06 21:10:57 +0000222 return models.Test.add_object(name=name, test_type=test_type, path=path,
showard909c7a62008-07-15 21:52:38 +0000223 author=author, dependencies=dependencies,
224 experimental=experimental,
225 run_verify=run_verify, test_time=test_time,
226 test_category=test_category,
227 sync_count=sync_count,
jadmanski0afbb632008-06-06 21:10:57 +0000228 test_class=test_class,
229 description=description).id
mblighe8819cd2008-02-15 16:48:40 +0000230
231
232def modify_test(id, **data):
jadmanski0afbb632008-06-06 21:10:57 +0000233 models.Test.smart_get(id).update_object(data)
mblighe8819cd2008-02-15 16:48:40 +0000234
235
236def delete_test(id):
jadmanski0afbb632008-06-06 21:10:57 +0000237 models.Test.smart_get(id).delete()
mblighe8819cd2008-02-15 16:48:40 +0000238
239
240def get_tests(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000241 return rpc_utils.prepare_for_serialization(
242 models.Test.list_objects(filter_data))
mblighe8819cd2008-02-15 16:48:40 +0000243
244
showard2b9a88b2008-06-13 20:55:03 +0000245# profilers
246
247def add_profiler(name, description=None):
248 return models.Profiler.add_object(name=name, description=description).id
249
250
251def modify_profiler(id, **data):
252 models.Profiler.smart_get(id).update_object(data)
253
254
255def delete_profiler(id):
256 models.Profiler.smart_get(id).delete()
257
258
259def get_profilers(**filter_data):
260 return rpc_utils.prepare_for_serialization(
261 models.Profiler.list_objects(filter_data))
262
263
mblighe8819cd2008-02-15 16:48:40 +0000264# users
265
266def add_user(login, access_level=None):
jadmanski0afbb632008-06-06 21:10:57 +0000267 return models.User.add_object(login=login, access_level=access_level).id
mblighe8819cd2008-02-15 16:48:40 +0000268
269
270def modify_user(id, **data):
jadmanski0afbb632008-06-06 21:10:57 +0000271 models.User.smart_get(id).update_object(data)
mblighe8819cd2008-02-15 16:48:40 +0000272
273
274def delete_user(id):
jadmanski0afbb632008-06-06 21:10:57 +0000275 models.User.smart_get(id).delete()
mblighe8819cd2008-02-15 16:48:40 +0000276
277
278def get_users(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000279 return rpc_utils.prepare_for_serialization(
280 models.User.list_objects(filter_data))
mblighe8819cd2008-02-15 16:48:40 +0000281
282
283# acl groups
284
285def add_acl_group(name, description=None):
showard04f2cd82008-07-25 20:53:31 +0000286 group = models.AclGroup.add_object(name=name, description=description)
287 group.users.add(thread_local.get_user())
288 return group.id
mblighe8819cd2008-02-15 16:48:40 +0000289
290
291def modify_acl_group(id, **data):
showard04f2cd82008-07-25 20:53:31 +0000292 group = models.AclGroup.smart_get(id)
293 group.check_for_acl_violation_acl_group()
294 group.update_object(data)
295 group.add_current_user_if_empty()
mblighe8819cd2008-02-15 16:48:40 +0000296
297
298def acl_group_add_users(id, users):
jadmanski0afbb632008-06-06 21:10:57 +0000299 group = models.AclGroup.smart_get(id)
showard04f2cd82008-07-25 20:53:31 +0000300 group.check_for_acl_violation_acl_group()
showardbe3ec042008-11-12 18:16:07 +0000301 users = models.User.smart_get_bulk(users)
jadmanski0afbb632008-06-06 21:10:57 +0000302 group.users.add(*users)
mblighe8819cd2008-02-15 16:48:40 +0000303
304
305def acl_group_remove_users(id, users):
jadmanski0afbb632008-06-06 21:10:57 +0000306 group = models.AclGroup.smart_get(id)
showard04f2cd82008-07-25 20:53:31 +0000307 group.check_for_acl_violation_acl_group()
showardbe3ec042008-11-12 18:16:07 +0000308 users = models.User.smart_get_bulk(users)
jadmanski0afbb632008-06-06 21:10:57 +0000309 group.users.remove(*users)
showard04f2cd82008-07-25 20:53:31 +0000310 group.add_current_user_if_empty()
mblighe8819cd2008-02-15 16:48:40 +0000311
312
313def acl_group_add_hosts(id, hosts):
jadmanski0afbb632008-06-06 21:10:57 +0000314 group = models.AclGroup.smart_get(id)
showard04f2cd82008-07-25 20:53:31 +0000315 group.check_for_acl_violation_acl_group()
showardbe3ec042008-11-12 18:16:07 +0000316 hosts = models.Host.smart_get_bulk(hosts)
jadmanski0afbb632008-06-06 21:10:57 +0000317 group.hosts.add(*hosts)
showard08f981b2008-06-24 21:59:03 +0000318 group.on_host_membership_change()
mblighe8819cd2008-02-15 16:48:40 +0000319
320
321def acl_group_remove_hosts(id, hosts):
jadmanski0afbb632008-06-06 21:10:57 +0000322 group = models.AclGroup.smart_get(id)
showard04f2cd82008-07-25 20:53:31 +0000323 group.check_for_acl_violation_acl_group()
showardbe3ec042008-11-12 18:16:07 +0000324 hosts = models.Host.smart_get_bulk(hosts)
jadmanski0afbb632008-06-06 21:10:57 +0000325 group.hosts.remove(*hosts)
showard08f981b2008-06-24 21:59:03 +0000326 group.on_host_membership_change()
mblighe8819cd2008-02-15 16:48:40 +0000327
328
329def delete_acl_group(id):
jadmanski0afbb632008-06-06 21:10:57 +0000330 models.AclGroup.smart_get(id).delete()
mblighe8819cd2008-02-15 16:48:40 +0000331
332
333def get_acl_groups(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000334 acl_groups = models.AclGroup.list_objects(filter_data)
335 for acl_group in acl_groups:
336 acl_group_obj = models.AclGroup.objects.get(id=acl_group['id'])
337 acl_group['users'] = [user.login
338 for user in acl_group_obj.users.all()]
339 acl_group['hosts'] = [host.hostname
340 for host in acl_group_obj.hosts.all()]
341 return rpc_utils.prepare_for_serialization(acl_groups)
mblighe8819cd2008-02-15 16:48:40 +0000342
343
344# jobs
345
mbligh120351e2009-01-24 01:40:45 +0000346def generate_control_file(tests=(), kernel=None, label=None, profilers=(),
347 client_control_file='', use_container=False):
jadmanski0afbb632008-06-06 21:10:57 +0000348 """
mbligh120351e2009-01-24 01:40:45 +0000349 Generates a client-side control file to load a kernel and run tests.
350
351 @param tests List of tests to run.
352 @param kernel Kernel to install in generated control file.
353 @param label Name of label to grab kernel config from.
354 @param profilers List of profilers to activate during the job.
355 @param client_control_file The contents of a client-side control file to
356 run at the end of all tests. If this is supplied, all tests must be
357 client side.
358 TODO: in the future we should support server control files directly
359 to wrap with a kernel. That'll require changing the parameter
360 name and adding a boolean to indicate if it is a client or server
361 control file.
362 @param use_container unused argument today. TODO: Enable containers
363 on the host during a client side test.
364
365 @returns a dict with the following keys:
366 control_file: str, The control file text.
367 is_server: bool, is the control file a server-side control file?
368 synch_count: How many machines the job uses per autoserv execution.
369 synch_count == 1 means the job is asynchronous.
370 dependencies: A list of the names of labels on which the job depends.
371 """
showardd86debe2009-06-10 17:37:56 +0000372 if not tests and not client_control_file:
showard2bab8f42008-11-12 18:15:22 +0000373 return dict(control_file='', is_server=False, synch_count=1,
showard989f25d2008-10-01 11:38:11 +0000374 dependencies=[])
mblighe8819cd2008-02-15 16:48:40 +0000375
showard989f25d2008-10-01 11:38:11 +0000376 cf_info, test_objects, profiler_objects, label = (
showard2b9a88b2008-06-13 20:55:03 +0000377 rpc_utils.prepare_generate_control_file(tests, kernel, label,
378 profilers))
showard989f25d2008-10-01 11:38:11 +0000379 cf_info['control_file'] = control_file.generate_control(
380 tests=test_objects, kernel=kernel, platform=label,
mbligh120351e2009-01-24 01:40:45 +0000381 profilers=profiler_objects, is_server=cf_info['is_server'],
382 client_control_file=client_control_file)
showard989f25d2008-10-01 11:38:11 +0000383 return cf_info
mblighe8819cd2008-02-15 16:48:40 +0000384
385
showard12f3e322009-05-13 21:27:42 +0000386def create_job(name, priority, control_file, control_type,
387 hosts=(), meta_hosts=(), one_time_hosts=(),
388 atomic_group_name=None, synch_count=None, is_template=False,
389 timeout=None, max_runtime_hrs=None, run_verify=True,
390 email_list='', dependencies=(), reboot_before=None,
391 reboot_after=None, parse_failed_repair=None):
jadmanski0afbb632008-06-06 21:10:57 +0000392 """\
393 Create and enqueue a job.
mblighe8819cd2008-02-15 16:48:40 +0000394
showarda1e74b32009-05-12 17:32:04 +0000395 @param name name of this job
396 @param priority Low, Medium, High, Urgent
397 @param control_file String contents of the control file.
398 @param control_type Type of control file, Client or Server.
399 @param synch_count How many machines the job uses per autoserv execution.
400 synch_count == 1 means the job is asynchronous. If an atomic group is
401 given this value is treated as a minimum.
402 @param is_template If true then create a template job.
403 @param timeout Hours after this call returns until the job times out.
showard12f3e322009-05-13 21:27:42 +0000404 @param max_runtime_hrs Hours from job starting time until job times out
showarda1e74b32009-05-12 17:32:04 +0000405 @param run_verify Should the host be verified before running the test?
406 @param email_list String containing emails to mail when the job is done
407 @param dependencies List of label names on which this job depends
408 @param reboot_before Never, If dirty, or Always
409 @param reboot_after Never, If all tests passed, or Always
410 @param parse_failed_repair if true, results of failed repairs launched by
411 this job will be parsed as part of the job.
412
413 @param hosts List of hosts to run job on.
414 @param meta_hosts List where each entry is a label name, and for each entry
415 one host will be chosen from that label to run the job on.
416 @param one_time_hosts List of hosts not in the database to run the job on.
417 @param atomic_group_name The name of an atomic group to schedule the job on.
418
showardc92da832009-04-07 18:14:34 +0000419
420 @returns The created Job id number.
jadmanski0afbb632008-06-06 21:10:57 +0000421 """
showard87658162009-05-29 18:39:50 +0000422 user = thread_local.get_user()
423 owner = user.login
jadmanski0afbb632008-06-06 21:10:57 +0000424 # input validation
showardc92da832009-04-07 18:14:34 +0000425 if not (hosts or meta_hosts or one_time_hosts or atomic_group_name):
mblighec5546d2008-06-16 16:51:28 +0000426 raise model_logic.ValidationError({
showardb8471e32008-07-03 19:51:08 +0000427 'arguments' : "You must pass at least one of 'hosts', "
showardc92da832009-04-07 18:14:34 +0000428 "'meta_hosts', 'one_time_hosts', "
429 "or 'atomic_group_name'"
jadmanski0afbb632008-06-06 21:10:57 +0000430 })
mblighe8819cd2008-02-15 16:48:40 +0000431
showardbc93f0f2009-06-10 00:16:21 +0000432 labels_by_name = dict((label.name, label)
433 for label in models.Label.objects.all())
434 atomic_groups_by_name = dict((ag.name, ag)
435 for ag in models.AtomicGroup.objects.all())
436
showardc8730322009-06-30 01:56:38 +0000437 # Schedule on an atomic group automagically if one of the labels given
438 # is an atomic group label and no explicit atomic_group_name was supplied.
439 if not atomic_group_name:
440 for label_name in meta_hosts or []:
441 label = labels_by_name.get(label_name)
442 if label and label.atomic_group:
443 atomic_group_name = label.atomic_group.name
444 break
445
showardbc93f0f2009-06-10 00:16:21 +0000446 # convert hostnames & meta hosts to host/label objects
447 host_objects = models.Host.smart_get_bulk(hosts)
448 metahost_objects = []
showardc8730322009-06-30 01:56:38 +0000449 for label_name in meta_hosts or []:
450 if label_name in labels_by_name:
451 label = labels_by_name[label_name]
452 metahost_objects.append(label)
453 elif label_name in atomic_groups_by_name:
454 # If given a metahost name that isn't a Label, check to
455 # see if the user was specifying an Atomic Group instead.
456 atomic_group = atomic_groups_by_name[label_name]
showardbc93f0f2009-06-10 00:16:21 +0000457 if atomic_group_name and atomic_group_name != atomic_group.name:
458 raise model_logic.ValidationError({
459 'meta_hosts': (
460 'Label "%s" not found. If assumed to be an '
461 'atomic group it would conflict with the '
462 'supplied atomic group "%s".' % (
showardc8730322009-06-30 01:56:38 +0000463 label_name, atomic_group_name))})
showardbc93f0f2009-06-10 00:16:21 +0000464 atomic_group_name = atomic_group.name
465 else:
466 raise model_logic.ValidationError(
467 {'meta_hosts' : 'Label "%s" not found' % label})
468
showardc92da832009-04-07 18:14:34 +0000469 # Create and sanity check an AtomicGroup object if requested.
470 if atomic_group_name:
471 if one_time_hosts:
472 raise model_logic.ValidationError(
473 {'one_time_hosts':
474 'One time hosts cannot be used with an Atomic Group.'})
475 atomic_group = models.AtomicGroup.smart_get(atomic_group_name)
476 if synch_count and synch_count > atomic_group.max_number_of_machines:
477 raise model_logic.ValidationError(
478 {'atomic_group_name' :
479 'You have requested a synch_count (%d) greater than the '
480 'maximum machines in the requested Atomic Group (%d).' %
481 (synch_count, atomic_group.max_number_of_machines)})
482 else:
483 atomic_group = None
484
showardb8471e32008-07-03 19:51:08 +0000485 for host in one_time_hosts or []:
486 this_host = models.Host.create_one_time_host(host)
487 host_objects.append(this_host)
showardba872902008-06-28 00:51:08 +0000488
showard87658162009-05-29 18:39:50 +0000489 if reboot_before is None:
490 reboot_before = user.get_reboot_before_display()
491 if reboot_after is None:
492 reboot_after = user.get_reboot_after_display()
493
showarda1e74b32009-05-12 17:32:04 +0000494 options = dict(name=name,
495 priority=priority,
496 control_file=control_file,
497 control_type=control_type,
498 is_template=is_template,
499 timeout=timeout,
showard12f3e322009-05-13 21:27:42 +0000500 max_runtime_hrs=max_runtime_hrs,
showarda1e74b32009-05-12 17:32:04 +0000501 synch_count=synch_count,
502 run_verify=run_verify,
503 email_list=email_list,
504 dependencies=dependencies,
505 reboot_before=reboot_before,
506 reboot_after=reboot_after,
507 parse_failed_repair=parse_failed_repair)
showard29f7cd22009-04-29 21:16:24 +0000508 return rpc_utils.create_new_job(owner=owner,
showarda1e74b32009-05-12 17:32:04 +0000509 options=options,
showard29f7cd22009-04-29 21:16:24 +0000510 host_objects=host_objects,
511 metahost_objects=metahost_objects,
showard29f7cd22009-04-29 21:16:24 +0000512 atomic_group=atomic_group)
mblighe8819cd2008-02-15 16:48:40 +0000513
514
showard9dbdcda2008-10-14 17:34:36 +0000515def abort_host_queue_entries(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000516 """\
showard9dbdcda2008-10-14 17:34:36 +0000517 Abort a set of host queue entries.
jadmanski0afbb632008-06-06 21:10:57 +0000518 """
showard9dbdcda2008-10-14 17:34:36 +0000519 query = models.HostQueueEntry.query_objects(filter_data)
showard0c185192009-01-16 03:07:57 +0000520 query = query.filter(complete=False)
showarddc817512008-11-12 18:16:41 +0000521 models.AclGroup.check_abort_permissions(query)
showard9dbdcda2008-10-14 17:34:36 +0000522 host_queue_entries = list(query.select_related())
showard2bab8f42008-11-12 18:15:22 +0000523 rpc_utils.check_abort_synchronous_jobs(host_queue_entries)
mblighe8819cd2008-02-15 16:48:40 +0000524
showard9dbdcda2008-10-14 17:34:36 +0000525 user = thread_local.get_user()
526 for queue_entry in host_queue_entries:
527 queue_entry.abort(user)
showard9d821ab2008-07-11 16:54:29 +0000528
529
showard1ff7b2e2009-05-15 23:17:18 +0000530def reverify_hosts(**filter_data):
531 """\
532 Schedules a set of hosts for verify.
533 """
534 hosts = models.Host.query_objects(filter_data)
535 models.AclGroup.check_for_acl_violation_hosts(hosts)
showard6d7b2ff2009-06-10 00:16:47 +0000536 models.SpecialTask.schedule_special_task(hosts,
showard2fe3f1d2009-07-06 20:19:11 +0000537 models.SpecialTask.Task.VERIFY)
showard1ff7b2e2009-05-15 23:17:18 +0000538
539
mblighe8819cd2008-02-15 16:48:40 +0000540def get_jobs(not_yet_run=False, running=False, finished=False, **filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000541 """\
542 Extra filter args for get_jobs:
543 -not_yet_run: Include only jobs that have not yet started running.
544 -running: Include only jobs that have start running but for which not
545 all hosts have completed.
546 -finished: Include only jobs for which all hosts have completed (or
547 aborted).
548 At most one of these three fields should be specified.
549 """
550 filter_data['extra_args'] = rpc_utils.extra_job_filters(not_yet_run,
551 running,
552 finished)
showard0957a842009-05-11 19:25:08 +0000553 job_dicts = []
554 jobs = list(models.Job.query_objects(filter_data))
555 models.Job.objects.populate_relationships(jobs, models.Label,
556 'dependencies')
557 for job in jobs:
558 job_dict = job.get_object_dict()
559 job_dict['dependencies'] = ','.join(label.name
560 for label in job.dependencies)
561 job_dicts.append(job_dict)
562 return rpc_utils.prepare_for_serialization(job_dicts)
mblighe8819cd2008-02-15 16:48:40 +0000563
564
565def get_num_jobs(not_yet_run=False, running=False, finished=False,
jadmanski0afbb632008-06-06 21:10:57 +0000566 **filter_data):
567 """\
568 See get_jobs() for documentation of extra filter parameters.
569 """
570 filter_data['extra_args'] = rpc_utils.extra_job_filters(not_yet_run,
571 running,
572 finished)
573 return models.Job.query_count(filter_data)
mblighe8819cd2008-02-15 16:48:40 +0000574
575
mblighe8819cd2008-02-15 16:48:40 +0000576def get_jobs_summary(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000577 """\
showarda8709c52008-07-03 19:44:54 +0000578 Like get_jobs(), but adds a 'status_counts' field, which is a dictionary
jadmanski0afbb632008-06-06 21:10:57 +0000579 mapping status strings to the number of hosts currently with that
580 status, i.e. {'Queued' : 4, 'Running' : 2}.
581 """
582 jobs = get_jobs(**filter_data)
583 ids = [job['id'] for job in jobs]
584 all_status_counts = models.Job.objects.get_status_counts(ids)
585 for job in jobs:
586 job['status_counts'] = all_status_counts[job['id']]
587 return rpc_utils.prepare_for_serialization(jobs)
mblighe8819cd2008-02-15 16:48:40 +0000588
589
showarda965cef2009-05-15 23:17:41 +0000590def get_info_for_clone(id, preserve_metahosts, queue_entry_filter_data=None):
showarda8709c52008-07-03 19:44:54 +0000591 """\
592 Retrieves all the information needed to clone a job.
593 """
showarda8709c52008-07-03 19:44:54 +0000594 job = models.Job.objects.get(id=id)
showard29f7cd22009-04-29 21:16:24 +0000595 job_info = rpc_utils.get_job_info(job,
showarda965cef2009-05-15 23:17:41 +0000596 preserve_metahosts,
597 queue_entry_filter_data)
showard945072f2008-09-03 20:34:59 +0000598
showardd9992fe2008-07-31 02:15:03 +0000599 host_dicts = []
showard29f7cd22009-04-29 21:16:24 +0000600 for host in job_info['hosts']:
601 host_dict = get_hosts(id=host.id)[0]
602 other_labels = host_dict['labels']
603 if host_dict['platform']:
604 other_labels.remove(host_dict['platform'])
605 host_dict['other_labels'] = ', '.join(other_labels)
showardd9992fe2008-07-31 02:15:03 +0000606 host_dicts.append(host_dict)
showarda8709c52008-07-03 19:44:54 +0000607
showard29f7cd22009-04-29 21:16:24 +0000608 for host in job_info['one_time_hosts']:
609 host_dict = dict(hostname=host.hostname,
610 id=host.id,
611 platform='(one-time host)',
612 locked_text='')
613 host_dicts.append(host_dict)
showarda8709c52008-07-03 19:44:54 +0000614
showard4d077562009-05-08 18:24:36 +0000615 # convert keys from Label objects to strings (names of labels)
showard29f7cd22009-04-29 21:16:24 +0000616 meta_host_counts = dict((meta_host.name, count) for meta_host, count
showard4d077562009-05-08 18:24:36 +0000617 in job_info['meta_host_counts'].iteritems())
showard29f7cd22009-04-29 21:16:24 +0000618
619 info = dict(job=job.get_object_dict(),
620 meta_host_counts=meta_host_counts,
621 hosts=host_dicts)
622 info['job']['dependencies'] = job_info['dependencies']
623 if job_info['atomic_group']:
624 info['atomic_group_name'] = (job_info['atomic_group']).name
625 else:
626 info['atomic_group_name'] = None
showarda8709c52008-07-03 19:44:54 +0000627
628 return rpc_utils.prepare_for_serialization(info)
629
630
showard34dc5fa2008-04-24 20:58:40 +0000631# host queue entries
632
633def get_host_queue_entries(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000634 """\
showardc92da832009-04-07 18:14:34 +0000635 @returns A sequence of nested dictionaries of host and job information.
jadmanski0afbb632008-06-06 21:10:57 +0000636 """
showardc92da832009-04-07 18:14:34 +0000637 return rpc_utils.prepare_rows_as_nested_dicts(
638 models.HostQueueEntry.query_objects(filter_data),
639 ('host', 'atomic_group', 'job'))
showard34dc5fa2008-04-24 20:58:40 +0000640
641
642def get_num_host_queue_entries(**filter_data):
jadmanski0afbb632008-06-06 21:10:57 +0000643 """\
644 Get the number of host queue entries associated with this job.
645 """
646 return models.HostQueueEntry.query_count(filter_data)
showard34dc5fa2008-04-24 20:58:40 +0000647
648
showard1e935f12008-07-11 00:11:36 +0000649def get_hqe_percentage_complete(**filter_data):
650 """
showardc92da832009-04-07 18:14:34 +0000651 Computes the fraction of host queue entries matching the given filter data
showard1e935f12008-07-11 00:11:36 +0000652 that are complete.
653 """
654 query = models.HostQueueEntry.query_objects(filter_data)
655 complete_count = query.filter(complete=True).count()
656 total_count = query.count()
657 if total_count == 0:
658 return 1
659 return float(complete_count) / total_count
660
661
showard1a5a4082009-07-28 20:01:37 +0000662# special tasks
663
664def get_special_tasks(**filter_data):
665 return rpc_utils.prepare_rows_as_nested_dicts(
666 models.SpecialTask.query_objects(filter_data),
667 ('host', 'queue_entry'))
668
669
showardc0ac3a72009-07-08 21:14:45 +0000670# support for host detail view
671
672def get_host_queue_entries_and_special_tasks(hostname, query_start=None,
673 query_limit=None):
674 """
675 @returns an interleaved list of HostQueueEntries and SpecialTasks,
676 in approximate run order. each dict contains keys for type, host,
677 job, status, started_on, execution_path, and ID.
678 """
679 total_limit = None
680 if query_limit is not None:
681 total_limit = query_start + query_limit
682 filter_data = {'host__hostname': hostname,
683 'query_limit': total_limit,
684 'sort_by': ['-id']}
685
686 queue_entries = list(models.HostQueueEntry.query_objects(filter_data))
687 special_tasks = list(models.SpecialTask.query_objects(filter_data))
688
689 interleaved_entries = rpc_utils.interleave_entries(queue_entries,
690 special_tasks)
691 if query_start is not None:
692 interleaved_entries = interleaved_entries[query_start:]
693 if query_limit is not None:
694 interleaved_entries = interleaved_entries[:query_limit]
695 return rpc_utils.prepare_for_serialization(interleaved_entries)
696
697
698def get_num_host_queue_entries_and_special_tasks(hostname):
699 filter_data = {'host__hostname': hostname}
700 return (models.HostQueueEntry.query_count(filter_data)
701 + models.SpecialTask.query_count(filter_data))
702
703
showard29f7cd22009-04-29 21:16:24 +0000704# recurring run
705
706def get_recurring(**filter_data):
707 return rpc_utils.prepare_rows_as_nested_dicts(
708 models.RecurringRun.query_objects(filter_data),
709 ('job', 'owner'))
710
711
712def get_num_recurring(**filter_data):
713 return models.RecurringRun.query_count(filter_data)
714
715
716def delete_recurring_runs(**filter_data):
717 to_delete = models.RecurringRun.query_objects(filter_data)
718 to_delete.delete()
719
720
721def create_recurring_run(job_id, start_date, loop_period, loop_count):
722 owner = thread_local.get_user().login
723 job = models.Job.objects.get(id=job_id)
724 return job.create_recurring_job(start_date=start_date,
725 loop_period=loop_period,
726 loop_count=loop_count,
727 owner=owner)
728
729
mblighe8819cd2008-02-15 16:48:40 +0000730# other
731
showarde0b63622008-08-04 20:58:47 +0000732def echo(data=""):
733 """\
734 Returns a passed in string. For doing a basic test to see if RPC calls
735 can successfully be made.
736 """
737 return data
738
739
showardb7a52fd2009-04-27 20:10:56 +0000740def get_motd():
741 """\
742 Returns the message of the day as a string.
743 """
744 return rpc_utils.get_motd()
745
746
mblighe8819cd2008-02-15 16:48:40 +0000747def get_static_data():
jadmanski0afbb632008-06-06 21:10:57 +0000748 """\
749 Returns a dictionary containing a bunch of data that shouldn't change
750 often and is otherwise inaccessible. This includes:
showardc92da832009-04-07 18:14:34 +0000751
752 priorities: List of job priority choices.
753 default_priority: Default priority value for new jobs.
754 users: Sorted list of all users.
755 labels: Sorted list of all labels.
756 atomic_groups: Sorted list of all atomic groups.
757 tests: Sorted list of all tests.
758 profilers: Sorted list of all profilers.
759 current_user: Logged-in username.
760 host_statuses: Sorted list of possible Host statuses.
761 job_statuses: Sorted list of possible HostQueueEntry statuses.
762 job_timeout_default: The default job timeout length in hours.
showarda1e74b32009-05-12 17:32:04 +0000763 parse_failed_repair_default: Default value for the parse_failed_repair job
764 option.
showardc92da832009-04-07 18:14:34 +0000765 reboot_before_options: A list of valid RebootBefore string enums.
766 reboot_after_options: A list of valid RebootAfter string enums.
767 motd: Server's message of the day.
768 status_dictionary: A mapping from one word job status names to a more
769 informative description.
jadmanski0afbb632008-06-06 21:10:57 +0000770 """
showard21baa452008-10-21 00:08:39 +0000771
772 job_fields = models.Job.get_field_dict()
773
jadmanski0afbb632008-06-06 21:10:57 +0000774 result = {}
775 result['priorities'] = models.Job.Priority.choices()
showard21baa452008-10-21 00:08:39 +0000776 default_priority = job_fields['priority'].default
jadmanski0afbb632008-06-06 21:10:57 +0000777 default_string = models.Job.Priority.get_string(default_priority)
778 result['default_priority'] = default_string
779 result['users'] = get_users(sort_by=['login'])
780 result['labels'] = get_labels(sort_by=['-platform', 'name'])
showardc92da832009-04-07 18:14:34 +0000781 result['atomic_groups'] = get_atomic_groups(sort_by=['name'])
jadmanski0afbb632008-06-06 21:10:57 +0000782 result['tests'] = get_tests(sort_by=['name'])
showard2b9a88b2008-06-13 20:55:03 +0000783 result['profilers'] = get_profilers(sort_by=['name'])
showard0fc38302008-10-23 00:44:07 +0000784 result['current_user'] = rpc_utils.prepare_for_serialization(
785 thread_local.get_user().get_object_dict())
showard2b9a88b2008-06-13 20:55:03 +0000786 result['host_statuses'] = sorted(models.Host.Status.names)
mbligh5a198b92008-12-11 19:33:29 +0000787 result['job_statuses'] = sorted(models.HostQueueEntry.Status.names)
showardb1e51872008-10-07 11:08:18 +0000788 result['job_timeout_default'] = models.Job.DEFAULT_TIMEOUT
showard12f3e322009-05-13 21:27:42 +0000789 result['job_max_runtime_hrs_default'] = models.Job.DEFAULT_MAX_RUNTIME_HRS
showarda1e74b32009-05-12 17:32:04 +0000790 result['parse_failed_repair_default'] = bool(
791 models.Job.DEFAULT_PARSE_FAILED_REPAIR)
showard0fc38302008-10-23 00:44:07 +0000792 result['reboot_before_options'] = models.RebootBefore.names
793 result['reboot_after_options'] = models.RebootAfter.names
showard8fbae652009-01-20 23:23:10 +0000794 result['motd'] = rpc_utils.get_motd()
showard8ac29b42008-07-17 17:01:55 +0000795
showardd3dc1992009-04-22 21:01:40 +0000796 result['status_dictionary'] = {"Aborted": "Aborted",
showard8ac29b42008-07-17 17:01:55 +0000797 "Verifying": "Verifying Host",
798 "Pending": "Waiting on other hosts",
799 "Running": "Running autoserv",
800 "Completed": "Autoserv completed",
801 "Failed": "Failed to complete",
showardd823b362008-07-24 16:35:46 +0000802 "Queued": "Queued",
showard5deb6772008-11-04 21:54:33 +0000803 "Starting": "Next in host's queue",
804 "Stopped": "Other host(s) failed verify",
showardd3dc1992009-04-22 21:01:40 +0000805 "Parsing": "Awaiting parse of final results",
showard29f7cd22009-04-29 21:16:24 +0000806 "Gathering": "Gathering log files",
showard6d7b2ff2009-06-10 00:16:47 +0000807 "Template": "Template job for recurring run"}
jadmanski0afbb632008-06-06 21:10:57 +0000808 return result
showard29f7cd22009-04-29 21:16:24 +0000809
810
811def get_server_time():
812 return datetime.datetime.now().strftime("%Y-%m-%d %H:%M")