ArtNetProcessor.py 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233
  1. #! /usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #from __future__ import absolute_import, division, print_function
  4. #from builtins import str, open, range, dict
  5. #from builtins import *
  6. """
  7. This file is part of librelight.
  8. librelight is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, version 2 of the License.
  11. librelight is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with librelight. If not, see <http://www.gnu.org/licenses/>.
  17. (c) 2012 micha@uxsrv.de
  18. """
  19. import sys
  20. if sys.version_info.major <= 2:
  21. print("exit Python3 is needet")
  22. sys.exit()
  23. fn ="xx"
  24. sys.stdout.write("\x1b]2;"+str(fn)+"\x07") # terminal title
  25. if "__file__" in dir():
  26. fn = __file__
  27. if "/" in fn:
  28. fn = fn.split("/")[-1]
  29. sys.stdout.write("\x1b]2;"+str(fn)+" Beta 22.01"+"\x07") # terminal title
  30. else:
  31. sys.stdout.write("\x1b]2;"+str("__file__")+"\x07") # terminal title
  32. import string
  33. import time
  34. import os
  35. import json
  36. from optparse import OptionParser
  37. parser = OptionParser()
  38. parser.add_option("-r", "--recive", dest="recive",
  39. help="set recive ip like --recive 10.")
  40. parser.add_option("-s", "--sendto", dest="sendto",
  41. help="set sender ip like --sendto 2.255.255.255")
  42. parser.add_option("-t", "--test", dest="testuniv",
  43. help="set test univers like --test [0-16]")
  44. parser.add_option("", "--inmap", dest="inmap",
  45. help="set test univers like --test [0-16]")
  46. #parser.add_option("-q", "--quiet",
  47. # action="store_false", dest="verbose", default=True,
  48. # help="don't print status messages to stdout")
  49. (options, args) = parser.parse_args()
  50. print("option",options)
  51. print(options.sendto)
  52. cython = 0
  53. if cython:
  54. if " arm" in os.popen("uname -a").read():
  55. import cy.ArtNetProcessor_cy_pi as cy
  56. else:
  57. import cy.ArtNetProcessor_cy as cy
  58. from collections import OrderedDict
  59. from datetime import datetime
  60. #print(dir())
  61. #input()
  62. # ============================================================
  63. # memcach =========================================
  64. # ============================================================
  65. mc = None
  66. try:
  67. import memcache
  68. mc = memcache.Client(['127.0.0.1:11211'], debug=0)
  69. mc.set("dmx-1", [1]*512)
  70. except Exception as e:
  71. print("Exception",e)
  72. def memcachd_index_clear():
  73. _index = {}
  74. try:
  75. mc.set("index",_index)
  76. except Exception as e:
  77. print("memcach exception",e)
  78. memcachd_index_clear()
  79. def update_memcachd_index(key,val="",active=-1):
  80. try:
  81. _index = mc.get("index")
  82. #print("A",_index)
  83. if type(_index) is type(None):
  84. _index = {}
  85. #print("A",_index)
  86. if key not in _index:
  87. _index[key] = [0,-33]
  88. _index[key][0] += 1
  89. _index[key][1] = active
  90. mc.set("index",_index)
  91. except Exception as e:
  92. print("memcach exception",e)
  93. if mc:
  94. INDEX="index-artpoll"
  95. mc.set(INDEX ,{})
  96. def update_mc_artpoll_index(key,val=""):
  97. try:
  98. INDEX="index-artpoll"
  99. _index = mc.get(INDEX)
  100. #print("A",_index)
  101. if type(_index) is type(None):
  102. _index = {}
  103. #print("A",_index)
  104. #now = datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')
  105. now = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
  106. if key not in _index:
  107. _index[key] = [0,""]
  108. _index[key][0] += 1
  109. _index[key][1] = now #val
  110. mc.set(INDEX ,_index)
  111. except Exception as e:
  112. print("memcach exception",e)
  113. def count_active_dmx_ch(dmx):
  114. active = 0
  115. for i,v in enumerate(dmx):
  116. if type(v) is int and v>=1:
  117. if active < 0:
  118. active = 0
  119. active += 1
  120. return active
  121. # ============================================================
  122. # Text Grafik Curses =========================================
  123. # ============================================================
  124. import curses
  125. class CursesDummy():
  126. def __init__(self):
  127. self.sel_host=Pager()
  128. self.sel_host.wrap=1
  129. self.sel_univ=Pager()
  130. self.sel_univ.wrap=1
  131. self.sel_mode=Pager()
  132. self.sel_mode.wrap=1
  133. pass
  134. def dir(self):
  135. pass
  136. def test(self):
  137. pass
  138. def init(self):
  139. pass
  140. def addstr(self,x,y,txt):
  141. pass
  142. def draw_lines(self,lines):
  143. pass
  144. def inp(self):
  145. return ""
  146. pass
  147. def read(self):
  148. pass
  149. def clear(self):
  150. pass
  151. def exit(self):
  152. pass
  153. class Window():
  154. def __init__(self):
  155. self.myscreen = curses.initscr()
  156. #print( dir(self.myscreen))
  157. #print( self.myscreen.getmaxyx() )
  158. self._inp=""
  159. self.cmd = []
  160. self.sel_host=Pager()
  161. self.sel_host.wrap=1
  162. self.sel_univ=Pager()
  163. self.sel_univ.wrap=1
  164. self.sel_mode=Pager()
  165. self.sel_mode.wrap=1
  166. self.mode="dmx"
  167. if options.sendto:
  168. self.sel_mode.data = ["stop","stop","ltp","dmx","mtx","main"] # mtx = matrix
  169. self.sel_mode.maxindex = len( self.sel_mode.data )-1
  170. self.mode="stop"
  171. #self.sel_mode.set(1) #stop
  172. #self.sel_mode.prev() #stop
  173. #self.sel_mode.prev() #stop
  174. #self.sel_mode.prev() #stop
  175. self.sel_mode.prev() #stop
  176. else:
  177. self.sel_mode.data = ["dmx","mtx","main"] # mtx = matrix
  178. self.sel_mode.maxindex = len( self.sel_mode.data )-1
  179. self.mode = self.sel_mode.get()
  180. self.ttime = time.time()
  181. self.univ2 = 0
  182. self.host =""
  183. self.ohost = HostBuffer() # as default
  184. self.ohost.update(host="Win-"+str(options.sendto),univ=0,dmxframe=[0]*512) # dummy input
  185. self.__reinit_time = time.time()
  186. def dir(self):
  187. return dir(self.myscreen)
  188. def test(self):
  189. self.init()
  190. #self.loop()
  191. self.draw_lines(["a","b","c"])
  192. try:
  193. time.sleep(10)
  194. finally:
  195. self.exit()
  196. def reinit(self):
  197. self.exit()
  198. print( "reinit",time.time())
  199. self.myscreen = curses.initscr()
  200. #time.sleep(5)
  201. #self.__init()
  202. self.init()
  203. self.__reinit_time = time.time()
  204. def init(self):
  205. curses.savetty()
  206. curses.noecho()
  207. curses.cbreak()
  208. curses.noqiflush() #?
  209. curses.noraw() #?
  210. self.clear()
  211. curses.beep()
  212. frame = 10
  213. i = 0
  214. def addstr(self,x,y,txt):
  215. self.myscreen.addstr(x, y, txt ) #zeile,spalte,text
  216. def draw_lines(self,lines):
  217. self.clear()
  218. try:
  219. x,y= self.myscreen.getmaxyx()
  220. for i,l in enumerate(lines):
  221. #print(i,l)
  222. if i >= x-2:
  223. break
  224. self.myscreen.addstr(i+1, 1, l ) #zeile,spalte,text
  225. if i >= self.myscreen.getmaxyx()[0]-2:
  226. self.myscreen.addstr(i+1, 1, "..." ) #zeile,spalte,text
  227. self.myscreen.refresh()
  228. self.myscreen.resize(x-1,y-1) # to prevent slowdown..
  229. self.myscreen.resize(x,y)
  230. if self.__reinit_time+60 < time.time():
  231. self.reinit()
  232. except KeyboardInterrupt as e:
  233. self.exit()
  234. print("KeyboardInterrupt")
  235. raise e
  236. #except Exception as e:
  237. # self.exit()
  238. # raise e
  239. def inp(self):
  240. x= self._inp
  241. self._inp=""
  242. return x
  243. def read(self):
  244. self.myscreen.nodelay(1)
  245. try:
  246. self._inp=self.myscreen.getkey()
  247. if not self._inp:
  248. self._inp = self.myscreen.getch()
  249. self.myscreen.addstr(0, 1, str(self._inp) ) #zeile,spalte,text
  250. self.myscreen.refresh()
  251. return self._inp
  252. except:
  253. pass#self._inp=""
  254. def clear(self):
  255. self.myscreen.clear()
  256. self.myscreen.border(0)
  257. curses.nocbreak();
  258. self.myscreen.keypad(0);
  259. #self.read()
  260. curses.echo()
  261. curses.resetty()
  262. #self.myscreen.addstr(10, 2, x ) #zeile,spalte,text
  263. def exit(self):
  264. self.clear()
  265. curses.endwin()
  266. print("ENDE",self)
  267. def keyread(self):
  268. #continue
  269. # input command buffer
  270. self.read()
  271. inp2=self.inp()
  272. x=""
  273. if "q" == inp2:
  274. inp2=""
  275. self.exit()
  276. sys.exit()
  277. elif "?" == inp2:
  278. self.mode = "?"
  279. elif "," == inp2:
  280. x=self.sel_mode.next()
  281. self.ttime = time.time()-2
  282. inp2=""
  283. elif ";" == inp2:
  284. x=self.sel_mode.prev()
  285. self.ttime = time.time()-2
  286. inp2=""
  287. elif "." == inp2:
  288. x=self.sel_univ.next()
  289. self.ttime = time.time()-2
  290. inp2=""
  291. elif ":" == inp2:
  292. x=self.sel_univ.prev()
  293. self.ttime = time.time()-2
  294. inp2=""
  295. elif "-" == inp2:
  296. x=self.sel_host.next()
  297. self.ttime = time.time()-2
  298. inp2=""
  299. elif "_" == inp2:
  300. x=self.sel_host.prev()
  301. self.ttime = time.time()-2
  302. inp2=""
  303. elif "#" == inp2:
  304. if "main" in self.sel_mode.data:
  305. x = self.sel_mode.data.index( "main")
  306. self.sel_mode.index = x
  307. self.sel_mode.check()
  308. self.ttime = time.time()-2
  309. inp2=""
  310. if x:
  311. self.myscreen.addstr(0, 6,str(x) )
  312. if inp2 == "\n":
  313. cmd2 = "".join( self.cmd).split()
  314. self.cmd=[]
  315. if len(cmd2) < 2:
  316. pass
  317. elif "C^" in cmd2:
  318. screen.exit()
  319. sys.exit()
  320. elif "univ" in cmd2 or "u" == cmd2[0]:
  321. x=""
  322. if cmd2[1] in sel_univ.data:
  323. x = sel_univ.data.index( cmd2[1])
  324. sel_univ.index = x
  325. sel_univ.check()
  326. elif "mode" in cmd2 or "m" == cmd2[0]:
  327. if cmd2[1] in self.sel_mode.data:
  328. x = self.sel_mode.data.index( cmd2[1])
  329. self.sel_mode.index = x
  330. self.sel_mode.check()
  331. elif "host" in cmd2 or "h" == cmd2[0]:
  332. try:
  333. x=int(cmd2[1])
  334. self.sel_host.set(x)
  335. except:
  336. pass
  337. else:
  338. self.cmd.append(inp2)
  339. def loop(self):
  340. self.keyread()
  341. #print( "LOOP")
  342. host = self.sel_host.get()
  343. univ2 = self.sel_univ.get()
  344. #if type(univ2) is list:
  345. # univ2.sort()
  346. self.mode = self.sel_mode.get()
  347. if self.mode == "stop":
  348. if self.ttime+5 < time.time():
  349. self.ttime = time.time()
  350. self.draw_lines( ["STOP",str(time.time())] )
  351. #self.exit()
  352. #print( ["STOP",str(time.time())] )
  353. return
  354. if time.time()-0.12 > self.ttime:
  355. #if 1:
  356. lines = [ ]
  357. #print("cmd:",cmd)
  358. lines.append(" host:"+ hostname +":"+netns+" CMD:" + "".join(self.cmd) )
  359. if self.mode=="help" or self.mode=="?":
  360. lines.append("HILFE[h]: " )
  361. lines.append("MODE [m]: inp, in2 in1 " )
  362. lines.append("UNIV [u]: 0-16 " )
  363. lines.append(" " )
  364. lines.append("HILFE " )
  365. elif self.mode=="dmx" or self.mode == "DMX":
  366. self.ttime = time.time()
  367. dmx=self.ohost.get(host,univ=univ2)#univ=head_uni)
  368. info=self.ohost.info()
  369. #lines.append("frame "+str(info.keys()) )
  370. if univ2 in info:
  371. if host in info[univ2] :
  372. lines.append("frame "+str(info[univ2][host]["frame"]))
  373. x=""
  374. for i,v in enumerate(dmx):
  375. if v == 0:
  376. v = "+"
  377. x += str(v).rjust(4," ")
  378. #if (i+1) % 21 == 0:# and i:
  379. if (i+1) % 20 == 0:# and i:
  380. lines.append(x)
  381. x=""
  382. if x:
  383. lines.append(x)
  384. lines.append(" ")
  385. lines.append(str(self.ttime))
  386. #screen.draw_lines(lines)
  387. elif self.mode=="stop":
  388. return 0
  389. elif self.mode=="mtx":
  390. self.ttime = time.time()
  391. dmx=self.ohost.get_mtx(host,univ=univ2)#univ=head_uni)
  392. info=self.ohost.info()
  393. #lines.append("frame "+str(info.keys()) )
  394. if univ2 in info:
  395. if host in info[univ2] :
  396. lines.append("frame "+str(info[univ2][host]["frame"]))
  397. x=""
  398. for i,v in enumerate(dmx):
  399. x += str(v).rjust(4," ")
  400. if (i+1) % 20 == 0:# and i:
  401. lines.append(x)
  402. x=""
  403. if x:
  404. lines.append(x)
  405. lines.append(" ")
  406. lines.append(str(self.ttime))
  407. #screen.draw_lines(lines)
  408. elif self.mode=="ltp" or self.mode=="LTP":
  409. self.ttime = time.time()
  410. dmx=self.ohost.get(univ=univ2)#head_uni)
  411. #univ2=""
  412. host=""
  413. info=self.ohost.info()
  414. lines.append("frame "+str(info.keys()) )
  415. x=""
  416. for i,v in enumerate(dmx):
  417. x += str(v).rjust(4," ")
  418. if (i+1) % 20 == 0:
  419. lines.append(x)
  420. x=""
  421. if x:
  422. lines.append(x)
  423. lines.append(" ")
  424. lines.append(str(self.ttime))
  425. #screen.draw_lines(lines)
  426. else:
  427. self.ttime = time.time()
  428. x=self.ohost.get(univ=univ2)
  429. #lines = []
  430. host=""
  431. univ2=""
  432. info=self.ohost.info()
  433. jinfo = ""
  434. for i in info:
  435. xl = json.dumps(i) + "=======X " # live
  436. lines.append( xl )
  437. for j in info[i]:
  438. lines2=[]
  439. lines.append( " " + json.dumps([j,""]) )
  440. for k in info[i][j]:
  441. if k in ["fpsx","uni","flag"]:
  442. lines2.append( " "+str(k).ljust(5," ")+": " + json.dumps( info[i][j][k]) )
  443. else:
  444. lines.append( " "+str(k).ljust(5," ")+": " + json.dumps( info[i][j][k]) )
  445. lines2 = "".join(lines2)
  446. lines.append(lines2)
  447. lines.append( " " + json.dumps([j,""]) )
  448. lines.append(" ")
  449. lines.append(str(self.ttime))
  450. #screen.draw_lines(lines)
  451. tmp = ""
  452. tmp += " mode:"+(str(self.mode).ljust(10," "))
  453. tmp += " univ:"+str(self.sel_univ.index)+":"+(str(self.sel_univ.get()).ljust(8," "))
  454. tmp += " host:"+str(self.sel_host.index)+":"+(str(self.sel_host.get()).ljust(8," "))
  455. tmp += " --recive:"+str(options.recive)
  456. tmp += " --sendto:"+str(options.sendto)
  457. lines.insert(0,tmp)
  458. tmp = ""
  459. sel_univ_data = self.sel_univ.data
  460. #sel_univ_data.sort()
  461. tmp += " univ:"+ (str(self.sel_univ.data))#.ljust(20," "))
  462. tmp += " list:"+ (str(self.sel_host.data))#.ljust(20," "))
  463. lines.insert(0,tmp)
  464. self.draw_lines(lines)
  465. class UniversBuffer():
  466. def __init__(self,univers_nr=0):
  467. """buffer and merge a universe from multiple sender/hosts/ip's
  468. """
  469. self.__hosts = []
  470. self.__universes_dmx = {}
  471. self.__universes_fps = {}
  472. self.__universes_frames = {}
  473. self.__universes_flag = {}
  474. self.__universes_x_frames = {}
  475. self.__universes_x_time = {}
  476. self.__universes_count = {}
  477. self.__universes_timer = {}
  478. self.__universes_matrix = ["."]*512
  479. self.__universes_info = {}
  480. self.__univers_nr = univers_nr
  481. self.__frame = 0
  482. def _add(self,host):
  483. if host not in self.__hosts:
  484. self.__hosts.append(host) #re-order hosts list for LTP
  485. #print( "ADDING HOST:",host,"UNIV:",self.__univers_nr)
  486. self.__universes_dmx[host] = [0]*512
  487. self.__universes_frames[host] = 0
  488. self.__universes_x_frames[host] = 0
  489. self.__universes_fps[host] = [""]*20
  490. self.__universes_flag[host] = [0]*20
  491. self.__universes_x_time[host] = time.time()
  492. self.__universes_timer[host] = [0]*512
  493. self.__universes_info[host] = {}
  494. def _next_frame(self,host):
  495. self.__frame += 1
  496. self.__universes_frames[host] += 1
  497. self.__universes_x_frames[host] += 1
  498. if self.__universes_x_time[host]+10 < time.time():
  499. sec = time.time()-self.__universes_x_time[host]
  500. fps = self.__universes_x_frames[host] /sec
  501. #fps = round(fps,1)
  502. fps = int(fps)
  503. self.__universes_fps[host].pop(0)
  504. self.__universes_fps[host].append(fps)
  505. self.__universes_x_time[host] = time.time()
  506. self.__universes_x_frames[host] = 0
  507. def update(self,host,dmxframe):
  508. if type(dmxframe) != list:
  509. #print( "update ERROR dmxframe is not a list", host )
  510. return
  511. self._add(host)
  512. update_matrix = [0]*512
  513. dmx=[0]*512
  514. update_flag = 0
  515. dmxframe_old = self.__universes_dmx[host]
  516. self._next_frame(host)
  517. #if len(dmxframe) <= 512: #len(dmxframe_old):
  518. if cython:# "cython":
  519. if len(dmxframe) <= 512: #len(dmxframe_old):
  520. dmxnew = dmxframe
  521. dmxold = dmxframe_old
  522. matrix = self.__universes_matrix
  523. hostid = self.__hosts.index(host)
  524. x= cy.merge(dmxold,dmxnew,matrix,hostid)
  525. dmx = list(x[0])
  526. self.__universes_matrix = list(x[1])
  527. update_flag = x[2]
  528. else:
  529. if len(dmxframe) <= 512: #len(dmxframe_old):
  530. for i,v in enumerate(dmxframe):
  531. if dmxframe[i] != dmxframe_old[i]:
  532. update_flag += 1
  533. self.__universes_matrix[i] = self.__hosts.index(host)
  534. dmx[i] = v
  535. self.__universes_flag[host].pop(0)
  536. self.__universes_flag[host].append( update_flag )
  537. tmp = {}
  538. tmp["flag"] =update_flag
  539. tmp["flagx"] = self.__universes_flag[host]
  540. tmp["fpsx"] = int(self.__universes_x_frames[host] / (time.time()-self.__universes_x_time[host]))
  541. tmp["frame"] = self.__frame
  542. #tmp["hosts"] = self.__hosts
  543. tmp["uni"] = self.__univers_nr
  544. tmp["fps"] = self.__universes_fps[host]
  545. tmp["active"] = count_active_dmx_ch(dmxframe)
  546. self.__universes_info[host] = tmp
  547. if update_flag:
  548. #print( "UPDATE HOST:",host, update_flag,"UNIV:",self.__univers_nr)
  549. self.__universes_dmx[host] = dmx # dmxframe
  550. self.__universes_timer[host] = update_matrix
  551. def get(self,host=""):
  552. if host and host in self.__hosts:
  553. return self.__universes_dmx[host]
  554. dmx = [":"]*512
  555. for i,v in enumerate(self.__universes_matrix):
  556. if type(v) is int:
  557. host = self.__hosts[v]
  558. v = self.__universes_dmx[host][i]
  559. dmx[i] = v
  560. return dmx
  561. def get_mtx(self,host=""):
  562. return self.__universes_matrix
  563. def info(self):
  564. return self.__universes_info
  565. def hosts(self):
  566. x = self.__universes_dmx.keys()
  567. x=list(x)
  568. x.sort()
  569. return x
  570. class HostBuffer():
  571. def __init__(self):
  572. """buffer hosts and route data into universes
  573. """
  574. self.__hosts = [] # LTP order
  575. self.__universes = OrderedDict() # {} # 192.168.0.1 = [0]*512
  576. #self.update(host="localhost",univ=0,dmxframe=[6]*512)
  577. dmxframe = [0]*512
  578. dmxframe[15] = -6
  579. #self.update(host="333.333.333.333",univ=8,dmxframe=dmxframe)
  580. def get_mtx(self,host="", univ=""):
  581. return self.__universes[str(univ)].get_mtx(host)
  582. def get(self,host="", univ=""):
  583. if str(univ) in self.__universes:
  584. return self.__universes[str(univ)].get(host)
  585. else:
  586. return [-8]*512
  587. def hosts(self):
  588. hosts = []
  589. for univ in self.__universes:
  590. x=self.__universes[univ].hosts()
  591. for y in x:
  592. #x=univ.hosts()
  593. if y not in hosts:
  594. hosts.append(y)
  595. hosts.sort()
  596. return hosts
  597. def univs(self):
  598. x=self.__universes.keys()
  599. x=list(x)
  600. #x.sort()
  601. return x
  602. def update(self,host,univ, dmxframe):
  603. #print( "update", host )
  604. if str(univ) not in self.__universes:
  605. self.__universes[str(univ)] = UniversBuffer(str(univ))
  606. self.__universes[str(univ)].update(host,dmxframe)
  607. def info(self,univ=0):
  608. out = {}
  609. #print self.__universes.keys()
  610. for univ in self.__universes.keys():
  611. #print("INFO:",univ)
  612. x=self.__universes[univ]
  613. out[univ] = x.info()
  614. return out
  615. # ============================================================
  616. # Network ====================================================
  617. # ============================================================
  618. import socket, struct
  619. hostname = socket.gethostname()
  620. netns = "none"
  621. x = os.popen("ip netns identify $$")
  622. xx = x.read()
  623. if xx:
  624. netns = xx.strip()
  625. import fcntl #socket control
  626. import errno
  627. def toPrintable(nonprintable):
  628. out = ""
  629. for i in str(nonprintable):
  630. printable = string.ascii_letters + string.digits +"/()=?{[]}\;:,.-_ "
  631. if str(i) in printable :
  632. out += str(i)
  633. return out
  634. def unpack_art_dmx(data):
  635. dmx = []
  636. for i in range(len(data[18:]) ):
  637. x=data[18+i]
  638. #print("x",x)
  639. #print( "data",b'!B', data[18+i])
  640. #x=struct.unpack( b'!B',data[18+i])
  641. #print( "data",b'!B', data[18+i],x)
  642. #x=x[0]
  643. dmx += [x]
  644. return dmx
  645. def ArtPollCheck(data,addr):
  646. opcode=artnet_get_opcode(data)
  647. if "ArtPoll" in opcode or "ArtPollReplay" in opcode:
  648. #print("PKG3",addr, opcode,len(data))
  649. try:
  650. k = "{}:{}".format(addr[0],opcode[0])
  651. mc.set(k, data)
  652. update_mc_artpoll_index(k,val="")
  653. except Exception as e:
  654. print("ArtPollCheck err:",e)
  655. if mc:
  656. mc.set("artnet-pkg-count" ,{})
  657. class PKG_COUNT():
  658. def __init__(self,name="PKG_COUNT"):
  659. self.time = 0
  660. self.fps = 0
  661. self._count = 0
  662. self.fps_hitory = [0]*10
  663. self.fps_count = 0
  664. self.name = name
  665. self.start = time.time()
  666. def count(self):
  667. self.fps_count += 1
  668. def check(self):
  669. if time.time()-self.time > 10:
  670. self.reset()
  671. return True
  672. def reset(self,t=None):
  673. if t is None:
  674. self.time = time.time()
  675. else:
  676. self.time = t
  677. #print("reset",self.name, self.time)
  678. def info(self):
  679. self.fps = self.fps_count/10
  680. self.fps_count = 0
  681. #run_time=int((time.time()-self.start)/60)
  682. self.fps_hitory = self.fps_hitory[1:]
  683. self.fps_hitory.append(self.fps)
  684. self._count += 1
  685. return {self.name+"-fps":self.fps,self.name+"-hist":self.fps_hitory,self.name+"-count":self._count}
  686. def update_mc(self):
  687. data = {}
  688. x =mc.get("artnet-pkg-count")
  689. if x:
  690. data.update(x)
  691. data.update(self.info())
  692. mc.set("artnet-pkg-count" ,data)
  693. class IN_Socket():
  694. def __init__(self,bind='',port=6454):
  695. self.__port =port
  696. self.__bind =bind
  697. self.__poll = 0
  698. self.__data = []
  699. self.__addr = "NONE"
  700. #self.__hosts = {"host":{"9":[0]*512}}
  701. self.__hosts = {}
  702. self.hosts = self.__hosts
  703. self.open()
  704. self.start = time.time()
  705. self.pkg_in_count = PKG_COUNT(name="in")
  706. def open(self):
  707. try:
  708. print("connecting to ArtNet bind:",self.__bind,"Port",self.__port)
  709. self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  710. self.sock.bind((self.__bind, self.__port))
  711. fcntl.fcntl(self.sock, fcntl.F_SETFL, os.O_NONBLOCK)
  712. #self.sock.setblocking(0)
  713. except socket.error as e:
  714. print("Socket ",self.__bind,self.__port, "ERR: {0} ".format(e.args))
  715. #raw_input()
  716. #sys.exit()
  717. def poll(self):
  718. if not self.__poll:
  719. if mc:
  720. if self.pkg_in_count.check():
  721. self.pkg_in_count.reset()
  722. self.pkg_in_count.update_mc()
  723. try:
  724. self.__data, self.__addr = self.sock.recvfrom(self.__port)
  725. data, addr = (self.__data,self.__addr)
  726. self.pkg_in_count.count()
  727. ArtPollCheck(data,addr)
  728. opcode=artnet_get_opcode(data)
  729. if opcode[0] != "ArtDMX":
  730. return
  731. self.host = addr[0]
  732. head = data[:18]
  733. rawdmx = data[18:]
  734. #print([head],addr)
  735. self.univ = -1
  736. try:
  737. self.head = struct.unpack("!8sHBBBBHBB" , head )
  738. except Exception as e:
  739. pass#print( "======E09823" , e)
  740. univ = self.head[6]/255 # /512 # * 512
  741. self.univ = int(univ)
  742. #if "2.0.0.11" not in addr:
  743. # print("PKG3",addr,"univ:",self.univ, opcode,len(rawdmx))
  744. if self.host.startswith("127."): #allways recive localhost on port
  745. self.__poll = 1
  746. return 1
  747. elif not options.recive:
  748. self.__poll = 1
  749. return 1
  750. elif self.host.startswith(options.recive):
  751. self.__poll = 1
  752. return 1
  753. else:
  754. self.__poll = 0
  755. addr = str(addr)
  756. univ = str(univ)
  757. if self.__poll:
  758. if addr not in self.__hosts:
  759. self.__hosts[addr] = {}
  760. if univ not in self.__hosts[addr]:
  761. self.__hosts[addr][univ] = {}
  762. self.__hosts[addr][univ] = {"head":head,"addr":addr,"univ":univ,"dmx":rawdmx}
  763. self.hosts = self.__hosts
  764. except socket.timeout as e:
  765. err = e.args[0]
  766. if err == 'timed out':
  767. time.sleep(1)
  768. print('recv timed out, retry later')
  769. else:
  770. print(e)
  771. except socket.error as e:
  772. pass
  773. def recive(self):
  774. if self.__poll:
  775. self.__poll = 0
  776. data, addr = (self.__data,self.__addr)
  777. #print("PKG", self.univ,self.head)
  778. self.dmx = unpack_art_dmx(data)
  779. return { "host":self.host,"dmx":self.dmx,"univ":self.univ,"head":self.head,"data":data,"addr":addr}
  780. # ============================================================
  781. # miniartnet4.py =============================================
  782. # ============================================================
  783. import time
  784. import socket
  785. import struct
  786. import random
  787. class ArtNetNode():
  788. """simple Object to generate raw ArtNet like Network packages
  789. works in Python2 and Python3 2021-12-05
  790. (only basic implementation)
  791. "Art-Net™ Designed by and Copyright Artistic Licence Holdings Ltd"
  792. https://art-net.org.uk/
  793. """
  794. def __init__(self, to="10.10.10.255",univ=7,port=6454):
  795. print("\n"+self.__doc__+"\n")
  796. try:
  797. univ = int(univ)
  798. except:
  799. print("errror univ",univ ,"is not int ... set to 7")
  800. univ = 7
  801. self.univ=univ
  802. self.sendto = to
  803. self.portto = port
  804. self.s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  805. self.s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
  806. self.s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
  807. self.stamp = time.time()
  808. self.test_stamp = time.time()
  809. self.dmx=[33]*512
  810. self.v=0
  811. self.d=1
  812. #self.pkg_out_count = PKG_COUNT(name="out-"+str(univ))
  813. self.pkg_counter = {}
  814. def head(self):
  815. self._header = []
  816. self._header.append(b"Art-Net\x00") # Name, 7byte + 0x00
  817. self._header.append(struct.pack('<H', 0x5000)) # OpCode ArtDMX -> 0x5000, Low Byte first
  818. self._header.append(struct.pack('>H', 14)) # Protocol Version 14, High Byte first
  819. self._header.append(b"\x00") # Order -> nope -> 0x00
  820. self._header.append(struct.pack('B',1)) # Eternity Port
  821. # Address
  822. #if 0 <= universe <= 15 and 0 <= net <= 127 and 0 <= subnet <= 15
  823. net, subnet, universe = (0,0,self.univ) #address
  824. self._header.append(struct.pack('<H', net << 8 | subnet << 4 | universe))
  825. self._header = b"".join(self._header)
  826. def send(self,dmx=None,port=''):
  827. if dmx is None:
  828. dmx = self.dmx
  829. else:
  830. self.dmx = dmx
  831. self.head()
  832. c=[self._header]
  833. c.append( struct.pack('>H', len(dmx) ) )
  834. #print([c])
  835. dmx_count = 0
  836. for v in dmx:
  837. if type(v) is not int:
  838. v=0
  839. elif v > 255: # max dmx value 255
  840. v = 255
  841. elif v < 0: # min dmx value 0
  842. v = 0
  843. dmx_count += 1
  844. c.append(struct.pack("B",v))
  845. c = b"".join(c)
  846. if port:
  847. self.s.sendto(c, (self.sendto, port)) # default 6454
  848. else:
  849. self.s.sendto(c, (self.sendto, self.portto)) # default 6454
  850. # multicounter management !
  851. name = "out-"+str(self.univ)
  852. if name not in self.pkg_counter:
  853. self.pkg_counter[name] = PKG_COUNT(name=name)
  854. counter = self.pkg_counter[name]
  855. counter.count()
  856. if mc:
  857. if counter.check():
  858. counter.reset()
  859. counter.update_mc()
  860. return c
  861. def _test_frame(self):
  862. if self.test_stamp+0.1 > time.time():
  863. return 0
  864. self.test_stamp = time.time()
  865. dmx = [0]*512
  866. dmx[420] = self.v
  867. self.dmx = dmx
  868. self.next()
  869. #self.send(dmx)
  870. #print( [x] )
  871. if self.v >= 255:
  872. self.d=0
  873. elif self.v <=0:
  874. self.d=1
  875. if self.d:
  876. self.v+=1
  877. else:
  878. self.v-=1
  879. #time.sleep(1/30.)
  880. def next(self):
  881. if self.stamp + (1/60) <= time.time():
  882. self.send()
  883. def artnet_test():
  884. artnet = ArtNetNode()
  885. artnet._tes_frame()
  886. def artnet_get_opcode(head):
  887. #print([head]) #[9:10])
  888. opcode=0x0000
  889. name ="unkown"
  890. try:
  891. opcode=hex(struct.unpack('<h', head[8:10])[0])
  892. except:
  893. print("opcode error",[head])
  894. if opcode == '0x5000':
  895. name = "ArtDMX"
  896. elif opcode == '0x2000':
  897. name = "ArtPoll"
  898. elif opcode == '0x2100':
  899. name = "ArtPollReplay"
  900. return (name,opcode)
  901. # ============================================================
  902. # helper =====================================================
  903. # ============================================================
  904. class Pager(): #scroll thru list
  905. def __init__(self):
  906. self.data = []
  907. self.index = 0
  908. self.wrap = 0
  909. self.maxindex = 0
  910. def append(self,val):
  911. self.data.append(val)
  912. self.check()
  913. def set(self,nr):
  914. self.index = nr
  915. self.check()
  916. def get(self):
  917. self.check()
  918. self.data.sort()
  919. if self.data:
  920. return self.data[self.index]
  921. def next(self):
  922. self.index += 1
  923. self.check(flag=1)
  924. return self.get()
  925. def prev(self):
  926. self.index -= 1
  927. self.check(flag=1)
  928. return self.get()
  929. def check(self,flag=0):
  930. if flag:
  931. if self.maxindex and self.maxindex <= len(self.data):
  932. _max = self.maxindex
  933. else:
  934. _max = len(self.data)
  935. else:
  936. _max = len(self.data)
  937. #_max = self.maxindex
  938. self.maxindex = _max
  939. if self.wrap:
  940. if self.index >= _max:
  941. self.index = 0
  942. elif self.index < 0:
  943. self.index = _max-1
  944. else:
  945. if self.index >= _max:
  946. self.index = _max-1
  947. elif self.index < 0:
  948. self.index = 0
  949. class Timer():
  950. def __init__(self,sec=1,start=None):
  951. if start is None:
  952. self.last = time.time()
  953. else:
  954. self.last = start
  955. self.sec = sec
  956. print( self,"init")
  957. def reset(self):
  958. self.last = time.time()
  959. def check(self):
  960. if self.last+self.sec < time.time():
  961. #print(self,"chk",time.time()+self.sec-time.time())
  962. self.reset()
  963. return 1
  964. # ============================================================
  965. # main =======================================================
  966. # ============================================================
  967. class Main():
  968. def __init__(self):
  969. pass
  970. def loop(self):
  971. ohost = HostBuffer()
  972. screen=Window()
  973. screen.exit()
  974. screen.ohost = ohost
  975. #artnet_out = ArtNetNode(to="10.0.25.255")
  976. artnet_out = ArtNetNode(to=options.sendto)
  977. ohost.update(host="Main-"+str(options.sendto),univ=0,dmxframe=[0]*512) # dummy input
  978. #artnet_out._test_frame()
  979. if options.testuniv:
  980. artnet = ArtNetNode(univ=options.testuniv)
  981. artnet._test_frame()
  982. #ysocket = Socket(bind='127.0.0.1' ,port=6555)
  983. in_socket = IN_Socket()
  984. xt = time.time()
  985. ohost_buf = {}
  986. ohost_timer = Timer(1/30.,start=0) # 0.03333
  987. send_timer = Timer(1/30.) # 0.03333
  988. try:
  989. screen.exit()
  990. while 1:
  991. poll_flag = 0
  992. if options.testuniv:
  993. artnet._test_frame()
  994. #artnet_out._test_frame()
  995. #if in_socket.poll():
  996. while in_socket.poll():
  997. xt = time.time()
  998. poll_flag = 1
  999. x = in_socket.recive()
  1000. if x["host"] == options.recive:
  1001. try:
  1002. x["univ"] = int(options.inmap )
  1003. except TypeError:
  1004. pass
  1005. if x["host"] not in ohost_buf:
  1006. ohost_buf[x["host"]] = {}
  1007. if x["univ"] not in ohost_buf[x["host"]]:
  1008. ohost_buf[x["host"]][x["univ"]] = {}
  1009. ohost_buf[x["host"]][x["univ"]] = x["dmx"] #write into buffer to prevent package latency encreasing
  1010. try:
  1011. k = "{}:{}".format(x["host"],x["univ"])
  1012. mc.set(k, x["dmx"]) # "dmx-{}".format(univ), ltp)
  1013. active = count_active_dmx_ch(x["dmx"])
  1014. update_memcachd_index(key=k,active=active)
  1015. except Exception as e:
  1016. print("exception:",e)
  1017. time.sleep(.1)
  1018. #ohost.update(x["host"],x["univ"],x["dmx"])
  1019. if 0:#ysocket.poll():
  1020. poll_flag = 1
  1021. x = ysocket.recive()
  1022. if x["host"] == options.recive:
  1023. try:
  1024. x["univ"] = int(options.inmap )
  1025. except TypeError:
  1026. pass
  1027. ohost.update(host=x["host"],univ=x["univ"],dmxframe=x["dmx"])
  1028. screen.sel_univ.data = ohost.univs()
  1029. screen.sel_host.data = ohost.hosts()
  1030. if ohost_timer.check():
  1031. for i in ohost_buf:
  1032. for j in ohost_buf[i]:
  1033. dmx=ohost_buf[i][j]
  1034. ohost.update(host=i,univ=j,dmxframe=dmx) # update univ_data from input buffer
  1035. ohost_buf = {} # clear package buffer
  1036. if send_timer.check() and options.sendto:
  1037. #x=ohost.get(univ=univ2)
  1038. info=ohost.info()
  1039. jinfo = ""
  1040. for i in info:
  1041. univ = i
  1042. if str(univ) == "54":
  1043. break
  1044. xl = json.dumps(univ) + "======= " #XX
  1045. ltp=ohost.get(univ=i)
  1046. try:
  1047. k="ltp-out:{}".format(univ)
  1048. mc.set(k,ltp)
  1049. active = count_active_dmx_ch(ltp)
  1050. update_memcachd_index(key=k,active=active)
  1051. except Exception as e:
  1052. print("Exc memcachd_index1 ",e)
  1053. artnet_out.univ=int(univ)
  1054. artnet_out.send(ltp)
  1055. if not poll_flag:
  1056. time.sleep(.001)
  1057. screen.loop()
  1058. finally:
  1059. pass
  1060. #screen.exit()
  1061. #print(dir(curses))
  1062. if __name__ == "__main__":
  1063. print("main")
  1064. main = Main()
  1065. print("loop")
  1066. main.loop()