| OLD | NEW |
| 1 # Copyright 2015 The LUCI Authors. All rights reserved. | 1 # Copyright 2015 The LUCI Authors. All rights reserved. |
| 2 # Use of this source code is governed under the Apache License, Version 2.0 | 2 # Use of this source code is governed under the Apache License, Version 2.0 |
| 3 # that can be found in the LICENSE file. | 3 # that can be found in the LICENSE file. |
| 4 | 4 |
| 5 """This module defines Swarming Server endpoints handlers.""" | 5 """This module defines Swarming Server endpoints handlers.""" |
| 6 | 6 |
| 7 import datetime | 7 import datetime |
| 8 import logging | 8 import logging |
| 9 | 9 |
| 10 from google.appengine.api import datastore_errors | 10 from google.appengine.api import datastore_errors |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 if len(parts) != 2 or any(i.strip() != i or not i for i in parts): | 628 if len(parts) != 2 or any(i.strip() != i or not i for i in parts): |
| 629 raise endpoints.BadRequestException('Invalid dimensions') | 629 raise endpoints.BadRequestException('Invalid dimensions') |
| 630 q = q.filter(bot_management.BotInfo.dimensions_flat == d) | 630 q = q.filter(bot_management.BotInfo.dimensions_flat == d) |
| 631 bots, cursor = datastore_utils.fetch_page(q, request.limit, request.cursor) | 631 bots, cursor = datastore_utils.fetch_page(q, request.limit, request.cursor) |
| 632 return swarming_rpcs.BotList( | 632 return swarming_rpcs.BotList( |
| 633 cursor=cursor, | 633 cursor=cursor, |
| 634 death_timeout=config.settings().bot_death_timeout_secs, | 634 death_timeout=config.settings().bot_death_timeout_secs, |
| 635 items=[message_conversion.bot_info_to_rpc(bot, now) for bot in bots], | 635 items=[message_conversion.bot_info_to_rpc(bot, now) for bot in bots], |
| 636 now=now) | 636 now=now) |
| 637 | 637 |
| 638 @gae_ts_mon.instrument_endpoint() |
| 639 @auth.endpoints_method( |
| 640 swarming_rpcs.BotsRequest, swarming_rpcs.BotsCount, |
| 641 http_method='GET') |
| 642 @auth.require(acl.is_privileged_user) |
| 643 def count(self, request): |
| 644 """Counts number of bots with given dimensions.""" |
| 645 logging.info('%s', request) |
| 646 now = utils.utcnow() |
| 647 q = bot_management.BotInfo.query().order() |
| 648 for d in request.dimensions: |
| 649 parts = d.split(':', 1) |
| 650 if len(parts) != 2 or any(i.strip() != i or not i for i in parts): |
| 651 raise endpoints.BadRequestException('Invalid dimensions: %s' % d) |
| 652 q = q.filter(bot_management.BotInfo.dimensions_flat == d) |
| 653 f_count = q.count_async() |
| 654 dt = datetime.timedelta(seconds=config.settings().bot_death_timeout_secs) |
| 655 timeout = now - dt |
| 656 f_dead = q.filter( |
| 657 bot_management.BotInfo.last_seen_ts < timeout).count_async() |
| 658 f_quarantined = q.filter( |
| 659 bot_management.BotInfo.quarantined == True).count_async() |
| 660 f_busy = q.filter(bot_management.BotInfo.is_busy == True).count_async() |
| 661 return swarming_rpcs.BotsCount( |
| 662 count=f_count.get_result(), |
| 663 quarantined=f_quarantined.get_result(), |
| 664 dead=f_dead.get_result(), |
| 665 busy=f_busy.get_result(), |
| 666 now=now) |
| 667 |
| 638 | 668 |
| 639 def get_routes(): | 669 def get_routes(): |
| 640 return ( | 670 return ( |
| 641 endpoints_webapp2.api_routes(SwarmingServerService) + | 671 endpoints_webapp2.api_routes(SwarmingServerService) + |
| 642 endpoints_webapp2.api_routes(SwarmingTaskService) + | 672 endpoints_webapp2.api_routes(SwarmingTaskService) + |
| 643 endpoints_webapp2.api_routes(SwarmingTasksService) + | 673 endpoints_webapp2.api_routes(SwarmingTasksService) + |
| 644 endpoints_webapp2.api_routes(SwarmingBotService) + | 674 endpoints_webapp2.api_routes(SwarmingBotService) + |
| 645 endpoints_webapp2.api_routes(SwarmingBotsService) + | 675 endpoints_webapp2.api_routes(SwarmingBotsService) + |
| 646 # components.config endpoints for validation and configuring of luci-config | 676 # components.config endpoints for validation and configuring of luci-config |
| 647 # service URL. | 677 # service URL. |
| 648 endpoints_webapp2.api_routes(config.ConfigApi)) | 678 endpoints_webapp2.api_routes(config.ConfigApi)) |
| OLD | NEW |