Esempio n. 1
0
 def kb_event(self, win, zxchar):
     s = zx2str([zxchar])
     if s in 'sS' or zxchar == 12:
         if "Linux" in platform.system():
             self.mainwin.cls()
             self.mainwin.prttxt(
                 str2zx('\nshutdown initiated\n\n    good bye.',
                        upper_inv=True))
             self.mrg.update(wait_till_sync_done=True)
             subprocess.run(
                 ["sudo", "shutdown", "-h", "0"]
             )  # sudo is reqired if the process was started via /etc/rc.local
         else:
             self.mainwin.prttxt(
                 str2zx('\nshutdown not supported on %s host.' %
                        (platform.system()),
                        upper_inv=False))
     elif s in 'xX':
         self.close()
         app.clear()
         return
     elif s in 'uU':
         if self.proc is None:
             self.start()
     else:
         self.mainwin.cls()
         self.print_help()
Esempio n. 2
0
    def kb_event(self, win, zxchar):
        #win.prtchar(zxchar)
        bright = {'1': 1.5, '2': 1.2, '3': 1.0, '4': 0.83, '5': 0.67}
        contr = {'6': 0.2, '7': 0.33, '8': 0.5, '9': 0.8, '0': 1.2}
        s = zx2str([zxchar])
        if s in 'xX' or zxchar == 12:
            self.close()
            return
        elif s in 'fF':
            self.delay_s = 0.15
        elif s in 'sS':
            self.delay_s = 3.0
        elif s in 'dD':
            self.floyd_stb = not self.floyd_stb
        elif s in 'iI':
            self.invert = not self.invert
        elif s in 'rR':
            self.h_v_rot += 1

        elif s in 'pP':
            if self.app_state == AppState.SHOW:
                self.app_state = AppState.PIC_QUERY_YN
                if self.ctrlwin: self.ctrlwin.close()
                self.ctrlwin = TextWindow(self.mgr,
                                          10,
                                          1,
                                          18,
                                          19,
                                          border=WindowBorderFrame(),
                                          kb_event=self.kb_event_query,
                                          cursor_off=True)
                self.ctrlwin.prttxt(str2zx('save? Y/N', upper_inv=True))

        elif s in 'mM':
            self.movie.clear()
            self.replay_ix = 0
            if self.app_state == AppState.SHOW:
                self.app_state = AppState.MOVIE_REC
                if self.ctrlwin: self.ctrlwin.close()
                self.ctrlwin = TextWindow(self.mgr,
                                          13,
                                          1,
                                          17,
                                          19,
                                          border=WindowBorderFrame(),
                                          kb_event=self.kb_event_query,
                                          cursor_off=True)
                self.ctrlwin.prttxt(str2zx('recording', upper_inv=True))

        elif s in bright:
            self.brightness = bright[s]
        elif s in contr:
            self.contrast = contr[s]
        # TODO invers, save_pic, help, exit
        self.ctrlwin_timeout = time.time() + 3
        self.check_show_ctrlwin()
        self.event.reschedule(0.2, 5.0)
Esempio n. 3
0
 def show_help(self):
     self.mainwin.prttxt(
         str2zx('\n      ZX LIVE CAMERA       \n\n', inverse=True))
     self.mainwin.prttxt(
         str2zx(
             '\n\n NEWLINE to start\n\n F fast update    S slow update\n\n D dithering\n\n I invert',
             upper_inv=True))
     self.mainwin.prttxt(
         str2zx('\n\n R rotate\n\n 1-5 bright\n\n 6-0 contrast\n\n X exit',
                upper_inv=True))
Esempio n. 4
0
 def connect(self):
     self.revent.reschedule(15.0, 1.0)  # give 3 sec for connect
     self.listener.start((self.server, self.port), self.nick, self.pword)
     self.inp_mode = InpMode.ONLINE
     self.mainwin.cls()
     self.mainwin.prttxt(
         str2zx('\n\nCONNECT to %s..\n\n' % (self.server), upper_inv=True))
