~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.XmlEditor/MonoDevelop.XmlEditor/XmlFileExtensions.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// MonoDevelop XML Editor
3
 
//
4
 
// Copyright (C) 2006-2007 Matthew Ward
5
 
//
6
 
// Permission is hereby granted, free of charge, to any person obtaining a copy
7
 
// of this software and associated documentation files (the "Software"), to deal
8
 
// in the Software without restriction, including without limitation the rights
9
 
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 
// copies of the Software, and to permit persons to whom the Software is
11
 
// furnished to do so, subject to the following conditions:
12
 
// 
13
 
// The above copyright notice and this permission notice shall be included in
14
 
// all copies or substantial portions of the Software.
15
 
// 
16
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
 
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
 
// THE SOFTWARE.
23
 
 
24
 
using Mono.Addins;
25
 
using MonoDevelop.Core;
26
 
using System;
27
 
using System.Collections.Generic;
28
 
 
29
 
namespace MonoDevelop.XmlEditor
30
 
{
31
 
        /// <summary>
32
 
        /// The extensions that will be edited using the xml editor.
33
 
        /// </summary>
34
 
        public static class XmlFileExtensions
35
 
        {
36
 
                //note: these are all stored as LowerInvariant strings
37
 
                static List<string> extensions;
38
 
                
39
 
                public static IEnumerable<string> GetExtensions ()
40
 
                {
41
 
                        if (extensions == null) {
42
 
                                extensions = new List<string> ();
43
 
                                foreach (ExtensionNode node in AddinManager.GetExtensionNodes("/MonoDevelop/XmlEditor/XmlFileExtensions")) {
44
 
                                        XmlFileExtensionNode xmlFileExtensionNode = node as XmlFileExtensionNode;
45
 
                                        if (xmlFileExtensionNode != null)
46
 
                                                extensions.Add (xmlFileExtensionNode.FileExtension.ToLowerInvariant ());
47
 
                                }
48
 
                        }
49
 
                        
50
 
                        //get user-registered extensions stored in the properties service but don't duplicate built-in ones
51
 
                        //note: XmlEditorAddInOptions returns LowerInvariant strings
52
 
                        foreach (string prop in XmlEditorOptions.GetRegisteredFileExtensions ())
53
 
                                if (!extensions.Contains (prop))
54
 
                                        yield return prop;
55
 
                        
56
 
                        foreach (string s in extensions)
57
 
                                yield return s;
58
 
                }
59
 
                
60
 
                public static bool IsXmlFileExtension (string extension)
61
 
                {
62
 
                        if (string.IsNullOrEmpty (extension))
63
 
                                return false;
64
 
                        
65
 
                        string ext = extension.ToLowerInvariant ();
66
 
                        foreach (string knownExtension in GetExtensions ())
67
 
                                if (ext == knownExtension)
68
 
                                        return true;
69
 
                        return false;
70
 
                }
71
 
        }
72
 
        
73
 
}