Connecting Tech Pros Worldwide Help | Site Map

Good design?

Pelle Beckman
Guest
 
Posts: n/a
#1: Jul 23 '05
Hi,

I've just finished writing a template (whew!) and
would like some opinions on the design.

The goal was to be able to do fairly simple
singletons (no excplicit thread-safety, etc)
and keep it simple.
It's also supposted to give the ability to
do simple derived singletons - which is not
possible with my other attempts that were based
on the classical "global pointer to an object
which is set using 'this' in the objects constructor"
(I hope you understood that...).

Anyway, comments? suggestions?
I'm a bit unsure of the ()-operator - could
that get in the way of other functions, operators, etc?

template<class T>
class Singleton {
public:
T* Instance ();
void Release ();
T* operator() ();

Singleton () {}

private:
static T* m_singleton;
};

template<class T> T* Singleton<T>::m_singleton = 0;

template<class T>
T* Singleton<T>::operator() () {
return this->Instance ();
}

template<class T>
T* Singleton<T>::Instance () {
if (m_singleton == 0) {
m_singleton = new T;
}
return m_singleton;
}

template<class T>
void Singleton<T>::Release () {
if (m_singleton == 0)
return;
delete m_singleton;
m_singleton = 0;
}

The code allows me to do this:

Singleton<MyClass> mysingleton;
mysingleton ()-> AFunction();
mysingleton.Instance ()->AFunction();

which I find is rather nice.

-- Pelle
Phlip
Guest
 
Posts: n/a
#2: Jul 23 '05

re: Good design?


Pelle Beckman wrote:
[color=blue]
> I've just finished writing a template (whew!) and
> would like some opinions on the design.[/color]
[color=blue]
> Anyway, comments? suggestions?[/color]

Where are the unit tests?

--
Phlip
http://www.c2.com/cgi/wiki?ZeekLand


Pelle Beckman
Guest
 
Posts: n/a
#3: Jul 23 '05

re: Good design?


Phlip skrev:[color=blue]
> Pelle Beckman wrote:
>
>[color=green]
>>I've just finished writing a template (whew!) and
>>would like some opinions on the design.[/color]
>
>[color=green]
>>Anyway, comments? suggestions?[/color]
>
>
> Where are the unit tests?
>[/color]

I'll guess you'll laugh you head off...

I don't know.
What's a unit test?

-- Pelle
Victor Bazarov
Guest
 
Posts: n/a
#4: Jul 23 '05

re: Good design?


Pelle Beckman wrote:[color=blue]
> I've just finished writing a template (whew!) and
> would like some opinions on the design.
> [...][/color]

Two things are missing: parameterized construction of the instance
or construction of the instance by a factory. I'd probably try to
have a special construction policy, and by default it would just
invoke the default c-tor.

V
Howard
Guest
 
Posts: n/a
#5: Jul 23 '05

re: Good design?



"Phlip" <phlip_cpp@yahoo.com> wrote in message
news:e7w9e.1449$7T3.198@newssvr31.news.prodigy.com ...[color=blue]
> Pelle Beckman wrote:
>[color=green]
>> I've just finished writing a template (whew!) and
>> would like some opinions on the design.[/color]
>[color=green]
>> Anyway, comments? suggestions?[/color]
>
> Where are the unit tests?
>[/color]

I have them, and I'm not letting you look at them unless you say "please".
:-)

I think he was looking for suggestions on the *design*, actually. (There
isn't even a "main" there, so talking about unit tests is going a wee bit
beyond the question, I think.)

-Howard


Pelle Beckman
Guest
 
Posts: n/a
#6: Jul 23 '05

re: Good design?


Victor Bazarov skrev:[color=blue]
> Pelle Beckman wrote:
>[color=green]
>> I've just finished writing a template (whew!) and
>> would like some opinions on the design.
>> [...][/color]
>
>
> Two things are missing: parameterized construction of the instance
> or construction of the instance by a factory. I'd probably try to
> have a special construction policy, and by default it would just
> invoke the default c-tor.
>
> V[/color]

Good point.
How you I go about implementing c-tor parameter passing?
Hints, solutions, hyperlinks?

-- Pelle
Phlip
Guest
 
Posts: n/a
#7: Jul 23 '05

re: Good design?


Pelle Beckman wrote:
[color=blue][color=green]
> > Where are the unit tests?[/color]
>
> I'll guess you'll laugh you head off...
>
> I don't know.
> What's a unit test?[/color]

Google for it.

Contrary to Howard's laugh, tests are a design thing. In the big C++ shops,
a request for a code review shall be accompanied by tests.

Here's one for your thing (with made-up code):

struct Foo{};

TEST_(TestCase, singular)
{
Singleton<Foo> mysingleton;
Singleton<Foo> yoursingleton;
Foo * p1 = mysingleton ();
Foo * p2 = yoursingleton.Instance ();
CHECK_EQUAL(p1, p2);
}

That test shows the Foo really is singular; the system did not allocate two
of them, at different addresses.

One runs all tests after every few edits. If a test fails, you have the
option to either hit Undo until they all pass, or you can debug. Without
tests, you don't know as soon as possible when you broke something, and you
can't use Undo. The only choice is to debug.

Now about style, if your system either throws an exception if new Foo fails,
then your operators can never return NULL. So maybe your system should
return a reference. Always use references without a reason to use pointers.

--
Phlip
http://www.c2.com/cgi/wiki?ZeekLand


Victor Bazarov
Guest
 
Posts: n/a
#8: Jul 23 '05

re: Good design?


Pelle Beckman wrote:[color=blue]
> Victor Bazarov skrev:
>[color=green]
>> Pelle Beckman wrote:
>>[color=darkred]
>>> I've just finished writing a template (whew!) and
>>> would like some opinions on the design.
>>> [...][/color]
>>
>>
>>
>> Two things are missing: parameterized construction of the instance
>> or construction of the instance by a factory. I'd probably try to
>> have a special construction policy, and by default it would just
>> invoke the default c-tor.
>>
>> V[/color]
>
>
> Good point.
> How you I go about implementing c-tor parameter passing?
> Hints, solutions, hyperlinks?[/color]

Andrei Alexandrescu, "Modern C++ Design", chapter 6, "Implementing
Singletons".

V
Closed Thread