~do-win/do/test-paths

« back to all changes in this revision

Viewing changes to Mono.Addins/Mono.Addins.Description/AddinDependency.cs

  • Committer: Chris S.
  • Date: 2009-06-21 03:37:34 UTC
  • Revision ID: chris@szikszoy.com-20090621033734-ud2jdcd5pq9r3ue9
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// AddinDependency.cs
 
3
//
 
4
// Author:
 
5
//   Lluis Sanchez Gual
 
6
//
 
7
// Copyright (C) 2007 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.Collections;
 
31
using System.Collections.Specialized;
 
32
using System.Xml;
 
33
using System.Xml.Serialization;
 
34
using Mono.Addins.Serialization;
 
35
 
 
36
namespace Mono.Addins.Description
 
37
{
 
38
        [XmlType ("AddinReference")]
 
39
        public class AddinDependency: Dependency
 
40
        {
 
41
                string id;
 
42
                string version;
 
43
                
 
44
                public AddinDependency ()
 
45
                {
 
46
                }
 
47
                
 
48
                public AddinDependency (string fullId)
 
49
                {
 
50
                        Addin.GetIdParts (fullId, out id, out version);
 
51
                        id = "::" + id;
 
52
                }
 
53
                
 
54
                public AddinDependency (string id, string version)
 
55
                {
 
56
                        this.id = id;
 
57
                        this.version = version;
 
58
                }
 
59
                
 
60
                internal AddinDependency (XmlElement elem): base (elem)
 
61
                {
 
62
                        id = elem.GetAttribute ("id");
 
63
                        version = elem.GetAttribute ("version");
 
64
                }
 
65
                
 
66
                internal override void Verify (string location, StringCollection errors)
 
67
                {
 
68
                        VerifyNotEmpty (location + "Dependencies/Addin/", errors, "id", AddinId);
 
69
                        VerifyNotEmpty (location + "Dependencies/Addin/", errors, "version", Version);
 
70
                }
 
71
                
 
72
                internal override void SaveXml (XmlElement parent)
 
73
                {
 
74
                        CreateElement (parent, "Addin"); 
 
75
                        Element.SetAttribute ("id", AddinId);
 
76
                        Element.SetAttribute ("version", Version);
 
77
                }
 
78
                
 
79
                public string FullAddinId {
 
80
                        get {
 
81
                                AddinDescription desc = ParentAddinDescription;
 
82
                                if (desc == null)
 
83
                                        return Addin.GetFullId (null, AddinId, Version);
 
84
                                else
 
85
                                        return Addin.GetFullId (desc.Namespace, AddinId, Version);
 
86
                        }
 
87
                }
 
88
                
 
89
                public string AddinId {
 
90
                        get { return id != null ? id : string.Empty; }
 
91
                        set { id = value; }
 
92
                }
 
93
                
 
94
                public string Version {
 
95
                        get { return version != null ? version : string.Empty; }
 
96
                        set { version = value; }
 
97
                }
 
98
                
 
99
                public override string Name {
 
100
                        get { return AddinId + " v" + version; }
 
101
                }
 
102
                
 
103
                internal override bool CheckInstalled ()
 
104
                {
 
105
                        Addin[] addins = AddinManager.Registry.GetAddins ();
 
106
                        foreach (Addin addin in addins) {
 
107
                                if (addin.Id == id && addin.SupportsVersion (version)) {
 
108
                                        return true;
 
109
                                }
 
110
                        }
 
111
                        return false;
 
112
                }
 
113
 
 
114
                internal override void Write (BinaryXmlWriter writer)
 
115
                {
 
116
                        base.Write (writer);
 
117
                        writer.WriteValue ("id", id);
 
118
                        writer.WriteValue ("version", version);
 
119
                }
 
120
                
 
121
                internal override void Read (BinaryXmlReader reader)
 
122
                {
 
123
                        base.Read (reader);
 
124
                        id = reader.ReadStringValue ("id");
 
125
                        version = reader.ReadStringValue ("version");
 
126
                }
 
127
        }
 
128
}