Esempio n. 5
0
 def __init__(self, mgr):
     self.mgr = mgr
     self.mainwin = TextWindow(mgr,
                               32,
                               24,
                               0,
                               0,
                               kb_event=self.kb_event,
                               cursor_off=True)
     self.ctrlwin = None
     self.ctrlwin_timeout = time.time() + 20
     self.edlin = None
     self.show_offset = 0
     self.max_lines = 16
     self.f_index_str = '1234567890ABCDEFGHI'
     self.f_index = str2zx(self.f_index_str)
     self.actual_lines = 0
     self.charmap = [15] * 256
     self.build_charmap()
     self.cam = None
     self.camout = None
     self.app_state = AppState.SHOW
     self.replay_ix = 0
     self.delay_s = 3.0
     self.event = mgr.schedule_event(self.periodic, 1.0, 5.0)
     self.contrast = 0.5
     self.brightness = 1.0
     self.invert = False
     self.h_v_rot = 0  # H/V flip or rotate status as three LSB bits
     self.floyd_stb = False
     self.applied_rot = None
     self.check_show_ctrlwin()
     self.movie = []
     self.last_pic = None
Esempio n. 6
0
 def periodic(self):
     startt = time.time()
     if self.app_state == AppState.SHOW:
         if self.ctrlwin and time.time() > self.ctrlwin_timeout:
             self.ctrlwin.close()
             self.ctrlwin = None
     if self.app_state in (AppState.SHOW, AppState.MOVIE_REC):
         self.last_pic = self.get_img_mono()
         self.mgr.update(0.08)  # allow for kb inp response
         if self.app_state in (AppState.SHOW, AppState.MOVIE_REC):
             lrg = self.calc_lrg_from_array(self.last_pic)
             self.show_lrg(lrg)
             if self.app_state == AppState.MOVIE_REC:
                 if len(self.movie) < 50:
                     self.movie.append(self.last_pic)
                     self.ctrlwin.set_prtpos(0, 0)
                     self.ctrlwin.prttxt(
                         str2zx('recording %02d' % len(self.movie),
                                upper_inv=True))
                 else:
                     self.end_movie_rec()
             evt_t = time.time() - startt
             self.event.reschedule(max(0.08, self.delay_s - evt_t), 5.0)
     elif self.app_state in (AppState.MOVIE_QUERY_YN,
                             AppState.MOVIE_QUERY_NAME):
         if len(self.movie):
             if self.replay_ix >= len(self.movie): self.replay_ix = 0
             lrg = self.calc_lrg_from_array(self.movie[self.replay_ix])
             self.show_lrg(lrg)
             self.replay_ix += 1
             evt_t = time.time() - startt
             self.event.reschedule(max(0.08, self.delay_s - evt_t), 5.0)
Esempio n. 7
0
 def start(self):
     self.mainwin.cls()
     self.mainwin.prttxt(str2zx('\nstart update attempt...\n',upper_inv=True ))
     self.proc = Popen( ['git','pull','origin','master']  ,shell=False,stdin=PIPE, stdout=PIPE, stderr=PIPE, universal_newlines=True)
     self.outThread = Thread(target=self.out_handler_thread, args=(self.proc.stdout,))
     self.errThread = Thread(target=self.out_handler_thread, args=(self.proc.stderr,))
     self.outThread.start()
     self.errThread.start()
Esempio n. 8
0
 def check_show_ctrlwin(self):
     if not self.ctrlwin:
         self.ctrlwin = TextWindow(self.mgr,
                                   14,
                                   13,
                                   14,
                                   9,
                                   border=WindowBorderFrame(
                                       str2zx('ZX LIVE CAM')),
                                   kb_event=self.kb_event,
                                   cursor_off=True)
         self.ctrlwin.prttxt(
             str2zx('F fast S slow\n\nD dith I invrt', upper_inv=True))
         self.ctrlwin.prttxt(str2zx('\nP pic M movie\n', upper_inv=True))
         self.ctrlwin.prttxt(
             str2zx('\nR rotate\n\n1-5 brightness6-0 contrast\n\nX exit',
                    upper_inv=True))
     elif time.time() > self.ctrlwin_timeout:
         self.ctrlwin.close()
         self.ctrlwin = None
