~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/cred/service.py

  • Committer: Bazaar Package Importer
  • Author(s): Moshe Zadka
  • Date: 2002-03-08 07:14:16 UTC
  • Revision ID: james.westby@ubuntu.com-20020308071416-oxvuw76tpcpi5v1q
Tags: upstream-0.15.5
ImportĀ upstreamĀ versionĀ 0.15.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Twisted, the Framework of Your Internet
 
3
# Copyright (C) 2001 Matthew W. Lefkowitz
 
4
#
 
5
# This library is free software; you can redistribute it and/or
 
6
# modify it under the terms of version 2.1 of the GNU Lesser General Public
 
7
# License as published by the Free Software Foundation.
 
8
#
 
9
# This library is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
# Lesser General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU Lesser General Public
 
15
# License along with this library; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
"""
 
19
Twisted Cred Service
 
20
"""
 
21
 
 
22
# Twisted Imports
 
23
from twisted.python import defer
 
24
 
 
25
# Sibling Imports
 
26
from perspective import Perspective
 
27
 
 
28
# System Imports
 
29
import types
 
30
 
 
31
 
 
32
class Service:
 
33
    """I am a service that internet applications interact with.
 
34
 
 
35
    I represent a set of abstractions which users may interact with over a
 
36
    specified protocol.
 
37
 
 
38
    (See Also: twisted.spread.pb.Service)
 
39
    """
 
40
    # ugh, load order
 
41
    perspectiveClass = Perspective
 
42
 
 
43
    application = None
 
44
    serviceType = None
 
45
    serviceName = None
 
46
 
 
47
    def __init__(self, serviceName, application=None):
 
48
        """Create me, attached to the given application.
 
49
 
 
50
        Arguments: application, a twisted.internet.app.Application instance.
 
51
        """
 
52
        if not isinstance(serviceName, types.StringType):
 
53
            raise TypeError
 
54
        self.serviceName = serviceName
 
55
        self.perspectives = {}
 
56
        self.setApplication(application)
 
57
 
 
58
    def cachePerspective(self, perspective):
 
59
        """Cache a perspective loaded from an external data source.
 
60
 
 
61
        Perspectives that were 'loaded' from memory will not be uncached.
 
62
        """
 
63
        if self.perspectives.has_key(perspective.perspectiveName):
 
64
            return
 
65
        self.perspectives[perspective.perspectiveName] = perspective
 
66
        perspective._service_cached = 1
 
67
 
 
68
    def uncachePerspective(self, perspective):
 
69
        """Uncache a perspective loaded from an external data source.
 
70
 
 
71
        Perspectives that were 'loaded' from memory will not be uncached.
 
72
        """
 
73
        if self.perspectives.has_key(perspective.perspectiveName):
 
74
            if perspective._service_cached:
 
75
                del self.perspectives[perspective.perspectiveName]
 
76
 
 
77
    def setApplication(self, application):
 
78
        from twisted.internet import app
 
79
        if application and not isinstance(application, app.Application):
 
80
            raise TypeError
 
81
        if self.application and self.application is not application:
 
82
            raise RuntimeError, "Application already set!"
 
83
        if application:
 
84
            self.application = application
 
85
            application.addService(self)
 
86
 
 
87
    def createPerspective(self, name):
 
88
        """Create a perspective from self.perspectiveClass and add it to this service.
 
89
        """
 
90
        p = self.perspectiveClass(name)
 
91
        self.perspectives[name] = p
 
92
        p.setService(self)
 
93
        return p
 
94
 
 
95
    def addPerspective(self, perspective):
 
96
        """Add a perspective to this Service.
 
97
        """
 
98
        if not isinstance(perspective, Perspective):
 
99
            raise TypeError
 
100
        perspective.setService(self)
 
101
        self.perspectives[perspective.getPerspectiveName()] = perspective
 
102
 
 
103
    def getPerspectiveNamed(self, name):
 
104
        """Return a perspective that represents a user for this service. (DEPRECATED)
 
105
 
 
106
        Raises a KeyError if no such user exists.  Override this method to
 
107
        provide dynamic instantiation of perspectives.
 
108
        """
 
109
        return self.perspectives[name]
 
110
 
 
111
    def loadPerspective(self, name):
 
112
        """Load a perspective from an external data-source.
 
113
 
 
114
        If no such data-source exists, return None.  Implement this if you want
 
115
        to load your perspectives from somewhere else (e.g. LDAP or a
 
116
        database).  It is not recommended to call this directly, since
 
117
        getPerspectiveRequest provides management of caching perspectives.
 
118
        """
 
119
        return defer.fail("No such perspective %s" % name)
 
120
 
 
121
    def getPerspectiveRequest(self, name):
 
122
        """Return a Deferred which is a request for a perspective on this service.
 
123
        """
 
124
        try:
 
125
            p = self.getPerspectiveNamed(name)
 
126
        except KeyError:
 
127
            return self.loadPerspective(name)
 
128
        else:
 
129
            return defer.succeed(p)
 
130
 
 
131
    def getServiceName(self):
 
132
        """The name of this service.
 
133
        """
 
134
        return self.serviceName or self.getServiceType()
 
135
 
 
136
    def getServiceType(self):
 
137
        """Get a string describing the type of this service.
 
138
        """
 
139
        return self.serviceType or str(self.__class__)
 
140