用PHP寫一個最簡單的解釋器Part5(計算器最後一節,下節開始如何寫個腳本語言)

clipboard.png

通過幾天的努力,用PHP已經實現了一個完整的基礎計算器,以下圖php

clipboard.png

上代碼git

<?php
define('ISINTEGER','ISINTEGER');//定義整數類型描述
define('PLUS','PLUS');//定義操做符號類型描述 加法
define('MINUS','MINUS');//定義操做符號類型描述 減法
define('MUL','MUL');//定義操做符號類型描述 乘法
define('DIV','DIV');//定義操做符號類型描述 除法
define('LPAREN','LPAREN');//定義操做符號類型描述 (
define('RPAREN','RPAREN');//定義操做符號類型描述 )
define('WHITESPACE',' ');//定義空格
/**
Token  用來存儲輸入字符的類型
*/
class Token{
    private $type;
    private $value;
    /**
    $type ISINTEGER/PLUS/MINUS
    $value 對應的字符串
    */
    public function __construct($type,$value)
    {
        $this->type=$type;
        $this->value=$value;
    }
    
    /**
    經過該方法來獲取類的私有屬性
    */
    public function __get($name)
    {
        return $this->{$name};
    }
    /**
    用於調試
    */
    public function __toString()
    {
        return 'type:'.$this->type.' value:'.$this->value;
    }
}

class Lexer{
    private $current_char ;
    private $current_token ;
    private $text;
    private $pos=0;
    /***
    $text 須要進行解釋的字符串
    */
    public function __construct($text){
        //去除先後可能存在的空格 這些空格是無效的
        $this->text=trim($text);
        //初始化 獲取第一個字符
        $this->current_char = $this->text[$this->pos];
    }
    
    public function error()
    {
        throw new \Exception('Lexer eroor');
    }
    
    /*
    步進方法,每操做一個字符後前進一位
    */
    public function advance()
    {
        $this->pos++;
        if ($this->pos>strlen($this->text)-1){
            $this->current_char=null;
        }else{
            $this->current_char=$this->text[$this->pos];
        }
    }
    
    /*
    去除空格
    */
    public function skip_whitespace()
    {
        if ($this->current_char!=null&&$this->current_char==WHITESPACE){
            $this->advance();
        }
    }
    
    /*
    若是要支持多位的整數,則須要將每位數字存儲起來
    */
    public function integers()
    {
        $result='';//用於存儲數字
        while($this->current_char!=null&&is_numeric($this->current_char)){//只要當前字符是數字就一直循環並將數字存儲於$result
            $result.=$this->current_char;
            $this->advance();//步進方法,每操做一個字符後前進一位
        }
        return intval($result);//將數字字符串轉成整數
    }
    
    //獲取當前字符的Token  
    public function get_next_token()
    {
        while($this->current_char!=null){
            if ($this->current_char==WHITESPACE){
                $this->skip_whitespace();
                continue;
            }
            if (is_numeric($this->current_char)){
                return new Token(ISINTEGER,$this->integers());
            }
            
            if ($this->current_char=="+"){
                $this->advance();
                return new Token(PLUS,'+');
            }
            
            if ($this->current_char=="-"){
                $this->advance();
                return new Token(MINUS,'-');
            }
            
            if ($this->current_char=="*"){
                $this->advance();
                return new Token(MUL,'*');
            }
            
            if ($this->current_char=="/"){
                $this->advance();
                return new Token(DIV,'/');
            }
            
            if ($this->current_char=="("){
                $this->advance();
                return new Token(LPAREN,'(');
            }
            
            if ($this->current_char==")"){
                $this->advance();
                return new Token(RPAREN,')');
            }
            return new Token('EOF', null);
        }
    }
}

//解釋器
class Interpreter{
    private $current_token ;
    private $lexer ;
    
    public function __construct($lexer){
        //去除先後可能存在的空格 這些空格是無效的
        $this->lexer=$lexer;
        //初始化 獲取第一個字符
        $this->current_token=$this->lexer->get_next_token();
    }
    
    //若是字符類型和判斷的類型一致,則繼續,不然輸入錯誤
    public function eat($token_type)
    {
        if ($this->current_token->type==$token_type){
            $this->current_token=$this->lexer->get_next_token();
        }else{
            $this->error();
        }
    }
    
    public function error()
    {
        throw new \Exception('eroor');
    }
    public function factor()
    {
        $token=$this->current_token;
        if ($token->type==ISINTEGER){
            $this->eat(ISINTEGER);
            return $token->value;
        }else if ($token->type==LPAREN){
            $this->eat(LPAREN);
            $result = $this->expr();
            $this->eat(RPAREN);
            return $result;
        }
        
        
    }
    
    public function term()
    {
        $result=$this->factor();
        while(in_array($this->current_token->type,[MUL,DIV])){
            $token=$this->current_token;
            if ($token->type==MUL){
                $this->eat(MUL);
                $result=$result*$this->factor();
            }
            else if ($token->type==DIV){
                $this->eat(DIV);
                $result=$result/$this->factor();
            }
        }
        
        return $result;
        
    }
    
    //解釋方法
    public function expr()
    {
        $result=$this->term();
        while(in_array($this->current_token->type,[PLUS,MINUS])){
            $token=$this->current_token;
            if ($token->type==PLUS){
                $this->eat(PLUS);
                $result=$result+$this->term();
            }
            else if ($token->type==MINUS){
                $this->eat(MINUS);
                $result=$result-$this->term();
            }
            
        }
        return $result;
    }
}

do{
    fwrite(STDOUT,'xav>');;
    $input=fgets(STDIN);
    $Interpreter=new Interpreter(new Lexer($input));
    echo $Interpreter->expr();
    unset($Interpreter);
    
}while(true);

有時間我得學習下如何把上述邏輯用插圖描述,最是最後一篇文章,下次就真的應該是如何寫個腳本語言了!github

以上全部代碼已上傳GITHUB ,歡迎star 傳送門學習

相關文章
相關標籤/搜索