Esempio n. 9
0
 def end_movie_rec(self):
     self.app_state = AppState.MOVIE_QUERY_YN
     if self.ctrlwin: self.ctrlwin.close()
     self.ctrlwin = TextWindow(self.mgr,
                               10,
                               1,
                               18,
                               19,
                               border=WindowBorderFrame(),
                               kb_event=self.kb_event_query,
                               cursor_off=True)
     self.ctrlwin.prttxt(str2zx('save? Y/N', upper_inv=True))
Esempio n. 10
0
 def out_handler_thread(self, p):
     print("out_handler_thread starts...")
     #self.event.set()
     while True:
         # print("read data: ")
         data = p.read(1)  #.decode("utf-8")
         if not data:
             break
         z = str2zx(data)
         sys.stdout.write(data)
         sys.stdout.flush()
         for c in z:
             self.mainwin.prtchar(c)
     print("Shell Out")
Esempio n. 11
0
 def choose_site(self):
     self.mainwin.cls()
     self.mainwin.prttxt(str2zx('\n\n', upper_inv=True))
     self.mainwin.prttxt(
         str2zx('       ZXPI IRC CHAT CLIENT     ', inverse=True))
     self.mainwin.prttxt(
         str2zx('\n\n N >nick   (%s)' % (self.nick), upper_inv=True))
     self.mainwin.prttxt(
         str2zx('\n\n S >server (%s)' % (self.server), upper_inv=True))
     self.mainwin.prttxt(
         str2zx('\n\n P >port   (%d)' % (self.port), upper_inv=True))
     self.mainwin.prttxt(
         str2zx('\n\n W >password (%s)' %
                ('*' * len(self.pword) if len(self.pword) else 'none'),
                upper_inv=True))
     self.mainwin.prttxt(
         str2zx('\n\n C connect \n\n\n X exit\n\n', upper_inv=True))
     self.inp_win.cls()
     self.inp_win.prttxt(str2zx('please select'))
Esempio n. 12
0
 def __init__(self, mgr):
     self.mgr = mgr
     self.mainwin = TextWindow(mgr,
                               30,
                               22,
                               1,
                               1,
                               border=WindowBorderFrame(),
                               kb_event=self.kb_event,
                               cursor_off=True)
     self.homecwd = Path.cwd().parent / 'zxroot'
     self.cwd = self.homecwd
     self.cwdfiles = []
     self.show_offset = 0
     self.max_lines = 16
     self.f_index_str = '1234567890ABCDEFGHI'
     self.f_index = str2zx(self.f_index_str)
     self.actual_lines = 0
     self.get_dir()
     self.show_dir()
