473,395 Members | 1,681 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Singleton and C extensions


I am participating in the development of a GPL IDE
https://libre2.adacore.com/gps/

It is written in Ada, but provides an extensive extensibility through
Python.

I am not really good at python, but I was trying to implement the
singleton design pattern in C, so that for instance calling the constructor

ed = Editor ("foo")

would either return an existing instance of Editor currently editing
"foo", or would create a new instance. Basically, one python instance is
stored inside each of the visual windows representing an editor, and I
want to get that instance if it already exists, instead of creating a
new one each time.

I basically would like
ed = Editor ("foo")
ed.attribute = "whatever"
print Editor ("foo").attribute

to print "whatever"
Has any one an example on how to do that in C, or maybe even at the
python level itself, and I will try to adapt it ?

Thanks in advance

Emmanuel
Nov 25 '05 #1
3 1195
Emmanuel Briot wrote:
I am participating in the development of a GPL IDE
https://libre2.adacore.com/gps/

It is written in Ada, but provides an extensive extensibility through
Python.

I am not really good at python, but I was trying to implement the
singleton design pattern in C, so that for instance calling the constructor

ed = Editor ("foo")

would either return an existing instance of Editor currently editing
"foo", or would create a new instance. Basically, one python instance is
stored inside each of the visual windows representing an editor, and I
want to get that instance if it already exists, instead of creating a
new one each time.

I basically would like
ed = Editor ("foo")
ed.attribute = "whatever"
print Editor ("foo").attribute

to print "whatever"

Has any one an example on how to do that in C, or maybe even at the
python level itself, and I will try to adapt it ?


use a factory function instead of the class, and let the function create an editor
instance when needed:

_editors = {}

def Editor(name):
try:
editor = _editors[name]
except KeyError:
editor = _editors[name] = EditorImplementation()
editor.setname(name)
...
return editor

if you really need singleton, click here:

http://www.google.com/search?q=python+borg+pattern

</F>

Nov 25 '05 #2
Emmanuel Briot wrote:
I am participating in the development of a GPL IDE
https://libre2.adacore.com/gps/
I am not really good at python, but I was trying to implement the
singleton design pattern in C, so that for instance calling the constructor
ed = Editor ("foo")


Fredrik's advice is probably better, but if you must:

class Editor(object):
table = {}
def __new__(klass, name):
try:
return klass.table[name]
except KeyError:
klass.table[name] = super(Singled, klass).__new__(klass)
return klass.table[name]

--Scott David Daniels
sc***********@acm.org
Nov 25 '05 #3
Emmanuel Briot wrote:

I am not really good at python, but I was trying to implement the
singleton design pattern in C, so that for instance calling the constructor

ed = Editor ("foo")

would either return an existing instance of Editor currently editing
"foo", or would create a new instance.
Hmm, if there can be more than one Editor I wouldn't call it a
singleton.
But this should do what you want:

class Editor(object):
_cache = {}
def __init__(self, arg):
self._cache[arg] = self
def __new__(cls, arg):
if arg in cls._cache:
return cls._cache[arg]
return object.__new__(cls, arg)
Has any one an example on how to do that in C, or maybe even at the
python level itself, and I will try to adapt it ?


C is a *lot* more work and tricky too.

hth,
n

Nov 26 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Tim Clacy | last post by:
Is there such a thing as a Singleton template that actually saves programming effort? Is it possible to actually use a template to make an arbitrary class a singleton without having to: a)...
10
by: E. Robert Tisdale | last post by:
Could somebody please help me with the definition of a singleton? > cat singleton.cc class { private: // representation int A; int B; public: //functions
1
by: Jim Strathmeyer | last post by:
So I'm trying to implement a singleton template class, but I'm getting a confusing 'undefined reference' when it tries to link. Here's the code and g++'s output. Any help? // singleton.h ...
3
by: Alicia Roberts | last post by:
Hello everyone, I have been researching the Singleton Pattern. Since the singleton pattern uses a private constructor which in turn reduces extendability, if you make the Singleton Polymorphic...
7
by: Ethan | last post by:
Hi, I have a class defined as a "Singleton" (Design Pattern). The codes are attached below. My questions are: 1. Does it has mem leak? If no, when did the destructor called? If yes, how can I...
3
by: Harry | last post by:
Hi ppl I have a doubt on singleton class. I am writing a program below class singleton { private: singleton(){}; public: //way 1
5
by: Pelle Beckman | last post by:
Hi, I've done some progress in writing a rather simple singleton template. However, I need a smart way to pass constructor arguments via the template. I've been suggested reading "Modern C++...
3
weaknessforcats
by: weaknessforcats | last post by:
Design Pattern: The Singleton Overview Use the Singleton Design Pattern when you want to have only one instance of a class. This single instance must have a single global point of access. That...
3
by: stevewilliams2004 | last post by:
I am attempting to create a singleton, and was wondering if someone could give me a sanity check on the design - does it accomplish my constraints, and/or am I over complicating things. My design...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.