/* See interps.h. */
void
-set_top_level_interpreter (const char *name)
+set_top_level_interpreter (const char *name, bool for_new_ui)
{
/* Find it. */
struct interp *interp = interp_lookup (current_ui, name);
if (interp == NULL)
error (_("Interpreter `%s' unrecognized"), name);
+ if (for_new_ui && !interp->supports_new_ui ())
+ error (_("interpreter '%s' cannot be used with a new UI"), name);
+
/* Install it. */
interp_set (interp, true);
}
virtual bool supports_command_editing ()
{ return false; }
+ /* Returns true if this interpreter supports new UIs. */
+ virtual bool supports_new_ui () const
+ { return true; }
+
const char *name () const
{ return m_name; }
/* Set the current UI's top level interpreter to the interpreter named
NAME. Throws an error if NAME is not a known interpreter or the
- interpreter fails to initialize. */
-extern void set_top_level_interpreter (const char *name);
+ interpreter fails to initialize. FOR_NEW_UI is true when called
+ from the 'new-ui' command, and causes an extra check to ensure the
+ interpreter is valid for a new UI. */
+extern void set_top_level_interpreter (const char *name, bool for_new_ui);
/* Temporarily set the current interpreter, and reset it on
destruction. */
/* Install the default UI. All the interpreters should have had a
look at things by now. Initialize the default interpreter. */
- set_top_level_interpreter (interpreter_p.c_str ());
+ set_top_level_interpreter (interpreter_p.c_str (), false);
/* The interpreter should have installed the real uiout by now. */
gdb_assert (current_uiout != temp_uiout.get ());
void pre_command_loop () override;
+ bool supports_new_ui () const override
+ { return false; }
+
private:
std::unique_ptr<ui_out> m_ui_out;
"Interpreter `bloop' unrecognized" \
"new-ui with bad interpreter name"
+ # Test that the TUI cannot be used for a new UI.
+ gdb_test "new-ui tui $extra_tty_name" \
+ "interpreter 'tui' cannot be used with a new UI" \
+ "new-ui with tui"
+
# Test that we can continue working normally.
if ![runto_main] {
return
void suspend () override;
void exec (const char *command_str) override;
ui_out *interp_ui_out () override;
+
+ bool supports_new_ui () const override
+ { return false; }
};
/* Cleanup the tui before exiting. */
current_ui = ui.get ();
- set_top_level_interpreter (interpreter_name);
+ set_top_level_interpreter (interpreter_name, true);
top_level_interpreter ()->pre_command_loop ();