Esempio n. 13
0
 def show_dir(self):
     self.mainwin.cls()
     xs = self.mainwin.xsize
     # current path
     self.mainwin.prttxt(str2zx(str(self.cwd)[-xs:]))
     # directory
     self.mainwin.set_prtpos(0, 2)
     numf = len(self.cwdfiles)
     actual_lines = min(self.max_lines, numf - self.show_offset)
     for linenum in range(actual_lines):
         f = self.cwdfiles[linenum + self.show_offset]
         dirchar = 4 if f.is_dir() else ZXCHAR_BLANK
         self.mainwin.prttxt([
             self.f_index[linenum] | ZXCHAR_INV_FLG, ZXCHAR_BLANK, dirchar
         ] + str2zx(f.name[:xs - 4] + '\n'))
     self.mainwin.set_prtpos(0, self.max_lines + 2)
     # Show bas to orient
     if numf <= self.max_lines:
         self.mainwin.prttxt(str2zx('_' * xs))
     else:
         s1 = self.show_offset * xs // numf
         s2 = s1 + actual_lines * xs // numf
         for i in range(xs):
             self.mainwin.prtchar(131 if s1 <= i <= s2 else 9)
     self.mainwin.set_prtpos(1, self.max_lines + 4)
     self.mainwin.prttxt(
         str2zx('%s-%s' %
                (self.f_index_str[0], self.f_index_str[actual_lines - 1]),
                inverse=True))
     self.mainwin.prttxt(str2zx(':select', upper_inv=True))
     self.mainwin.prttxt(
         str2zx('  Prev',
                upper_inv=True if self.show_offset > 0 else False))
     self.mainwin.prttxt(
         str2zx('  Next',
                upper_inv=True if self.show_offset +
                self.max_lines < len(self.cwdfiles) else False))
     self.mainwin.prttxt(
         str2zx('  Up', upper_inv=True if self.cwd.parents else False))
Esempio n. 14
0
        while True:
            m.update(0.7)

        #w0=zx_app_host.TextWindow(m,30,18,1,1)
        #w0.cls(8)
        def kb_event_w1(win, key):
            print("kb_event_w1")
            win.prtchar(key)

        w1 = zx_app_host.TextWindow(m,
                                    25,
                                    20,
                                    2,
                                    2,
                                    border=zx_app_host.WindowBorderFrameShadow(
                                        title=str2zx("EDIT win")),
                                    kb_event=kb_event_w1)
        w1.cls()
        w2 = zx_app_host.TextWindow(m,
                                    20,
                                    9,
                                    10,
                                    4,
                                    border=zx_app_host.WindowBorderFrame())
        w2.cls(7)
        w3 = zx_app_host.TextWindow(
            m, 3, 3, 16, 7, border=zx_app_host.WindowBorderFrameShadow())
        w3.cls()
        count = [0]

        def periodic():
Esempio n. 15
0
 def print_help(self):
     self.mainwin.prttxt(str2zx('\n\n',upper_inv=True ))
     self.mainwin.prttxt(str2zx('      ZXPI ONLINE UPDATER     ',inverse=True ))
     self.mainwin.prttxt(str2zx('\n\n U start update \n\n X exit\n\n',upper_inv=True ))
Esempio n. 16
0
 def print_help(self):
     self.mainwin.prttxt(str2zx('\n', upper_inv=True))
     self.mainwin.prttxt(str2zx('  ZXPI SHUTDOWN   \n', inverse=True))
     self.mainwin.prttxt(
         str2zx('\n\n S shut down pi \n\n X return + go on\n',
                upper_inv=True))
Esempio n. 17
0
 def periodic(self):
     if self.inp_mode == InpMode.ONLINE and not self.listener.conn:
         self.mainwin.prttxt(str2zx('\n\nDISCONNECT\n\n', upper_inv=True))
         self.disconnect()
         self.mgr.update(1.5)
         self.choose_site()
