energystoragepowerstationdetails.py 37.3 KB
Newer Older
1
import re
2
from datetime import datetime, timedelta, timezone
3
from decimal import Decimal
4 5 6 7 8
import falcon
import mysql.connector
import simplejson as json
from core.useractivity import access_control, api_key_control
import config
9
from core.utilities import int16_to_hhmm
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27


class Reporting:
    @staticmethod
    def __init__():
        """Initializes Class"""
        pass

    @staticmethod
    def on_options(req, resp):
        resp.status = falcon.HTTP_200

    ####################################################################################################################
    # PROCEDURES
    # Step 1: valid parameters
    # Step 2: query the energy storage power station
    # Step 3: query associated containers
    # Step 4: query associated batteries in containers
28 29 30
    # Step 5: query associated grids in containers
    # Step 6: query associated loads in containers
    # Step 7: query associated power conversion systems in containers
31
    # Step 8: query associated sensors in containers
32 33
    # Step 9: query associated points data in containers
    # Step 10: construct the report
34 35 36 37 38 39 40 41 42 43 44
    ####################################################################################################################
    @staticmethod
    def on_get(req, resp):
        if 'API-KEY' not in req.headers or \
                not isinstance(req.headers['API-KEY'], str) or \
                len(str.strip(req.headers['API-KEY'])) == 0:
            access_control(req)
        else:
            api_key_control(req)
        print(req.params)
        # this procedure accepts energy storage power station id or uuid
45 46
        energy_storage_power_station_id = req.params.get('id')
        energy_storage_power_station_uuid = req.params.get('uuid')
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

        ################################################################################################################
        # Step 1: valid parameters
        ################################################################################################################
        if energy_storage_power_station_id is None and energy_storage_power_station_uuid is None:
            raise falcon.HTTPError(status=falcon.HTTP_400, title='API.BAD_REQUEST',
                                   description='API.INVALID_ENERGY_STORAGE_POWER_STATION_ID')

        if energy_storage_power_station_id is not None:
            energy_storage_power_station_id = str.strip(energy_storage_power_station_id)
            if not energy_storage_power_station_id.isdigit() or int(energy_storage_power_station_id) <= 0:
                raise falcon.HTTPError(status=falcon.HTTP_400, title='API.BAD_REQUEST',
                                       description='API.INVALID_ENERGY_STORAGE_POWER_STATION_ID')

        if energy_storage_power_station_uuid is not None:
            regex = re.compile(r'^[a-f0-9]{8}-?[a-f0-9]{4}-?4[a-f0-9]{3}-?[89ab][a-f0-9]{3}-?[a-f0-9]{12}\Z', re.I)
            match = regex.match(str.strip(energy_storage_power_station_uuid))
            if not bool(match):
                raise falcon.HTTPError(status=falcon.HTTP_400, title='API.BAD_REQUEST',
                                       description='API.INVALID_ENERGY_STORAGE_POWER_STATION_UUID')

        reporting_start_datetime_utc = datetime.utcnow() - timedelta(days=1)
        reporting_end_datetime_utc = datetime.utcnow()

        ################################################################################################################
        # Step 2: query the energy storage power station
        ################################################################################################################
        cnx_system = mysql.connector.connect(**config.myems_system_db)
        cursor_system = cnx_system.cursor()

