P4ResultClientUser.cs #1

  • //
  • guest/
  • erik_purins/
  • P4.Net/
  • release/
  • 0.9/
  • src/
  • P4API/
  • P4ResultClientUser.cs
  • View
  • Commits
  • Open Download .zip Download (4 KB)
/*
 * 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;
        }
    }
}
# Change User Description Committed
#1 7341 Erik Purins p4.net
---
pull p4.net#head
//guest/shawn_hladky/P4.Net/release/0.9/src/P4API/P4ResultClientUser.cs
#1 5831 Shawn Hladky P4.Net: Branch release 0.9 and delete a few files missed last time
//guest/shawn_hladky/P4.Net/main/src/P4API/P4ResultClientUser.cs
#1 5830 Shawn Hladky P4.Net: reorg to support release branches
//guest/shawn_hladky/P4.Net/src/P4API/P4ResultClientUser.cs
#10 5798 Shawn Hladky P4.Net...  still not ready for beta
Added license to all files
Added several doc files
Misc bugs
#9 5774 Shawn Hladky P4.Net.
 A few bug fixes.  Addes first draft of MSBuild custom tasks.
#8 5678 Shawn Hladky WIP...
more tests.  OnPrompt event to recieve input from prompts.
#7 5636 Shawn Hladky 1.
 Added test harness framework, and some initial tests
2.  Fixed many bugs (oddly enough identified by the unit tests)
3.  Fixes so will build 1.1 Framework (and build batch files actually work)
4.  Pathetic attempt at documentation
#6 5447 Shawn Hladky refactor, and added options class
#5 5431 Shawn Hladky Refactoring...
step 1.
#4 5427 Shawn Hladky P4.Net -- several fixes and added sample application
#3 5411 Shawn Hladky WIP -- forms are working now.
#2 5373 Shawn Hladky P4.Net: Still WIP, but some things starting to work
#1 5349 Shawn Hladky Initial check-in for the new API interface.
 Nothing works yet, but it should compile at least.