Esempio n. 18
0
    def kb_event(self, win, zxchar):
        #win.prtchar(zxchar)
        s = zx2str([zxchar])
        redraw = False
        if s in 'nN':
            self.show_offset += self.max_lines
            redraw = True
        elif zxchar == 12:  # break
            mwin = self.mgr.show_msg_win(str2zx("exit. bye."))
            raise Exception('Exit')
        elif s in 'pP':
            self.show_offset -= self.max_lines
            redraw = True
        elif s in 'uUxX':
            if self.cwd.parents:
                self.cwd = self.cwd.parents[0]
                self.get_dir()
                redraw = True
        elif s in 'hH':  # Home directory
            self.cwd = self.homecwd
            self.get_dir()
            redraw = True
        elif s in 'wW':
            self.mgr.show_dialog(str2zx('press NEWLINE', upper_inv=True))
        elif zxchar in self.f_index:
            ix = self.f_index.index(zxchar) + self.show_offset
            if ix < len(self.cwdfiles):
                fi = self.cwdfiles[ix]
                if fi.is_dir():
                    self.cwd = fi
                    self.get_dir()
                    redraw = True
                elif fi.suffix.lower() == '.p':
                    name = str(fi)
                    print("LOAD ", name)
                    mwin = self.mgr.show_msg_win(
                        str2zx("load %s .." % (fi.stem)))
                    mwin.close()
                    self.mgr.server.load_p_file(name)
                    #time.sleep(0.5) # todo remove, was just for diag
                elif fi.suffix.lower() == '.py':
                    mwin = self.mgr.show_msg_win(
                        str2zx("open %s .." % (fi.stem)))
                    try:
                        spath = self.cwdfiles[ix]
                        target = Path.cwd(
                        ) / 'apps' / 'tmp' / self.cwdfiles[ix].name
                        if spath != target: copyfile(str(spath), str(target))
                        print("Copy from ", str(spath))
                        print("Copy to ", str(target))
                        module = "apps.tmp." + fi.stem  # we are already in apps
                        newmod = importlib.import_module(module)
                        importlib.reload(newmod)
                        mwin.close()
                        newmod.start(self.mgr)
                    except Exception as e:
                        mwin.close()
                        print(e)
                        traceback.print_exc()
                        self.mgr.show_dialog(str2zx("error loading module"))
#                    eval("print(globals())")
#                   print("Eval GLOB",modcmd)
#                  eval("print(globals())", globals())
#                 r=eval(modcmd, globals())
#                print("LOADed PYTHON ")
                elif fi.suffix.lower() in ('.zxscr', '.zxmovie'):
                    try:
                        apps.media_viewer.start(self.mgr, fi)
                    except Exception as e:
                        print(e)
                        traceback.print_exc()
                        self.mgr.show_dialog(str2zx("error showing file"))

        if redraw:

            self.show_offset = min(self.show_offset, len(self.cwdfiles) - 2)
            self.show_offset = max(0, self.show_offset)
            self.show_dir()