77 78 79
        cnx_historical = mysql.connector.connect(**config.myems_historical_db)
        cursor_historical = cnx_historical.cursor()

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        query = (" SELECT id, name, uuid "
                 " FROM tbl_contacts ")
        cursor_system.execute(query)
        rows_contacts = cursor_system.fetchall()

        contact_dict = dict()
        if rows_contacts is not None and len(rows_contacts) > 0:
            for row in rows_contacts:
                contact_dict[row[0]] = {"id": row[0],
                                        "name": row[1],
                                        "uuid": row[2]}

        query = (" SELECT id, name, uuid "
                 " FROM tbl_cost_centers ")
        cursor_system.execute(query)
        rows_cost_centers = cursor_system.fetchall()

        cost_center_dict = dict()
        if rows_cost_centers is not None and len(rows_cost_centers) > 0:
            for row in rows_cost_centers:
                cost_center_dict[row[0]] = {"id": row[0],
                                            "name": row[1],
                                            "uuid": row[2]}
        if energy_storage_power_station_id is not None:
            query = (" SELECT id, name, uuid, "
105
                     "        address, postal_code, latitude, longitude, rated_capacity, rated_power, "
106 107 108 109 110 111 112
                     "        contact_id, cost_center_id, svg, description "
                     " FROM tbl_energy_storage_power_stations "
                     " WHERE id = %s ")
            cursor_system.execute(query, (energy_storage_power_station_id,))
            row = cursor_system.fetchone()
        elif energy_storage_power_station_uuid is not None:
            query = (" SELECT id, name, uuid, "
113
                     "        address, postal_code, latitude, longitude, rated_capacity, rated_power, "
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
                     "        contact_id, cost_center_id, svg, description "
                     " FROM tbl_energy_storage_power_stations "
                     " WHERE uuid = %s ")
            cursor_system.execute(query, (energy_storage_power_station_uuid,))
            row = cursor_system.fetchone()

        if row is None:
            cursor_system.close()
            cnx_system.close()
            raise falcon.HTTPError(status=falcon.HTTP_404, title='API.NOT_FOUND',
                                   description='API.ENERGY_STORAGE_POWER_STATION_NOT_FOUND')
        else:
            energy_storage_power_station_id = row[0]
            meta_result = {"id": row[0],
                           "name": row[1],
                           "uuid": row[2],
                           "address": row[3],
                           "postal_code": row[4],
                           "latitude": row[5],
                           "longitude": row[6],
134 135 136 137 138 139
                           "rated_capacity": row[7],
                           "rated_power": row[8],
                           "contact": contact_dict.get(row[9], None),
                           "cost_center": cost_center_dict.get(row[10], None),
                           "svg": row[11],
                           "description": row[12],
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
                           "qrcode": 'energystoragepowerstation:' + row[2]}

        point_list = list()
        meter_list = list()

        # query all energy categories in system
        cursor_system.execute(" SELECT id, name, unit_of_measure, kgce, kgco2e "
                              " FROM tbl_energy_categories "
                              " ORDER BY id ", )
        rows_energy_categories = cursor_system.fetchall()
        if rows_energy_categories is None or len(rows_energy_categories) == 0:
            if cursor_system:
                cursor_system.close()
            if cnx_system:
                cnx_system.close()
            raise falcon.HTTPError(status=falcon.HTTP_404,
                                   title='API.NOT_FOUND',
                                   description='API.ENERGY_CATEGORY_NOT_FOUND')
        energy_category_dict = dict()
        for row_energy_category in rows_energy_categories:
            energy_category_dict[row_energy_category[0]] = {"name": row_energy_category[1],
                                                            "unit_of_measure": row_energy_category[2],
                                                            "kgce": row_energy_category[3],
                                                            "kgco2e": row_energy_category[4]}

        ################################################################################################################
        # Step 3: query associated containers
        ################################################################################################################
168 169 170
        # todo: query multiple energy storage containers
        container_list = list()
        cursor_system.execute(" SELECT c.id, c.name, c.uuid "
171
                              " FROM tbl_energy_storage_power_stations_containers espsc, "
172
                              "      tbl_energy_storage_containers c "
173 174
                              " WHERE espsc.energy_storage_power_station_id = %s "
                              "      AND espsc.energy_storage_container_id = c.id"
175 176 177 178 179 180 181
                              " LIMIT 1 ",
                              (energy_storage_power_station_id,))
        row_container = cursor_system.fetchone()
        if row_container is not None:
            container_list.append({"id": row_container[0],
                                   "name": row_container[1],
                                   "uuid": row_container[2]})
182
        # todo: if len(container_list) == 0
183
        print('container_list:' + str(container_list))
184 185 186
        ################################################################################################################
        # Step 4: query associated batteries in containers
        ################################################################################################################
187 188 189
        cursor_system.execute(" SELECT p.id, cb.name, p.units, p.object_type  "
                              " FROM tbl_energy_storage_containers_batteries cb, tbl_points p "
                              " WHERE cb.energy_storage_container_id = %s AND cb.soc_point_id = p.id ",
190 191 192 193 194 195 196
                              (container_list[0]['id'],))
        row_point = cursor_system.fetchone()
        if row_point is not None:
            point_list.append({"id": row_point[0],
                               "name": row_point[1] + '.SOC',
                               "units": row_point[2],
                               "object_type": row_point[3]})
