File: suite.py

package info (click to toggle)
python-happydoc 2.0-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,176 kB
  • ctags: 3,347
  • sloc: python: 11,321; makefile: 88; sh: 77
file content (220 lines) | stat: -rw-r--r-- 7,233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#
# $Id: suite.py,v 1.1 2001/11/11 18:51:37 doughellmann Exp $
#
# Copyright 2001 Doug Hellmann.
#
#
#                         All Rights Reserved
#
# Permission to use, copy, modify, and distribute this software and
# its documentation for any purpose and without fee is hereby
# granted, provided that the above copyright notice appear in all
# copies and that both that copyright notice and this permission
# notice appear in supporting documentation, and that the name of Doug
# Hellmann not be used in advertising or publicity pertaining to
# distribution of the software without specific, written prior
# permission.
#
# DOUG HELLMANN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
# NO EVENT SHALL DOUG HELLMANN BE LIABLE FOR ANY SPECIAL, INDIRECT OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

"""Base class for information gathering classes.

"""

__rcs_info__ = {
    #
    #  Creation Information
    #
    'module_name'  : '$RCSfile: suite.py,v $',
    'rcs_id'       : '$Id: suite.py,v 1.1 2001/11/11 18:51:37 doughellmann Exp $',
    'creator'      : 'Doug Hellmann <doug@hellfly.net>',
    'project'      : 'UNSPECIFIED',
    'created'      : 'Sun, 11-Nov-2001 10:45:58 EST',

    #
    #  Current Information
    #
    'author'       : '$Author: doughellmann $',
    'version'      : '$Revision: 1.1 $',
    'date'         : '$Date: 2001/11/11 18:51:37 $',
}
try:
    __version__ = __rcs_info__['version'].split(' ')[1]
except:
    __version__ = '0.0'

#
# Import system modules
#
import re

#
# Import Local modules
#
import happydoclib
from happydoclib.happydom import HappyDOM

from happydoclib.parseinfo.utils import *

#
# Module
#

class SuiteInfoBase(HappyDOM):
    """Base class for information gathering classes.

    Default implementation assumes that the user is interested
    in learning about functions and classes defined within the
    parse tree used for initialization.  This makes implementation
    of MethodInfo easy.  Other derived classes add behavior to
    find other information.
    """
    
    #_docstring = ''
    _docstring_summary = None

    def __init__(self, name, parent, filename, tree,
                 commentInfo={},
                 defaultConfigValues={},
                 ):
        """Initialize the info extractor.

        Parameters:

            name -- name of this object
        
            parent -- parent object (e.g. Module for Class)

            filename -- file which contains the tree
            
            tree -- parse tree from which to extract information

            commentInfo -- comments extracted from source file where
            this object was found
            
        """
        self._class_info = {}
        self._function_info = {}
        namespaces = ( self._class_info, self._function_info )
        HappyDOM.__init__(self, name, parent, filename, namespaces)
        
        self._comment_info = commentInfo
        self._configuration_values = {}
        self._configuration_values.update(defaultConfigValues)
        self._extractConfigurationValues()

        comment_key = self.getCommentKey()
        #print 'PARSEINFO: Looking for comments for %s in %s' % (name, comment_key)
        self._comments = commentInfo.get(comment_key, '')
        if tree:
            self._extractInfo(tree)
        return

    def getCommentKey(self):
        if self._parent:
            return self._parent.getCommentKey() + (self._name,)
        else:
            return (self._name,)

    ##
    ## Internal Data Extraction
    ##

    def getConfigurationValues(self):
        "Return any HappyDoc configuration values related to this object."
        if self._parent:
            return self._parent.getConfigurationValues()
        else:
            return self._configuration_values

    def _extractInfo(self, tree):
        "Pull information out of the parse tree."
        from happydoclib.parseinfo.classinfo import ClassInfo
        from happydoclib.parseinfo.functioninfo import FunctionInfo
        
        # extract docstring
        if len(tree) == 2:
            found, vars = match(DOCSTRING_STMT_PATTERN[1], tree[1])
        else:
            found, vars = match(DOCSTRING_STMT_PATTERN, tree[3])
        if found:
            self._docstring = eval(vars['docstring'])
        else:
            self._docstring = ''
        # discover inner definitions
        for node in tree[1:]:
            found, vars = match(COMPOUND_STMT_PATTERN, node)
            if found:
                cstmt = vars['compound']
                if cstmt[0] == symbol.funcdef:
                    name = cstmt[2][1]
                    self._function_info[name] = FunctionInfo(
                        tree=cstmt,
                        parent=self,
                        commentInfo=self._comment_info,
                        )
                    #pprint.pprint(cstmt)
                elif cstmt[0] == symbol.classdef:
                    name = cstmt[2][1]
                    self._class_info[name] = ClassInfo(
                        tree=cstmt,
                        parent=self,
                        commentInfo=self._comment_info
                        )
        return
    
    def _extractConfigurationValues(self):
        "Default implementation does nothing."
        return

    _summary_pattern = re.compile(r'^\s*([^\n]+)\n')
    def _extractSummary(self, text):
        "Extract a summary text from a larger body."
        text = text.strip()
        #
        # Remove surrounding quotes, if present.
        #
        while text and (text[0] in ('"', "'")):
            text = text[1:]
        while text and (text[-1] in ('"', "'")):
            text = text[:-1]
        #
        # Pull out the first line, and return it if
        # we can find it.  Otherwise, return the whole
        # string since that means that the whole thing
        # is just one line.
        #
        matchObj = self._summary_pattern.search(text)
        if matchObj:
            return matchObj.group(0).strip()
        else:
            return text

    ##
    ## DocStrings
    ##
    
    def getDocString(self):
        "Return any __doc__ string value found for the object."
        dstring = '%s\n\n%s' % (self._docstring, self._comments)
        #print 'DOC STRING for %s is ' % self._name, dstring
        return dstring

    def getDocStringFormat(self):
        "Returns the docstring converter format name for the docstring for this object."
        config_values = self.getConfigurationValues()
        return config_values['docStringFormat']
 
    def getSummaryAndFormat(self):
        "Return a summary of the __doc__ string for this object and the docstring converter name for the format of the text."
        if self._docstring_summary is None:
            self._docstring_summary = \
                                    self._extractSummary(self.getDocString())
        return self._docstring_summary, self.getDocStringFormat()