Esempio n. 19
0
 def kb_event_query(self, win, zxchar):
     #win.prtchar(zxchar)
     s = zx2str([zxchar])
     if self.app_state in (AppState.PIC_QUERY_NAME,
                           AppState.MOVIE_QUERY_NAME):
         if zxchar in (117, 118):  # enter,break
             if zxchar == 118:  # enter
                 self.edlin.kb_event(zxchar)
                 if self.app_state == AppState.PIC_QUERY_NAME:
                     if self.edlin.val:
                         # safe pic
                         name = zx2str(self.edlin.val,
                                       to_lower=True).strip()
                         #path
                         mwin = self.mgr.show_msg_win(str2zx("save pic .."))
                         p = zxpi_paths.get_current_work_path() / 'pics'
                         if not p.exists(): p.mkdir(parents=True)
                         n = p / (name + '.zxscr')
                         with n.open('wb') as f:
                             lrg = self.calc_lrg_from_array(self.last_pic)
                             nr, nc = lrg.shape
                             for row in range(nr):
                                 #for col in range(nc):
                                 f.write(bytes([v for v in lrg[row]]))
                             print("Saved to", str(n))
                         mwin.close()
                 elif self.app_state == AppState.MOVIE_QUERY_NAME:
                     if self.edlin.val:
                         # save movie
                         name = zx2str(self.edlin.val,
                                       to_lower=True).strip()
                         #path
                         pth = zxpi_paths.get_current_work_path() / 'movies'
                         if not pth.exists(): pth.mkdir(parents=True)
                         n = pth / (name + '.zxmovie')
                         mwin = self.mgr.show_msg_win(
                             str2zx("save movie .."))
                         mv_dat = bytearray()
                         with n.open('wb') as f:
                             for p in self.movie:
                                 lrg = self.calc_lrg_from_array(p)
                                 nr, nc = lrg.shape
                                 for row in range(nr):
                                     #for col in range(nc):
                                     rowdat = bytearray(
                                         [v for v in lrg[row]])
                                     mv_dat += rowdat
                                     f.write(rowdat)
                             print("Saved as", str(n))
                         self.mgr.update(0.1)
                         n = pth / (name + '.p')
                         with n.open('wb') as f:
                             f.write(
                                 create_comp_viewer(compress_scr(mv_dat)))
                         mwin.close()
             if self.edlin:
                 self.edlin.close()
                 self.edlin = None
             self.app_state = AppState.SHOW
             self.ctrlwin_timeout = 0
             if self.ctrlwin:
                 self.ctrlwin.close()
                 self.ctrlwin = None
         else:
             self.edlin.kb_event(zxchar)
     elif self.app_state in (AppState.MOVIE_REC, ):
         self.end_movie_rec()
     else:
         if s in 'yYzZ':
             if self.app_state in (AppState.PIC_QUERY_YN,
                                   AppState.MOVIE_QUERY_YN):
                 self.app_state = AppState.PIC_QUERY_NAME if self.app_state == AppState.PIC_QUERY_YN else AppState.MOVIE_QUERY_NAME
                 if self.ctrlwin: self.ctrlwin.close()
                 self.ctrlwin = TextWindow(self.mgr,
                                           12,
                                           2,
                                           18,
                                           19,
                                           border=WindowBorderFrame(),
                                           kb_event=self.kb_event_query,
                                           cursor_off=True)
                 self.ctrlwin.prttxt(str2zx('file name:', upper_inv=True))
                 self.edlin = LinEd(self.ctrlwin,
                                    0,
                                    1,
                                    11,
                                    maxchar=255,
                                    history=None)
         else:
             self.app_state = AppState.SHOW
             if self.ctrlwin:
                 self.ctrlwin.close()
                 self.ctrlwin = None
         self.event.reschedule(0.2, 5.0)