197

198 199 200
        cursor_system.execute(" SELECT p.id, cb.name, p.units, p.object_type  "
                              " FROM tbl_energy_storage_containers_batteries cb, tbl_points p "
                              " WHERE cb.energy_storage_container_id = %s AND cb.power_point_id = p.id ",
201 202 203 204 205 206 207 208
                              (container_list[0]['id'],))
        row_point = cursor_system.fetchone()
        if row_point is not None:
            point_list.append({"id": row_point[0],
                               "name": row_point[1] + '.P',
                               "units": row_point[2],
                               "object_type": row_point[3]})

209 210 211
        cursor_system.execute(" SELECT m.id, cb.name, m.energy_category_id  "
                              " FROM tbl_energy_storage_containers_batteries cb, tbl_meters m "
                              " WHERE cb.energy_storage_container_id = %s AND cb.charge_meter_id = m.id ",
212 213 214 215 216 217 218
                              (container_list[0]['id'],))
        row_meter = cursor_system.fetchone()
        if row_meter is not None:
            meter_list.append({"id": row_meter[0],
                               "name": row_meter[1] + '.Charge',
                               "energy_category_id": row_meter[2]})

219 220 221
        cursor_system.execute(" SELECT m.id, cb.name, m.energy_category_id  "
                              " FROM tbl_energy_storage_containers_batteries cb, tbl_meters m "
                              " WHERE cb.energy_storage_container_id = %s AND cb.discharge_meter_id = m.id ",
222 223 224 225 226 227
                              (container_list[0]['id'],))
        row_meter = cursor_system.fetchone()
        if row_meter is not None:
            meter_list.append({"id": row_meter[0],
                               "name": row_meter[1] + '.Discharge',
                               "energy_category_id": row_meter[2]})
228 229

        ################################################################################################################
230
        # Step 5: query associated grids in containers
231
        ################################################################################################################
232 233 234
        cursor_system.execute(" SELECT p.id, cg.name, p.units, p.object_type  "
                              " FROM tbl_energy_storage_containers_grids cg, tbl_points p "
                              " WHERE cg.energy_storage_container_id = %s AND cg.power_point_id = p.id ",
235 236 237 238 239 240 241 242
                              (container_list[0]['id'],))
        row_point = cursor_system.fetchone()
        if row_point is not None:
            point_list.append({"id": row_point[0],
                               "name": row_point[1] + '.P',
                               "units": row_point[2],
                               "object_type": row_point[3]})

243 244 245
        cursor_system.execute(" SELECT m.id, cg.name, m.energy_category_id  "
                              " FROM tbl_energy_storage_containers_grids cg, tbl_meters m "
                              " WHERE cg.energy_storage_container_id = %s AND cg.buy_meter_id = m.id ",
246 247 248 249 250 251 252
                              (container_list[0]['id'],))
        row_meter = cursor_system.fetchone()
        if row_meter is not None:
            meter_list.append({"id": row_meter[0],
                               "name": row_meter[1] + '.Buy',
                               "energy_category_id": row_meter[2]})

253 254 255
        cursor_system.execute(" SELECT m.id, cg.name, m.energy_category_id  "
                              " FROM tbl_energy_storage_containers_grids cg, tbl_meters m "
                              " WHERE cg.energy_storage_container_id = %s AND cg.sell_meter_id = m.id ",
256 257 258 259 260 261
                              (container_list[0]['id'],))
        row_meter = cursor_system.fetchone()
        if row_meter is not None:
            meter_list.append({"id": row_meter[0],
                               "name": row_meter[1] + '.Sell',
                               "energy_category_id": row_meter[2]})
262 263

        ################################################################################################################
264
        # Step 6: query associated loads in containers
265
        ################################################################################################################
266 267 268
        cursor_system.execute(" SELECT p.id, cl.name, p.units, p.object_type  "
                              " FROM tbl_energy_storage_containers_loads cl, tbl_points p "
                              " WHERE cl.energy_storage_container_id = %s AND cl.power_point_id = p.id ",
269 270 271 272 273 274 275 276
                              (container_list[0]['id'],))
        row_point = cursor_system.fetchone()
        if row_point is not None:
            point_list.append({"id": row_point[0],
                               "name": row_point[1] + '.P',
                               "units": row_point[2],
                               "object_type": row_point[3]})

