I want to play and experiment with a number of software tools, each of which will have a command line interface. Some of these tools include hbase, pig, erlang, and prolog. I want to use emacs as a UI to these tools the same way I can run a python shell with M-x run-python or a Lisp interpreter with ielm mode.
Is there a recipe I can follow to wrap one of these command line tools in an emacs mode? I'm looking for something which will display the tool's prompt, let me search through the history with C-c C-n/C-p, submit the current input to the tool's process which I hit Enter, and display the tool's output.
I know many of these tools probably have emacs modes already, I am interested in how to quickly build one if nothing exists.