~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Extras/NemerleBinding/Parser/CodeGeneration.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// CodeGenerator.cs
 
3
//
 
4
// Author:
 
5
//   Lluis Sanchez Gual
 
6
//
 
7
// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 
8
//
 
9
// Permission is hereby granted, free of charge, to any person obtaining
 
10
// a copy of this software and associated documentation files (the
 
11
// "Software"), to deal in the Software without restriction, including
 
12
// without limitation the rights to use, copy, modify, merge, publish,
 
13
// distribute, sublicense, and/or sell copies of the Software, and to
 
14
// permit persons to whom the Software is furnished to do so, subject to
 
15
// the following conditions:
 
16
// 
 
17
// The above copyright notice and this permission notice shall be
 
18
// included in all copies or substantial portions of the Software.
 
19
// 
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
21
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
22
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
23
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
24
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
25
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
26
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
27
//
 
28
 
 
29
using System;
 
30
using System.CodeDom;
 
31
using System.CodeDom.Compiler;
 
32
using NemerleBinding.Parser;
 
33
using nemerle = Nemerle.Compiler;
 
34
using System.IO;
 
35
using MonoDevelop.Projects.Parser;
 
36
using MonoDevelop.Projects.Text;
 
37
using MonoDevelop.Projects.CodeGeneration;
 
38
using System.Drawing;
 
39
using System.Text.RegularExpressions;
 
40
 
 
41
namespace NemerleBinding.Parser
 
42
{
 
43
        class NemerleRefactorer: BaseRefactorer
 
44
        {
 
45
                nemerle.NemerleCodeProvider nemerleProvider = new nemerle.NemerleCodeProvider ();
 
46
                
 
47
                public override RefactorOperations SupportedOperations {
 
48
                        get { return RefactorOperations.All; }
 
49
                }
 
50
        
 
51
                protected override ICodeGenerator GetGenerator ()
 
52
                {
 
53
                        return nemerleProvider.CreateGenerator ();
 
54
                }
 
55
                
 
56
                public override IClass RenameClass (RefactorerContext ctx, IClass cls, string newName)
 
57
                {
 
58
                        IEditableTextFile file = ctx.GetFile (cls.Region.FileName);
 
59
                        if (file == null)
 
60
                                return null;
 
61
 
 
62
                        int pos1 = file.GetPositionFromLineColumn (cls.Region.BeginLine, cls.Region.BeginColumn);
 
63
                        int pos2 = file.GetPositionFromLineColumn (cls.Region.EndLine, cls.Region.EndColumn);
 
64
                        string txt = file.GetText (pos1, pos2);
 
65
                        
 
66
                        Regex targetExp = new Regex(@"\sclass\s*(" + cls.Name + @")\s", RegexOptions.Multiline);
 
67
                        Match match = targetExp.Match (" " + txt + " ");
 
68
                        if (!match.Success)
 
69
                                return null;
 
70
                        
 
71
                        int pos = pos1 + match.Groups [1].Index - 1;
 
72
                        file.DeleteText (pos, cls.Name.Length);
 
73
                        file.InsertText (pos, newName);
 
74
                        
 
75
                        return GetGeneratedClass (ctx, file, cls);
 
76
                }
 
77
                
 
78
                public override MemberReferenceCollection FindClassReferences (RefactorerContext ctx, string fileName, IClass cls)
 
79
                {
 
80
                        return null;
 
81
                }
 
82
                
 
83
                public override MemberReferenceCollection FindMemberReferences (RefactorerContext ctx, string fileName, IClass cls, IMember member)
 
84
                {
 
85
                        return null;
 
86
                }
 
87
        }
 
88
}