mirror of https://github.com/KLayout/klayout.git
153 lines
2.7 KiB
C++
153 lines
2.7 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2017 Matthias Koefferlein
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
#include "rba.h"
|
|
|
|
namespace rba
|
|
{
|
|
|
|
static void fail (const char *file, int line)
|
|
{
|
|
throw tl::ScriptError (tl::to_string (QObject::tr ("Ruby support not compiled in")).c_str (), file, line, "missing_feature", std::vector<tl::BacktraceElement> ());
|
|
}
|
|
|
|
RubyInterpreter::RubyInterpreter ()
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
RubyInterpreter::~RubyInterpreter ()
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::add_path (const std::string &)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::require (const std::string &)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::set_debugger_scope (const std::string &)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::remove_debugger_scope ()
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::ignore_next_exception ()
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::load_file (const std::string &)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::eval_string (const char *, const char *file, int line, int)
|
|
{
|
|
fail (file, line);
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::eval_string_and_print (const char *, const char *file, int line, int)
|
|
{
|
|
fail (file, line);
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::define_variable (const std::string &, const std::string &)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
gsi::Inspector *RubyInterpreter::inspector (int)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool
|
|
RubyInterpreter::available () const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int
|
|
RubyInterpreter::initialize (int argc, char **argv, int (*main_cont)(int, char **))
|
|
{
|
|
return (*main_cont) (argc, argv);
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::push_exec_handler (gsi::ExecutionHandler *)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::remove_exec_handler (gsi::ExecutionHandler *)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::push_console (gsi::Console *)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
void
|
|
RubyInterpreter::remove_console (gsi::Console *)
|
|
{
|
|
// .. nothing ..
|
|
}
|
|
|
|
std::string
|
|
RubyInterpreter::version () const
|
|
{
|
|
return std::string ();
|
|
}
|
|
|
|
tl::Variant
|
|
RubyInterpreter::eval_expr (const char *, const char *file, int line, int)
|
|
{
|
|
fail (file, line);
|
|
return tl::Variant ();
|
|
}
|
|
|
|
}
|
|
|