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

« back to all changes in this revision

Viewing changes to Core/src/MonoDevelop.Projects/MonoDevelop.Projects.Deployment/DeployService.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
// DeployService.cs
 
3
//
 
4
// Author:
 
5
//   Lluis Sanchez Gual
 
6
//
 
7
// Copyright (C) 2006 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
 
 
30
using System;
 
31
using System.Collections;
 
32
 
 
33
using MonoDevelop.Core;
 
34
using MonoDevelop.Core.AddIns;
 
35
 
 
36
namespace MonoDevelop.Projects.Deployment
 
37
{
 
38
        public class DeployService: AbstractService
 
39
        {
 
40
                ArrayList handlers = new ArrayList ();
 
41
                
 
42
                public DeployService()
 
43
                {
 
44
                }
 
45
                
 
46
                public override void InitializeService()
 
47
                {
 
48
                        base.InitializeService ();
 
49
                        Runtime.AddInService.RegisterExtensionItemListener ("/SharpDevelop/Workbench/DeployHandlers", OnExtensionChanged);
 
50
                }
 
51
                
 
52
                void OnExtensionChanged (ExtensionAction action, object item)
 
53
                {
 
54
                        if (action == ExtensionAction.Add) {
 
55
                                handlers.Add (new DeployHandler ((IDeployHandler)item));
 
56
                        }
 
57
                }
 
58
                
 
59
                public DeployHandler[] GetDeployHandlers (CombineEntry entry)
 
60
                {
 
61
                        ArrayList list = new ArrayList ();
 
62
                        foreach (DeployHandler handler in handlers)
 
63
                                if (handler.CanDeploy (entry))
 
64
                                        list.Add (handler);
 
65
 
 
66
                        return (DeployHandler[]) list.ToArray (typeof(DeployHandler));
 
67
                }
 
68
                
 
69
                internal DeployHandler GetDeployHandler (string id)
 
70
                {
 
71
                        foreach (DeployHandler handler in handlers)
 
72
                                if (handler.Id == id)
 
73
                                        return handler;
 
74
 
 
75
                        return null;
 
76
                }
 
77
                
 
78
        }
 
79
}