Esempio n. 20
0
 def kb_event(self, win, char):
     if self.inp_mode == InpMode.MENU:
         if char == 56:  # S
             self.inp_win.cls()
             self.inp_win.prttxt(
                 str2zx(' please enter server address: ', inverse=True))
             self.ed = LinEd(self.inp_win, 0, 1, 29, 255,
                             bytes(str2zx(self.server)))
             self.inp_mode = InpMode.INP_SRV
         elif char == 53:  # P
             self.inp_win.cls()
             self.inp_win.prttxt(
                 str2zx(' please enter port number: ', inverse=True))
             self.ed = LinEd(self.inp_win, 0, 1, 6, 5,
                             bytes(str2zx(str(self.port))))
             self.inp_mode = InpMode.INP_PORT
         elif char == 60:  # W
             self.inp_win.cls()
             self.inp_win.prttxt(
                 str2zx(' please enter pass word: ', inverse=True))
             self.ed = LinEd(self.inp_win, 0, 1, 29, 255)
             self.inp_mode = InpMode.INP_PWORD
         elif char == 51:  # N
             self.inp_win.cls()
             self.inp_win.prttxt(
                 str2zx(' please enter nickname: ', inverse=True))
             self.ed = LinEd(self.inp_win, 0, 1, 29, 255,
                             bytes(str2zx(self.nick)))
             self.inp_mode = InpMode.INP_NICK
         elif char == 40:  # C
             self.inp_win.cls()
             self.inp_win.prttxt(
                 str2zx('   /join /part /quit /help', inverse=False))
             self.ed = LinEd(self.inp_win, 0, 1, 29, 255)
             self.connect()
         elif char == 61 or char == 117:  # x or break
             self.close()
             app.clear()
             # TODO clear threads
     elif self.inp_mode in (InpMode.INP_SRV, InpMode.INP_PORT,
                            InpMode.INP_PWORD, InpMode.INP_NICK):
         if char in (117, 118):  # enter,break
             if char == 118:  # enter
                 if self.inp_mode == InpMode.INP_SRV:
                     if self.ed.val.strip():
                         self.server = zx2str(self.ed.val, to_lower=True)
                 if self.inp_mode == InpMode.INP_NICK:
                     if self.ed.val.strip():
                         self.nick = zx2str(self.ed.val, to_lower=True)
                 elif self.inp_mode == InpMode.INP_PWORD:
                     self.pword = zx2str(self.ed.val, to_lower=True)
                 else:
                     try:
                         self.port = int(zx2str(self.ed.val))
                     except:
                         pass
             self.ed.close()
             self.ed = None
             self.inp_mode = InpMode.MENU
             self.choose_site()
         else:
             self.ed.kb_event(char)
     elif self.inp_mode == InpMode.ONLINE:
         if char == 118:  # enter
             s = zx2str(self.ed.val, to_lower=True).strip()
             self.ed.clear()
             if s.startswith("/q"):
                 self.listener.send('QUIT :bye\r\n')
                 time.sleep(0.1)
                 self.disconnect()
                 self.ed.close()
                 self.ed = None
                 self.inp_mode = InpMode.MENU
                 self.choose_site()
             elif s.startswith("/join ") and len(s.split()) == 2:
                 self.channel = '#' + s.split()[1]
                 self.listener.send('JOIN %s\r\n' % (self.channel))
             elif s.startswith("/part") and self.channel:
                 self.listener.send('PART %s\r\n' % (self.channel))
                 self.channel = ''
             elif s.startswith("/list"):
                 self.listener.send('LIST\r\n')
             elif s.startswith("/names"):
                 self.listener.send('NAMES %s\r\n' % (self.channel))
             elif s.startswith("/h"):
                 self.mainwin.cls()
                 z = str2zx('\n\n HELP on the irc client usage \n\n',
                            inverse=True)
                 z += str2zx(
                     '\n/JOIN <mychannel>  join channel\n      (just omit the hash tag)\n',
                     upper_inv=True)
                 z += str2zx('\n/PART   leave the channel\n',
                             upper_inv=True)
                 z += str2zx('\n/NAMES  show who is there\n',
                             upper_inv=True)
                 z += str2zx('\n/LIST   list all channels\n',
                             upper_inv=True)
                 z += str2zx('\n/QUIT   exit from server\n', upper_inv=True)
                 z += str2zx(
                     '\n after joining, type a message   to all users in that channel\n',
                     upper_inv=True)
                 z += str2zx('\n        have fun       \n', inverse=True)
                 self.mainwin.prttxt(z)
             elif s.startswith("/"):
                 z = str2zx('\n??? unknown cmd %s' % (s.strip()))
                 self.mainwin.prttxt(z)
             else:
                 self.listener.send('PRIVMSG %s :%s\r\n' %
                                    (self.channel, s))
                 z = str2zx('\n<%s> %s' % (self.nick, s.strip()))
                 self.mainwin.prttxt(z)
         else:
             self.ed.kb_event(char)
