Example #1
0
 internal static void Run(CmdLineOptions cmdLineOptions, JSession jSession)
 {
     try
     {
         new ReplProcessor(cmdLineOptions).RunRepl(jSession);
     }
     catch (Exception ex)
     {
         if (ReplProcessor._isDebug)
         {
             System.Console.WriteLine(ex.ToString());
         }
         throw;
     }
 }
Example #2
0
 internal static void Run(CmdLineOptions cmdLineOptions, JSession jSession)
 {
     try
     {
         new ReplProcessor(cmdLineOptions).RunRepl(jSession);
     }
     catch (Exception ex)
     {
         if (ReplProcessor._isDebug)
         {
             System.Console.WriteLine(ex.ToString());
         }
         throw;
     }
 }
Example #3
0
 private ReplProcessor(CmdLineOptions cmdLineOptions)
 {
     this._cmdLine = cmdLineOptions;
     this._replThread = null;
 }
Example #4
0
        static int Main(string[] args)
        {
            _programName = JSession.ProgramName;
            _options = new CmdLineOptions();

            bool showHelp = false;
            var optionSet = new OptionSet()
            {
                { "p|port=", "{PORT} to connect to.", (ushort v) => _options.Port = v },
                { "s|server:", "Repl {SERVER} to connect to. Default is 127.0.0.1.", v => _options.Server = v },
                { "f|launch_file:", "{SCRIPT} file to run on startup.", v => _options.LaunchFile = v },
                { "m|mode:", "Interactive {MODE} to use. Defaults to Standard.", v => _options.Backend = v },
                { "a|enable-attach", "Enable attaching the debugger via )attach.\n", v => _options.EnableAttach = v != null },
                { "h|help",  "Show this message and exit.", v => showHelp = v != null }
            };

            try
            {
                _options.JOptions = optionSet.Parse(args).ToArray();
                if (showHelp)
                {
                    ShowHelp(optionSet);
                    return 0;
                }
                if (_options.Port < 1)
                {
                    throw new Exception(string.Format("Missing PORT for repl processor client session."));
                }
            }
            catch (Exception ex)
            {
                System.Console.Error.WriteLine();
                System.Console.Error.Write(string.Format("{0}: ", _programName));
                System.Console.Error.WriteLine(ex.Message);
                System.Console.Error.WriteLine(string.Format("Try '{0} --help' for more information.", _programName));
                return 1;
            }

            try
            {
                using (_jSession = new JSession(_options.JOptions))
                {
                    System.Console.CancelKeyPress += (sender, e) =>
                    {
                        e.Cancel = true;
                        _jSession.IncAdBreak();
                    };
                    _jSession.SetType(JSession.SMCON);
                    throw new NotImplementedException();
                    ReplProcessor.Run(_options, _jSession);
                }
            }
            catch (Exception ex)
            {
                System.Console.Error.WriteLine();
                System.Console.Error.Write(string.Format("{0}: ", _programName));
                System.Console.Error.WriteLine(ex.ToString());
                return 1;
            }
            return 0;
        }
Example #5
0
        static int Main(string[] args)
        {
            _programName = JSession.ProgramName;
            _options     = new CmdLineOptions();

            bool showHelp  = false;
            var  optionSet = new OptionSet()
            {
                { "p|port=", "{PORT} to connect to.", (ushort v) => _options.Port = v },
                { "s|server:", "Repl {SERVER} to connect to. Default is 127.0.0.1.", v => _options.Server = v },
                { "f|launch_file:", "{SCRIPT} file to run on startup.", v => _options.LaunchFile = v },
                { "m|mode:", "Interactive {MODE} to use. Defaults to Standard.", v => _options.Backend = v },
                { "a|enable-attach", "Enable attaching the debugger via )attach.\n", v => _options.EnableAttach = v != null },
                { "h|help", "Show this message and exit.", v => showHelp = v != null }
            };

            try
            {
                _options.JOptions = optionSet.Parse(args).ToArray();
                if (showHelp)
                {
                    ShowHelp(optionSet);
                    return(0);
                }
                if (_options.Port < 1)
                {
                    throw new Exception(string.Format("Missing PORT for repl processor client session."));
                }
            }
            catch (Exception ex)
            {
                System.Console.Error.WriteLine();
                System.Console.Error.Write(string.Format("{0}: ", _programName));
                System.Console.Error.WriteLine(ex.Message);
                System.Console.Error.WriteLine(string.Format("Try '{0} --help' for more information.", _programName));
                return(1);
            }

            try
            {
                using (_jSession = new JSession(_options.JOptions))
                {
                    System.Console.CancelKeyPress += (sender, e) =>
                    {
                        e.Cancel = true;
                        _jSession.IncAdBreak();
                    };
                    _jSession.SetType(JSession.SMCON);
                    throw new NotImplementedException();
                    ReplProcessor.Run(_options, _jSession);
                }
            }
            catch (Exception ex)
            {
                System.Console.Error.WriteLine();
                System.Console.Error.Write(string.Format("{0}: ", _programName));
                System.Console.Error.WriteLine(ex.ToString());
                return(1);
            }
            return(0);
        }
Example #6
0
 private ReplProcessor(CmdLineOptions cmdLineOptions)
 {
     this._cmdLine    = cmdLineOptions;
     this._replThread = null;
 }