2021-02-28 19:50:37 +00:00
|
|
|
/*
|
|
|
|
xdrv_52_3_berry_embedded.ino - Berry scripting language, embedded code
|
|
|
|
|
|
|
|
Copyright (C) 2021 Stephan Hadinger, Berry language by Guan Wenliang https://github.com/Skiars/berry
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef USE_BERRY
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Handlers for Berry calls and async
|
|
|
|
*
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
|
|
|
const char berry_prog[] =
|
|
|
|
""
|
|
|
|
//"def func(x) for i:1..x print('a') end end "
|
|
|
|
//"def testreal() return str(1.2+1) end "
|
|
|
|
//"def noop() log('noop before'); yield(); log('middle after'); yield(); log('noop after'); end "
|
|
|
|
//"log(\"foobar\") "
|
|
|
|
|
2021-03-13 21:42:24 +00:00
|
|
|
// create a 'ntv' module to allow functions to be registered in a safe namespace
|
|
|
|
"ntv = module('ntv') "
|
|
|
|
|
2021-02-28 19:50:37 +00:00
|
|
|
// auto-import modules
|
|
|
|
// // import alias
|
2021-03-13 21:42:24 +00:00
|
|
|
"import energy "
|
2021-02-28 19:50:37 +00:00
|
|
|
|
|
|
|
// Phase 1
|
2021-03-13 21:42:24 +00:00
|
|
|
"class Tasmota: Tasmota_ntv "
|
|
|
|
// for now the variables are built, need to find a way to push in Flash
|
2021-02-28 19:50:37 +00:00
|
|
|
"def init() "
|
2021-03-13 21:42:24 +00:00
|
|
|
"self._op = ['==', '!==', '=', '!=', '>=', '<=', '>', '<'] "
|
|
|
|
"self._opf = [ "
|
|
|
|
"/s1,s2-> str(s1) == str(s2),"
|
|
|
|
"/s1,s2-> str(s1) != str(s2),"
|
|
|
|
"/f1,f2-> real(f1) == real(f2),"
|
|
|
|
"/f1,f2-> real(f1) != real(f2),"
|
|
|
|
"/f1,f2-> real(f1) >= real(f2),"
|
|
|
|
"/f1,f2-> real(f1) <= real(f2),"
|
|
|
|
"/f1,f2-> real(f1) > real(f2),"
|
|
|
|
"/f1,f2-> real(f1) < real(f2),"
|
2021-02-28 19:50:37 +00:00
|
|
|
"] "
|
2021-03-13 21:42:24 +00:00
|
|
|
"self._operators = \"=<>!|\" "
|
2021-02-28 19:50:37 +00:00
|
|
|
"self._rules = {} "
|
|
|
|
"self._timers = [] "
|
|
|
|
"self._cmd = {} "
|
|
|
|
"end "
|
|
|
|
// add `charsinstring(s:string,c:string) -> int``
|
|
|
|
// looks for any char in c, and return the position of the first chat
|
|
|
|
// or -1 if not found
|
|
|
|
"def charsinstring(s,c) "
|
|
|
|
"for i:0..size(s)-1 "
|
|
|
|
"for j:0..size(c)-1 "
|
|
|
|
"if s[i] == c[j] return i end "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"return -1 "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// find a key in map, case insensitive, return actual key or nil if not found
|
|
|
|
"def findkeyi(m,keyi) "
|
|
|
|
"import string "
|
|
|
|
"var keyu = string.toupper(keyi) "
|
|
|
|
"if classof(m) == map "
|
|
|
|
"for k:m.keys() "
|
|
|
|
"if string.toupper(k)==keyu || keyi=='?' "
|
|
|
|
"return k "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// Rules
|
|
|
|
"def addrule(pat,f) self._rules[pat] = f end "
|
|
|
|
|
|
|
|
// # split the item when there is an operator, returns a list of (left,op,right)
|
|
|
|
// # ex: "Dimmer>50" -> ["Dimmer",tasmota_gt,"50"]
|
|
|
|
"def find_op(item) "
|
|
|
|
"import string "
|
|
|
|
"var pos = self.charsinstring(item, self._operators) "
|
|
|
|
"if pos>=0 "
|
|
|
|
"var op_split = string.split(item,pos) "
|
|
|
|
// #print(op_split)
|
|
|
|
"var op_left = op_split[0] "
|
|
|
|
"var op_rest = op_split[1] "
|
|
|
|
// # iterate through operators
|
2021-03-13 21:42:24 +00:00
|
|
|
"for i: 0..size(self._op)-1 "
|
|
|
|
"var op = self._op[i] "
|
|
|
|
"if string.find(op_rest,op) == 0 "
|
|
|
|
"var op_func = self._opf[i] "
|
|
|
|
"var op_right = string.split(op_rest,size(op))[1] "
|
2021-02-28 19:50:37 +00:00
|
|
|
"return [op_left,op_func,op_right] "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"return [item, nil, nil] "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// Rules trigger if match. return true if match, false if not
|
|
|
|
"def try_rule(ev, rule, f) "
|
|
|
|
"import string "
|
|
|
|
"var rl_list = self.find_op(rule) "
|
|
|
|
"var e=ev "
|
|
|
|
"var rl=string.split(rl_list[0],'#') "
|
|
|
|
"for it:rl "
|
|
|
|
"found=self.findkeyi(e,it) "
|
|
|
|
"if found == nil "
|
|
|
|
"return false "
|
|
|
|
"end "
|
|
|
|
"e=e[found] "
|
|
|
|
"end "
|
|
|
|
// # check if condition is true
|
|
|
|
"if rl_list[1] "
|
|
|
|
// # did we find a function
|
|
|
|
"if !rl_list[1](e,rl_list[2]) "
|
|
|
|
// # condition is not met
|
|
|
|
"return false "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"f(e,ev) "
|
|
|
|
"return true "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// Run rules, i.e. check each individual rule
|
|
|
|
// Returns true if at least one rule matched, false if none
|
|
|
|
"def exec_rules(ev_json) "
|
|
|
|
"import json "
|
|
|
|
"var ev = json.load(ev_json) "
|
|
|
|
"var ret = false "
|
|
|
|
"if ev == nil "
|
|
|
|
"print('BRY: ERROR, bad json: '+ev_json, 3) "
|
|
|
|
"else "
|
|
|
|
"for r: self._rules.keys() "
|
|
|
|
"ret = self.try_rule(ev,r,self._rules[r]) || ret "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"return ret "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
"def settimer(delay,f) self._timers.push([self.millis(delay),f]) end "
|
|
|
|
|
|
|
|
"def run_deferred() "
|
|
|
|
"var i=0 "
|
|
|
|
"while i<self._timers.size() "
|
|
|
|
"if self.timereached(self._timers[i][0]) "
|
|
|
|
"f=self._timers[i][1] "
|
|
|
|
"self._timers.remove(i) "
|
|
|
|
"f() "
|
|
|
|
"else "
|
|
|
|
"i=i+1 "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// Delay function, internally calls yield() every 10ms to avoid WDT
|
|
|
|
"def delay(ms) "
|
|
|
|
"var tend = self.millis(ms) "
|
|
|
|
"while !self.timereached(tend) "
|
|
|
|
"self.yield() "
|
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// Add command to list
|
|
|
|
"def addcommand(c,f) "
|
|
|
|
"self._cmd[c]=f "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
"def exec_cmd(cmd, idx, payload) "
|
|
|
|
"import json "
|
|
|
|
"var payload_json = json.load(payload) "
|
|
|
|
"var cmd_found = self.findkeyi(self._cmd, cmd) "
|
|
|
|
"if cmd_found != nil "
|
2021-03-03 07:34:38 +00:00
|
|
|
"self.resolvecmnd(cmd_found) " // set the command name in XdrvMailbox.command
|
|
|
|
"self._cmd[cmd_found](cmd_found, idx, payload, payload_json) "
|
|
|
|
"return true "
|
2021-02-28 19:50:37 +00:00
|
|
|
"end "
|
2021-03-03 07:34:38 +00:00
|
|
|
"return false "
|
2021-02-28 19:50:37 +00:00
|
|
|
"end "
|
|
|
|
|
|
|
|
// Force gc and return allocated memory
|
|
|
|
"def gc() "
|
|
|
|
"import gc "
|
|
|
|
"gc.collect() "
|
|
|
|
"return gc.allocated() "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// Instantiate tasmota object
|
|
|
|
"tasmota = Tasmota() "
|
2021-03-13 21:42:24 +00:00
|
|
|
"wire = Wire(0) "
|
|
|
|
"wire1 = Wire(1) "
|
2021-02-28 19:50:37 +00:00
|
|
|
|
|
|
|
// Not sure how to run call methods from C
|
|
|
|
"def _exec_rules(e) return tasmota.exec_rules(e) end "
|
|
|
|
"def _run_deferred() return tasmota.run_deferred() end "
|
|
|
|
"def _exec_cmd(cmd, idx, payload) return tasmota.exec_cmd(cmd, idx, payload) end "
|
|
|
|
"def _gc() return tasmota.gc() end "
|
|
|
|
|
|
|
|
// simple wrapper to load a file
|
|
|
|
// prefixes '/' if needed, and simpler to use than `compile()`
|
|
|
|
"def load(f) "
|
|
|
|
"import string "
|
|
|
|
"try "
|
|
|
|
// check that the file ends with '.be' of '.bec'
|
|
|
|
"var fl = string.split(f,'.') "
|
|
|
|
"if (size(fl) <= 1 || (fl[-1] != 'be' && fl[-1] != 'bec')) "
|
|
|
|
"raise \"file extension is not '.be' or '.bec'\" "
|
|
|
|
"end "
|
|
|
|
"var native = f[size(f)-1] == 'c' "
|
|
|
|
// add prefix if needed
|
|
|
|
"if f[0] != '/' f = '/' + f end "
|
|
|
|
// load - works the same for .be and .bec
|
|
|
|
"var c = compile(f,'file') "
|
|
|
|
// save the compiled bytecode
|
|
|
|
"if !native "
|
2021-03-13 21:42:24 +00:00
|
|
|
"try "
|
|
|
|
"save(f+'c', c) "
|
|
|
|
"except .. as e "
|
|
|
|
"log(string.format('BRY: could not save compiled file %s (%s)',f+'c',e)) "
|
|
|
|
"end "
|
2021-02-28 19:50:37 +00:00
|
|
|
"end "
|
|
|
|
// call the compiled code
|
|
|
|
"c() "
|
2021-03-13 21:42:24 +00:00
|
|
|
"log(string.format(\"BRY: sucessfully loaded '%s'\",f)) "
|
2021-02-28 19:50:37 +00:00
|
|
|
"except .. as e "
|
2021-03-13 21:42:24 +00:00
|
|
|
"raise \"io_error\",string.format(\"Could not load file '%s'\",f) "
|
2021-02-28 19:50:37 +00:00
|
|
|
"end "
|
|
|
|
"end "
|
|
|
|
|
|
|
|
// try to load "/autoexec.be"
|
|
|
|
// "try compile('/autoexec.be','file')() except .. log('BRY: no /autoexec.bat file') end "
|
|
|
|
;
|
|
|
|
|
2021-03-13 21:42:24 +00:00
|
|
|
const char berry_autoexec[] =
|
|
|
|
// load "autoexec.be" using import, which loads either .be or .bec file
|
|
|
|
"try "
|
|
|
|
"load('autoexec.be') "
|
|
|
|
"except .. "
|
|
|
|
"log(\"BRY: No 'autoexec.be' file\") "
|
|
|
|
"end "
|
|
|
|
;
|
2021-02-28 19:50:37 +00:00
|
|
|
#endif // USE_BERRY
|