277 278 279
        cursor_system.execute(" SELECT m.id, cl.name, m.energy_category_id  "
                              " FROM tbl_energy_storage_containers_loads cl, tbl_meters m "
                              " WHERE cl.energy_storage_container_id = %s AND cl.meter_id = m.id ",
280 281 282 283 284 285
                              (container_list[0]['id'],))
        row_meter = cursor_system.fetchone()
        if row_meter is not None:
            meter_list.append({"id": row_meter[0],
                               "name": row_meter[1],
                               "energy_category_id": row_meter[2]})
286 287

        ################################################################################################################
288
        # Step 7: query associated power conversion systems
289
        ################################################################################################################
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
        charge_start_time1_point_id = None
        charge_end_time1_point_id = None
        charge_start_time2_point_id = None
        charge_end_time2_point_id = None
        charge_start_time3_point_id = None
        charge_end_time3_point_id = None
        charge_start_time4_point_id = None
        charge_end_time4_point_id = None
        discharge_start_time1_point_id = None
        discharge_end_time1_point_id = None
        discharge_start_time2_point_id = None
        discharge_end_time2_point_id = None
        discharge_start_time3_point_id = None
        discharge_end_time3_point_id = None
        discharge_start_time4_point_id = None
        discharge_end_time4_point_id = None
        charge_start_time1_command_id = None
        charge_end_time1_command_id = None
        charge_start_time2_command_id = None
        charge_end_time2_command_id = None
        charge_start_time3_command_id = None
        charge_end_time3_command_id = None
        charge_start_time4_command_id = None
        charge_end_time4_command_id = None
        discharge_start_time1_command_id = None
        discharge_end_time1_command_id = None
        discharge_start_time2_command_id = None
        discharge_end_time2_command_id = None
        discharge_start_time3_command_id = None
        discharge_end_time3_command_id = None
        discharge_start_time4_command_id = None
        discharge_end_time4_command_id = None
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
        charge_start_time1_value = None
        charge_end_time1_value = None
        charge_start_time2_value = None
        charge_end_time2_value = None
        charge_start_time3_value = None
        charge_end_time3_value = None
        charge_start_time4_value = None
        charge_end_time4_value = None
        discharge_start_time1_value = None
        discharge_end_time1_value = None
        discharge_start_time2_value = None
        discharge_end_time2_value = None
        discharge_start_time3_value = None
        discharge_end_time3_value = None
        discharge_start_time4_value = None
        discharge_end_time4_value = None
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
        cursor_system.execute(" SELECT charge_start_time1_point_id, charge_end_time1_point_id, "
                              "        charge_start_time2_point_id, charge_end_time2_point_id, "
                              "        charge_start_time3_point_id, charge_end_time3_point_id, "
                              "        charge_start_time4_point_id, charge_end_time4_point_id, "
                              "        discharge_start_time1_point_id, discharge_end_time1_point_id, "
                              "        discharge_start_time2_point_id, discharge_end_time2_point_id, "
                              "        discharge_start_time3_point_id, discharge_end_time3_point_id, "
                              "        discharge_start_time4_point_id, discharge_end_time4_point_id, "
                              "        charge_start_time1_command_id, charge_end_time1_command_id, "
                              "        charge_start_time2_command_id, charge_end_time2_command_id, "
                              "        charge_start_time3_command_id, charge_end_time3_command_id, "
                              "        charge_start_time4_command_id, charge_end_time4_command_id, "
                              "        discharge_start_time1_command_id, discharge_end_time1_command_id, "
                              "        discharge_start_time2_command_id, discharge_end_time2_command_id, "
                              "        discharge_start_time3_command_id, discharge_end_time3_command_id, "
                              "        discharge_start_time4_command_id, discharge_end_time4_command_id "
                              " FROM tbl_energy_storage_containers_power_conversion_systems "
                              " WHERE id = %s "
                              " ORDER BY id "
                              " LIMIT 1 ",
                              (container_list[0]['id'],))
        row_point = cursor_system.fetchone()
        if row_point is not None:
            charge_start_time1_point_id = row_point[0]
            charge_end_time1_point_id = row_point[1]
            charge_start_time2_point_id = row_point[2]
            charge_end_time2_point_id = row_point[3]
            charge_start_time3_point_id = row_point[4]
            charge_end_time3_point_id = row_point[5]
            charge_start_time4_point_id = row_point[6]
            charge_end_time4_point_id = row_point[7]
            discharge_start_time1_point_id = row_point[8]
            discharge_end_time1_point_id = row_point[9]
            discharge_start_time2_point_id = row_point[10]
            discharge_end_time2_point_id = row_point[11]
            discharge_start_time3_point_id = row_point[12]
            discharge_end_time3_point_id = row_point[13]
            discharge_start_time4_point_id = row_point[14]
            discharge_end_time4_point_id = row_point[15]
            charge_start_time1_command_id = row_point[16]
            charge_end_time1_command_id = row_point[17]
            charge_start_time2_command_id = row_point[18]
            charge_end_time2_command_id = row_point[19]
            charge_start_time3_command_id = row_point[20]
            charge_end_time3_command_id = row_point[21]
            charge_start_time4_command_id = row_point[22]
            charge_end_time4_command_id = row_point[23]
            discharge_start_time1_command_id = row_point[24]
            discharge_end_time1_command_id = row_point[25]
            discharge_start_time2_command_id = row_point[26]
            discharge_end_time2_command_id = row_point[27]
            discharge_start_time3_command_id = row_point[28]
            discharge_end_time3_command_id = row_point[29]
            discharge_start_time4_command_id = row_point[30]
            discharge_end_time4_command_id = row_point[31]

