lineNumbers.py :  » Development » Leo » Leo-4.7.1-final » leo » plugins » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Development » Leo 
Leo » Leo 4.7.1 final » leo » plugins » lineNumbers.py
#@+leo-ver=4-thin
#@+node:ekr.20040419105219:@thin lineNumbers.py
'''Adds #line directives in perl and perlpod programs.

Over-rides two methods in leoAtFile.py to write #line directives after node
sentinels. This allows compilers to give locations of errors in relation to the
node name rather than the filename. Currently supports only perl and perlpod.
'''

# Use and distribute under the same terms as Leo.
# Original code by Mark Ng <markn@cs.mu.oz.au>

#@<< imports >>
#@+node:ekr.20050105150253:<< imports >>
import leo.core.leoGlobals as g
# import leo.core.leoPlugins as leoPlugins

import leo.core.leoAtFile as leoAtFile
import re
#@nonl
#@-node:ekr.20050105150253:<< imports >>
#@nl
__version__ = "0.3"
#@<< version history >>
#@+node:ekr.20050105150253.1:<< version history >>
#@@killcolor
#@+at
# 
# 0.1 Mark Ng
#     - Original code
# 0.2 EKR:
#     - Convert to new coding conventions.
# 0.3 EKR:
#     - Changed leoAtFile.newDerivedFile to leoAtFile.atFile when overriding 
# methods.
#       This is required because of changes in 4.3 to Leo's core code.
# 0.4 EKR:
#     - Used named sections to emphasize the dangerous nature of this code.
#@-at
#@nonl
#@-node:ekr.20050105150253.1:<< version history >>
#@nl

linere = re.compile("^#line 1 \".*\"$")

def init():
    ok = not g.app.unitTesting # Not safe for unit testing.  Changes core class.
    if ok:
        #@        << override write methods >>
        #@+node:ekr.20040419105219.1:<< override write methods >>
        oldOpenNodeSentinel = leoAtFile.atFile.putOpenNodeSentinel

        def putLineNumberDirective(self,v,inAtAll=False,inAtOthers=False,middle=False):

            oldOpenNodeSentinel(self,v,inAtAll,inAtOthers,middle)

            if self.language in ("perl","perlpod"):
                line = 'line 1 "node:%s (%s)"' % (self.nodeSentinelText(v),self.shortFileName)
                self.putSentinel(line)

        g.funcToMethod(putLineNumberDirective,  
            leoAtFile.atFile,"putOpenNodeSentinel")
        #@nonl
        #@-node:ekr.20040419105219.1:<< override write methods >>
        #@nl
        #@        << override read methods >>
        #@+node:ekr.20040419105219.2:<< override read methods >>
        readNormalLine = leoAtFile.atFile.readNormalLine

        def skipLineNumberDirective(self, s, i):

            if linere.search(s): 
                return  # Skipt the line.
            else:    
                readNormalLine(self,s,i)

        g.funcToMethod(skipLineNumberDirective,
            leoAtFile.atFile,"readNormalLine")
        #@nonl
        #@-node:ekr.20040419105219.2:<< override read methods >>
        #@nl
        g.plugin_signon(__name__)
    return ok
#@nonl
#@-node:ekr.20040419105219:@thin lineNumbers.py
#@-leo
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.