入出力用のストリーム作成#
例えば出力だけ考えてみると、まず考えられるのは単純に、
logで出力することである。しかしlog
以外の選択肢も考えられる。
log
でコンソール出力するだけでなく、Webページのテキスト上で出力したり、テキストファイルに吐き出したりできるような汎用性が持たせられると良い。
そこで今回は、いわゆる「ストリームオブジェクト」のようなものを作って、そこから入出力を行うような設計にしてみる。
Streamの作成#
src/Brainfuck/Interp/Stream.purs
を作成。この後使うモジュールをインポート。
1
2
3
4
5
| module Brainfuck.Interp.Stream where
import Prelude
import Brainfuck.Interp (Interp)
|
Stream
型を作成する。これは入出力を束ねた型になっている。
input
は、外部からの入力を1文字受け取る。
output
は、Char
の値を外部に出力する。
1
2
3
4
| newtype Stream = Stream
{ input :: Interp Char
, output ::Char -> Interp Unit
}
|
Stream
を通じてデータを読み書きする関数を作成。
1
2
3
4
5
6
7
| read :: Stream -> Interp Char
read (Stream { input }) = input
write :: Char -> Stream -> Interp Unit
write c (Stream { output }) =
output c
|
1
2
3
4
5
6
| defaultStream :: Stream
defaultStream = Stream { input, output }
where
input = pure 'N' -- Not Implemented
output _ = pure unit -- Not Implemented
|
‘.‘と’,’#
src/Brainfuck/Interp/Command.purs
を修正する。まず以下のインポート文を追加。
1
2
3
| import Brainfuck.Interp.Util (readCharOrFail)
import Brainfuck.Interp.Stream (write, read, Stream)
import Data.Char (toCharCode) as Char
|
Stream
はEnv
のレコードのフィールドとして扱いたいところだが、
それをやるとBrainfuck.Interp.Stream
、Brainfuck.Env
、Brainfuck.Interp
とでcircular importとなってしまう。
仕方ないのでinterpCommand
の引数で扱うことにする。
interpCommand
の引数を追加し、.
命令と,
命令を実装する。
input
やoutput
の実装はinterpCommand
の管轄外であり、
とにかく「input
は1文字返してくれて、output
は1文字送ってくれる」という気持ちを持って実装する。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| interpCommand :: Stream -> Command -> Interp Unit
interpCommand stream =
case _ of
-- ... 略 ...
Output -> do
c <- readCharOrFail
write c stream
Input -> do
x <- read stream
modifyDataOrFail (\_ -> Char.toCharCode x)
-- ... 略 ...
|
Brainfuckの修正#
src/Brainfuck.purs
を修正する。以下のモジュールを追加でインポートしておく。
1
| import Brainfuck.Interp.Stream (Stream, defaultStream)
|
interpCommand
の修正に伴い、interpProgram
を修正。
1
2
3
4
5
6
7
8
9
10
| interpProgram :: Stream -> Interp Unit
interpProgram stream = do
-- ... 略 ...
case readCommand program state of
Just cmd -> do
interpCommand stream cmd -- 引数を追加
incInstPtr
interpProgram stream -- 引数を追加
-- ... 略 ...
|
Stream
を引数にとるバージョンのrun
を定義。
それを用いてrunDefault
を書き直す。
1
2
3
4
5
6
7
| run :: Stream -> Program -> Effect (InterpResult Unit)
run stream program =
runInterp (interpProgram stream) (makeEnv program) defaultState
runDefault :: Program -> Effect (InterpResult Unit)
runDefault program = run defaultStream program
|
コンソール出力#
出力ストリームの実装#
src/Brainfuck/Interp/Stream.purs
のdefaultStream
において、output
をlog
で実装してみる。
1
2
3
4
5
6
7
8
9
10
11
| -- import文追加
import Effect.Class (liftEffect)
import Effect.Console (log)
defaultStream :: Stream
defaultStream = Stream { input, output }
where
input = pure 'N' -- Not Implemented
output c = liftEffect $ log $ show c
|
これでようやくHello, Worldが出力できる。Wikipediaにあるコードを借りる。
> import Brainfuck.Interp.Stream
> runDefault $ fromString "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++."
'H'
'e'
'l'
'l'
'o'
' '
'W'
'o'
'r'
'l'
'd'
'!'
'\n'
{ result: (Right unit), state: { dptr: 6, iptr: 106, memory: [0,0,72,100,87,33,10,0,0,0] } }
出力先の変更#
log
関数の仕様上改行が入ってしまう。そもそもlog
はデバッグ用のものであり、出力には適していない。
ではデバッグではない標準出力はあるのかとうと、それはNode.jsでいうprocess.stdout.write
に当たる(とはいえNode.jsは詳しくないので確かではないが…)。
それをラッピングしたものがpurescript-node-processに用意されているので、これを使うことにする。
該当パッケージをインストールする。
% spago install node-process node-buffer node-streams
src/Stream.purs
にNode.js用のストリームを定義する。以下のパッケージをインポートしておく。
1
2
3
4
| import Data.String.CodeUnits (singleton) as CodeUnits
import Node.Process (stdout)
import Node.Encoding (Encoding(UTF8))
import Node.Stream (writeString)
|
nodeStream
を定義。
writeStringは、どうやら内部でwritable.writeを呼び出している模様。
UTF8
でエンコーディングを指定し、第4引数は出力後のコールバック関数のようだ。
1
2
3
4
5
6
7
| nodeStream :: Stream
nodeStream = Stream { input, output }
where
input = pure 'N' -- Not Implemented
output c =
void $ liftEffect $ writeString stdout UTF8 (CodeUnits.singleton c) (pure unit)
|
REPLで確認してみると、無事改行無しの出力ができている。
> run nodeStream (fromString "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.")
Hello World!
{ result: (Right unit), state: { dptr: 6, iptr: 106, memory: [0,0,72,100,87,33,10,0,0,0] } }
修正: Interpの抽象化#
入力を非同期処理で扱う必要があるため、全体の計算をAff
で扱えると良い。
もっと一般的に、Effect
でもAff
でも使えるようにInterp
を抽象化する
(やってみたら想像以上に修正箇所が多く、大変だった…)。
Aff
を使いたいので、以下のパッケージをインストール。
% spago install aff
Interpの修正#
src/Brainfuck/Interp.purs
を修正。まず以下のインポート文を追加。
根本となるInterp
の型を修正する。Interp
に型変数m
を持たせる。
Interp
自身がモナド変換子になったような感じ。
1
| newtype Interp m a = Interp (ReaderT Env (ExceptT Error (StateT State m)) a)
|
この時点でspago build
すると型エラーがたくさん出るはずなので、エラーメッセージに従って修正していけばよい。
以下、修正箇所を示すが、抜けがあるかもしれない。
runInterp
の型を修正。
1
| runInterp :: forall m a. Monad m => Interp m a -> Env -> State -> m (InterpResult a)
|
derive newtype
を修正。どのように修正すべきかは、StateTのinstanceを参考にする。
というのも、m
の制約に直接影響するのはStateT
だからだ。
1
2
3
4
5
6
7
8
9
| derive newtype instance (Functor m) => Functor (Interp m)
derive newtype instance (Monad m) => Apply (Interp m)
derive newtype instance (Monad m) => Applicative (Interp m)
derive newtype instance (Monad m) => Bind (Interp m)
derive newtype instance (Monad m) => Monad (Interp m)
derive newtype instance (Monad m) => MonadState State (Interp m)
derive newtype instance (Monad m) => MonadAsk Env (Interp m)
derive newtype instance (Monad m) => MonadThrow Error (Interp m)
derive newtype instance (MonadEffect m) => MonadEffect (Interp m)
|
MonadAff
のderive newtype
を追加。
1
| derive newtype instance (MonadAff m) => MonadAff (Interp m)
|
Streamの修正#
src/Brainfuck/Interp/Stream
を修正。まず以下のimportを追加。
1
2
| import Effect (Effect)
import Effect.Aff (Aff)
|
Stream
に型変数m
をつける。
1
2
3
4
| newtype Stream m = Stream
{ input :: Interp m Char
, output :: Char -> Interp m Unit
}
|
それに合わせてread
、write
を修正。
defaultStream
とnodeStream
のStream m
には具体的なm
を指定。
1
2
3
4
5
6
7
| read :: forall m. Stream m -> Interp m Char
write :: forall m. Char -> Stream m -> Interp m Unit
defaultStream :: Stream Effect
nodeStream :: Stream Aff
|
Utilの修正#
src/Brainfuck/Interp/Util.purs
において、全ての関数の引数を修正。
1
2
3
4
5
6
7
8
9
10
11
| modifyDataOrFail :: forall m. Monad m => (Int -> Int) -> Interp m Unit
readDataOrFail :: forall m. Monad m => Interp m Int
readCharOrFail :: forall m. Monad m => Interp m Char
readCommandOrFail :: forall m. Monad m => Interp m Command
incInstPtr :: forall m. Monad m => Interp m Unit
decInstPtr :: forall m. Monad m => Interp m Unit
|
Commandの修正#
src/Brainfuck/Interp/Command.purs
を修正。こちらも全ての関数の引数を修正。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| interpCommand :: forall m. Monad m => Stream m -> Command -> Interp m Unit
incDataPtr :: forall m. Monad m => Interp m Unit
decDataPtr :: forall m. Monad m => Interp m Unit
incData :: forall m. Monad m => Interp m Unit
decData :: forall m. Monad m => Interp m Unit
goToRBrace :: forall m. Monad m => Interp m Unit
goToLBrace :: forall m. Monad m => Interp m Unit
goToMate :: forall m. Monad m => Interp m Unit -> Interp m Unit
goToMate move = go 0
where
go :: Int -> Interp m Unit
-- 略
|
Brainfuckの修正#
src/Brainfuck.purs
を修正。runDefault
以外の関数の型を修正。
1
2
3
| run :: forall m. Monad m => Stream m -> Program -> m (InterpResult Unit)
interpProgram :: forall m. Monad m => Stream m -> Interp m Unit
|
これでspago build
するとエラーが無くなるはず。
(補足)
Aff
はShow
クラスのインスタンスではないので、REPLで出力を試したいならlaunchAff_
を利用する。
> launchAff_ $ run nodeStream (fromString "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.")
Hello World!
しかし残念ながらInterpResult Unit
は出力されない。もし出力したいのであれば、log
とかをつかって出力する関数を新たに作る必要がある。
1
2
3
4
5
6
7
8
9
| -- 以下のimportを追加
import Effect.Class (class MonadEffect, liftEffect)
import Effect.Console (log)
runWithLog :: forall m. MonadEffect m => Stream m -> Program -> m Unit
runWithLog stream program = do
res <- run stream program
liftEffect $ log $ ("\n" <> show res)
|
> launchAff_ $ runWithLog nodeStream (fromString "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.")
Hello World!
{ result: (Right unit), state: { dptr: 6, iptr: 106, memory: [0,0,72,100,87,33,10,0,0,0] } }
コンソール入力#
2つの方法が考えられる。
いずれにせよ、affパッケージのmakeAffを使い、
コールバック処理をAff
に変換する必要がある
(後者について、node-readline-affというパッケージがあるようだが、現時点では古いようで利用できない)。
2種類の方法を試みたが、個人的に後者のほうが分かりやすかったのでそちらを紹介する。
該当パッケージをインストール。
% spago install node-readline exceptions
src/Stream.purs
を修正。該当モジュールをインポート。
1
2
3
4
5
6
7
8
9
| import Brainfuck.Error (Error(..))
import Control.Monad.Error.Class (throwError)
import Data.Either (Either(..))
import Data.Maybe (Maybe(..))
import Data.String.CodeUnits (take, toChar) as CodeUnits
import Effect.Exception (Error) as E
import Effect.Aff.Class (liftAff)
import Effect.Aff (Canceler, nonCanceler, makeAff)
import Node.ReadLine (createConsoleInterface, noCompletion, close, question, Interface) as RL
|
input
を実装する。interface
を作って、questionAff
(これから実装する関数)を使って入力を促し、文字列を取得。
close
でinterface
を閉じる。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| nodeStream :: Stream Aff
nodeStream = Stream { input, output }
where
input = do
interface <- liftEffect $ RL.createConsoleInterface RL.noCompletion
s <- liftAff $ questionAff "input> " interface
liftEffect $ RL.close interface
case CodeUnits.toChar $ CodeUnits.take 1 s of
Just c ->
pure c
Nothing ->
throwError CharInputFailed
output c =
void $ liftEffect $ writeString stdout UTF8 (CodeUnits.singleton c) (pure unit)
|
questionAff
はquestion
関数をAff
用にラッピングしたもの。
1
2
3
4
5
6
7
| questionAff :: String -> RL.Interface -> Aff String
questionAff q interface = makeAff go
where
go :: (Either E.Error String -> Effect Unit) -> Effect Canceler
go handler = do
RL.question q (handler <<< Right) interface
pure nonCanceler
|
makeAff
は、
1
| onSomeEvent (\x -> callback x)
|
というように、コールバック関数を引数にとる関数onSomeEvent
を
1
2
| x <- onSomeEventAff
callback
|
みたいに使う関数onSomeEventAff
に変換するために用いるようだ。
handler
はString
ではなくEither Error String
を持っている。
今回エラーが起こることはないので、コード中では(handler <<< Right)
のように無理矢理Right
をくっつけている
(<<<
演算子を使っているが、これは(\s -> handler $ Right s)
と同義)。
Canceler
というのは非同期処理中にキャンセルが起こった場合に呼ばれる関数の模様(参考)。
まだその用途がいまいちよく分かっていないのだが、とりあえずnonCanceler
を指定しておいた。
入力の確認#
試したところ、REPLでは動作確認できない模様 (入力待ちになってくれない)。なのでsrc/Main.purs
に動作確認用のコードを書く。
3文字の入力を促して、アルファベットを1ずらして出力するBrainfuckプログラムを書いてみる。
1
2
3
4
5
6
7
8
9
10
11
12
13
| module Main where
import Prelude
import Brainfuck (runWithLog) as B
import Brainfuck.Interp.Stream (nodeStream) as BIS
import Brainfuck.Program (fromString) as BP
import Effect (Effect)
import Effect.Aff (launchAff_)
main :: Effect Unit
main =
launchAff_ $ B.runWithLog BIS.nodeStream (BP.fromString ",>,>,<<+.>+.>+.")
|
spago run
で実行してみる。
% spago run
input> a
input> b
input> c
bcd
{ result: (Right unit), state: { dptr: 2, iptr: 15, memory: [98,99,100,0,0,0,0,0,0,0] } }
ちゃんとbcd
が出力されている。
CUIで可視化することを考える。Brainfuckのインタプリタが各ステップにおいて、どの命令を指しているのか、どこのメモリを指しているのかを可視化してみる。