2001-02-27 01:17:06 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-02-27 01:17:06 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-02-27 01:17:06 +03:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-02-27 01:17:06 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-04-25 00:49:12 +04:00
|
|
|
#include "cmVTKWrapTclCommand.h"
|
2001-02-27 01:17:06 +03:00
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
// cmVTKWrapTclCommand
|
2002-03-29 22:20:32 +03:00
|
|
|
bool cmVTKWrapTclCommand::InitialPass(std::vector<std::string> const& argsIn)
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
2002-03-29 22:20:32 +03:00
|
|
|
if(argsIn.size() < 3 )
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-29 22:20:32 +03:00
|
|
|
std::vector<std::string> args;
|
2002-06-27 23:57:09 +04:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// keep the library name
|
2002-06-27 23:57:09 +04:00
|
|
|
m_LibraryName = argsIn[0];
|
2001-08-08 19:54:46 +04:00
|
|
|
|
2002-06-27 23:57:09 +04:00
|
|
|
if (argsIn[1] == std::string("SOURCES"))
|
|
|
|
{
|
|
|
|
m_Makefile->ExpandSourceListArguments(argsIn, args, 3);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Makefile->ExpandSourceListArguments(argsIn, args, 2);
|
|
|
|
}
|
|
|
|
|
2001-02-28 00:49:53 +03:00
|
|
|
// Now check and see if the value has been stored in the cache
|
|
|
|
// already, if so use that value and don't look for the program
|
2001-08-08 19:54:46 +04:00
|
|
|
if(!m_Makefile->IsOn("VTK_WRAP_TCL"))
|
2001-02-28 00:49:53 +03:00
|
|
|
{
|
2001-04-24 00:34:12 +04:00
|
|
|
return true;
|
2001-02-28 00:49:53 +03:00
|
|
|
}
|
2001-04-25 00:49:12 +04:00
|
|
|
|
2001-05-24 22:59:09 +04:00
|
|
|
// extract the sources and commands parameters
|
|
|
|
std::vector<std::string> sources;
|
|
|
|
bool doing_sources = true;
|
2002-06-27 23:57:09 +04:00
|
|
|
|
2001-09-20 23:08:30 +04:00
|
|
|
for(std::vector<std::string>::const_iterator j = (args.begin() + 1);
|
2001-04-11 22:59:02 +04:00
|
|
|
j != args.end(); ++j)
|
|
|
|
{
|
2001-05-24 22:59:09 +04:00
|
|
|
if(*j == "SOURCES")
|
|
|
|
{
|
|
|
|
doing_sources = true;
|
|
|
|
}
|
|
|
|
else if (*j == "COMMANDS")
|
2001-02-28 00:49:53 +03:00
|
|
|
{
|
2001-05-24 22:59:09 +04:00
|
|
|
doing_sources = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(doing_sources)
|
|
|
|
{
|
|
|
|
sources.push_back(*j);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Commands.push_back(*j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the list of classes for this library
|
|
|
|
if (sources.size())
|
|
|
|
{
|
|
|
|
// what is the current source dir
|
|
|
|
std::string cdir = m_Makefile->GetCurrentDirectory();
|
|
|
|
|
|
|
|
// get the resulting source list name
|
|
|
|
m_SourceList = sources[0];
|
2002-06-30 04:04:28 +04:00
|
|
|
std::string sourceListValue;
|
|
|
|
|
|
|
|
// was the list already populated
|
|
|
|
const char *def = m_Makefile->GetDefinition(m_SourceList.c_str());
|
|
|
|
if (def)
|
|
|
|
{
|
|
|
|
sourceListValue = def;
|
|
|
|
sourceListValue += ";";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the init file
|
|
|
|
std::string res = m_LibraryName;
|
|
|
|
res += "Init.cxx";
|
2002-06-30 21:53:08 +04:00
|
|
|
sourceListValue += res;
|
2002-06-30 04:04:28 +04:00
|
|
|
|
2001-05-24 22:59:09 +04:00
|
|
|
for(std::vector<std::string>::iterator j = (sources.begin() + 1);
|
|
|
|
j != sources.end(); ++j)
|
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
cmSourceFile *curr = m_Makefile->GetSource(j->c_str());
|
|
|
|
|
|
|
|
// if we should wrap the class
|
2002-08-16 19:20:18 +04:00
|
|
|
if (!curr || !curr->GetPropertyAsBool("WRAP_EXCLUDE"))
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
cmSourceFile file;
|
2003-01-06 22:30:28 +03:00
|
|
|
std::string srcDir = cdir;
|
2002-06-27 23:57:09 +04:00
|
|
|
if (curr)
|
2001-05-24 22:59:09 +04:00
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
file.SetProperty("ABSTRACT",curr->GetProperty("ABSTRACT"));
|
2003-01-06 22:30:28 +03:00
|
|
|
srcDir = cmSystemTools::GetFilenamePath(curr->GetFullPath());
|
2001-05-24 22:59:09 +04:00
|
|
|
}
|
2002-06-27 23:57:09 +04:00
|
|
|
std::string srcName = cmSystemTools::GetFilenameWithoutExtension(*j);
|
|
|
|
std::string newName = srcName + "Tcl";
|
2003-01-06 22:30:28 +03:00
|
|
|
std::string hname = srcDir + "/" + srcName + ".h";
|
2002-06-27 23:57:09 +04:00
|
|
|
file.SetName(newName.c_str(), m_Makefile->GetCurrentOutputDirectory(),
|
|
|
|
"cxx",false);
|
|
|
|
m_WrapHeaders.push_back(hname);
|
|
|
|
// add starting depends
|
|
|
|
file.GetDepends().push_back(hname);
|
|
|
|
m_WrapClasses.push_back(file);
|
2002-06-30 04:04:28 +04:00
|
|
|
sourceListValue += ";";
|
|
|
|
sourceListValue += newName + ".cxx";
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
2001-02-28 00:49:53 +03:00
|
|
|
}
|
2002-06-30 21:53:08 +04:00
|
|
|
// add the init file
|
|
|
|
cmSourceFile cfile;
|
2002-08-16 19:20:18 +04:00
|
|
|
cfile.SetProperty("ABSTRACT","0");
|
2002-06-30 21:53:08 +04:00
|
|
|
std::string newName = m_LibraryName;
|
|
|
|
newName += "Init";
|
|
|
|
this->CreateInitFile(res);
|
|
|
|
cfile.SetName(newName.c_str(), m_Makefile->GetCurrentOutputDirectory(),
|
|
|
|
"cxx",false);
|
|
|
|
m_Makefile->AddSource(cfile);
|
2002-06-30 04:04:28 +04:00
|
|
|
m_Makefile->AddDefinition(m_SourceList.c_str(), sourceListValue.c_str());
|
2001-02-27 01:17:06 +03:00
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2001-02-27 01:17:06 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
void cmVTKWrapTclCommand::FinalPass()
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
|
|
|
// first we add the rules for all the .h to Tcl.cxx files
|
2002-03-13 18:25:11 +03:00
|
|
|
size_t lastClass = m_WrapClasses.size();
|
2001-02-27 01:17:06 +03:00
|
|
|
std::vector<std::string> depends;
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* wtcl = m_Makefile->GetRequiredDefinition("VTK_WRAP_TCL_EXE");
|
|
|
|
const char* hints = m_Makefile->GetDefinition("VTK_WRAP_HINTS");
|
2002-06-27 23:57:09 +04:00
|
|
|
|
2001-02-27 01:17:06 +03:00
|
|
|
// wrap all the .h files
|
|
|
|
depends.push_back(wtcl);
|
2005-02-22 18:32:44 +03:00
|
|
|
if(hints)
|
2002-01-03 21:56:30 +03:00
|
|
|
{
|
|
|
|
depends.push_back(hints);
|
|
|
|
}
|
2002-03-13 18:25:11 +03:00
|
|
|
for(size_t classNum = 0; classNum < lastClass; classNum++)
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
2002-06-27 23:57:09 +04:00
|
|
|
m_Makefile->AddSource(m_WrapClasses[classNum]);
|
2005-02-22 18:32:44 +03:00
|
|
|
cmCustomCommandLine commandLine;
|
|
|
|
commandLine.push_back(wtcl);
|
|
|
|
commandLine.push_back(m_WrapHeaders[classNum]);
|
|
|
|
if(hints)
|
2002-01-03 22:05:32 +03:00
|
|
|
{
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back(hints);
|
2002-01-03 22:05:32 +03:00
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back((m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT") ? "0" : "1"));
|
2001-11-06 17:35:48 +03:00
|
|
|
std::string res = m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
res += "/";
|
|
|
|
res += m_WrapClasses[classNum].GetSourceName() + ".cxx";
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back(res);
|
|
|
|
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
commandLines.push_back(commandLine);
|
|
|
|
std::vector<std::string> outputs;
|
|
|
|
outputs.push_back(res);
|
|
|
|
const char* no_comment = 0;
|
|
|
|
m_Makefile->AddCustomCommandOldStyle(m_LibraryName.c_str(),
|
|
|
|
outputs,
|
|
|
|
depends,
|
|
|
|
m_WrapHeaders[classNum].c_str(),
|
|
|
|
commandLines,
|
|
|
|
no_comment);
|
2001-02-27 01:17:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-25 00:49:12 +04:00
|
|
|
bool cmVTKWrapTclCommand::CreateInitFile(std::string& res)
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
|
|
|
/* we have to make sure that the name is the correct case */
|
2001-05-24 22:59:09 +04:00
|
|
|
std::string kitName = cmSystemTools::Capitalized(m_LibraryName);
|
2001-02-27 01:17:06 +03:00
|
|
|
|
|
|
|
std::vector<std::string> classes;
|
2002-03-13 18:25:11 +03:00
|
|
|
size_t lastClass = m_WrapHeaders.size();
|
|
|
|
size_t classNum;
|
2001-02-27 01:17:06 +03:00
|
|
|
for(classNum = 0; classNum < lastClass; classNum++)
|
|
|
|
{
|
2002-08-16 19:20:18 +04:00
|
|
|
if (!m_WrapClasses[classNum].GetPropertyAsBool("ABSTRACT"))
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
2001-02-28 00:49:53 +03:00
|
|
|
std::string cls = m_WrapHeaders[classNum];
|
|
|
|
cls = cls.substr(0,cls.size()-2);
|
|
|
|
std::string::size_type pos = cls.rfind('/');
|
|
|
|
if(pos != std::string::npos)
|
|
|
|
{
|
|
|
|
cls = cls.substr(pos+1);
|
|
|
|
}
|
|
|
|
classes.push_back(cls);
|
2001-02-27 01:17:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// open the init file
|
|
|
|
std::string outFileName =
|
|
|
|
m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
outFileName += "/" + res;
|
|
|
|
|
|
|
|
return this->WriteInit(kitName.c_str(), outFileName, classes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* warning this code is also in getclasses.cxx under pcmaker */
|
2001-04-25 00:49:12 +04:00
|
|
|
bool cmVTKWrapTclCommand::WriteInit(const char *kitName,
|
|
|
|
std::string& outFileName,
|
|
|
|
std::vector<std::string>& classes)
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
2001-02-27 02:16:05 +03:00
|
|
|
unsigned int i;
|
2001-05-01 19:16:20 +04:00
|
|
|
std::string tempOutputFile = outFileName + ".tmp";
|
|
|
|
FILE *fout = fopen(tempOutputFile.c_str(),"w");
|
2001-02-27 01:17:06 +03:00
|
|
|
if (!fout)
|
|
|
|
{
|
2001-08-10 23:54:19 +04:00
|
|
|
cmSystemTools::Error("Failed to open TclInit file for ", tempOutputFile.c_str());
|
2004-09-08 00:55:25 +04:00
|
|
|
cmSystemTools::ReportLastSystemError("");
|
2001-02-27 01:17:06 +03:00
|
|
|
return false;
|
|
|
|
}
|
2001-05-24 22:59:09 +04:00
|
|
|
|
|
|
|
// capitalized commands just once
|
|
|
|
std::vector<std::string> capcommands;
|
|
|
|
for (i = 0; i < m_Commands.size(); i++)
|
|
|
|
{
|
|
|
|
capcommands.push_back(cmSystemTools::Capitalized(m_Commands[i]));
|
|
|
|
}
|
2001-02-27 01:17:06 +03:00
|
|
|
|
|
|
|
fprintf(fout,"#include \"vtkTclUtil.h\"\n");
|
2002-12-19 00:58:03 +03:00
|
|
|
fprintf(fout,"#include \"vtkVersion.h\"\n");
|
|
|
|
fprintf(fout,"#define VTK_TCL_TO_STRING(x) VTK_TCL_TO_STRING0(x)\n");
|
|
|
|
fprintf(fout,"#define VTK_TCL_TO_STRING0(x) #x\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
|
2002-07-26 17:54:47 +04:00
|
|
|
fprintf(fout,
|
|
|
|
"extern \"C\"\n"
|
|
|
|
"{\n"
|
2002-09-18 17:53:11 +04:00
|
|
|
"#if (TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 4) && (TCL_RELEASE_LEVEL >= TCL_FINAL_RELEASE)\n"
|
|
|
|
" typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, CONST84 char *[]);\n"
|
2002-09-17 22:18:11 +04:00
|
|
|
"#else\n"
|
2002-07-26 17:54:47 +04:00
|
|
|
" typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, char *[]);\n"
|
2002-09-17 22:18:11 +04:00
|
|
|
"#endif\n"
|
2002-07-26 17:54:47 +04:00
|
|
|
"}\n"
|
|
|
|
"\n");
|
|
|
|
|
2001-02-27 01:17:06 +03:00
|
|
|
for (i = 0; i < classes.size(); i++)
|
|
|
|
{
|
|
|
|
fprintf(fout,"int %sCommand(ClientData cd, Tcl_Interp *interp,\n int argc, char *argv[]);\n",classes[i].c_str());
|
|
|
|
fprintf(fout,"ClientData %sNewCommand();\n",classes[i].c_str());
|
|
|
|
}
|
|
|
|
|
2001-05-09 00:20:24 +04:00
|
|
|
if (!strcmp(kitName,"Vtkcommontcl"))
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
2002-07-26 00:47:21 +04:00
|
|
|
fprintf(fout,"int vtkCommand(ClientData cd, Tcl_Interp *interp,\n"
|
|
|
|
" int argc, char *argv[]);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout,"\nTcl_HashTable vtkInstanceLookup;\n");
|
|
|
|
fprintf(fout,"Tcl_HashTable vtkPointerLookup;\n");
|
|
|
|
fprintf(fout,"Tcl_HashTable vtkCommandLookup;\n");
|
2002-09-07 02:05:06 +04:00
|
|
|
fprintf(fout,"int vtkCommandForward(ClientData cd, Tcl_Interp *interp,\n"
|
|
|
|
" int argc, char *argv[]){\n"
|
|
|
|
" return vtkCommand(cd, interp, argc, argv);\n"
|
|
|
|
"}\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(fout,"\nextern Tcl_HashTable vtkInstanceLookup;\n");
|
|
|
|
fprintf(fout,"extern Tcl_HashTable vtkPointerLookup;\n");
|
|
|
|
fprintf(fout,"extern Tcl_HashTable vtkCommandLookup;\n");
|
|
|
|
}
|
|
|
|
fprintf(fout,"extern void vtkTclDeleteObjectFromHash(void *);\n");
|
|
|
|
fprintf(fout,"extern void vtkTclListInstances(Tcl_Interp *interp, ClientData arg);\n");
|
2001-05-24 22:59:09 +04:00
|
|
|
|
|
|
|
for (i = 0; i < m_Commands.size(); i++)
|
|
|
|
{
|
|
|
|
fprintf(fout,"\nextern \"C\" {int VTK_EXPORT %s_Init(Tcl_Interp *interp);}\n",
|
|
|
|
capcommands[i].c_str());
|
|
|
|
}
|
2001-02-27 01:17:06 +03:00
|
|
|
|
2001-05-24 22:59:09 +04:00
|
|
|
fprintf(fout,"\n\nextern \"C\" {int VTK_EXPORT %s_SafeInit(Tcl_Interp *interp);}\n",
|
2002-10-24 02:03:27 +04:00
|
|
|
kitName);
|
2001-05-24 22:59:09 +04:00
|
|
|
fprintf(fout,"\nextern \"C\" {int VTK_EXPORT %s_Init(Tcl_Interp *interp);}\n",
|
2002-10-24 02:03:27 +04:00
|
|
|
kitName);
|
2001-02-27 01:17:06 +03:00
|
|
|
|
|
|
|
/* create an extern ref to the generic delete function */
|
2001-05-24 22:59:09 +04:00
|
|
|
fprintf(fout,"\nextern void vtkTclGenericDeleteObject(ClientData cd);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
|
2001-09-25 19:06:00 +04:00
|
|
|
if (!strcmp(kitName,"Vtkcommontcl"))
|
|
|
|
{
|
2002-07-11 00:07:51 +04:00
|
|
|
fprintf(fout,"extern \"C\"\n{\nvoid vtkCommonDeleteAssocData(ClientData cd)\n");
|
2001-09-25 19:06:00 +04:00
|
|
|
fprintf(fout," {\n");
|
|
|
|
fprintf(fout," vtkTclInterpStruct *tis = static_cast<vtkTclInterpStruct*>(cd);\n");
|
2002-07-11 00:07:51 +04:00
|
|
|
fprintf(fout," delete tis;\n }\n}\n");
|
2001-09-25 19:06:00 +04:00
|
|
|
}
|
|
|
|
|
2001-02-27 01:17:06 +03:00
|
|
|
/* the main declaration */
|
|
|
|
fprintf(fout,"\n\nint VTK_EXPORT %s_SafeInit(Tcl_Interp *interp)\n{\n",kitName);
|
|
|
|
fprintf(fout," return %s_Init(interp);\n}\n",kitName);
|
|
|
|
|
|
|
|
fprintf(fout,"\n\nint VTK_EXPORT %s_Init(Tcl_Interp *interp)\n{\n",
|
|
|
|
kitName);
|
2001-05-09 00:20:24 +04:00
|
|
|
if (!strcmp(kitName,"Vtkcommontcl"))
|
2001-02-27 01:17:06 +03:00
|
|
|
{
|
|
|
|
fprintf(fout,
|
2002-10-24 02:03:27 +04:00
|
|
|
" vtkTclInterpStruct *info = new vtkTclInterpStruct;\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout,
|
|
|
|
" info->Number = 0; info->InDelete = 0; info->DebugOn = 0;\n");
|
|
|
|
fprintf(fout,"\n");
|
|
|
|
fprintf(fout,"\n");
|
|
|
|
fprintf(fout,
|
2002-10-24 02:03:27 +04:00
|
|
|
" Tcl_InitHashTable(&info->InstanceLookup, TCL_STRING_KEYS);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout,
|
2002-10-24 02:03:27 +04:00
|
|
|
" Tcl_InitHashTable(&info->PointerLookup, TCL_STRING_KEYS);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout,
|
2002-10-24 02:03:27 +04:00
|
|
|
" Tcl_InitHashTable(&info->CommandLookup, TCL_STRING_KEYS);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout,
|
2002-01-03 21:56:30 +03:00
|
|
|
" Tcl_SetAssocData(interp,(char *) \"vtk\",NULL,(ClientData *)info);\n");
|
|
|
|
fprintf(fout,
|
|
|
|
" Tcl_CreateExitHandler(vtkCommonDeleteAssocData,(ClientData *)info);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
|
|
|
|
/* create special vtkCommand command */
|
2002-07-26 17:54:47 +04:00
|
|
|
fprintf(fout," Tcl_CreateCommand(interp,(char *) \"vtkCommand\",\n"
|
2002-09-07 02:05:06 +04:00
|
|
|
" reinterpret_cast<vtkTclCommandType>(vtkCommandForward),\n"
|
2002-07-26 17:54:47 +04:00
|
|
|
" (ClientData *)NULL, NULL);\n\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
}
|
|
|
|
|
2001-05-24 22:59:09 +04:00
|
|
|
for (i = 0; i < m_Commands.size(); i++)
|
|
|
|
{
|
|
|
|
fprintf(fout," %s_Init(interp);\n", capcommands[i].c_str());
|
|
|
|
}
|
|
|
|
fprintf(fout,"\n");
|
|
|
|
|
2001-02-27 01:17:06 +03:00
|
|
|
for (i = 0; i < classes.size(); i++)
|
|
|
|
{
|
|
|
|
fprintf(fout," vtkTclCreateNew(interp,(char *) \"%s\", %sNewCommand,\n",
|
2002-10-24 02:03:27 +04:00
|
|
|
classes[i].c_str(), classes[i].c_str());
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout," %sCommand);\n",classes[i].c_str());
|
|
|
|
}
|
|
|
|
|
2002-12-21 00:15:13 +03:00
|
|
|
fprintf(fout," char pkgName[]=\"%s\";\n", m_LibraryName.c_str());
|
|
|
|
fprintf(fout," char pkgVers[]=VTK_TCL_TO_STRING(VTK_MAJOR_VERSION)"
|
|
|
|
" \".\" "
|
|
|
|
"VTK_TCL_TO_STRING(VTK_MINOR_VERSION);\n");
|
|
|
|
fprintf(fout," Tcl_PkgProvide(interp, pkgName, pkgVers);\n");
|
2001-02-27 01:17:06 +03:00
|
|
|
fprintf(fout," return TCL_OK;\n}\n");
|
|
|
|
fclose(fout);
|
|
|
|
|
2001-05-01 19:16:20 +04:00
|
|
|
// copy the file if different
|
|
|
|
cmSystemTools::CopyFileIfDifferent(tempOutputFile.c_str(),
|
|
|
|
outFileName.c_str());
|
|
|
|
cmSystemTools::RemoveFile(tempOutputFile.c_str());
|
|
|
|
|
2001-02-27 01:17:06 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|