movewin.py 11 KB

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