movewin.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. #!/usr/bin/python3
  2. import os
  3. import time
  4. import sys
  5. sys.path.insert(0,"/opt/LibreLight/Xdesk/")
  6. import psutil
  7. import json
  8. import inspect
  9. import _thread as thread
  10. import lib.showlib as showlib
  11. from lib.cprint import cprint
  12. SHOW_PATH = showlib.current_show_path() #SHOW_PATH
  13. # python3 movewin.py window-title x y
  14. # python3 movewin.py COMMA 723 943
  15. class Control():
  16. def __init__(self):
  17. self.title = "WinfoWinName"
  18. self.winid = ""
  19. def winfo(self):
  20. winid = winfo(self.title)
  21. if type(winid) == list:
  22. if len(winid) >= 1:
  23. self.winid = winid[0]
  24. def winfo2(self):
  25. winid = winfo2(self.title)
  26. #if type(winid) == list:
  27. # if len(winid) >= 1:
  28. # self.winid = winid[0]
  29. def move(self,x=None,y=None):
  30. if self.winid:
  31. cmd=movewin(_id=self.winid,x=x,y=y)
  32. print("movewin.move:",cmd)
  33. system(cmd)
  34. def size(self,x=None,y=None):
  35. if self.winid:
  36. cmd = sizewin(_id=self.winid,x=x,y=y)
  37. system(cmd)
  38. def activate(self):
  39. if self.winid:
  40. cmd=activate(_id=self.winid)
  41. system(cmd)
  42. def winfo(name="WinfoWinName"):
  43. search = name
  44. cmd = "xwininfo -root -children -all | grep '{}'"
  45. cmd = cmd.format(search)
  46. print(cmd)
  47. r = os.popen(cmd)
  48. lines = r.readlines()
  49. _id = [] #"xxxx"
  50. if lines and lines[0]:
  51. _id.append( lines[0].split()[0] )
  52. print("ID:",_id)
  53. for line in lines:
  54. line = line.strip()
  55. print("-",line)
  56. return _id
  57. def parse_winfo_line(line):
  58. a1 = 0
  59. a2 = 0
  60. ps_name = ""
  61. ps_title = ""
  62. ps_id = ""
  63. ps_pos = ""
  64. ps_size = ""
  65. if line: # in lines:
  66. a1 = line.index(' ("')+2
  67. a2 = line.index('") ')+1
  68. ps_id = line.split()[0]
  69. ps_id = ps_id.replace(" ","")
  70. ps_pos = line.split()[-1]
  71. ps_size = line.split()[-2]
  72. ps_pos = ps_pos.replace("+"," ").replace("x"," ")
  73. ps_size = ps_size.replace("+"," ").replace("x"," ")
  74. ps_pos = ps_pos.strip().split()
  75. ps_size = ps_size.strip().split()
  76. for i in range(len(ps_pos)):
  77. ps_pos[i] = int(ps_pos[i])
  78. for i in range(len(ps_size)):
  79. ps_size[i] = int(ps_size[i])
  80. ps_pos[-2] -= ps_size[-2]
  81. ps_pos[-1] -= ps_size[-1]
  82. #ps_pos_x1 = int(ps_apos.split("+")[-2])
  83. #ps_pos_y1 = int(ps_pos.split("+")[-1])
  84. if a1 >= 0 and a2 >= 0:
  85. ps_name = line[a1:a2]
  86. line = line[:a1]+line[a2:]
  87. if ' "' in line and '":' in line:
  88. a1 = line.index(' "')+2
  89. a2 = line.index('":')
  90. ps_title = line[a1:a2]
  91. _line = [ps_id,ps_name,ps_title,ps_size,ps_pos]
  92. print(" ",_line)
  93. return _line
  94. def winfo2(name="WinfoWinName"):
  95. #print("--------------")
  96. search = name
  97. cmd = "xwininfo -root -children -all | grep '{}'"
  98. cmd = cmd.format(search)
  99. #print(cmd)
  100. r = os.popen(cmd)
  101. lines = r.readlines()
  102. _data = []
  103. for line in lines:
  104. a = parse_winfo_line(line)
  105. if a:
  106. _data.append(a)
  107. #print("--------------")
  108. return _data
  109. def get_store_sdl_line():
  110. #print()
  111. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  112. lines = []
  113. lines.extend( winfo2(name="SDL-"))
  114. lines.extend( winfo2(name="TK-"))
  115. lines.extend( winfo2(name="RAY-"))
  116. lines.extend( winfo2(name="R-"))
  117. lines.extend( winfo2(name="EXEC-BTN"))
  118. lines.extend( winfo2(name="EXEC-XWING"))
  119. out_lines=[]
  120. for line in lines:
  121. t=line[2].split()
  122. for k in t:
  123. k = k.replace(" ", "_")
  124. for j in ["SDL-","RAY-","R-","TK-","EXEC-BTN", "EXEC-XWING"]:
  125. if not k.startswith(j):
  126. continue
  127. s=line[-2]
  128. p=line[-1]
  129. # info: b x h + x + y
  130. out = [1,k, s[0],s[1],p[0],p[1] ]
  131. out_lines.append(out)
  132. return out_lines
  133. def load_all_sdl(title="X"):
  134. fname = SHOW_PATH + "/gui-sdl.txt"
  135. if not os.path.isfile(fname):
  136. return
  137. f=open(fname,"r")
  138. lines = f.readlines()
  139. f.close()
  140. print(" load_all_sdl fname:",fname)
  141. for line in lines:
  142. if title in line:
  143. return json.loads(line)
  144. def _start_sub(cmd,name,mute=0):
  145. r = os.popen(cmd)
  146. while 1:
  147. #print(dir(r))
  148. line = r.readline()
  149. if not line:
  150. break
  151. line = line.strip()
  152. if mute == 0:
  153. cprint(name,":",[line],color="blue")
  154. cprint("EXIT:",name,cmd)
  155. #BrokenPipeError: [Errno 32] Broken pipe
  156. def start_sub(cmd,name="<PROCESS>",mute=0):
  157. cprint(" start_sub",cmd,name,"mute-stdout:",mute,color="green")
  158. thread.start_new_thread(_start_sub,(cmd,name,mute)) # SERVER
  159. def startup_all_sdl():
  160. #print()
  161. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  162. fname = SHOW_PATH + "/gui-sdl.txt"
  163. if not os.path.isfile(fname):
  164. return
  165. f=open(fname,"r")
  166. xlines = f.readlines()
  167. f.close()
  168. print()
  169. cprint("startup_all_sdl() ",fname,color="yellow")
  170. xlines2 = []
  171. for line in xlines:
  172. # cleanup and info loop
  173. line = line.strip()
  174. if line.startswith("#-- history"):
  175. break
  176. if line.startswith("#"):
  177. continue
  178. if not line:
  179. continue
  180. xlines2.append(line)
  181. print(" line >> ",[line])
  182. # ------------------
  183. print()
  184. for line in xlines2:
  185. print(" line >> ",[line])
  186. try:
  187. line = json.loads(line)
  188. except json.decoder.JSONDecodeError as e:
  189. cprint("ERR",e,color="red")
  190. continue
  191. cmd = "python3 /opt/LibreLight/Xdesk/tksdl/{}"
  192. if "RAY" in line[1]:
  193. cmd = "python3 /opt/LibreLight/Xdesk/tkray/{}"
  194. if "--easy" in sys.argv:
  195. if line[1] == "EXEC-BTN":
  196. cmd = "python3 /opt/LibreLight/Xdesk/tkgui/{}"
  197. cmd=cmd.format("EXEC-BTN.py")
  198. #r=os.popen(cmd)
  199. start_sub(cmd,"EXEC-BTN",mute=1)
  200. else:
  201. if line[1] == "SDL-MIDI":
  202. cmd=cmd.format("midi.py")
  203. #r=os.popen(cmd)
  204. start_sub(cmd,"SDL-MIDI",mute=1)
  205. elif line[1] == "SDL-DMX":
  206. cmd=cmd.format("dmx.py")
  207. #os.popen(cmd)
  208. start_sub(cmd,"SDL-DMX",mute=1)
  209. elif line[1] == "R-FIX-LIST":
  210. cmd=cmd.format("fix.py")
  211. #r=os.popen(cmd)
  212. start_sub(cmd,"R-FIX-LIST",mute=1)
  213. elif line[1] == "RAY-DMX":
  214. cmd=cmd.format("dmx.py")
  215. #r=os.popen(cmd)
  216. start_sub(cmd,"RAY-DMX",mute=1)
  217. elif line[1] == "SDL-FIX-LIST":
  218. cmd=cmd.format("fix.py")
  219. #r=os.popen(cmd)
  220. start_sub(cmd,"SDL-FIX",mute=1)
  221. elif line[1] == "EXEC-BTN":
  222. cmd = "python3 /opt/LibreLight/Xdesk/tkgui/{}"
  223. cmd=cmd.format("EXEC-BTN.py")
  224. #r=os.popen(cmd)
  225. start_sub(cmd,"EXEC-BTN",mute=1)
  226. elif line[1] == "EXEC-XWING":
  227. cmd = "python3 /opt/LibreLight/Xdesk/tkgui/{}"
  228. cmd=cmd.format("EXEC-XWING.py")
  229. #r=os.popen(cmd)
  230. start_sub(cmd,"EXEC-XWING",mute=1)
  231. time.sleep(0.3)
  232. print()
  233. def store_all_sdl():
  234. #print()
  235. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  236. error = 0
  237. fname = SHOW_PATH + "/gui-sdl.txt"
  238. in_lines = []
  239. if os.path.isfile(fname):
  240. f=open(fname,"r")
  241. xlines = f.readlines()
  242. f.close()
  243. #print(" store_all_sdl fname",fname)
  244. for line in xlines:
  245. line = line.strip()
  246. if not line.startswith("#") and line:
  247. in_lines.append(line)
  248. #in_lines.append('[0,"xx aa",0,0,0,0]')
  249. #for line in in_lines:
  250. # print(" R:",[line])
  251. lines = get_store_sdl_line()
  252. ap_line = []
  253. pop = []
  254. for line in lines:
  255. ok = 0
  256. iline = ""
  257. for j,iline in enumerate(in_lines):
  258. if line[1] in iline:
  259. if j not in pop:
  260. pop.append(j)
  261. #print(" del ",j,line)
  262. for i in pop[::-1]:
  263. try:
  264. in_lines.pop(i)
  265. except Exception as e:
  266. cprint(" ERR:",e,color="red")
  267. error += 0
  268. temp = {}
  269. for i in in_lines:
  270. k = json.loads(i)[1]
  271. if k not in temp:
  272. temp[k] = i
  273. f=open(fname,"w")
  274. f.write("#"+json.dumps(["on","title","w","h","x","y"])+"\n")
  275. for line in lines:
  276. f.write(json.dumps(line)+"\n")
  277. f.write("\n")
  278. f.write("#-- history \n")
  279. for k,line in temp.items(): #in_lines:
  280. #print("+++>",line)
  281. f.write(line+"\n")
  282. f.write("\n")
  283. f.close()
  284. if not error:
  285. cprint(" store_all_sdl OK fname:",fname,color="green")
  286. return 1
  287. cprint(" store_all_sdl FAIL fname:",fname,color="red")
  288. def movewin(_id="0xWinId",x=None,y=None):
  289. print()
  290. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  291. cmd="xdotool windowmove {} {} {}".format(_id,x,y)
  292. print("movewin.movewin:",cmd)
  293. return cmd
  294. def sizewin(_id="0xWinId",x=None,y=None):
  295. print()
  296. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  297. cmd="xdotool windowsize {} {} {}".format(_id,x,y)
  298. return cmd
  299. def activate(_id="0xWinId"):
  300. cmd="xdotool windowactivate {}".format(_id)
  301. return cmd
  302. def system(cmd):
  303. print(cmd)
  304. os.system(cmd)
  305. def search_process(_file_path,exact=1):
  306. print("search_process",_file_path)
  307. pids = psutil.pids()
  308. count = 0
  309. out = []
  310. for pid in pids:
  311. try:
  312. p = psutil.Process(pid)
  313. except psutil.NoSuchProcess:
  314. break
  315. ps = p.cmdline()
  316. if len(ps) < 2:
  317. continue
  318. if "python" not in ps[0]:
  319. continue
  320. #print(" ",[ps[1]])
  321. #print("exact_search",exact)
  322. if exact:
  323. if str(_file_path) == str(ps[1]):
  324. print(ps)
  325. count += 1
  326. out.append(pid)
  327. else:
  328. if str(_file_path) in str(ps[1]):
  329. print(ps)
  330. count += 1
  331. out.append(pid)
  332. print("search_process",count)
  333. return out
  334. def process_kill(path):
  335. pids = search_process(path,exact=0)
  336. for pid in pids:
  337. print("process_kill:",[path,pid])
  338. cmd="kill -kill {} ".format(pid)
  339. os.system(cmd)
  340. time.sleep(0.2)
  341. #for pid in pids:
  342. # print("process_kill:",path,pid)
  343. # p = psutil.Process(pid)
  344. # #p.name()
  345. # #p.cmdline()
  346. # p.terminate()
  347. # p.wait()
  348. print("process_kill OK")
  349. def get_lineno():
  350. callerframerecord = inspect.stack()[1] # 0 represents this line
  351. # 1 represents line at caller
  352. frame = callerframerecord[0]
  353. info = inspect.getframeinfo(frame)
  354. #print(info.filename) # __FILE__ -> Test.py
  355. #print(info.function) # __FUNCTION__ -> Main
  356. #print(info.lineno) # __LINE__ -> 13
  357. return info.lineno
  358. if __name__ == "__main__":
  359. print("# python3 movewin.py window-title x y")
  360. print("# python3 movewin.py COMMA 723 943")
  361. import random
  362. a=random.randint(100,400)
  363. b=random.randint(100,400)
  364. search = "ASD"
  365. try:
  366. search = sys.argv[1]
  367. search = search.replace("'","")
  368. except:pass
  369. try:
  370. a = sys.argv[2]
  371. except:pass
  372. try:
  373. b = sys.argv[3]
  374. except:pass
  375. _ids = winfo(search)
  376. for _id in _ids:
  377. c1 = sizewin(_id,a,b)
  378. c2 = movewin(_id,a,b)
  379. c3 = activate(_id)
  380. system(c1)
  381. time.sleep(0.1)
  382. system(c2)
  383. time.sleep(0.1)
  384. system(c3)
  385. def check_is_started(CAPTION,_file_path,sleep=0):
  386. if sleep:
  387. time.sleep(sleep)
  388. pids = search_process(_file_path)
  389. if len(pids) >= 2:
  390. search = CAPTION[:]
  391. _ids = winfo(search)
  392. for _id in _ids:
  393. c3 = activate(_id)
  394. print()
  395. print(" check_is_started CMD:",c3)
  396. print(" EXIT",_file_path,CAPTION)
  397. os.system(c3)
  398. time.sleep(1)
  399. print(" EXIT",_file_path,CAPTION)
  400. print()
  401. sys.exit()
  402. if __name__ == "__main__":
  403. w = Control()
  404. print(sys.argv)
  405. w.title = "gpk-update-viewer-org"
  406. w.title = "Paketaktualisierung\""
  407. if len(sys.argv) >= 2:
  408. w.title = sys.argv[1]
  409. w.winfo()
  410. w.move(10,10)