Re: Multiple client problem in C++
ksashtekar@gmail.com wrote:
Hello Group,
I am working on an C++ application. I have a data file in a particular
format and there are multiple clients who need to access data in this
file. All these clients are part of the same single threaded process.
I am planning to make an object which will handle this file format.
Each time a new client registers a new instance will be created and
its reference passed to the client. This instance will hold some
client specific details. I will have some static variables in the
object which will keep common information like for example the file
name
Is this the right way to solve this problem?
It is not the solution I would choose, but there are multiple ways to
skin a cat.
I would probably use a design similar to this:
class ClientData {};
class Format : boost::noncopyable {
private:
Format(std::string file_name);
public:
static Format& Instance(const std::string& file = "default_name.ext")
{
static std::map<std::string, Format> instances;
std::map<std::string, Format>::iterator it = instances.find(file);
if (it == instances.end())
{
it = instances.insert(make_pair(file, Format(file))).second;
}
return it->second;
}
ClientData addClient();
void doSomething(ClientData&);
};
void client1()
{
ClientData data = Format::Instance().addClient;
Format::Instance().doSomething(data);
}
/* For convenience, you could add a wrapper class: */
class Wrapper {
public:
Wrapper(const std::string& file = "default_name.ext") :
format(Format::Instance(file)), client(format.addClient()) {}
doSomething()
{
format.doSomething(client);
}
private:
Format& format;
ClientData client;
};
void client2()
{
Wrapper fileFormat("alternative_file");
fileFormat.doSomething();
}
Also one more query. When first instance of the object are the static
variables initialized to zero as they are in global static variables?
Class-static variables are treated identically to global (file/namespace
scope) variables: on program startup, their memory is first initialised
to zero, and afterward the initialisation according to their definition
is executed.
This all happens before the variable can be referenced the first time.
Kaustubh
Bart v Ingen Schenau
--
a.c.l.l.c-c++ FAQ: http://www.comeaucomputing.com/learn/faq
c.l.c FAQ: http://c-faq.com/
c.l.c++ FAQ: http://www.parashift.com/c++-faq-lite/
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]