Imitiating buttfly in being explicitly typed
[theonering] / src / tp / handle.py
1 # telepathy-python - Base classes defining the interfaces of the Telepathy framework
2 #
3 # Copyright (C) 2005,2006,2009,2010 Collabora Limited
4 # Copyright (C) 2005,2006 Nokia Corporation
5 #
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
10 #
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
20 from telepathy.constants import HANDLE_TYPE_NONE
21
22 class Handle(object):
23     def __init__(self, id, handle_type, name):
24         self._id = id
25         self._type = handle_type
26         self._name = name
27
28     def get_id(self):
29         return self._id
30
31     def __int__(self):
32         return int(self._id)
33
34     def __long__(self):
35         return long(self._id)
36
37     def get_type(self):
38         return self._type
39
40     def get_name(self):
41         return self._name
42
43     def __eq__(self, other):
44         return (int(self) == int(other) and self.get_type() == other.get_type())
45
46     def __ne__(self, other):
47         return not self.__eq__(other)
48
49 class NoneHandle(Handle):
50     def __init__(self):
51         Handle.__init__(self, 0, HANDLE_TYPE_NONE, '')