对于之前实现最简单VIM编辑器的改写

之前用python写了一个最简单的VIM编辑器(用Python写一个最简单的VIM文本编辑器),存在不少问题。本次将1.x版本改写为2.x版本,改变点有:
(1)主界面的i,w,r,q操作命令变为i,r,q,将w保存命令放到了编辑模式内。不必退回主界面再保存,而是在编辑模式内可以实现。
(2)编辑模式内编辑完成时,分为不保存退出(:q)和保存退出(:wq)。
(3)解决了之前版本在输入的时候,不能记录回车换行(Python3使用input函数读取输入时回车不换行)的问题。
(4)使用类的方法,重新改写程序,加入了部分异常处理机制,使得系统整体更为规范。

对于之前实现最简单VIM编辑器的改写_第1张图片
image.png

对于之前实现最简单VIM编辑器的改写_第2张图片
image.png

对于之前实现最简单VIM编辑器的改写_第3张图片
image.png

对于之前实现最简单VIM编辑器的改写_第4张图片
image.png

Python3程序:

'''###############################################################################
# Name: SimpleVimEditor2.1
# Author: Wenchao Liu
# Date: 2018-11-29
# Description: To realizable a simple VIM editor
#                    Debug in python 3.7.1
###############################################################################'''

import os
from time import sleep

#### 创建一个实现VIM编辑器的类 ####
class SimpleVim():
    '''实现简单Vim编辑器功能的类'''
    def __init__(self):
        '''属性初始化'''
        self.data = []    # 用于暂时存放编辑内容
        self.command = ' '    # 存储收到的操作指令
        # 根据指令,用于分类的字典
        self.fun_dict =  {'i': self.editText, 'r': self.readFile, 'q': self.quitEditor}    

        #### GUI初始化 ####
        '''调用inputMainWindow()方法,显示主界面,等待输入操作指令'''
        self.inputMainWindow()
        
    #### 定义类的方法####
    def clearScreen(self):
        '''清屏函数'''
        os.system('cls')

    def quitEditor(self):
        '''退出编辑器。调用了方法:clearScreen()'''
        print("Quit the Editor !")
        sleep(0.5)
        self.clearScreen()
        
    def editText(self):
        '''进入文本编辑模式,将编辑内容暂时存在data列表中。调用了方法:self.clearScreen(),
          self.saveText()'''
        self.clearScreen()
        print("回车后输入  :q 退出;输入 :wq 保存退出")
        print("--------------------------------------------------------------")
        
        input_ch = ''    # 输入字符变量
        while True:
            '''获取输入的字符,并暂时存入数组中, :q直接退出,:wq保存退出。'''
            input_ch = input()
            if (input_ch == ':q'):
                # 退出到主界面
                break
            elif(input_ch != ':wq'):
                # 将输入内容写入数组暂存。
                self.data.append(input_ch + '\n')
            else:
                # 输入 :wq 将编辑内容写入文件保存,退出到主界面
                self.saveText()
                break

    def saveText(self):
        '''将编辑的内容写入文件中保存。调用了方法: self.clearScreen()'''
        self.clearScreen()
        filename_w = input("Please input the savefile name:  ")
        # 将编辑内容写入文件中保存
        with open(filename_w, 'w', newline='\n')as fw:
            for item in self.data:
                fw.writelines(item)
        print("The file has saved !" + "\t\t" + "The savefile name : " + filename_w)
        sleep(2)

    def readFile(self):
        '''读取相应的文件内容并显示出来。调用了方法:self.clearScreen()'''
        self.clearScreen()
        filename_r = input("Please input the readfile name:  ")
        try:
            with open(filename_r, 'r', newline='\n')as fr:
                read_data = fr.read()
                print("如果需要退出阅读模式,请在input后输入  :q ")
                print("--------------------------------------------------------------")
                print(' ')
                print(read_data)
                print(' ')
                print("--------------------------------------------------------------")
                read_ch = input("input  ")
                while True:
                    if(read_ch == ':q'):
                        break
                    else:
                        print("输入不规范,请重新输入")
                        read_ch = input("input  ")
        except IOError:
            print("The file can not find !")

    def findNone():
        '''缺省函数,找不到对应指令时,调用该函数报错。'''
        print("Can not find the Key !")

    def switchModel(self, x):
        '''根据主界面输入的指令,选择不同模式。调用了方法:findNone()'''
        return self.fun_dict.get(x,self.findNone)()

    def welcomeShow(self):
        '''主界面欢迎话语和版本信息。'''
        print("Welcom to Simple VIM Editor 2.1 !")
        print("Please input: i to edit, r to read, q to quit.")

    def responseInput(self):
        '''对于主界面输入操作指令的响应。调用了方法:switchModel(), self.clearScreen()'''
        self.switchModel(self.command)
        self.clearScreen()
        
    def inputMainWindow(self):
        '''主界面显示和等待操作指令输入。调用了方法:welcomeShow(), quitEditor(),
           responseInput()'''
        while True:
            self.welcomeShow()
            self.command = input("input:  ")
            if(self.command == 'q'):
                self.quitEditor()
                break
            if(self.command == 'i'  or self.command == 'r'):
                self.responseInput()
       
#### 主函数 ####
def main():
    x = SimpleVim()    # 类的实例化
    
if __name__ == '__main__':
    main()

总结
对于操作命令输入不规范的情况,有一部分没有进行处理。编辑模式时,回车换行之后,不能返回之前行进行修改等操作。需要考虑一下改用二进制形式读写文件。对于已经存在的文件,不能进行添加内容的操作,而是全部覆盖了。

你可能感兴趣的:(对于之前实现最简单VIM编辑器的改写)