vote up 12 vote down star
1

Let's say I have a class that has a member called data which is a list.

I want to be able to initialize the class with, for example, a filename (which contains data to initialize the list) or with an actual list.

What's your technique for doing this?

Do you just check the type by looking at __class__?

Is there some trick I might be missing?

I'm used to C++ where overloading by argument type is easy.

Thanks.

flag

73% accept rate
__class__ or __class__ should render properly, but give different effect - one will look codey (not necessarily a bad thing here) – Blair Conrad Sep 26 '08 at 19:54
Using backticks will solve the markdown bold formatting issue, or you can escape them. – camflan Sep 26 '08 at 19:57
thx. i figured there was a way. – Baltimark Sep 26 '08 at 20:01

6 Answers

vote up 14 vote down check

A much neater way to get 'alternate constructors' is to use classmethods. For instance:

>>> class MyData:
...     def __init__(self, data):
...         "Initialize MyData from a sequence"
...         self.data = data
...     
...     @classmethod
...     def fromfilename(cls, filename):
...         "Initialize MyData from a file"
...         data = open(filename).readlines()
...         return cls(data)
...     
...     @classmethod
...     def fromdict(cls, datadict):
...         "Initialize MyData from a dict's items"
...         return cls(datadict.items())
... 
>>> MyData([1, 2, 3]).data
[1, 2, 3]
>>> MyData.fromfilename("/tmp/foobar").data
['foo\n', 'bar\n', 'baz\n']
>>> MyData.fromdict({"spam": "ham"}).data
[('spam', 'ham')]

The reason it's neater is that there is no doubt about what type is expected, and you aren't forced to guess at what the caller intended for you to do with the datatype it gave you. The problem with isinstance(x, basestring) is that there is no way for the caller to tell you, for instance, that even though the type is not a basestring, you should treat it as a string (and not another sequence.) And perhaps the caller would like to use the same type for different purposes, sometimes as a single item, and sometimes as a sequence of items. Being explicit takes all doubt away and leads to more robust and clearer code.

link|flag
vote up 3 vote down

Excellent question. I've tackled this problem as well, and while I agree that "factories" (class-method constructors) are a good method, I would like to suggest another, which I've also found very useful:

Here's a sample (this is a read method and not a constructor, but the idea is the same):

def read(self, str=None, filename=None, addr=0):
    """ Read binary data and return a store object. The data
        store is also saved in the interal 'data' attribute.

        The data can either be taken from a string (str 
        argument) or a file (provide a filename, which will 
        be read in binary mode). If both are provided, the str 
        will be used. If neither is provided, an ArgumentError 
        is raised.
    """
    if str is None:
        if filename is None:
            raise ArgumentError('Please supply a string or a filename')

        file = open(filename, 'rb')
        str = file.read()
        file.close()
    ...
    ... # rest of code

The key idea is here is using Python's excellent support for named arguments to implement this. Now, if I want to read the data from a file, I say:

obj.read(filename="blob.txt")

And to read it from a string, I say:

obj.read(str="\x34\x55")

This way the user has just a single method to call. Handling it inside, as you saw, is not overly complex

link|flag
vote up 0 vote down

OK, great. I just tossed together this example with a tuple, not a filename, but that's easy. Thanks all.

class MyData:
    def __init__(self, data):
        self.myList = []
        if isinstance(data, tuple):
            for i in data:
                self.myList.append(i)
        else:
            self.myList = data

    def GetData(self):
        print self.myList

a = [1,2]

b = (2,3)

c = MyData(a)

d = MyData(b)

c.GetData()

d.GetData()

[1, 2]

[2, 3]

link|flag
There's no need for all that code in init -- I shortened it down to just a type conversion, which does the same thing and is more flexible. – John Millikin Sep 26 '08 at 20:22
In Python, the getter is also mostly unnecessary. Just use direct attribute access. If you ever need to do more, you can use property() to hide the getter/setter behind normal attribute access. – Thomas Wouters Sep 26 '08 at 20:30
I know that, but that defeats the purpose of the example; I was just trying to show how to use two different input types. It might not be necessary with tuple/list, but it would be if that was a filename. I guess that just echoes what others said, though. My example would have been instructive to me – Baltimark Sep 26 '08 at 20:31
comment was @Millikin – Baltimark Sep 26 '08 at 20:32
vote up 4 vote down

You should use isinstace

isinstance(...)
    isinstance(object, class-or-type-or-tuple) -> bool

    Return whether an object is an instance of a class or of a subclass thereof.
    With a type as second argument, return whether that is the object's type.
    The form using a tuple, isinstance(x, (A, B, ...)), is a shortcut for
    isinstance(x, A) or isinstance(x, B) or ... (etc.).
link|flag
vote up 3 vote down

You probably want the isinstance builtin function:

self.data = data if isinstance(data, list) else self.parse(data)
link|flag
the if else expression will only work in python 2.5 (and later) – Moe Sep 26 '08 at 20:15
vote up 5 vote down

Use backticks to escape double underscores: __class__.

A better way would be to use isinstance and type conversion. If I'm understanding you right, you want this:

def __init__ (self, filename):
    if isinstance (filename, basestring):
        # filename is a string
    else:
        # try to convert to a list
        self.path = list (filename)
link|flag
nice use of basestring! – Blair Conrad Sep 26 '08 at 19:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.