openscad/src/module.cc

208 lines
5.9 KiB
C++
Raw Normal View History

/*
2011-01-21 04:21:09 +03:00
* OpenSCAD (www.openscad.org)
* Copyright (C) 2009-2011 Clifford Wolf <clifford@clifford.at> and
* Marius Kintel <marius@kintel.net>
*
* 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.
*
* As a special exception, you have permission to link this program
* with the CGAL library and distribute executables, as long as you
* follow the requirements of the GNU GPL in regard to all of the
* software in the executable aside from CGAL.
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "module.h"
#include "node.h"
#include "context.h"
#include "expression.h"
#include "function.h"
#include "printutils.h"
2011-09-03 08:10:36 +04:00
#include <boost/foreach.hpp>
#include <sstream>
AbstractModule::~AbstractModule()
{
}
AbstractNode *AbstractModule::evaluate(const Context*, const ModuleInstantiation *inst) const
{
AbstractNode *node = new AbstractNode(inst);
node->children = inst->evaluateChildren();
return node;
}
2011-09-03 08:10:36 +04:00
std::string AbstractModule::dump(const std::string &indent, const std::string &name) const
{
2011-09-03 08:10:36 +04:00
std::stringstream dump;
dump << indent << "abstract module " << name << "();\n";
return dump.str();
}
ModuleInstantiation::~ModuleInstantiation()
{
BOOST_FOREACH (Expression *v, argexpr) delete v;
BOOST_FOREACH (ModuleInstantiation *v, children) delete v;
}
IfElseModuleInstantiation::~IfElseModuleInstantiation()
{
BOOST_FOREACH (ModuleInstantiation *v, else_children) delete v;
}
2011-09-03 08:10:36 +04:00
std::string ModuleInstantiation::dump(const std::string &indent) const
{
2011-09-03 08:10:36 +04:00
std::stringstream dump;
dump << indent;
dump << modname + "(";
for (size_t i=0; i < argnames.size(); i++) {
if (i > 0) dump << ", ";
if (!argnames[i].empty()) dump << argnames[i] << " = ";
dump << *argexpr[i];
}
if (children.size() == 0) {
2011-09-03 08:10:36 +04:00
dump << ");\n";
} else if (children.size() == 1) {
2011-09-03 08:10:36 +04:00
dump << ")\n";
dump << children[0]->dump(indent + "\t");
} else {
2011-09-03 08:10:36 +04:00
dump << ") {\n";
for (size_t i = 0; i < children.size(); i++) {
dump << children[i]->dump(indent + "\t");
}
2011-09-03 08:10:36 +04:00
dump << indent << "}\n";
}
2011-09-03 08:10:36 +04:00
return dump.str();
}
AbstractNode *ModuleInstantiation::evaluate(const Context *ctx) const
{
AbstractNode *node = NULL;
if (this->ctx) {
2012-01-25 06:11:12 +04:00
PRINTB("WARNING: Ignoring recursive module instantiation of '%s'.", modname);
} else {
// FIXME: Casting away const..
ModuleInstantiation *that = (ModuleInstantiation*)this;
that->argvalues.clear();
BOOST_FOREACH (Expression *expr, that->argexpr) {
that->argvalues.push_back(expr->evaluate(ctx));
}
that->ctx = ctx;
2011-09-03 20:51:29 +04:00
node = ctx->evaluate_module(*this);
that->ctx = NULL;
that->argvalues.clear();
}
return node;
}
std::vector<AbstractNode*> ModuleInstantiation::evaluateChildren(const Context *ctx) const
{
if (!ctx) ctx = this->ctx;
std::vector<AbstractNode*> childnodes;
BOOST_FOREACH (ModuleInstantiation *modinst, this->children) {
AbstractNode *node = modinst->evaluate(ctx);
if (node) childnodes.push_back(node);
2011-09-03 08:10:36 +04:00
}
return childnodes;
}
std::vector<AbstractNode*> IfElseModuleInstantiation::evaluateElseChildren(const Context *ctx) const
{
if (!ctx) ctx = this->ctx;
std::vector<AbstractNode*> childnodes;
BOOST_FOREACH (ModuleInstantiation *modinst, this->else_children) {
AbstractNode *node = modinst->evaluate(ctx);
if (node != NULL) childnodes.push_back(node);
2011-09-03 08:10:36 +04:00
}
return childnodes;
}
Module::~Module()
{
BOOST_FOREACH (Expression *v, assignments_expr) delete v;
BOOST_FOREACH (FunctionContainer::value_type &f, functions) delete f.second;
BOOST_FOREACH (AbstractModuleContainer::value_type &m, modules) delete m.second;
BOOST_FOREACH (ModuleInstantiation *v, children) delete v;
}
AbstractNode *Module::evaluate(const Context *ctx, const ModuleInstantiation *inst) const
{
Context c(ctx);
c.args(argnames, argexpr, inst->argnames, inst->argvalues);
c.inst_p = inst;
c.set_variable("$children", Value(double(inst->children.size())));
c.functions_p = &functions;
c.modules_p = &modules;
if (!usedlibs.empty())
c.usedlibs_p = &usedlibs;
else
c.usedlibs_p = NULL;
2011-09-03 08:10:36 +04:00
for (size_t i = 0; i < assignments_var.size(); i++) {
c.set_variable(assignments_var[i], assignments_expr[i]->evaluate(&c));
}
AbstractNode *node = new AbstractNode(inst);
2011-09-03 08:10:36 +04:00
for (size_t i = 0; i < children.size(); i++) {
AbstractNode *n = children[i]->evaluate(&c);
if (n != NULL)
2011-08-04 06:58:17 +04:00
node->children.push_back(n);
}
return node;
}
2011-09-03 08:10:36 +04:00
std::string Module::dump(const std::string &indent, const std::string &name) const
{
2011-09-03 08:10:36 +04:00
std::stringstream dump;
std::string tab;
if (!name.empty()) {
dump << indent << "module " << name << "(";
for (size_t i=0; i < argnames.size(); i++) {
if (i > 0) dump << ", ";
dump << argnames[i];
if (argexpr[i]) dump << " = " << *argexpr[i];
}
2011-09-03 08:10:36 +04:00
dump << ") {\n";
tab = "\t";
}
2011-09-03 08:10:36 +04:00
BOOST_FOREACH(const FunctionContainer::value_type &f, functions) {
dump << f.second->dump(indent + tab, f.first);
}
2011-09-03 08:10:36 +04:00
BOOST_FOREACH(const AbstractModuleContainer::value_type &m, modules) {
dump << m.second->dump(indent + tab, m.first);
}
2011-09-03 08:10:36 +04:00
for (size_t i = 0; i < assignments_var.size(); i++) {
dump << indent << tab << assignments_var[i] << " = " << *assignments_expr[i] << ";\n";
}
2011-09-03 08:10:36 +04:00
for (size_t i = 0; i < children.size(); i++) {
dump << children[i]->dump(indent + tab);
}
2011-09-03 08:10:36 +04:00
if (!name.empty()) {
dump << indent << "}\n";
}
2011-09-03 08:10:36 +04:00
return dump.str();
}
void Module::clear_library_cache()
{
Module::libs_cache.clear();
}