2017-06-27 08:09:21 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2017 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2020-02-10 07:20:49 +00:00
import aiohttp
2017-06-27 08:09:21 +00:00
import logging
log = logging . getLogger ( __name__ )
2020-02-10 07:20:49 +00:00
def get_next_application_id ( projects , compute ) :
2017-06-27 08:09:21 +00:00
"""
Calculates free application_id from given nodes
2018-03-12 06:38:50 +00:00
2020-02-10 07:20:49 +00:00
: param projects : all projects managed by controller
: param compute : Compute instance
: raises HTTPConflict when exceeds number
2017-06-27 08:09:21 +00:00
: return : integer first free id
"""
2018-03-15 07:17:39 +00:00
2020-02-10 07:20:49 +00:00
nodes = [ ]
# look for application id for in all nodes across all opened projects that share the same compute
for project in projects . values ( ) :
if project . status == " opened " and compute in project . computes :
nodes . extend ( list ( project . nodes . values ( ) ) )
used = set ( [ n . properties [ " application_id " ] for n in nodes if n . node_type == " iou " ] )
2017-06-27 08:09:21 +00:00
pool = set ( range ( 1 , 512 ) )
try :
return ( pool - used ) . pop ( )
except KeyError :
2020-02-10 07:20:49 +00:00
raise aiohttp . web . HTTPConflict ( text = " Cannot create a new IOU node (limit of 512 nodes across all opened projects using compute {} reached " . format ( compute . name ) )