movewin.py 12 KB

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