Esempio n. 21
0
    def out_handler_thread(self, p):
        print("out_handler_thread starts...")
        nick = self.nick
        registered = False
        with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
            s.connect(self.addr)
            self.connected = True
            self.conn = s
            # send the nick upfront, needed for some servers
            if self.passw: self.send('PASS %s\r\n' % self.passw)
            self.send('NICK %s\r\n' % nick)
            self.send('USER %s * * : %s\r\n' % (nick, nick))

            try:
                while True:
                    print("read data: ")
                    alldata = self.conn.recv(4096).decode("utf-8").strip()
                    if not alldata:
                        break
                    for data in alldata.splitlines():
                        print(data)
                        z = b''
                        if data.startswith('PING') and ':' in data:
                            self.send('PONG :%s\r\n' % (data.split(':')[1]))
                        elif registered and 'JOIN' in data and '#' in data and data.count(
                                ':') == 1:
                            h1, h2 = data.split(':', maxsplit=2)
                            z = str2zx('\n<%s> joins %s' %
                                       (h2.split("!")[0], h2.split('#')[1]),
                                       inverse=True)
                        elif registered and 'PART' in data and '#' in data and data.count(
                                ':') == 1:
                            h1, h2 = data.split(':', maxsplit=2)
                            z = str2zx('\n<%s> has left %s' %
                                       (h2.split("!")[0], h2.split('#')[1]),
                                       inverse=True)
                        elif registered and 'MODE' in data and '#' in data and data.count(
                                ':') == 1:
                            pass  # ignore
                        elif data.count(':') >= 2:
                            h1, h2, txt = data.split(':', maxsplit=2)
                            if "433" in h2:  # already in use
                                nick += 'ette'
                                registered = False
                            #if 'NOTICE' in h2 and  'No Ident response' in txt:
                            #    registered=False
                            if "001" in h2:  # welcome
                                registered = True
                            if not registered:
                                if self.passw:
                                    self.send('PASS %s\r\n' % self.passw)
                                self.send('NICK %s\r\n' % nick)
                                self.send('USER %s * * : %s\r\n' %
                                          (nick, nick))
                                registered = True
                            if registered:
                                if '!' in h2:
                                    z = str2zx('\n<%s> %s' %
                                               (h2.split("!")[0], txt.strip()))
                                else:
                                    z = str2zx('\n>> %s' % (txt.strip()))
                            else:
                                z = str2zx('\n' + data + '\n')
                        elif data.count(':') == 1:
                            h1, h2 = data.split(':')
                            z = str2zx('\n' + h2 + '\n')
                        for c in z:
                            self.win.prtchar(c)
                        time.sleep(0.05)
            except:
                print("Unexpected error:", sys.exc_info()[0])
            finally:
                self.connected = False
                self.conn = None

        print("Shell Out")
Esempio n. 22
0
    def show(self):
        self.mainwin.cls()
        self.mainwin.prttxt(
            str2zx("wait for \n" + self.url[:28] + '..\n', upper_inv=False))
        self.mgr.update(wait_till_sync_done=True)

        while True:
            try:
                r = requests.get(self.url, timeout=7.0)
                if r.status_code == requests.codes.ok: break
                self.mainwin.prttxt(
                    str2zx("retrieved %d, try again..\n" % (r.status_code),
                           upper_inv=False))
            except ConnectionError as e:
                self.mainwin.prttxt(
                    str2zx("error %s, try again..\n" % (str(e)),
                           upper_inv=False))
            except requests.RequestException as e:
                self.mainwin.prttxt(
                    str2zx("retrieved %s, try again..\n" % (str(e)),
                           upper_inv=False))
            self.mgr.update(0.5)
            if self.do_exit: return

        self.mainwin.prttxt(str2zx("parse..\n", upper_inv=False))
        self.mgr.update(wait_till_sync_done=True)
        if self.do_exit: return
        #print(r.text)
        parser = MyHTMLParser()
        parser.feed(r.text)
        self.mainwin.cls()
        self.mainwin.prttxt(str2zx(self.url[:32], inverse=True))
        self.mainwin.prttxt([ZXCHAR_NEWLINE] + [10] * 32)
        d = parser.out_data
        lines = 0
        for entry in d:
            hd, nm, dt = entry
            numchar = len(hd) + len(nm) + len(dt) + 1
            numlines = (numchar + 31) // 32
            addspc = ' ' * (32 * numlines - numchar)
            if lines + numlines + 1 > self.max_lines:
                break
            lines += numlines + 1
            self.mainwin.prttxt(str2zx(hd, upper_inv=False))
            self.mainwin.prttxt(str2zx(addspc))
            self.mainwin.prttxt(str2zx(nm, inverse=True))
            self.mainwin.prttxt(str2zx(' '))
            self.mainwin.prttxt(str2zx(dt, inverse=False))
            self.mainwin.prttxt([10] * 32)