394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
        if charge_start_time1_point_id is None or \
            charge_end_time1_point_id is None or \
            charge_start_time2_point_id is None or \
            charge_end_time2_point_id is None or \
            charge_start_time3_point_id is None or \
            charge_end_time3_point_id is None or \
            charge_start_time4_point_id is None or \
            charge_end_time4_point_id is None or \
            discharge_start_time1_point_id is None or \
            discharge_end_time1_point_id is None or \
            discharge_start_time2_point_id is None or \
            discharge_end_time2_point_id is None or \
            discharge_start_time3_point_id is None or \
            discharge_end_time3_point_id is None or \
            discharge_start_time4_point_id is None or \
            discharge_end_time4_point_id is None or \
            charge_start_time1_command_id is None or \
            charge_end_time1_command_id is None or \
            charge_start_time2_command_id is None or \
            charge_end_time2_command_id is None or \
            charge_start_time3_command_id is None or \
            charge_end_time3_command_id is None or \
            charge_start_time4_command_id is None or \
            charge_end_time4_command_id is None or \
            discharge_start_time1_command_id is None or \
            discharge_end_time1_command_id is None or \
            discharge_start_time2_command_id is None or \
            discharge_end_time2_command_id is None or \
            discharge_start_time3_command_id is None or \
            discharge_end_time3_command_id is None or \
            discharge_start_time4_command_id is None or \
                discharge_end_time4_command_id is None:
            pass
        else:
            cnx_historical = mysql.connector.connect(**config.myems_historical_db)
            cursor_historical = cnx_historical.cursor()
            query = (" SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s "
                     " UNION ALL "
                     " SELECT point_id, actual_value "
                     " FROM tbl_digital_value_latest "
                     " WHERE point_id = %s ")
            cursor_historical.execute(query, (charge_start_time1_point_id, charge_end_time1_point_id,
                                              charge_start_time2_point_id, charge_end_time2_point_id,
                                              charge_start_time3_point_id, charge_end_time3_point_id,
                                              charge_start_time4_point_id, charge_end_time4_point_id,
                                              discharge_start_time1_point_id, discharge_end_time1_point_id,
                                              discharge_start_time2_point_id, discharge_end_time2_point_id,
                                              discharge_start_time3_point_id, discharge_end_time3_point_id,
                                              discharge_start_time4_point_id, discharge_end_time4_point_id))
            rows = cursor_historical.fetchall()
            time_value_dict = dict()
            if rows is not None and len(rows) > 0:
                for row in rows:
                    point_id = row[0]
                    time_value_dict[point_id] = int16_to_hhmm(row[1])
            charge_start_time1_value = time_value_dict.get(charge_start_time1_point_id)
            charge_end_time1_value = time_value_dict.get(charge_end_time1_point_id)
            charge_start_time2_value = time_value_dict.get(charge_start_time2_point_id)
            charge_end_time2_value = time_value_dict.get(charge_end_time2_point_id)
            charge_start_time3_value = time_value_dict.get(charge_start_time3_point_id)
            charge_end_time3_value = time_value_dict.get(charge_end_time3_point_id)
            charge_start_time4_value = time_value_dict.get(charge_start_time4_point_id)
            charge_end_time4_value = time_value_dict.get(charge_end_time4_point_id)
            discharge_start_time1_value = time_value_dict.get(discharge_start_time1_point_id)
            discharge_end_time1_value = time_value_dict.get(discharge_end_time1_point_id)
            discharge_start_time2_value = time_value_dict.get(discharge_start_time2_point_id)
            discharge_end_time2_value = time_value_dict.get(discharge_end_time2_point_id)
            discharge_start_time3_value = time_value_dict.get(discharge_start_time3_point_id)
            discharge_end_time3_value = time_value_dict.get(discharge_end_time3_point_id)
            discharge_start_time4_value = time_value_dict.get(discharge_start_time4_point_id)
            discharge_end_time4_value = time_value_dict.get(discharge_end_time4_point_id)
