movewin.py 12 KB

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