/* * P4.Net * Copyright (c) 2007-2010 Shawn Hladky 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.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.Text; using System.Diagnostics; namespace P4API { /// /// Base functionality for P4Recordset and P4UnParsedRecordset. /// /// This is a base class for internal use. Do not use directly. /// public abstract class P4BaseRecordSet { internal List StringOutputs; internal List InfoOutputs; internal List ErrorOutputs; internal List WarningOutputs; internal List TaggedOutputs; internal List Messages; private string _loginPassword; private string _inputData = String.Empty; internal string _SpecDef; internal byte[] BinaryOutput; virtual internal string SpecDef { get { return _SpecDef; } set { _SpecDef = value; } } internal delegate void OnPromptEventHandler(object sender, P4PromptEventArgs e); internal event OnPromptEventHandler OnPrompt; internal P4BaseRecordSet() { StringOutputs = new List(); InfoOutputs = new List(); ErrorOutputs = new List(); WarningOutputs = new List(); TaggedOutputs = new List(); Messages = new List(); } internal void AddP4Message(P4Message message) { Messages.Add(message); } internal void AddInfo(string S) { StringOutputs.Add(S); } internal void AddString(string S) { InfoOutputs.Add(S); } internal void AddError(string S) { ErrorOutputs.Add(S); } internal void AddWarning(string S) { WarningOutputs.Add(S); } virtual internal void AddRecord(P4Record r) { TaggedOutputs.Add(r); } virtual internal void Finished() { // do nothing by default } /// /// Checks the Recordset to determine if errors occured. /// /// True if the p4 command returned errors. /// This is the same as testing Errors.Count. public bool HasErrors() { return (!(ErrorOutputs.Count == 0)); } /// /// Dumps recordset data to the Trace listner. /// /// Only availble for debug libraries. public void Dump() { foreach (P4Message msg in Messages) { msg.Dump(); } foreach (P4Record r in TaggedOutputs) { foreach (string key in r.Fields.Keys) { Trace.WriteLine(string.Format("... ... {0}={1}", key, r[key])); } foreach (string key in r.ArrayFields.Keys) { for (int i = 0; i < r.ArrayFields[key].Length; i++ ) { Trace.WriteLine(string.Format("... ... {0}{2}={1}", key, r.ArrayFields[key][i], i)); } } } } /// /// Checks the Recordset to determine if warnings occured. /// /// This is the same as testing Warnings.Count. /// True if the p4 command returned warnings. public bool HasWarnings() { return (!(WarningOutputs.Count == 0)); } /// /// Gets an array of error messages returned from the Perforce command. /// /// These are the error messages that are returned from Perforce. public string[] Errors { get { return ErrorOutputs.ToArray(); } } /// /// Gets an array of P4Messages returned from the Perforce command. /// /// These are the error messages that are returned from Perforce. public IList P4Messages { get { return Messages; } } /// /// Gets an error messages returned from the Perforce command. /// /// Errors are concatanated to one string, seperated by new lines. public string ErrorMessage { get { string ret = ""; foreach (string s in Errors) { ret += s + "\n"; } return ret; } } /// /// Gets an array of warning messages returned from the Perforce command. /// /// These are the warning messages that are returned from Perforce. /// Perforce is not always intuitive in how it defines warnings vs. messages. /// Always test various scenarios to determine whether the output is a warning or message. /// Array of warnings returned from Perforce. public string[] Warnings { get { return WarningOutputs.ToArray(); } } internal string InputData { get { return _inputData; } set { _inputData = value; } } internal string LoginPassword { get { return _loginPassword; } set { _loginPassword = value; } } internal string RaiseOnPromptEvent(string Message) { if (_loginPassword != null && Message == "Enter password: ") { //no need to raise an event... return _loginPassword; } // Make a temporary copy of the event to avoid possibility of // a race condition if the last subscriber unsubscribes // immediately after the null check and before the event is raised. OnPromptEventHandler handler = OnPrompt; // Event will be null if there are no subscribers if (handler != null) { P4PromptEventArgs e = new P4PromptEventArgs(Message); // Use the () operator to raise the event. handler(this, e); return e.Response; } else { return string.Empty; } } } }