523 524

        ################################################################################################################
525
        # Step 8: query associated sensors
526 527 528 529 530 531
        ################################################################################################################
        # todo

        ################################################################################################################
        # Step 10: query associated points data in containers
        ################################################################################################################
532 533 534 535
        timezone_offset = int(config.utc_offset[1:3]) * 60 + int(config.utc_offset[4:6])
        if config.utc_offset[0] == '-':
            timezone_offset = -timezone_offset

536 537 538 539
        parameters_data = dict()
        parameters_data['names'] = list()
        parameters_data['timestamps'] = list()
        parameters_data['values'] = list()
540
        print('point_list:' + str(point_list))
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
        for point in point_list:
            point_values = []
            point_timestamps = []
            if point['object_type'] == 'ENERGY_VALUE':
                query = (" SELECT utc_date_time, actual_value "
                         " FROM tbl_energy_value "
                         " WHERE point_id = %s "
                         "       AND utc_date_time BETWEEN %s AND %s "
                         " ORDER BY utc_date_time ")
                cursor_historical.execute(query, (point['id'],
                                                  reporting_start_datetime_utc,
                                                  reporting_end_datetime_utc))
                rows = cursor_historical.fetchall()

                if rows is not None and len(rows) > 0:
                    for row in rows:
                        current_datetime_local = row[0].replace(tzinfo=timezone.utc) + \
                                                 timedelta(minutes=timezone_offset)
                        current_datetime = current_datetime_local.strftime('%Y-%m-%dT%H:%M:%S')
                        point_timestamps.append(current_datetime)
                        point_values.append(row[1])
            elif point['object_type'] == 'ANALOG_VALUE':
                query = (" SELECT utc_date_time, actual_value "
                         " FROM tbl_analog_value "
                         " WHERE point_id = %s "
                         "       AND utc_date_time BETWEEN %s AND %s "
                         " ORDER BY utc_date_time ")
                cursor_historical.execute(query, (point['id'],
                                                  reporting_start_datetime_utc,
                                                  reporting_end_datetime_utc))
                rows = cursor_historical.fetchall()

                if rows is not None and len(rows) > 0:
                    for row in rows:
                        current_datetime_local = row[0].replace(tzinfo=timezone.utc) + \
                                                 timedelta(minutes=timezone_offset)
                        current_datetime = current_datetime_local.strftime('%Y-%m-%dT%H:%M:%S')
                        point_timestamps.append(current_datetime)
                        point_values.append(row[1])
            elif point['object_type'] == 'DIGITAL_VALUE':
                query = (" SELECT utc_date_time, actual_value "
                         " FROM tbl_digital_value "
                         " WHERE point_id = %s "
                         "       AND utc_date_time BETWEEN %s AND %s "
                         " ORDER BY utc_date_time ")
                cursor_historical.execute(query, (point['id'],
                                                  reporting_start_datetime_utc,
                                                  reporting_end_datetime_utc))
                rows = cursor_historical.fetchall()

                if rows is not None and len(rows) > 0:
                    for row in rows:
                        current_datetime_local = row[0].replace(tzinfo=timezone.utc) + \
                                                 timedelta(minutes=timezone_offset)
                        current_datetime = current_datetime_local.strftime('%Y-%m-%dT%H:%M:%S')
                        point_timestamps.append(current_datetime)
                        point_values.append(row[1])

            parameters_data['names'].append(point['name'] + ' (' + point['units'] + ')')
            parameters_data['timestamps'].append(point_timestamps)
            parameters_data['values'].append(point_values)

