Beispiel #1
0
 def func(self):
     caller = self.caller
     if caller.ndb.batch_batchmode == "batch_code":
         BATCHCODE.parse_file(caller.ndb.batch_pythonpath)
     else:
         BATCHCMD.parse_file(caller.ndb.batch_pythonpath)
     caller.ndb.batch_stackptr = 0
     caller.msg(format_code("File reloaded. Restarting from top."))
     show_curr(caller)
Beispiel #2
0
 def func(self):
     caller = self.caller
     if caller.ndb.batch_batchmode == "batch_code":
         BATCHCODE.parse_file(caller.ndb.batch_pythonpath)
     else:
         BATCHCMD.parse_file(caller.ndb.batch_pythonpath)
     caller.ndb.batch_stackptr = 0
     caller.msg(format_code("File reloaded. Restarting from top."))
     show_curr(caller)
Beispiel #3
0
 def func(self):
     caller = self.caller
     if caller.ndb.batch_batchmode == "batch_code":
         new_data = BATCHCODE.parse_file(caller.ndb.batch_pythonpath)
     else:
         new_data = BATCHCMD.parse_file(caller.ndb.batch_pythonpath)
     caller.ndb.batch_stack = new_data
     caller.msg(format_code("File reloaded. Staying on same command."))
     show_curr(caller)
Beispiel #4
0
 def func(self):
     caller = self.caller
     if caller.ndb.batch_batchmode == "batch_code":
         new_data = BATCHCODE.parse_file(caller.ndb.batch_pythonpath)
     else:
         new_data = BATCHCMD.parse_file(caller.ndb.batch_pythonpath)
     caller.ndb.batch_stack = new_data
     caller.msg(format_code("File reloaded. Staying on same command."))
     show_curr(caller)
Beispiel #5
0
    def func(self):
        "Starts the processor."

        caller = self.caller

        args = self.args
        if not args:
            caller.msg("Usage: @batchcommands[/interactive] <path.to.file>")
            return
        python_path = self.args

        #parse indata file

        try:
            commands = BATCHCMD.parse_file(python_path)
        except UnicodeDecodeError, err:
            caller.msg(_UTF8_ERROR % (python_path, err))
            return
Beispiel #6
0
    def func(self):
        "Starts the processor."

        caller = self.caller

        args = self.args
        if not args:
            caller.msg("Usage: @batchcommands[/interactive] <path.to.file>")
            return
        python_path = self.args

        #parse indata file

        try:
            commands = BATCHCMD.parse_file(python_path)
        except UnicodeDecodeError, err:
            caller.msg(_UTF8_ERROR % (python_path, err))
            return
Beispiel #7
0
    def func(self):
        "Starts the processor."

        caller = self.caller

        args = self.args
        if not args:
            caller.msg("Usage: @batchcommands[/interactive] <path.to.file>")
            return
        python_path = self.args

        #parse indata file

        try:
            commands = BATCHCMD.parse_file(python_path)
        except UnicodeDecodeError as err:
            caller.msg(_UTF8_ERROR % (python_path, err))
            return
        except IOError as err:
            string = "'%s' not found.\nYou have to supply the python path\n" \
                     "using one of the defined batch-file directories\n (%s)."
            caller.msg(string % (python_path, ", ".join(settings.BASE_BATCHPROCESS_PATHS)))
            return
        if not commands:
            caller.msg("File %s seems empty of valid commands." % python_path)
            return

        switches = self.switches

        # Store work data in cache
        caller.ndb.batch_stack = commands
        caller.ndb.batch_stackptr = 0
        caller.ndb.batch_pythonpath = python_path
        caller.ndb.batch_batchmode = "batch_commands"
        caller.cmdset.add(BatchSafeCmdSet)

        if 'inter' in switches or 'interactive' in switches:
            # Allow more control over how batch file is executed

            # Set interactive state directly
            caller.cmdset.add(BatchInteractiveCmdSet)

            caller.msg("\nBatch-command processor - Interactive mode for %s ..." % python_path)
            show_curr(caller)
        else:
            caller.msg("Running Batch-command processor - Automatic mode for %s (this might take some time) ..." % python_path)

            procpool = False
            if "PythonProcPool" in utils.server_services():
                if utils.uses_database("sqlite3"):
                    caller.msg("Batchprocessor disabled ProcPool under SQLite3.")
                else:
                    procpool = True

            if procpool:
                # run in parallel process
                def callback(r):
                    caller.msg("  {GBatchfile '%s' applied." % python_path)
                    purge_processor(caller)

                def errback(e):
                    caller.msg("  {RError from processor: '%s'" % e)
                    purge_processor(caller)

                utils.run_async(_PROCPOOL_BATCHCMD_SOURCE,
                                commands=commands,
                                caller=caller,
                                at_return=callback,
                                at_err=errback)
            else:
                # run in-process (might block)
                for inum in range(len(commands)):
                    # loop through the batch file
                    if not batch_cmd_exec(caller):
                        return
                    step_pointer(caller, 1)
                # clean out the safety cmdset and clean out all other
                # temporary attrs.
                string = "  Batchfile '%s' applied." % python_path
                caller.msg("{G%s" % string)
                purge_processor(caller)
