ESP32-PaxCounter/build.py

154 lines
5.2 KiB
Python
Raw Normal View History

2018-09-18 17:23:56 +02:00
# build.py
2019-06-30 17:48:24 +02:00
# pre-build script, setting up build environment and fetch hal file for user's board
2018-09-18 17:23:56 +02:00
2018-09-19 14:20:52 +02:00
import sys
import os
import os.path
2018-09-18 17:23:56 +02:00
import requests
from os.path import basename
from platformio import util
2019-09-18 16:27:09 +02:00
from SCons.Script import DefaultEnvironment
2018-09-18 17:23:56 +02:00
try:
import configparser
except ImportError:
import ConfigParser as configparser
2018-09-19 14:20:52 +02:00
# get platformio environment variables
2019-09-18 16:27:09 +02:00
env = DefaultEnvironment()
config = configparser.ConfigParser()
config.read("platformio.ini")
2018-09-19 14:20:52 +02:00
# get platformio source path
2019-05-30 10:53:46 +02:00
srcdir = env.get("PROJECTSRC_DIR")
2019-06-29 15:03:55 +02:00
# get hal path
haldir = os.path.join (srcdir, "hal")
# check if hal file is present in source directory
halconfig = config.get("board", "halfile")
halconfigfile = os.path.join (haldir, halconfig)
if os.path.isfile(halconfigfile) and os.access(halconfigfile, os.R_OK):
print("Parsing hardware configuration from " + halconfigfile)
2019-06-29 15:03:55 +02:00
else:
sys.exit("Missing file " + halconfigfile + ", please create it! Aborting.")
# check if lmic config file is present in source directory
lmicconfig = config.get("common", "lmicconfigfile")
lmicconfigfile = os.path.join (srcdir, lmicconfig)
if os.path.isfile(lmicconfigfile) and os.access(lmicconfigfile, os.R_OK):
print("Parsing LMIC configuration from " + lmicconfigfile)
else:
sys.exit("Missing file " + lmicconfigfile + ", please create it! Aborting.")
# check if lora key file is present in source directory
lorakeyfile = os.path.join (srcdir, config.get("common", "lorakeyfile"))
if os.path.isfile(lorakeyfile) and os.access(lorakeyfile, os.R_OK):
print("Parsing LORAWAN keys from " + lorakeyfile)
2018-09-19 14:20:52 +02:00
else:
sys.exit("Missing file " + lorakeyfile + ", please create it! Aborting.")
2018-09-19 14:20:52 +02:00
# check if ota key file is present in source directory
otakeyfile = os.path.join (srcdir, config.get("common", "otakeyfile"))
if os.path.isfile(otakeyfile) and os.access(otakeyfile, os.R_OK):
print("Parsing OTA keys from " + otakeyfile)
2018-09-19 14:20:52 +02:00
else:
sys.exit("Missing file " + otakeyfile + ", please create it! Aborting.")
2018-09-19 14:20:52 +02:00
2019-06-30 17:48:24 +02:00
# parse hal file
2018-09-18 17:23:56 +02:00
mykeys = {}
2019-06-30 17:48:24 +02:00
with open(halconfigfile) as myfile:
for line in myfile:
line2 = line.strip("// ")
key, value = line2.partition(" ")[::2]
mykeys[key.strip()] = str(value).strip()
myboard = mykeys["board"]
myuploadspeed = mykeys["upload_speed"]
env.Replace(BOARD=myboard)
env.Replace(UPLOAD_SPEED=myuploadspeed)
2020-05-09 22:49:00 +02:00
print('\033[94m' + "Target board: " + myboard + " @ " + myuploadspeed + "bps" + '\033[0m')
2019-09-18 16:27:09 +02:00
# re-set partition table
mypartitiontable = config.get("env", "board_build.partitions")
board = env.BoardConfig(myboard)
board.manifest['build']['partitions'] = mypartitiontable
print('\033[94m' + "Partition table: " + mypartitiontable + '\033[0m')
2019-06-30 17:48:24 +02:00
2020-05-09 22:49:00 +02:00
# set display library
if "display_library" in mykeys:
mydisplay = mykeys["display_library"]
env.Append(display_library=mydisplay)
print('\033[94m' + "Display library: " + mydisplay + '\033[0m')
2019-06-30 17:48:24 +02:00
# parse ota key file
with open(otakeyfile) as myfile:
2018-09-18 17:23:56 +02:00
for line in myfile:
key, value = line.partition("=")[::2]
mykeys[key.strip()] = str(value).strip()
2020-08-16 13:46:37 +02:00
# usage of bintray: see https://github.com/r0oland/bintray-secure-ota
# get bintray user credentials from ota key file
2018-09-18 17:23:56 +02:00
user = mykeys["BINTRAY_USER"]
repository = mykeys["BINTRAY_REPO"]
apitoken = mykeys["BINTRAY_API_TOKEN"]
# get bintray upload parameters from platformio environment
version = config.get("common", "release_version")
2019-06-29 15:03:55 +02:00
package, dummy = halconfig.partition(".")[::2]
2018-09-18 17:23:56 +02:00
2018-09-19 14:20:52 +02:00
# put bintray user credentials to platformio environment
2018-09-18 17:23:56 +02:00
env.Replace(BINTRAY_USER=user)
env.Replace(BINTRAY_REPO=repository)
env.Replace(BINTRAY_API_TOKEN=apitoken)
2018-09-19 14:20:52 +02:00
# get runtime credentials and put them to compiler directive
env.Append(BUILD_FLAGS=[
u'-DWIFI_SSID=\\"' + mykeys["OTA_WIFI_SSID"] + '\\"',
u'-DWIFI_PASS=\\"' + mykeys["OTA_WIFI_PASS"] + '\\"',
u'-DBINTRAY_USER=\\"' + mykeys["BINTRAY_USER"] + '\\"',
u'-DBINTRAY_REPO=\\"' + mykeys["BINTRAY_REPO"] + '\\"',
2019-06-29 15:03:55 +02:00
u'-DBINTRAY_PACKAGE=\\"' + package + '\\"',
u'-DARDUINO_LMIC_PROJECT_CONFIG_H=' + lmicconfig,
u'-I \"' + srcdir + '\"'
2018-09-18 17:23:56 +02:00
])
# function for pushing new firmware to bintray storage using API
def publish_bintray(source, target, env):
firmware_path = str(source[0])
firmware_name = basename(firmware_path)
url = "/".join([
"https://api.bintray.com", "content",
user, repository, package, version, firmware_name
])
print("Uploading {0} to Bintray. Version: {1}".format(
firmware_name, version))
print(url)
headers = {
"Content-type": "application/octet-stream",
"X-Bintray-Publish": "1",
"X-Bintray-Override": "1"
}
2019-05-30 11:14:23 +02:00
r = None
try:
r = requests.put(url,
data=open(firmware_path, "rb"),
headers=headers,
auth=(user,apitoken))
r.raise_for_status()
except requests.exceptions.RequestException as e:
sys.stderr.write("Failed to submit package: %s\n" %
("%s\n%s" % (r.status_code, r.text) if r else str(e)))
env.Exit(1)
print("The firmware has been successfuly published at Bintray.com!")
2018-09-18 17:23:56 +02:00
# put build file name and upload command to platformio environment
env.Replace(
PROGNAME="firmware_" + package + "_v%s" % version,
UPLOADCMD=publish_bintray)