movewin.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  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="EXEC-BTN"))
  117. lines.extend( winfo2(name="EXEC-XWING"))
  118. out_lines=[]
  119. for line in lines:
  120. t=line[2].split()
  121. for k in t:
  122. k = k.replace(" ", "_")
  123. if "SDL-" in k or "RAY-" in k or "TK-" in k or "EXEC-BTN" in k or "EXEC-XWING" in k:
  124. s=line[-2]
  125. p=line[-1]
  126. # info: b x h + x + y
  127. out = [1,k, s[0],s[1],p[0],p[1] ]
  128. out_lines.append(out)
  129. return out_lines
  130. def load_all_sdl(title="X"):
  131. fname = SHOW_PATH + "/gui-sdl.txt"
  132. if not os.path.isfile(fname):
  133. return
  134. f=open(fname,"r")
  135. lines = f.readlines()
  136. f.close()
  137. print(" load_all_sdl fname:",fname)
  138. for line in lines:
  139. if title in line:
  140. return json.loads(line)
  141. def _start_sub(cmd,name,mute=0):
  142. r = os.popen(cmd)
  143. while 1:
  144. #print(dir(r))
  145. line = r.readline()
  146. if not line:
  147. break
  148. line = line.strip()
  149. if mute == 0:
  150. cprint(name,":",[line],color="blue")
  151. cprint("EXIT:",name,cmd)
  152. #BrokenPipeError: [Errno 32] Broken pipe
  153. def start_sub(cmd,name="<PROCESS>",mute=0):
  154. cprint(" start_sub",cmd,name,"mute-stdout:",mute,color="green")
  155. thread.start_new_thread(_start_sub,(cmd,name,mute)) # SERVER
  156. def startup_all_sdl():
  157. #print()
  158. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  159. fname = SHOW_PATH + "/gui-sdl.txt"
  160. if not os.path.isfile(fname):
  161. return
  162. f=open(fname,"r")
  163. xlines = f.readlines()
  164. f.close()
  165. print()
  166. cprint("startup_all_sdl() ",fname,color="yellow")
  167. xlines2 = []
  168. for line in xlines:
  169. # cleanup and info loop
  170. line = line.strip()
  171. if line.startswith("#-- history"):
  172. break
  173. if line.startswith("#"):
  174. continue
  175. if not line:
  176. continue
  177. xlines2.append(line)
  178. print(" line >> ",[line])
  179. # ------------------
  180. print()
  181. for line in xlines2:
  182. print(" line >> ",[line])
  183. try:
  184. line = json.loads(line)
  185. except json.decoder.JSONDecodeError as e:
  186. cprint("ERR",e,color="red")
  187. continue
  188. cmd = "python3 /opt/LibreLight/Xdesk/tksdl/{}"
  189. if "--easy" in sys.argv:
  190. if line[1] == "EXEC-BTN":
  191. cmd = "python3 /opt/LibreLight/Xdesk/tkgui/{}"
  192. cmd=cmd.format("EXEC-BTN.py")
  193. #r=os.popen(cmd)
  194. start_sub(cmd,"EXEC-BTN",mute=1)
  195. else:
  196. if line[1] == "SDL-MIDI":
  197. cmd=cmd.format("midi.py")
  198. #r=os.popen(cmd)
  199. start_sub(cmd,"SDL-MIDI",mute=1)
  200. elif line[1] == "SDL-DMX":
  201. cmd=cmd.format("dmx.py")
  202. #os.popen(cmd)
  203. start_sub(cmd,"SDL-DMX",mute=1)
  204. elif line[1] == "SDL-FIX-LIST":
  205. cmd=cmd.format("fix.py")
  206. #r=os.popen(cmd)
  207. start_sub(cmd,"SDL-FIX",mute=1)
  208. elif line[1] == "EXEC-BTN":
  209. cmd = "python3 /opt/LibreLight/Xdesk/tkgui/{}"
  210. cmd=cmd.format("EXEC-BTN.py")
  211. #r=os.popen(cmd)
  212. start_sub(cmd,"EXEC-BTN",mute=1)
  213. elif line[1] == "EXEC-XWING":
  214. cmd = "python3 /opt/LibreLight/Xdesk/tkgui/{}"
  215. cmd=cmd.format("EXEC-XWING.py")
  216. #r=os.popen(cmd)
  217. start_sub(cmd,"EXEC-XWING",mute=1)
  218. time.sleep(0.3)
  219. print()
  220. def store_all_sdl():
  221. #print()
  222. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  223. error = 0
  224. fname = SHOW_PATH + "/gui-sdl.txt"
  225. in_lines = []
  226. if os.path.isfile(fname):
  227. f=open(fname,"r")
  228. xlines = f.readlines()
  229. f.close()
  230. #print(" store_all_sdl fname",fname)
  231. for line in xlines:
  232. line = line.strip()
  233. if not line.startswith("#") and line:
  234. in_lines.append(line)
  235. #in_lines.append('[0,"xx aa",0,0,0,0]')
  236. #for line in in_lines:
  237. # print(" R:",[line])
  238. lines = get_store_sdl_line()
  239. ap_line = []
  240. pop = []
  241. for line in lines:
  242. ok = 0
  243. iline = ""
  244. for j,iline in enumerate(in_lines):
  245. if line[1] in iline:
  246. if j not in pop:
  247. pop.append(j)
  248. #print(" del ",j,line)
  249. for i in pop[::-1]:
  250. try:
  251. in_lines.pop(i)
  252. except Exception as e:
  253. cprint(" ERR:",e,color="red")
  254. error += 0
  255. temp = {}
  256. for i in in_lines:
  257. k = json.loads(i)[1]
  258. if k not in temp:
  259. temp[k] = i
  260. f=open(fname,"w")
  261. f.write("#"+json.dumps(["on","title","w","h","x","y"])+"\n")
  262. for line in lines:
  263. f.write(json.dumps(line)+"\n")
  264. f.write("\n")
  265. f.write("#-- history \n")
  266. for k,line in temp.items(): #in_lines:
  267. #print("+++>",line)
  268. f.write(line+"\n")
  269. f.write("\n")
  270. f.close()
  271. if not error:
  272. cprint(" store_all_sdl OK fname:",fname,color="green")
  273. return 1
  274. cprint(" store_all_sdl FAIL fname:",fname,color="red")
  275. def movewin(_id="0xWinId",x=None,y=None):
  276. print()
  277. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  278. cmd="xdotool windowmove {} {} {}".format(_id,x,y)
  279. print("movewin.movewin:",cmd)
  280. return cmd
  281. def sizewin(_id="0xWinId",x=None,y=None):
  282. print()
  283. #print("-> def",inspect.currentframe().f_code.co_name,"-"*10)
  284. cmd="xdotool windowsize {} {} {}".format(_id,x,y)
  285. return cmd
  286. def activate(_id="0xWinId"):
  287. cmd="xdotool windowactivate {}".format(_id)
  288. return cmd
  289. def system(cmd):
  290. print(cmd)
  291. os.system(cmd)
  292. def search_process(_file_path,exact=1):
  293. print("search_process",_file_path)
  294. pids = psutil.pids()
  295. count = 0
  296. out = []
  297. for pid in pids:
  298. try:
  299. p = psutil.Process(pid)
  300. except psutil.NoSuchProcess:
  301. break
  302. ps = p.cmdline()
  303. if len(ps) < 2:
  304. continue
  305. if "python" not in ps[0]:
  306. continue
  307. #print(" ",[ps[1]])
  308. #print("exact_search",exact)
  309. if exact:
  310. if str(_file_path) == str(ps[1]):
  311. print(ps)
  312. count += 1
  313. out.append(pid)
  314. else:
  315. if str(_file_path) in str(ps[1]):
  316. print(ps)
  317. count += 1
  318. out.append(pid)
  319. print("search_process",count)
  320. return out
  321. def process_kill(path):
  322. pids = search_process(path,exact=0)
  323. for pid in pids:
  324. print("process_kill:",[path,pid])
  325. cmd="kill -kill {} ".format(pid)
  326. os.system(cmd)
  327. time.sleep(0.2)
  328. #for pid in pids:
  329. # print("process_kill:",path,pid)
  330. # p = psutil.Process(pid)
  331. # #p.name()
  332. # #p.cmdline()
  333. # p.terminate()
  334. # p.wait()
  335. print("process_kill OK")
  336. def get_lineno():
  337. callerframerecord = inspect.stack()[1] # 0 represents this line
  338. # 1 represents line at caller
  339. frame = callerframerecord[0]
  340. info = inspect.getframeinfo(frame)
  341. #print(info.filename) # __FILE__ -> Test.py
  342. #print(info.function) # __FUNCTION__ -> Main
  343. #print(info.lineno) # __LINE__ -> 13
  344. return info.lineno
  345. if __name__ == "__main__":
  346. print("# python3 movewin.py window-title x y")
  347. print("# python3 movewin.py COMMA 723 943")
  348. import random
  349. a=random.randint(100,400)
  350. b=random.randint(100,400)
  351. search = "ASD"
  352. try:
  353. search = sys.argv[1]
  354. search = search.replace("'","")
  355. except:pass
  356. try:
  357. a = sys.argv[2]
  358. except:pass
  359. try:
  360. b = sys.argv[3]
  361. except:pass
  362. _ids = winfo(search)
  363. for _id in _ids:
  364. c1 = sizewin(_id,a,b)
  365. c2 = movewin(_id,a,b)
  366. c3 = activate(_id)
  367. system(c1)
  368. time.sleep(0.1)
  369. system(c2)
  370. time.sleep(0.1)
  371. system(c3)
  372. def check_is_started(CAPTION,_file_path,sleep=0):
  373. if sleep:
  374. time.sleep(sleep)
  375. pids = search_process(_file_path)
  376. if len(pids) >= 2:
  377. search = CAPTION[:]
  378. _ids = winfo(search)
  379. for _id in _ids:
  380. c3 = activate(_id)
  381. print()
  382. print(" check_is_started CMD:",c3)
  383. print(" EXIT",_file_path,CAPTION)
  384. os.system(c3)
  385. time.sleep(1)
  386. print(" EXIT",_file_path,CAPTION)
  387. print()
  388. sys.exit()