openscad/src/module.cc

376 lines
10 KiB
C++

/*
* 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 "ModuleCache.h"
#include "node.h"
#include "modcontext.h"
#include "evalcontext.h"
#include "expression.h"
#include "function.h"
#include "printutils.h"
#include "parsersettings.h"
#include "exceptions.h"
#include "stackcheck.h"
#include <boost/filesystem.hpp>
namespace fs = boost::filesystem;
#include "boosty.h"
#include "FontCache.h"
#include <boost/foreach.hpp>
#include <sstream>
#include <sys/stat.h>
AbstractModule::~AbstractModule()
{
}
AbstractNode *AbstractModule::instantiate(const Context *ctx, const ModuleInstantiation *inst, EvalContext *evalctx) const
{
(void)ctx; // avoid unusued parameter warning
AbstractNode *node = new AbstractNode(inst);
node->children = inst->instantiateChildren(evalctx);
return node;
}
double AbstractModule::lookup_double_variable_with_default(Context &c, std::string variable, double def) const
{
ValuePtr v = c.lookup_variable(variable, true);
return (v->type() == Value::NUMBER) ? v->toDouble() : def;
}
std::string AbstractModule::lookup_string_variable_with_default(Context &c, std::string variable, std::string def) const
{
ValuePtr v = c.lookup_variable(variable, true);
return (v->type() == Value::STRING) ? v->toString() : def;
}
std::string AbstractModule::dump(const std::string &indent, const std::string &name) const
{
std::stringstream dump;
dump << indent << "abstract module " << name << "();\n";
return dump.str();
}
ModuleInstantiation::~ModuleInstantiation()
{
}
IfElseModuleInstantiation::~IfElseModuleInstantiation()
{
}
/*!
Returns the absolute path to the given filename, unless it's empty.
NB! This will actually search for the file, to be backwards compatible with <= 2013.01
(see issue #217)
*/
std::string ModuleInstantiation::getAbsolutePath(const std::string &filename) const
{
if (!filename.empty() && !boosty::is_absolute(fs::path(filename))) {
return boosty::absolute(fs::path(this->modpath) / filename).string();
}
else {
return filename;
}
}
std::string ModuleInstantiation::dump(const std::string &indent) const
{
std::stringstream dump;
dump << indent;
dump << modname + "(";
for (size_t i=0; i < this->arguments.size(); i++) {
const Assignment &arg = this->arguments[i];
if (i > 0) dump << ", ";
if (!arg.first.empty()) dump << arg.first << " = ";
dump << *arg.second;
}
if (scope.numElements() == 0) {
dump << ");\n";
} else if (scope.numElements() == 1) {
dump << ") ";
dump << scope.dump("");
} else {
dump << ") {\n";
dump << scope.dump(indent + "\t");
dump << indent << "}\n";
}
return dump.str();
}
std::string IfElseModuleInstantiation::dump(const std::string &indent) const
{
std::stringstream dump;
dump << ModuleInstantiation::dump(indent);
dump << indent;
if (else_scope.numElements() > 0) {
dump << indent << "else ";
if (else_scope.numElements() == 1) {
dump << else_scope.dump("");
}
else {
dump << "{\n";
dump << else_scope.dump(indent + "\t");
dump << indent << "}\n";
}
}
return dump.str();
}
AbstractNode *ModuleInstantiation::evaluate(const Context *ctx) const
{
EvalContext c(ctx, this->arguments, &this->scope);
#if 0 && DEBUG
PRINT("New eval ctx:");
c.dump(NULL, this);
#endif
AbstractNode *node = ctx->instantiate_module(*this, &c); // Passes c as evalctx
return node;
}
std::vector<AbstractNode*> ModuleInstantiation::instantiateChildren(const Context *evalctx) const
{
return this->scope.instantiateChildren(evalctx);
}
std::vector<AbstractNode*> IfElseModuleInstantiation::instantiateElseChildren(const Context *evalctx) const
{
return this->else_scope.instantiateChildren(evalctx);
}
std::deque<std::string> Module::module_stack;
Module::~Module()
{
}
AbstractNode *Module::instantiate(const Context *ctx, const ModuleInstantiation *inst, EvalContext *evalctx) const
{
if (StackCheck::inst()->check()) {
throw RecursionException::create("module", inst->name());
return NULL;
}
// At this point we know that nobody will modify the dependencies of the local scope
// passed to this instance, so we can populate the context
inst->scope.apply(*evalctx);
ModuleContext c(ctx, evalctx);
// set $children first since we might have variables depending on it
c.set_variable("$children", ValuePtr(double(inst->scope.children.size())));
module_stack.push_back(inst->name());
c.set_variable("$parent_modules", ValuePtr(double(module_stack.size())));
c.initializeModule(*this);
// FIXME: Set document path to the path of the module
#if 0 && DEBUG
c.dump(this, inst);
#endif
AbstractNode *node = new AbstractNode(inst);
std::vector<AbstractNode *> instantiatednodes = this->scope.instantiateChildren(&c);
node->children.insert(node->children.end(), instantiatednodes.begin(), instantiatednodes.end());
module_stack.pop_back();
return node;
}
std::string Module::dump(const std::string &indent, const std::string &name) const
{
std::stringstream dump;
std::string tab;
if (!name.empty()) {
dump << indent << "module " << name << "(";
for (size_t i=0; i < this->definition_arguments.size(); i++) {
const Assignment &arg = this->definition_arguments[i];
if (i > 0) dump << ", ";
dump << arg.first;
if (arg.second) dump << " = " << *arg.second;
}
dump << ") {\n";
tab = "\t";
}
dump << scope.dump(indent + tab);
if (!name.empty()) {
dump << indent << "}\n";
}
return dump.str();
}
FileModule::~FileModule()
{
delete context;
}
void FileModule::registerUse(const std::string path) {
std::string extraw = boosty::extension_str(fs::path(path));
std::string ext = boost::algorithm::to_lower_copy(extraw);
if ((ext == ".otf") || (ext == ".ttf")) {
if (fs::is_regular(path)) {
FontCache::instance()->register_font_file(path);
} else {
PRINTB("ERROR: Can't read font with path '%s'", path);
}
} else {
usedlibs.insert(path);
}
}
void FileModule::registerInclude(const std::string &localpath,
const std::string &fullpath)
{
struct stat st;
memset(&st, 0, sizeof(struct stat));
bool valid = stat(fullpath.c_str(), &st) == 0;
IncludeFile inc = {fullpath, valid, st.st_mtime};
this->includes[localpath] = inc;
}
bool FileModule::includesChanged() const
{
BOOST_FOREACH(const FileModule::IncludeContainer::value_type &item, this->includes) {
if (include_modified(item.second)) return true;
}
return false;
}
bool FileModule::include_modified(const IncludeFile &inc) const
{
struct stat st;
memset(&st, 0, sizeof(struct stat));
fs::path fullpath = find_valid_path(this->path, inc.filename);
bool valid = !fullpath.empty() ? (stat(boosty::stringy(fullpath).c_str(), &st) == 0) : false;
if (valid && !inc.valid) return true; // Detect appearance of file but not removal
if (valid && st.st_mtime > inc.mtime) return true;
return false;
}
/*!
Check if any dependencies have been modified and recompile them.
Returns true if anything was recompiled.
*/
bool FileModule::handleDependencies()
{
if (this->is_handling_dependencies) return false;
this->is_handling_dependencies = true;
bool somethingchanged = false;
std::vector<std::pair<std::string,std::string> > updates;
// If a lib in usedlibs was previously missing, we need to relocate it
// by searching the applicable paths. We can identify a previously missing module
// as it will have a relative path.
BOOST_FOREACH(std::string filename, this->usedlibs) {
bool wasmissing = false;
bool found = true;
// Get an absolute filename for the module
if (!boosty::is_absolute(filename)) {
wasmissing = true;
fs::path fullpath = find_valid_path(this->path, filename);
if (!fullpath.empty()) {
updates.push_back(std::make_pair(filename, boosty::stringy(fullpath)));
filename = boosty::stringy(fullpath);
}
else {
found = false;
}
}
if (found) {
bool wascached = ModuleCache::instance()->isCached(filename);
FileModule *oldmodule = ModuleCache::instance()->lookup(filename);
FileModule *newmodule;
bool changed = ModuleCache::instance()->evaluate(filename, newmodule);
// Detect appearance but not removal of files, and keep old module
// on compile errors (FIXME: Is this correct behavior?)
if (changed) {
PRINTDB(" %s: %p -> %p", filename % oldmodule % newmodule);
}
somethingchanged |= changed;
// Only print warning if we're not part of an automatic reload
if (!newmodule && !wascached && !wasmissing) {
PRINTB_NOCACHE("WARNING: Failed to compile library '%s'.", filename);
}
}
}
// Relative filenames which were located is reinserted as absolute filenames
typedef std::pair<std::string,std::string> stringpair;
BOOST_FOREACH(const stringpair &files, updates) {
this->usedlibs.erase(files.first);
this->usedlibs.insert(files.second);
}
this->is_handling_dependencies = false;
return somethingchanged;
}
AbstractNode *FileModule::instantiate(const Context *ctx, const ModuleInstantiation *inst, EvalContext *evalctx)
{
assert(evalctx == NULL);
delete context;
context = new FileContext(*this, ctx);
AbstractNode *node = new AbstractNode(inst);
try {
context->initializeModule(*this);
// FIXME: Set document path to the path of the module
#if 0 && DEBUG
c.dump(this, inst);
#endif
std::vector<AbstractNode *> instantiatednodes = this->scope.instantiateChildren(context);
node->children.insert(node->children.end(), instantiatednodes.begin(), instantiatednodes.end());
}
catch (RecursionException &e) {
PRINT(e.what());
}
return node;
}
ValuePtr FileModule::lookup_variable(const std::string &name) const
{
if (!context) {
return ValuePtr::undefined;
}
return context->lookup_variable(name, true);
}