Wordclock/tools/tcpFlash.py

156 lines
5.5 KiB
Python
Raw Permalink Normal View History

2019-02-22 21:35:19 +01:00
#!/usr/bin/python
import argparse
import socket
import os.path
import sys #for exit and flushing of stdout
import time
def sendRecv(s, message, answer):
msg = message + "\n"
s.sendall(msg)
reply = s.recv(4096)
i=1
while ((not (answer in reply)) and (i < 10)):
reply += s.recv(4096)
i = i + 1
if answer not in reply:
return False
else:
return True
def sendCmd(s, message, cleaningEnter=False):
msg = message + "\n"
s.sendall(msg)
time.sleep(0.050)
reply = s.recv(4096)
i=1
while ((not (">" in reply)) and (i < 10)):
time.sleep((0.050) * i)
reply += s.recv(4096)
i = i + 1
# print "Send\t" + message
# print "Got\t" + reply
if (cleaningEnter):
s.sendall("\n")
if "stdin:1:" in reply:
print "ERROR, received : " + reply
return False
elif ">" in reply:
return True
else:
print "ERROR, received : " + reply
return False
2021-03-21 20:38:03 +01:00
def main(nodeip, luafile, volatile=None, outfile=None):
2019-02-22 21:35:19 +01:00
if ( not os.path.isfile(luafile) ):
print "The file " + luafile + " is not available"
else:
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
2020-03-04 21:01:30 +01:00
s.connect((nodeip, 23))
2019-02-22 21:35:19 +01:00
time.sleep(0.050)
s.sendall("\n")
# Receive the hello Message of answer of the ESP
if (not sendRecv(s, "\n", "Welcome to ") ):
print "Cannot connect to the ESP"
s.close()
sys.exit(2)
# Read all lines from the welcome message
i=0
reply = s.recv(4096)
while ((reply is not None) and (not (">" in reply)) and (i < 100)):
reply = s.recv(4096)
i = i + 1
# Communication tests
if ( not sendRecv(s, "print(12345)", "12345") ):
print "NOT communicating with an ESP8266 running LUA (nodemcu) firmware"
s.close()
sys.exit(3)
2021-03-21 20:38:03 +01:00
2019-02-22 21:35:19 +01:00
if (volatile is None):
2021-03-21 20:38:03 +01:00
if (outfile is None):
print "Flashing " + luafile
outfile=luafile
else:
print "Flashing " + luafile + " as " + outfile
2019-02-22 21:35:19 +01:00
sendCmd(s, "w= file.writeline", True)
sendCmd(s, "file.open(\"temp.lua\",\"w+\");", True)
2019-02-22 21:35:19 +01:00
else:
print "Executing " + luafile + " on nodemcu"
with open(luafile) as f:
contents = f.readlines()
i=1
for line in contents:
print "\rSending " + str(i) + "/" + str(len(contents)) + " ...",
sys.stdout.flush()
l = line.rstrip()
2019-04-18 16:41:04 +02:00
if ( l.endswith("]") ):
l = l + " "
print "add a space at the end"
2019-02-22 21:35:19 +01:00
if (volatile is None):
2020-03-04 22:24:13 +01:00
if (not sendCmd(s, "w([==[" + l + "]==]);")):
2019-02-22 21:35:19 +01:00
print "Cannot write line " + str(i)
s.close()
sys.exit(4)
else:
if (not sendCmd(s, l)):
print "Cannot write line " + str(i)
s.close()
sys.exit(4)
i=i+1
if (volatile is None):
# Finished with updating the file in LUA
if (not sendCmd(s, "w([[" + "--EOF" + "]]);")):
print "Cannot write line " + "-- EOF"
if (not sendCmd(s, "file.close();")):
print "Cannot close the file"
sys.exit(4)
sendCmd(s, "file.remove(\"" + outfile +"\");", True)
if (not sendCmd(s, "file.rename(\"temp.lua\",\""+ outfile + "\")")):
print "Cannot move temporary file to " + outfile
2019-02-22 21:35:19 +01:00
# Check if the file exists:
2021-03-21 20:38:03 +01:00
if (not sendRecv(s, "=file.exists(\"" + outfile + "\")", "true")):
print("Cannot send " + outfile + " to the ESP")
2019-02-22 21:35:19 +01:00
sys.exit(4)
else:
2021-03-21 20:38:03 +01:00
print("Updated " + outfile + " successfully")
2019-02-22 21:35:19 +01:00
else:
print("Send " + luafile + " successfully")
# Cleaning the socket by closing it
s.close()
sys.exit(0) # Report that the flashing was succesfull
except socket.error, msg:
print 'Failed to create socket. Error code: ' + str(msg[0]) + ' , Error message : ' + msg[1]
sys.exit(1)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-t', '--target', help='IP address or dns of the ESP to flash')
parser.add_argument('-f', '--file', help='LUA file, that should be updated')
2021-03-21 20:38:03 +01:00
parser.add_argument('-o', '--outfile', help='LUA file name on the microcontroller (default: same name as on host)')
2019-02-22 21:35:19 +01:00
parser.add_argument('-v', '--volatile', help='File is executed at the commandline', action='store_const', const=1)
args = parser.parse_args()
2021-03-21 20:38:03 +01:00
if (args.target and args.file and args.volatile and args.outfile):
main(args.target, args.file, args.volatile, args.outfile)
elif (args.target and args.file and args.outfile):
main(args.target, args.file, None, args.outfile)
elif (args.target and args.file and args.volatile):
main(args.target, args.file, args.volatile)
2019-02-22 21:35:19 +01:00
elif (args.target and args.file):
main(args.target, args.file)
else:
parser.print_help()