2015-04-24 14:43:13 +01:00
|
|
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
|
|
# See LICENSE for details.
|
|
|
|
|
|
|
|
from glob import glob
|
2015-05-07 17:21:44 +03:00
|
|
|
from os import listdir, walk
|
2015-04-24 14:43:13 +01:00
|
|
|
from os.path import basename, isdir, join
|
|
|
|
|
|
|
|
import bottle
|
|
|
|
|
|
|
|
from platformio import util
|
|
|
|
|
|
|
|
|
|
|
|
class ProjectGenerator(object):
|
|
|
|
|
|
|
|
def __init__(self, project_dir, ide):
|
|
|
|
self.project_dir = project_dir
|
|
|
|
self.ide = ide
|
2015-05-06 11:17:38 +01:00
|
|
|
self._tplvars = {}
|
|
|
|
|
|
|
|
self._gather_tplvars()
|
2015-04-24 14:43:13 +01:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_supported_ides():
|
|
|
|
tpls_dir = join(util.get_source_dir(), "ide", "tpls")
|
|
|
|
return [d for d in listdir(tpls_dir)
|
|
|
|
if isdir(join(tpls_dir, d))]
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_project_env():
|
|
|
|
data = {}
|
|
|
|
config = util.get_project_config()
|
|
|
|
for section in config.sections():
|
|
|
|
if not section.startswith("env:"):
|
|
|
|
continue
|
2015-05-07 17:21:44 +03:00
|
|
|
data['env_name'] = section[4:]
|
2015-04-24 14:43:13 +01:00
|
|
|
for k, v in config.items(section):
|
|
|
|
data[k] = v
|
|
|
|
return data
|
|
|
|
|
|
|
|
def get_project_name(self):
|
|
|
|
return basename(self.project_dir)
|
|
|
|
|
2015-05-07 18:40:53 +01:00
|
|
|
@staticmethod
|
|
|
|
def get_includes():
|
2015-04-24 16:34:14 +01:00
|
|
|
return []
|
|
|
|
|
2015-05-07 18:40:53 +01:00
|
|
|
@staticmethod
|
|
|
|
def get_srcfiles():
|
2015-05-07 17:21:44 +03:00
|
|
|
result = []
|
|
|
|
for root, _, files in walk(util.get_projectsrc_dir()):
|
|
|
|
for f in files:
|
|
|
|
result.append(join(root, f))
|
|
|
|
return result
|
|
|
|
|
2015-05-07 18:40:53 +01:00
|
|
|
@staticmethod
|
|
|
|
def get_defines():
|
2015-04-24 16:34:14 +01:00
|
|
|
return []
|
|
|
|
|
2015-04-24 14:43:13 +01:00
|
|
|
def get_tpls(self):
|
|
|
|
tpls_dir = join(util.get_source_dir(), "ide", "tpls", self.ide)
|
|
|
|
return glob(join(tpls_dir, ".*.tpl")) + glob(join(tpls_dir, "*.tpl"))
|
|
|
|
|
|
|
|
def generate(self):
|
|
|
|
for tpl_path in self.get_tpls():
|
|
|
|
file_name = basename(tpl_path)[:-4]
|
|
|
|
with open(join(self.project_dir, file_name), "w") as f:
|
2015-04-24 17:17:24 +01:00
|
|
|
f.write(self._render_tpl(tpl_path).encode("utf8"))
|
2015-04-24 14:43:13 +01:00
|
|
|
|
|
|
|
def _render_tpl(self, tpl_path):
|
|
|
|
content = ""
|
|
|
|
with open(tpl_path) as f:
|
|
|
|
content = f.read()
|
|
|
|
return bottle.template(content, **self._tplvars)
|
|
|
|
|
|
|
|
def _gather_tplvars(self):
|
2015-05-06 11:17:38 +01:00
|
|
|
self._tplvars.update(self.get_project_env())
|
2015-04-24 14:43:13 +01:00
|
|
|
|
2015-05-06 11:17:38 +01:00
|
|
|
self._tplvars.update({
|
2015-04-24 16:34:14 +01:00
|
|
|
"project_name": self.get_project_name(),
|
|
|
|
"includes": self.get_includes(),
|
2015-05-07 17:21:44 +03:00
|
|
|
"srcfiles": self.get_srcfiles(),
|
|
|
|
"defines": self.get_defines(),
|
|
|
|
"project_dir": self.project_dir
|
2015-04-24 14:43:13 +01:00
|
|
|
})
|