1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: ParseOGLExt.cxx,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/* A program that will read in OpenGL extension header files and output VTK
* code that handles extensions in a more platform-independent manner.
*/
/*
* Copyright 2003 Sandia Corporation.
* Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
* license for use of this work by or on behalf of the
* U.S. Government. Redistribution and use in source and binary forms, with
* or without modification, are permitted provided that this Notice and any
* statement of authorship are reproduced on all copies.
*/
#include "vtkSystemIncludes.h"
#include "Tokenizer.h"
#include <vtkstd/list>
#include <vtkstd/set>
#include <vtkstd/map>
#include <vtkstd/string>
#include <string.h>
#include <ctype.h>
// #define this if you want debug output as the parser does its work
// #define DEBUG_PARSE
static vtkstd::set< vtkstd::pair< vtkstd::string, vtkstd::string > > ConstantsAlreadyWritten;
static vtkstd::string ToUpper(vtkstd::string s)
{
vtkstd::string u;
for (vtkstd::string::size_type i = 0; i < s.length(); i++)
{
u.append(1, static_cast<char>(toupper(s[i])));
}
return u;
}
class Extension {
public:
vtkstd::string name;
enum {GL, WGL, GLX} type;
Extension() {}
Extension(char *line);
static bool isExtension(char *line);
static inline void WriteSupportWrapperBegin(ostream &out, int itype) {
switch (itype)
{
case WGL:
out << "#ifdef WIN32" << endl;
break;
case GLX:
out << "#ifdef VTK_USE_X" << endl;
break;
case GL:
break;
}
}
inline void WriteSupportWrapperBegin(ostream &out) const {
WriteSupportWrapperBegin(out, this->type);
}
static inline void WriteSupportWrapperEnd(ostream &out, int itype) {
if ((itype == WGL) || (itype == GLX))
{
out << "#endif" << endl;
}
}
inline void WriteSupportWrapperEnd(ostream &out) const {
WriteSupportWrapperEnd(out, this->type);
}
static inline const char *TypeToCapString(int t) {
switch (t)
{
case GL: return "GL";
case GLX: return "GLX";
case WGL: return "WGL";
}
return NULL;
}
static inline const char *TypeToString(int t) {
switch (t)
{
case GL: return "gl";
case GLX: return "glX";
case WGL: return "wgl";
}
return NULL;
}
bool operator<(const Extension &obj) const { return this->name < obj.name; }
};
Extension::Extension(char *line)
{
Tokenizer t(line);
t.GetNextToken();
this->name = t.GetNextToken();
Tokenizer nameTokens(this->name, "_");
vtkstd::string header = nameTokens.GetNextToken();
if (header == "WGL")
{
this->type = WGL;
}
else if (header == "GLX")
{
this->type = GLX;
}
else
{
this->type = GL;
}
}
bool Extension::isExtension(char *line)
{
Tokenizer t(line);
if (t.GetNextToken() != "#ifndef") return false;
Tokenizer nameTokens(t.GetNextToken(), "_");
vtkstd::string header = nameTokens.GetNextToken();
if ((header == "GL") || (header == "WGL") || (header == "GLX"))
{
return true;
}
return false;
}
static Extension currentExtension;
class Constant {
public:
vtkstd::string name;
vtkstd::string value;
Constant(char *line);
static bool isConstant(char *line);
bool operator<(const Constant &obj) const { return this->name < obj.name; }
};
static vtkstd::map<vtkstd::string, vtkstd::string> EncounteredConstants;
Constant::Constant(char *line)
{
// Assumes isConstant is true.
Tokenizer t(line);
t.GetNextToken();
this->name = t.GetNextToken();
vtkstd::string fullname = this->name;
if (currentExtension.type == Extension::GL)
{
// Skip the "GL_"
this->name = this->name.substr(3);
}
else
{
// Skip the "GLX_" or "WGL_"
this->name = this->name.substr(4);
}
// Make sure name does not start with a numeric.
if ((this->name[0] >= '0') && (this->name[0] <= '9'))
{
this->name = '_' + this->name;
}
this->value = t.GetNextToken();
// Sometimes, one constant points to another. Handle this properly.
vtkstd::map<vtkstd::string, vtkstd::string>::iterator found
= EncounteredConstants.find(value);
if (found != EncounteredConstants.end())
{
this->value = found->second;
}
// Now record this as found.
EncounteredConstants[fullname] = this->value;
}
bool Constant::isConstant(char *line)
{
Tokenizer t(line);
if (t.GetNextToken() != "#define")
{
return false;
}
vtkstd::string n = t.GetNextToken();
if ( ( (currentExtension.type == Extension::GL)
&& (strncmp(n.c_str(), "GL_", 3) == 0) )
|| ( (currentExtension.type == Extension::WGL)
&& (strncmp(n.c_str(), "WGL_", 4) == 0) )
|| ( (currentExtension.type == Extension::GLX)
&& (strncmp(n.c_str(), "GLX_", 4) == 0) ) )
{
return true;
}
return false;
}
class Typedef {
public:
vtkstd::string definition;
Typedef(char *line);
static bool isTypedef(char *line);
bool operator<(const Typedef &obj) const { return this->definition < obj.definition; }
};
Typedef::Typedef(char *line)
{
// Assumes isTypedef is true.
this->definition = line;
}
bool Typedef::isTypedef(char *line)
{
Tokenizer t(line);
// Hack for some SGI stuff that declares a multiline struct.
if ( (t.GetNextToken() == "typedef")
&& ((t.GetNextToken() != "struct") || (t.GetNextToken() != "{")) )
{
return true;
}
// Hack for how some WIN32 things are declared.
if (strncmp(line, "DECLARE_HANDLE(", 15) == 0)
{
return true;
}
return false;
}
class Function {
public:
vtkstd::string returnType;
vtkstd::string entry;
vtkstd::string name;
vtkstd::string arguments;
int extensionType;
Function(char *line);
static bool isFunction(char *line);
const char *GetProcType();
bool operator<(const Function &obj) const { return this->name < obj.name; }
};
Function::Function(char *line) : extensionType(currentExtension.type)
{
// Assumes isFunction returns true.
Tokenizer t(line, " \n\t(");
t.GetNextToken();
vtkstd::string token = t.GetNextToken();
this->returnType = "";
while ((token == "const") || (token == "unsigned"))
{
this->returnType += token + " ";
token = t.GetNextToken();
}
this->returnType += token;
token = t.GetNextToken();
if (token == "*")
{
this->returnType += " *";
token = t.GetNextToken();
}
else if (token[0] == '*')
{
this->returnType += " *";
token = token.substr(1);
}
#ifdef DEBUG_PARSE
cerr << "Function return type: " << this->returnType << endl;
#endif
if (currentExtension.type == Extension::GL)
{
this->entry = "APIENTRY";
token = t.GetNextToken();
}
else if (currentExtension.type == Extension::WGL)
{
this->entry = "WINAPI";
token = t.GetNextToken();
}
else
{
this->entry = "";
}
#ifdef DEBUG_PARSE
cerr << "Function entry: " << this->entry << endl;
#endif
if (currentExtension.type == Extension::GL)
{
// Strip off "gl"
this->name = token.substr(2);
}
else
{
// Strip off "glX" or "wgl"
this->name = token.substr(3);
}
#ifdef DEBUG_PARSE
cerr << "Function name: " << this->name << endl;
#endif
this->arguments = t.GetRemainingString();
#ifdef DEBUG_PARSE
cerr << "Function arguments: " << this->arguments << endl;
#endif
}
bool Function::isFunction(char *line)
{
Tokenizer t(line);
vtkstd::string modifier = t.GetNextToken();
vtkstd::string sreturnType = t.GetNextToken();
if (sreturnType == "const")
{
// We don't really need the return type, just to skip over const.
sreturnType += " ";
sreturnType += t.GetNextToken();
}
vtkstd::string sentry = t.GetNextToken();
if (sentry == "*")
{
sreturnType += " *";
sentry = t.GetNextToken();
}
else if (sentry.size() && sentry[0] == '*')
{
sreturnType += " *";
sentry = sentry.substr(1);
}
return ( ( (currentExtension.type == Extension::GL)
&& (modifier == "GLAPI") && (sentry == "APIENTRY") )
|| ( (currentExtension.type == Extension::GL)
&& (modifier == "extern") && (sentry == "APIENTRY") )
|| ( (currentExtension.type == Extension::WGL)
&& (modifier == "extern") && (sentry == "WINAPI") )
|| ( (currentExtension.type == Extension::GLX)
&& (modifier == "extern") ) );
}
const char *Function::GetProcType()
{
static vtkstd::string proctype;
proctype = "PFN";
proctype += Extension::TypeToCapString(this->extensionType);
proctype += ToUpper(this->name);
proctype += "PROC";
return proctype.c_str();
}
static vtkstd::list<Extension> extensions;
static vtkstd::set<Extension> extensionset;
static vtkstd::map<Extension, vtkstd::list<Constant> > consts;
static vtkstd::map<Extension, vtkstd::list<Typedef> > types;
static vtkstd::map<Extension, vtkstd::list<Function> > functs;
static void ParseLine(char *line)
{
static bool inExtension = false;
static int ifLevel = 0;
Tokenizer tokens(line);
vtkstd::string firstToken = tokens.GetNextToken();
if (Extension::isExtension(line))
{
currentExtension = Extension(line);
#ifdef DEBUG_PARSE
cerr << "Recognized extension: " << line << endl;
#endif
// There are some exceptions to the extensions we support. This is
// because someone has placed some funky nonstandard stuff in the
// header files.
if ( (currentExtension.name == "GLX_SGIX_video_source")
|| (currentExtension.name == "GLX_SGIX_dmbuffer")
|| (currentExtension.name == "GLX_SGIX_hyperpipe") )
{
inExtension = false;
return;
}
// Only add extension to list if it is not already in it.
if (extensionset.find(currentExtension) == extensionset.end())
{
if (currentExtension.name == "GLX_ARB_get_proc_address")
{
// Special case where GLX_VERSION_1_4 depends on a typedef in
// GLX_ARB_get_proc_address, so we have to move the latter up.
extensions.push_front(currentExtension);
}
else
{
extensions.push_back(currentExtension);
}
extensionset.insert(currentExtension);
}
inExtension = true;
ifLevel = 0;
}
else if (inExtension)
{
if (strncmp(firstToken.c_str(), "#if", 3) == 0)
{
ifLevel++;
}
else if (firstToken == "#endif")
{
if (ifLevel == 0)
{
inExtension = false;
}
else
{
ifLevel--;
}
}
else if ( Constant::isConstant(line)
&& (strncmp(currentExtension.name.c_str(), (line+8),
currentExtension.name.length()) != 0) )
{
#ifdef DEBUG_PARSE
cerr << "Recognized constant: " << line << endl;
#endif
consts[currentExtension].push_back(line);
}
else if (Function::isFunction(line))
{
#ifdef DEBUG_PARSE
cerr << "Recognized function: " << line << endl;
#endif
functs[currentExtension].push_back(line);
}
else if (Typedef::isTypedef(line))
{
#ifdef DEBUG_PARSE
cerr << "Recognized typedef: " << line << endl;
#endif
types[currentExtension].push_back(line);
}
}
else
{
#ifdef DEBUG_PARSE
cerr << "Unrecognized line: " << line << endl;
#endif
}
}
static void WriteHeader(ostream &file, const char *generator,
char **srcs, int num_srcs)
{
file << "// -*- c++ -*-" << endl << endl;
file << "//DO NOT EDIT!" << endl;
file << "//This file was created with " << generator << endl
<< "//from";
for (int i = 0; i < num_srcs; i++)
{
file << " " << srcs[i];
}
file << endl << endl;
file << "/*" << endl
<< " * Copyright 2003 Sandia Corporation." << endl
<< " * Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive" << endl
<< " * license for use of this work by or on behalf of the" << endl
<< " * U.S. Government. Redistribution and use in source and binary forms, with" << endl
<< " * or without modification, are permitted provided that this Notice and any" << endl
<< " * statement of authorship are reproduced on all copies." << endl
<< " */" << endl << endl;
}
static void WriteClassDeclarationGuts(ostream &hfile, int type)
{
for (vtkstd::list<Extension>::iterator iextension = extensions.begin();
iextension != extensions.end(); iextension++)
{
if (iextension->type != type) continue;
hfile << endl << " //Definitions for " << iextension->name.c_str() << endl;
vtkstd::map<Extension, vtkstd::list<Constant> >::iterator cExts
= consts.find(*iextension);
if (cExts != consts.end())
{
for (vtkstd::list<Constant>::iterator iconst = cExts->second.begin();
iconst != cExts->second.end(); iconst++)
{
// New versions of the NVIDIA OpenGL headers for Linux can
// #define the same constant with the same value in multiple
// sections. This utility will happily parse those and write
// out duplicate enums in different enum classes, which
// confuses the C++ preprocessor terribly. Don't write out a
// definition for an enum with a name/value pair that's
// already been used.
if ( ConstantsAlreadyWritten.find( vtkstd::make_pair( iconst->name,
iconst->value ) )
== ConstantsAlreadyWritten.end() )
{
hfile << " const GLenum " << iconst->name.c_str()
<< " = static_cast<GLenum>(" << iconst->value.c_str() << ");" << endl;
ConstantsAlreadyWritten.insert( vtkstd::make_pair( iconst->name,
iconst->value ) );
}
else
{
hfile << " /* skipping duplicate " << iconst->name.c_str()
<< " = " << iconst->value.c_str() << " */" << endl;
}
}
}
vtkstd::map<Extension, vtkstd::list<Typedef> >::iterator tExts
= types.find(*iextension);
if (tExts != types.end())
{
for (vtkstd::list<Typedef>::iterator itype = tExts->second.begin();
itype != tExts->second.end(); itype++)
{
hfile << " " << itype->definition.c_str() << endl;
}
}
vtkstd::map<Extension, vtkstd::list<Function> >::iterator fExts
= functs.find(*iextension);
if (fExts != functs.end())
{
for (vtkstd::list<Function>::iterator ifunc = fExts->second.begin();
ifunc != fExts->second.end(); ifunc++)
{
hfile << " extern VTK_RENDERING_EXPORT " << ifunc->GetProcType()
<< " " << ifunc->name.c_str() << ";" << endl;
}
}
}
}
static void WriteFunctionPointerDeclarations(ostream &cxxfile, int type)
{
Extension::WriteSupportWrapperBegin(cxxfile, type);
for (vtkstd::map<Extension, vtkstd::list<Function> >::iterator fExts
= functs.begin();
fExts != functs.end(); fExts++)
{
if (fExts->first.type != type) continue;
cxxfile << "//Functions for " << fExts->first.name.c_str() << endl;
for (vtkstd::list<Function>::iterator ifunc = fExts->second.begin();
ifunc != fExts->second.end(); ifunc++)
{
cxxfile << "vtk" << Extension::TypeToString(type) << "::"
<< ifunc->GetProcType()
<< " vtk" << Extension::TypeToString(type) << "::"
<< ifunc->name.c_str() << " = NULL;" << endl;
}
}
Extension::WriteSupportWrapperEnd(cxxfile, type);
cxxfile << endl;
}
static void WriteCode(ostream &hfile, ostream &cxxfile)
{
// Write data for header file ---------------------------------
hfile << "#ifndef __vtkgl_h" << endl
<< "#define __vtkgl_h" << endl << endl;
hfile << "#include \"vtkToolkits.h\"" << endl;
hfile << "#include \"vtkSystemIncludes.h\"" << endl;
hfile << "#include \"vtkWindows.h\"" << endl;
hfile << "#include \"vtkOpenGL.h\"" << endl;
hfile << "#include <stddef.h>" << endl << endl;
hfile << "//#ifdef __APPLE__" << endl
<< "//#include <OpenGL/glu.h>" << endl
<< "//#else" << endl
<< "//#include <GL/glu.h>" << endl
<< "//#endif" << endl << endl;
hfile << "#ifdef VTK_USE_X" << endl
<< "#include <GL/glx.h>" << endl
<< "#endif" << endl << endl;
hfile << "class vtkOpenGLExtensionManager;" << endl << endl;
hfile << "#ifndef APIENTRY" << endl
<< "#define APIENTRY" << endl
<< "#define VTKGL_APIENTRY_DEFINED" << endl
<< "#endif" << endl << endl;
hfile << "#ifndef APIENTRYP" << endl
<< "#define APIENTRYP APIENTRY *" << endl
<< "#define VTKGL_APIENTRYP_DEFINED" << endl
<< "#endif" << endl << endl;
hfile << "/* Undefine all constants to avoid name conflicts. They should be defined */" << endl
<< "/* with GL_, GLX_, or WGL_ preprended to them anyway, but sometimes you run */" << endl
<< "/* into a header file that gets it wrong. */" << endl;
for (vtkstd::map<Extension, vtkstd::list<Constant> >::iterator constlist
= consts.begin();
constlist != consts.end(); constlist++)
{
for (vtkstd::list<Constant>::iterator c = (*constlist).second.begin();
c != (*constlist).second.end(); c++)
{
hfile << "#ifdef " << (*c).name.c_str() << endl;
hfile << "#undef " << (*c).name.c_str() << endl;
hfile << "#endif" << endl;
}
}
Extension::WriteSupportWrapperBegin(hfile, Extension::GL);
hfile << endl << "namespace vtkgl {" << endl;
// Add necessary type declarations.
hfile << " //Define int32_t, int64_t, and uint64_t." << endl;
hfile << " typedef vtkTypeInt32 int32_t;" << endl;
hfile << " typedef vtkTypeInt64 int64_t;" << endl;
hfile << " typedef vtkTypeUInt64 uint64_t;" << endl;
ConstantsAlreadyWritten.clear();
WriteClassDeclarationGuts(hfile, Extension::GL);
hfile << endl << " // Method to load functions for a particular extension.";
hfile << endl << " int LoadExtension(const char *name, "
<< "vtkOpenGLExtensionManager *manager);" << endl;
hfile << endl << " // Strings containing special version extensions.";
hfile << endl << " const char *GLVersionExtensionsString();" << endl;
hfile << endl << " const char *GLXVersionExtensionsString();" << endl;
hfile << "}" << endl;
Extension::WriteSupportWrapperEnd(hfile, Extension::GL);
Extension::WriteSupportWrapperBegin(hfile, Extension::GLX);
hfile << "namespace vtkglX {" << endl;
// glxext.h is not written very well. Add some typedefs that may not
// be defined.
hfile << " //Miscellaneous definitions." << endl;
hfile << " typedef XID GLXContextID;" << endl;
hfile << " typedef XID GLXPbuffer;" << endl;
hfile << " typedef XID GLXWindow;" << endl;
hfile << " typedef XID GLXFBConfigID;" << endl;
hfile << " typedef struct __GLXFBConfigRec *GLXFBConfig;" << endl;
hfile << " typedef vtkTypeInt32 int32_t;" << endl;
hfile << " typedef vtkTypeInt64 int64_t;" << endl;
ConstantsAlreadyWritten.clear();
WriteClassDeclarationGuts(hfile, Extension::GLX);
hfile << "}" << endl;
Extension::WriteSupportWrapperEnd(hfile, Extension::GLX);
Extension::WriteSupportWrapperBegin(hfile, Extension::WGL);
hfile << "namespace vtkwgl {" << endl;
ConstantsAlreadyWritten.clear();
WriteClassDeclarationGuts(hfile, Extension::WGL);
hfile << "}" << endl;
Extension::WriteSupportWrapperEnd(hfile, Extension::WGL);
hfile << endl
<< "#ifdef VTKGL_APIENTRY_DEFINED" << endl
<< "#undef APIENTRY" << endl
<< "#endif" << endl << endl;
hfile << "#ifdef VTKGL_APIENTRYP_DEFINED" << endl
<< "#undef APIENTRYP" << endl
<< "#endif" << endl << endl;
hfile << "#endif //_vtkgl_h" << endl;
// Write data for C++ file --------------------------------------------
cxxfile << "#include \"vtkgl.h\"" << endl;
cxxfile << "#include \"vtkOpenGLExtensionManager.h\"" << endl << endl;
// Write function pointer declarations.
WriteFunctionPointerDeclarations(cxxfile, Extension::GL);
WriteFunctionPointerDeclarations(cxxfile, Extension::GLX);
WriteFunctionPointerDeclarations(cxxfile, Extension::WGL);
vtkstd::list<Extension>::iterator iextension;
// Write function to load function pointers.
cxxfile << "int vtkgl::LoadExtension(const char *name, vtkOpenGLExtensionManager *manager)" << endl
<< "{" << endl;
for (iextension = extensions.begin();
iextension != extensions.end(); iextension++)
{
iextension->WriteSupportWrapperBegin(cxxfile);
cxxfile << " if (strcmp(name, \"" << iextension->name.c_str()
<< "\") == 0)" << endl
<< " {" << endl;
vtkstd::string vtkglclass = "vtk";
vtkglclass += Extension::TypeToString(iextension->type);
vtkstd::list<Function>::iterator ifunct;
for (ifunct = functs[*iextension].begin();
ifunct != functs[*iextension].end(); ifunct++)
{
cxxfile << " " << vtkglclass.c_str() << "::"
<< ifunct->name.c_str() << " = reinterpret_cast<" << vtkglclass.c_str() << "::"
<< ifunct->GetProcType()
<< ">(manager->GetProcAddress(\""
<< Extension::TypeToString(iextension->type)
<< ifunct->name.c_str() << "\"));" << endl;
}
cxxfile << " return 1";
for (ifunct = functs[*iextension].begin();
ifunct != functs[*iextension].end(); ifunct++)
{
cxxfile << " && (" << vtkglclass.c_str() << "::" << ifunct->name.c_str()
<< " != NULL)";
}
cxxfile << ";" << endl;
cxxfile << " }" << endl;
iextension->WriteSupportWrapperEnd(cxxfile);
}
cxxfile << " vtkGenericWarningMacro(<< \"Nothing known about extension \" << name" << endl
<< " << \". vtkgl may need to be updated.\");" << endl;
cxxfile << " return 0;" << endl
<< "}" << endl;
// Write functions to report special version extension strings.
cxxfile << endl << "const char *vtkgl::GLVersionExtensionsString()" << endl
<< "{" << endl
<< " return \"";
for (iextension = extensions.begin();
iextension != extensions.end(); iextension++)
{
if (strncmp("GL_VERSION_", iextension->name.c_str(), 11) == 0)
{
cxxfile << iextension->name.c_str() << " ";
}
}
cxxfile << "\";" << endl
<< "}" << endl;
cxxfile << endl << "const char *vtkgl::GLXVersionExtensionsString()" << endl
<< "{" << endl
<< " return \"";
for (iextension = extensions.begin();
iextension != extensions.end(); iextension++)
{
if (strncmp("GLX_VERSION_", iextension->name.c_str(), 12) == 0)
{
cxxfile << iextension->name.c_str() << " ";
}
}
cxxfile << "\";" << endl
<< "}" << endl;
}
int main(int argc, char **argv)
{
if (argc < 3)
{
cerr << "USAGE: " << argv[0] << "<output dir> <header files>" << endl;
return 1;
}
vtkstd::string outputDir = argv[1];
for (int i = 2; i < argc; i++)
{
#ifdef DEBUG_PARSE
cerr << "*** Parsing declarations from file " << argv[i] << endl;
#endif
ifstream file(argv[i]);
if (!file)
{
cerr << "Could not open " << argv[i] << endl;
return 2;
}
while (!file.eof())
{
static char buf[4096]; // What are the odds of needing more?
file.getline(buf, 4096);
ParseLine(buf);
}
file.close();
}
ofstream hfile((outputDir + "/vtkgl.h").c_str());
WriteHeader(hfile, argv[0], argv+1, argc-1);
ofstream cxxfile((outputDir + "/vtkgl.cxx").c_str());
WriteHeader(cxxfile, argv[0], argv+1, argc-1);
WriteCode(hfile, cxxfile);
hfile.close();
cxxfile.close();
return 0;
}
|