Design question (specifically, script interpreter) | | |
I am an experienced C programmer, learning C++ by writinging a
mathematical toolkit in the framework of a script interpreter. I am
posting here to ask for advice (or references) on the object design
and implimentation.
Currently I have a portable "ScriptSession" class which contains the
mechanics of looping with a user prompt, parsing a sentence and
handling syntax errors, etc., and I wan this to be a class I can use
for any script interpreter.
One of the core functions is the execution of a command sentence. This
necessarily involves some mathematical commands which should not be
part of "ScriptSession" so I started by overloading a method called
interpret, which is virtual in the base class:
class ScriptSession
{
public:
...
virtual bool ScriptSession::execute(void);
}
I have then written a method within the final application which
overload this, but it needs to know a lot about the internals of the
ScriptSession class so it has become rather ugly and feels like it is
voilating encpasulation and so on. Also, I have put everything in
here, even basic stuff like interpretation of the command "exit" which
is universal, so that won't do.
I bought "Design Patterns" (Gang of Four) but none of the patterns
seem to really fit this nicely. Or maybe I'm just missing some of the
important stuff. I apologise if I haven't explained the problem
clearly enough; that's part of the problem of course.
Any advice would be appreciated. Thanks,
Ian Giblin. | | | | re: Design question (specifically, script interpreter)
Ian Giblin wrote:[color=blue]
> I am an experienced C programmer, learning C++ by writinging a
> mathematical toolkit in the framework of a script interpreter. I am
> posting here to ask for advice (or references) on the object design
> and implimentation.[/color]
The first thing to recommend that comes to mind is comp.object
newsgroup. OO Design has common principles that are not necessarily
language-specific. Check it out.
[color=blue]
> Currently I have a portable "ScriptSession" class which contains the
> mechanics of looping with a user prompt, parsing a sentence and
> handling syntax errors, etc., and I wan this to be a class I can use
> for any script interpreter.
>
> One of the core functions is the execution of a command sentence. This
> necessarily involves some mathematical commands which should not be
> part of "ScriptSession" so I started by overloading a method called
> interpret, which is virtual in the base class:
>
> class ScriptSession
> {
> public:
> ...
> virtual bool ScriptSession::execute(void);[/color]
I thought you said "a method called interpret"... And a small note on
C++ syntax: you don't need a fully qualified name in a class definition.
You usually write
virtual bool execute();
(oh, yes, 'void' is also superfluous).
[color=blue]
> }
>
> I have then written a method within the final application which
> overload this,[/color]
The correct term is "overrides".
[color=blue]
> but it needs to know a lot about the internals of the
> ScriptSession class so it has become rather ugly and feels like it is
> voilating encpasulation and so on.[/color]
Yes, it rather sounds like a bad design.
[color=blue]
> Also, I have put everything in
> here, even basic stuff like interpretation of the command "exit" which
> is universal, so that won't do.[/color]
Well, without seeing more of your 'ScriptSession' class (at least its
interface, the implementation probably doesn't matter much) it is not
clear what you mean that it needs to know and what exactly are those
"internals". Can't you provide access to those internals through some
protected functions?
[color=blue]
> I bought "Design Patterns" (Gang of Four) but none of the patterns
> seem to really fit this nicely. Or maybe I'm just missing some of the
> important stuff. I apologise if I haven't explained the problem
> clearly enough; that's part of the problem of course.[/color]
"Design Patterns" is by no means a "recipes for all occasions" type of
book. You learn the most common ones so you can recognise patterns in
your own code and describe them and later apply them.
[color=blue]
> Any advice would be appreciated. Thanks,
> Ian Giblin.[/color]
Well, take a look at comp.object and possibly ask them for an example
of an interpreter framework that you could extend. Perhaps somebody
here knows about it too (I don't), my colleagues whenever an interpreter
is needed all wrote their own, which seems like an overkill, but that's
up to them.
Shake the Web (or google for "interpreter C++ framework"), see if
something falls out. I bet other folks have written something in that
area. While it is a good idea to write one for training, it isn't so
good to get stuck on design when your actual goal is the language.
Take a look at "Advanced C++. Programming Styles and idioms" by James
Coplien. It's relatively old, but it's a good from design point of
view. Helped me to figure some C++ stuff out. It assumes you know C++
to some extend, of course.
Good luck! If you decide to continue trying to figure out your stuff
here, in comp.lang.c++, I strongly recommend making more specific
questions, a generic topic like "I want to create an interpreter and I
am stuck, help!" calls for a book rather than a newsgroup message.
V | | | | re: Design question (specifically, script interpreter)
Ian Giblin wrote:
[color=blue]
> I bought "Design Patterns" (Gang of Four) but none of the patterns
> seem to really fit this nicely. Or maybe I'm just missing some of the
> important stuff. I apologise if I haven't explained the problem
> clearly enough; that's part of the problem of course.[/color]
Dr. Phlip Rx's /Refactoring to Patterns/ by Josh Kerievsky.
--
Phlip http://industrialxp.org/community/bi...UserInterfaces | | | | re: Design question (specifically, script interpreter)
Thanks for the detailed response.
Victor Bazarov <v.Abazarov@comAcast.net> wrote in message news:<1drld.333765$wV.15439@attbi_s54>...[color=blue]
>
> I thought you said "a method called interpret"...[/color]
Sorry. It annoys *me* when people make weird mistakes like that. So
now, I'm annoyed with myself for not spotting it when I check the
post.
[color=blue]
> And a small note on
> C++ syntax: you don't need a fully qualified name in a class definition.
> You usually write
>
> virtual bool execute();
>
> (oh, yes, 'void' is also superfluous).[/color]
<gulp> I see... I'll probably keep the 'void' because it reminds me
when I'm reading the code, but the class name prefix was a bit silly.
I'll take your other comments to heart. I will see how far I get with
this and ask on the object-oriented group if I cannot come up with a
good framework.
Regards, Ian. | | | | re: Design question (specifically, script interpreter)
Ian,
Its a bit hard to understand your problem, you've not posted
much code or information to work on.
However, you might want to look at TCL. Although this is implemented
in C ( I think), the basic model might be useful. TCL has a very regular
syntax so its easy to write an interpreter which can recognize the "command"
from the "options" and "data". Its then quite easy to add new commands
by writing a C/C++ package which implements the necessary pieces required
to register and execute the command. TCL provides the basic looping and
waiting for commands, then parses, checks for errros, and executes each
command or script you
pass in. TCL has a fairly complex API for accessing the guts of the
interpreter
and for implementing commands.
Python is also a model you could look at, as I remember, it was quite easy
to write an extension
(package of commands) to python in C/C++ ( or anything other language for
that matter ) and
load them into the python interpreter.
Hope that helps, and good luck.
dave
"Ian Giblin" <giblin@panix.com> wrote in message
news:96690070.0411130824.5957e9a8@posting.google.c om...[color=blue]
> I am an experienced C programmer, learning C++ by writinging a
> mathematical toolkit in the framework of a script interpreter. I am
> posting here to ask for advice (or references) on the object design
> and implimentation.
>
> Currently I have a portable "ScriptSession" class which contains the
> mechanics of looping with a user prompt, parsing a sentence and
> handling syntax errors, etc., and I wan this to be a class I can use
> for any script interpreter.
>
> One of the core functions is the execution of a command sentence. This
> necessarily involves some mathematical commands which should not be
> part of "ScriptSession" so I started by overloading a method called
> interpret, which is virtual in the base class:
>
> class ScriptSession
> {
> public:
> ...
> virtual bool ScriptSession::execute(void);
> }
>
> I have then written a method within the final application which
> overload this, but it needs to know a lot about the internals of the
> ScriptSession class so it has become rather ugly and feels like it is
> voilating encpasulation and so on. Also, I have put everything in
> here, even basic stuff like interpretation of the command "exit" which
> is universal, so that won't do.
>
> I bought "Design Patterns" (Gang of Four) but none of the patterns
> seem to really fit this nicely. Or maybe I'm just missing some of the
> important stuff. I apologise if I haven't explained the problem
> clearly enough; that's part of the problem of course.
>
> Any advice would be appreciated. Thanks,
> Ian Giblin.[/color] |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,471 network members.
|