/* * P4.Net * Copyright (c) 2006 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.Text; namespace P4API { internal class P4ResultClientUser : p4dn.ClientUser { private P4BaseRecordSet _P4Result; public P4ResultClientUser(P4BaseRecordSet p4Result) { this._P4Result = p4Result; } //public override void Diff(System.IO.FileInfo f1, System.IO.FileInfo f2, int doPage, string diffFlags, p4dn.Error err) //{ // //base.Diff(f1, f2, doPage, diffFlags, err); //} public override void Edit(System.IO.FileInfo f1, p4dn.Error err) { // this only happens when the user is fetching a form w/o using FetchForm method. // throw an exception throw new P4API.Exceptions.FormCommandException(); } //public override void ErrorPause(string errBuf, p4dn.Error err) //{ // //base.ErrorPause(errBuf, err); //} public override void Finished() { //base.Finished(); } public override void Prompt(string msg, ref string rsp, bool noEcho, p4dn.Error err) { rsp = _P4Result.RaiseOnPromptEvent(msg); } //public override void Merge(System.IO.FileInfo @base, System.IO.FileInfo leg1, System.IO.FileInfo leg2, System.IO.FileInfo result, p4dn.Error err) //{ // //base.Merge(@base, leg1, leg2, result, err); //} public override void Message(p4dn.Error err) { switch (err.Severity) { case p4dn.Error.ErrorSeverity.Empty : // E_EMPTY (0) | no error // Is this ever even a legit severity??? I've never hit it in my testing. _P4Result.AddString(err.Fmt()); break; case p4dn.Error.ErrorSeverity.Info : // E_INFO (1) | information, not necessarily an error _P4Result.AddInfo(err.Fmt()); break; case p4dn.Error.ErrorSeverity.Warning : // E_WARN (2) | a minor error occurred _P4Result.AddWarning(err.Fmt()); break; case p4dn.Error.ErrorSeverity.Failed : // E_FAILED(3) | the command was used incorrectly _P4Result.AddError(err.Fmt()); break; case p4dn.Error.ErrorSeverity.Fatal : // E_FATAL (4) | fatal error, the command can't be processed _P4Result.AddError(err.Fmt()); break; default: //TODO throw an error... unknown severity break; } } public override void OutputBinary(byte[] b) { _P4Result.BinaryOutput = b; } public override void OutputStat(Hashtable varList) { _P4Result.AddTag(varList); } public override void OutputText(string data) { _P4Result.TextOutput = data; } public override void SetSpecDef(string specdef) { _P4Result.SpecDef = specdef; } public override void InputForm(ref Hashtable varList, ref string specdef, p4dn.Error err) { specdef = _P4Result.SpecDef; varList = _P4Result.FormInput; } } }