forked from platformio/platformio-core
		
	
		
			
				
	
	
		
			158 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			158 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Copyright (C) Ivan Kravets <me@ikravets.com>
 | 
						|
# See LICENSE for details.
 | 
						|
 | 
						|
import json
 | 
						|
from os import name as os_name
 | 
						|
from os import getcwd, getenv, listdir, makedirs, utime
 | 
						|
from os.path import abspath, dirname, expanduser, isdir, isfile, join, realpath
 | 
						|
from platform import system, uname
 | 
						|
from subprocess import PIPE, Popen
 | 
						|
 | 
						|
import requests
 | 
						|
 | 
						|
from platformio import __apiurl__, __version__
 | 
						|
from platformio.exception import (APIRequestError, GetSerialPortsError,
 | 
						|
                                  NotPlatformProject)
 | 
						|
 | 
						|
try:
 | 
						|
    from configparser import ConfigParser
 | 
						|
except ImportError:
 | 
						|
    from ConfigParser import ConfigParser
 | 
						|
 | 
						|
 | 
						|
def get_systype():
 | 
						|
    data = uname()
 | 
						|
    return ("%s_%s" % (data[0], data[4])).lower()
 | 
						|
 | 
						|
 | 
						|
def get_home_dir():
 | 
						|
    home_dir = None
 | 
						|
 | 
						|
    try:
 | 
						|
        config = get_project_config()
 | 
						|
        if (config.has_section("platformio") and
 | 
						|
                config.has_option("platformio", "home_dir")):
 | 
						|
            home_dir = config.get("platformio", "home_dir")
 | 
						|
    except NotPlatformProject:
 | 
						|
        pass
 | 
						|
 | 
						|
    if not home_dir:
 | 
						|
        home_dir = join(expanduser("~"), ".platformio")
 | 
						|
 | 
						|
    if not isdir(home_dir):
 | 
						|
        makedirs(home_dir)
 | 
						|
 | 
						|
    assert isdir(home_dir)
 | 
						|
    return home_dir
 | 
						|
 | 
						|
 | 
						|
def get_lib_dir():
 | 
						|
    try:
 | 
						|
        config = get_project_config()
 | 
						|
        if (config.has_section("platformio") and
 | 
						|
                config.has_option("platformio", "lib_dir")):
 | 
						|
            lib_dir = config.get("platformio", "lib_dir")
 | 
						|
            if lib_dir.startswith("~"):
 | 
						|
                lib_dir = expanduser(lib_dir)
 | 
						|
            return abspath(lib_dir)
 | 
						|
    except NotPlatformProject:
 | 
						|
        pass
 | 
						|
    return join(get_home_dir(), "lib")
 | 
						|
 | 
						|
 | 
						|
def get_source_dir():
 | 
						|
    return dirname(realpath(__file__))
 | 
						|
 | 
						|
 | 
						|
def get_project_dir():
 | 
						|
    return getcwd()
 | 
						|
 | 
						|
 | 
						|
def get_pioenvs_dir():
 | 
						|
    return getenv("PIOENVS_DIR", join(get_project_dir(), ".pioenvs"))
 | 
						|
 | 
						|
 | 
						|
def get_project_config():
 | 
						|
    path = join(get_project_dir(), "platformio.ini")
 | 
						|
    if not isfile(path):
 | 
						|
        raise NotPlatformProject(get_project_dir())
 | 
						|
    cp = ConfigParser()
 | 
						|
    cp.read(path)
 | 
						|
    return cp
 | 
						|
 | 
						|
 | 
						|
def change_filemtime(path, time):
 | 
						|
    utime(path, (time, time))
 | 
						|
 | 
						|
 | 
						|
def exec_command(*args, **kwargs):
 | 
						|
    kwargs['stdout'] = PIPE
 | 
						|
    kwargs['stderr'] = PIPE
 | 
						|
    kwargs['shell'] = system() == "Windows"
 | 
						|
 | 
						|
    p = Popen(*args, **kwargs)
 | 
						|
    out, err = p.communicate()
 | 
						|
    return dict(out=out.strip(), err=err.strip())
 | 
						|
 | 
						|
 | 
						|
def get_serialports():
 | 
						|
    if os_name == "nt":
 | 
						|
        from serial.tools.list_ports_windows import comports
 | 
						|
    elif os_name == "posix":
 | 
						|
        from serial.tools.list_ports_posix import comports
 | 
						|
    else:
 | 
						|
        raise GetSerialPortsError(os_name)
 | 
						|
    return[{"port": p, "description": d, "hwid": h} for p, d, h in comports()]
 | 
						|
 | 
						|
 | 
						|
def get_api_result(path, params=None, data=None):
 | 
						|
    result = None
 | 
						|
    r = None
 | 
						|
 | 
						|
    try:
 | 
						|
        requests.packages.urllib3.disable_warnings()
 | 
						|
        headers = {"User-Agent": "PlatformIO/%s %s" % (
 | 
						|
            __version__, requests.utils.default_user_agent())}
 | 
						|
        # if packages - redirect to SF
 | 
						|
        if path == "/packages":
 | 
						|
            r = requests.get(
 | 
						|
                "http://sourceforge.net/projects/platformio-storage/files/"
 | 
						|
                "packages/manifest.json", params=params, headers=headers)
 | 
						|
        elif data:
 | 
						|
            r = requests.post(__apiurl__ + path, params=params, data=data,
 | 
						|
                              headers=headers)
 | 
						|
        else:
 | 
						|
            r = requests.get(__apiurl__ + path, params=params, headers=headers)
 | 
						|
        result = r.json()
 | 
						|
        r.raise_for_status()
 | 
						|
    except requests.exceptions.HTTPError as e:
 | 
						|
        if result and "errors" in result:
 | 
						|
            raise APIRequestError(result['errors'][0]['title'])
 | 
						|
        else:
 | 
						|
            raise APIRequestError(e)
 | 
						|
    except requests.exceptions.ConnectionError:
 | 
						|
        raise APIRequestError(
 | 
						|
            "Could not connect to PlatformIO Registry Service")
 | 
						|
    except ValueError:
 | 
						|
        raise APIRequestError("Invalid response: %s" % r.text)
 | 
						|
    finally:
 | 
						|
        if r:
 | 
						|
            r.close()
 | 
						|
    return result
 | 
						|
 | 
						|
 | 
						|
def get_boards(type_=None):
 | 
						|
    boards = {}
 | 
						|
    bdirs = [join(get_source_dir(), "boards")]
 | 
						|
    if isdir(join(get_home_dir(), "boards")):
 | 
						|
        bdirs.append(join(get_home_dir(), "boards"))
 | 
						|
 | 
						|
    for bdir in bdirs:
 | 
						|
        for json_file in listdir(bdir):
 | 
						|
            if not json_file.endswith(".json"):
 | 
						|
                continue
 | 
						|
            with open(join(bdir, json_file)) as f:
 | 
						|
                boards.update(json.load(f))
 | 
						|
 | 
						|
    return boards[type_] if type_ is not None else boards
 |