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

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Core.ProgressMonitoring/ProgressStatusMonitor.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
// ConsoleProgressStatus.cs
 
2
//
 
3
// Author:
 
4
//   Lluis Sanchez Gual <lluis@novell.com>
 
5
//
 
6
// Copyright (c) 2007 Novell, Inc (http://www.novell.com)
 
7
//
 
8
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
9
// of this software and associated documentation files (the "Software"), to deal
 
10
// in the Software without restriction, including without limitation the rights
 
11
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
12
// copies of the Software, and to permit persons to whom the Software is
 
13
// furnished to do so, subject to the following conditions:
 
14
//
 
15
// The above copyright notice and this permission notice shall be included in
 
16
// all copies or substantial portions of the Software.
 
17
//
 
18
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
19
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
20
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
21
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
22
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
23
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
24
// THE SOFTWARE.
 
25
//
 
26
//
 
27
 
 
28
 
 
29
using System;
 
30
using Mono.Addins;
 
31
 
 
32
namespace MonoDevelop.Core.ProgressMonitoring
 
33
{
 
34
        public class ProgressStatusMonitor: MarshalByRefObject, IProgressStatus, IDisposable
 
35
        {
 
36
                IProgressMonitor monitor;
 
37
                int step;
 
38
                int logLevel;
 
39
                
 
40
                public ProgressStatusMonitor (IProgressMonitor monitor): this (monitor, 1)
 
41
                {
 
42
                }
 
43
                
 
44
                public ProgressStatusMonitor (IProgressMonitor monitor, int logLevel)
 
45
                {
 
46
                        this.logLevel = logLevel;
 
47
                        this.monitor = monitor;
 
48
                        monitor.BeginTask ("", 100);
 
49
                }
 
50
                
 
51
                public void SetMessage (string msg)
 
52
                {
 
53
                        monitor.EndTask ();
 
54
                        monitor.BeginTask (msg, 100 - step);
 
55
                }
 
56
                
 
57
                public void SetProgress (double progress)
 
58
                {
 
59
                        int ns = (int) (progress * 100);
 
60
                        monitor.Step (ns - step);
 
61
                        step = ns;
 
62
                }
 
63
                
 
64
                public void Log (string msg)
 
65
                {
 
66
                        monitor.Log.WriteLine (msg);
 
67
                }
 
68
                
 
69
                public void ReportWarning (string message)
 
70
                {
 
71
                        monitor.ReportWarning (message);
 
72
                }
 
73
                
 
74
                public void ReportError (string message, Exception exception)
 
75
                {
 
76
                        monitor.ReportError (message, exception);
 
77
                }
 
78
                
 
79
                public bool IsCanceled {
 
80
                        get { return monitor.IsCancelRequested; }
 
81
                }
 
82
                
 
83
                public int LogLevel {
 
84
                        get { return logLevel; }
 
85
                        set { logLevel = value; }
 
86
                }
 
87
                
 
88
                public void Cancel ()
 
89
                {
 
90
                        monitor.AsyncOperation.Cancel ();
 
91
                }
 
92
                
 
93
                public void Dispose ()
 
94
                {
 
95
                        monitor.EndTask ();
 
96
                }
 
97
        }
 
98
}
 
99