// // CustomExecutionMode.cs // // Author: // Lluis Sanchez Gual // // Copyright (c) 2009 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. using System; using System.IO; using System.Collections.Generic; using MonoDevelop.Components.Commands; using MonoDevelop.Core.Execution; using MonoDevelop.Core; using MonoDevelop.Ide.Gui.Dialogs; using MonoDevelop.Projects; using MonoDevelop.Core.Serialization; using Mono.Addins; namespace MonoDevelop.Ide.Execution { class CustomExecutionModes { [ItemProperty] [ItemProperty ("Mode", Scope="*")] [ExpandedCollection] public List Data = new List (); } class CustomExecutionMode: IExecutionMode, IExecutionHandler { [ItemProperty] public string Name { get; set; } [ItemProperty] public string Id { get; set; } [ItemProperty] public string ModeId { get; set; } [ItemProperty (FallbackType=typeof(UnknownModeData))] public object Data { get; set; } [ItemProperty ("CommandData")] [ItemProperty (Scope="value", FallbackType=typeof(UnknownModeData))] Dictionary commandData; [ItemProperty (DefaultValue=false)] public bool PromptForParameters { get; set; } public SolutionItem Project { get; set; } public CustomModeScope Scope { get; set; } IExecutionMode mode; public object GetCommandData (string editorId) { object data = null; if (commandData != null) commandData.TryGetValue (editorId, out data); return data; } public void SetCommandData (string editorId, object data) { if (commandData == null) commandData = new Dictionary (); commandData [editorId] = data; } public IExecutionHandler ExecutionHandler { get { return this; } } public IExecutionMode Mode { get { if (mode != null) return mode; foreach (IExecutionModeSet mset in Runtime.ProcessService.GetExecutionModes ()) { foreach (IExecutionMode m in mset.ExecutionModes) { if (m.Id == ModeId) return mode = m; } } return null; } set { mode = value; ModeId = value.Id; } } #region IExecutionHandler implementation public bool CanExecute (ExecutionCommand command) { if (Mode != null) return Mode.ExecutionHandler.CanExecute (command); return false; } public ProcessAsyncOperation Execute (ExecutionCommand command, IConsole console) { return Execute (command, console, true, false); } public ProcessAsyncOperation Execute (ExecutionCommand command, IConsole console, bool allowPrompt, bool forcePrompt) { if ((PromptForParameters || forcePrompt) && allowPrompt) { CommandExecutionContext ctx = new CommandExecutionContext (Project, command); CustomExecutionMode customMode = ExecutionModeCommandService.ShowParamtersDialog (ctx, Mode, this); if (customMode == null) return new CancelledProcessAsyncOperation (); else return customMode.Execute (command, console, false, false); } if (commandData != null) { foreach (KeyValuePair cmdData in commandData) { ExecutionCommandCustomizer cc = ExecutionModeCommandService.GetExecutionCommandCustomizer (cmdData.Key); if (cc != null) cc.Customize (command, cmdData.Value); } } ParameterizedExecutionHandler cmode = Mode.ExecutionHandler as ParameterizedExecutionHandler; if (cmode != null) { CommandExecutionContext ctx = new CommandExecutionContext (Project, command); return cmode.Execute (command, console, ctx, Data); } else return Mode.ExecutionHandler.Execute (command, console); } #endregion } class UnknownModeData { } internal enum CustomModeScope { Project = 0, Solution = 1, Global = 2 } }