Beispiel #8
0
    def func(self):
        """Starts the processor."""

        caller = self.caller

        args = self.args
        if not args:
            caller.msg("Usage: @batchcommands[/interactive] <path.to.file>")
            return
        python_path = self.args

        # parse indata file

        try:
            commands = BATCHCMD.parse_file(python_path)
        except UnicodeDecodeError as err:
            caller.msg(_UTF8_ERROR % (python_path, err))
            return
        except IOError as err:
            string = "'%s' not found.\nYou have to supply the python path\n" \
                     "using one of the defined batch-file directories\n (%s)."
            caller.msg(
                string %
                (python_path, ", ".join(settings.BASE_BATCHPROCESS_PATHS)))
            return
        if not commands:
            caller.msg("File %s seems empty of valid commands." % python_path)
            return

        switches = self.switches

        # Store work data in cache
        caller.ndb.batch_stack = commands
        caller.ndb.batch_stackptr = 0
        caller.ndb.batch_pythonpath = python_path
        caller.ndb.batch_batchmode = "batch_commands"
        # we use list() here to create a new copy of the cmdset stack
        caller.ndb.batch_cmdset_backup = list(caller.cmdset.cmdset_stack)
        caller.cmdset.add(BatchSafeCmdSet)

        if 'inter' in switches or 'interactive' in switches:
            # Allow more control over how batch file is executed

            # Set interactive state directly
            caller.cmdset.add(BatchInteractiveCmdSet)

            caller.msg(
                "\nBatch-command processor - Interactive mode for %s ..." %
                python_path)
            show_curr(caller)
        else:
            caller.msg(
                "Running Batch-command processor - Automatic mode for %s (this might take some time) ..."
                % python_path)

            procpool = False
            if "PythonProcPool" in utils.server_services():
                if utils.uses_database("sqlite3"):
                    caller.msg(
                        "Batchprocessor disabled ProcPool under SQLite3.")
                else:
                    procpool = True

            if procpool:
                # run in parallel process
                def callback(r):
                    caller.msg("  |GBatchfile '%s' applied." % python_path)
                    purge_processor(caller)

                def errback(e):
                    caller.msg("  |RError from processor: '%s'" % e)
                    purge_processor(caller)

                utils.run_async(_PROCPOOL_BATCHCMD_SOURCE,
                                commands=commands,
                                caller=caller,
                                at_return=callback,
                                at_err=errback)
            else:
                # run in-process (might block)
                for _ in range(len(commands)):
                    # loop through the batch file
                    if not batch_cmd_exec(caller):
                        return
                    step_pointer(caller, 1)
                # clean out the safety cmdset and clean out all other
                # temporary attrs.
                string = "  Batchfile '%s' applied." % python_path
                caller.msg("|G%s" % string)
                purge_processor(caller)
Beispiel #9
0
    def func(self):
        """Starts the processor."""

        caller = self.caller

        args = self.args
        if not args:
            caller.msg("Usage: batchcommands[/interactive] <path.to.file>")
            return
        python_path = self.args

        # parse indata file

        try:
            commands = BATCHCMD.parse_file(python_path)
        except UnicodeDecodeError as err:
            caller.msg(_UTF8_ERROR % (python_path, err))
            return
        except IOError as err:
            if err:
                err = "{}\n".format(str(err))
            else:
                err = ""
            string = ("%s'%s' could not load. You have to supply python paths "
                      "from one of the defined batch-file directories\n (%s).")
            caller.msg(string % (err, python_path, ", ".join(
                settings.BASE_BATCHPROCESS_PATHS)))
            return
        if not commands:
            caller.msg("File %s seems empty of valid commands." % python_path)
            return

        switches = self.switches

        # Store work data in cache
        caller.ndb.batch_stack = commands
        caller.ndb.batch_stackptr = 0
        caller.ndb.batch_pythonpath = python_path
        caller.ndb.batch_batchmode = "batch_commands"
        # we use list() here to create a new copy of the cmdset stack
        caller.ndb.batch_cmdset_backup = list(caller.cmdset.cmdset_stack)
        caller.cmdset.add(BatchSafeCmdSet)

        if "inter" in switches or "interactive" in switches:
            # Allow more control over how batch file is executed

            # Set interactive state directly
            caller.cmdset.add(BatchInteractiveCmdSet)

            caller.msg(
                "\nBatch-command processor - Interactive mode for %s ..." %
                python_path)
            show_curr(caller)
        else:
            caller.msg("Running Batch-command processor - Automatic mode "
                       "for %s (this might take some time) ..." % python_path)

            # run in-process (might block)
            for _ in range(len(commands)):
                # loop through the batch file
                if not batch_cmd_exec(caller):
                    return
                step_pointer(caller, 1)
            # clean out the safety cmdset and clean out all other
            # temporary attrs.
            string = "  Batchfile '%s' applied." % python_path
            caller.msg("|G%s" % string)
            purge_processor(caller)