603 604 605 606 607
        if cursor_system:
            cursor_system.close()
        if cnx_system:
            cnx_system.close()

608 609 610 611
        if cursor_historical:
            cursor_historical.close()
        if cnx_historical:
            cnx_historical.close()
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
        ################################################################################################################
        # Step 11: construct the report
        ################################################################################################################
        result = dict()
        result['energy_storage_power_station'] = meta_result
        result['parameters'] = {
            "names": parameters_data['names'],
            "timestamps": parameters_data['timestamps'],
            "values": parameters_data['values']
        }
        result['reporting_period'] = dict()
        result['reporting_period']['names'] = list()
        result['reporting_period']['units'] = list()
        result['reporting_period']['subtotals'] = list()
        result['reporting_period']['increment_rates'] = list()
        result['reporting_period']['timestamps'] = list()
        result['reporting_period']['values'] = list()

630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
        result['schedule'] = dict()
        result['schedule']['charge_start_time1'] = charge_start_time1_value
        result['schedule']['charge_end_time1'] = charge_end_time1_value
        result['schedule']['charge_start_time2'] = charge_start_time2_value
        result['schedule']['charge_end_time2'] = charge_end_time2_value
        result['schedule']['charge_start_time3'] = charge_start_time3_value
        result['schedule']['charge_end_time3'] = charge_end_time3_value
        result['schedule']['charge_start_time4'] = charge_start_time4_value
        result['schedule']['charge_end_time4'] = charge_end_time4_value
        result['schedule']['discharge_start_time1'] = discharge_start_time1_value
        result['schedule']['discharge_end_time1'] = discharge_end_time1_value
        result['schedule']['discharge_start_time2'] = discharge_start_time2_value
        result['schedule']['discharge_end_time2'] = discharge_end_time2_value
        result['schedule']['discharge_start_time3'] = discharge_start_time3_value
        result['schedule']['discharge_end_time3'] = discharge_end_time3_value
        result['schedule']['discharge_start_time4'] = discharge_start_time4_value
        result['schedule']['discharge_end_time4'] = discharge_end_time4_value
        result['schedule']['charge_start_time1_command_id'] = charge_start_time1_command_id
        result['schedule']['charge_end_time1_command_id'] = charge_end_time1_command_id
        result['schedule']['charge_start_time2_command_id'] = charge_start_time2_command_id
        result['schedule']['charge_end_time2_command_id'] = charge_end_time2_command_id
        result['schedule']['charge_start_time3_command_id'] = charge_start_time3_command_id
        result['schedule']['charge_end_time3_command_id'] = charge_end_time3_command_id
        result['schedule']['charge_start_time4_command_id'] = charge_start_time4_command_id
        result['schedule']['charge_end_time4_command_id'] = charge_end_time4_command_id
        result['schedule']['discharge_start_time1_command_id'] = discharge_start_time1_command_id
        result['schedule']['discharge_end_time1_command_id'] = discharge_end_time1_command_id
        result['schedule']['discharge_start_time2_command_id'] = discharge_start_time2_command_id
        result['schedule']['discharge_end_time2_command_id'] = discharge_end_time2_command_id
        result['schedule']['discharge_start_time3_command_id'] = discharge_start_time3_command_id
        result['schedule']['discharge_end_time3_command_id'] = discharge_end_time3_command_id
        result['schedule']['discharge_start_time4_command_id'] = discharge_start_time4_command_id
        result['schedule']['discharge_end_time4_command_id'] = discharge_end_time4_command_id
663

664
        resp.text = json.dumps(result)