int main( int argc, const char *argv[] ) { // If you are using OpenNURBS as a Windows DLL, then you MUST use // ON::OpenFile() to open the file. If you are not using OpenNURBS // as a Windows DLL, then you may use either ON::OpenFile() or fopen() // to open the file. const char* example_read_exe_name = 0; if ( argc >= 1 && 0 != argv && 0 != argv[0] && 0 != argv[0][0] ) { on_splitpath(argv[0],0,0,&example_read_exe_name,0); } if ( 0 == example_read_exe_name || 0 == example_read_exe_name[0] ) { #if defined(ON_OS_WINDOWS) example_read_exe_name = "example_read.exe"; #else example_read_exe_name = "example_read"; #endif } int argi; if ( argc < 2 ) { print_help(example_read_exe_name); return 0; } // Call once in your application to initialze opennurbs library ON::Begin(); // default dump is to stdout ON_TextLog dump_to_stdout; dump_to_stdout.SetIndentSize(2); ON_TextLog* dump = &dump_to_stdout; FILE* dump_fp = 0; bool bVerboseTextDump = true; bool bChunkDump = false; int maximum_directory_depth = 0; int file_count = 0; for ( argi = 1; argi < argc; argi++ ) { const char* arg = argv[argi]; // check for -out or /out option if ( ( 0 == strncmp(arg,"-out:",5) || 0 == strncmp(arg,"-out:",5) #if defined(ON_OS_WINDOWS) || 0 == strncmp(arg,"/out:",5) #endif ) && arg[5] ) { // change destination of dump file if ( dump != &dump_to_stdout ) { delete dump; dump = 0; } if ( dump_fp ) { ON::CloseFile(dump_fp); } const char* sDumpFilename = arg+5; FILE* text_fp = ON::OpenFile(sDumpFilename,"w"); if ( text_fp ) { dump_fp = text_fp; dump = new ON_TextLog(dump_fp); dump->SetIndentSize(2); } if ( 0 == dump ) dump = &dump_to_stdout; continue; } // check for -chunkdump or /chunkdump option if ( 0 == strcmp(arg,"-C") || 0 == strcmp(arg,"-c") || 0 == strcmp(arg,"-chunk") || 0 == strcmp(arg,"-chunkdump") #if defined(ON_OS_WINDOWS) || 0 == strcmp(arg,"/C") || 0 == strcmp(arg,"/c") || 0 == strcmp(arg,"/chunk") || 0 == strcmp(arg,"/chunkdump") #endif ) { bChunkDump = true; continue; } // check for -recursive or /recursive option if ( 0 == strcmp(arg,"-R") || 0 == strcmp(arg,"-r") || 0 == strcmp(arg,"-recurse") || 0 == strcmp(arg,"-recursive") #if defined(ON_OS_WINDOWS) || 0 == strcmp(arg,"/R") || 0 == strcmp(arg,"/r") || 0 == strcmp(arg,"/recurse") || 0 == strcmp(arg,"/recursive") #endif ) { maximum_directory_depth = 32; continue; } ON_wString ws_arg = arg; const wchar_t* wchar_arg = ws_arg; if ( ON::IsDirectory(wchar_arg) ) { file_count += ReadDirectoryHelper( 0, maximum_directory_depth, wchar_arg, 0, bVerboseTextDump, bChunkDump, *dump ); } else { if ( ReadFileHelper( wchar_arg, bVerboseTextDump, bChunkDump, *dump ) ) file_count++; } } dump->Print("%s read %d opennurbs model files.\n",example_read_exe_name,file_count); if ( dump != &dump_to_stdout ) { delete dump; dump = 0; } if ( dump_fp ) { // close the text dump file ON::CloseFile( dump_fp ); dump_fp = 0; } // OPTIONAL: Call just before your application exits to clean // up opennurbs class definition information. // Opennurbs will not work correctly after ON::End() // is called. ON::End(); return 0; }
int main ( int argc, const char* argv[] ) { ON::Begin(); // default dump is to stdout // use the -out:filename.txt option to dump to a file ON_TextLog dump_to_stdout; ON_TextLog* dump = &dump_to_stdout; FILE* dump_fp = 0; dump->SetIndentSize(2); int argi; if ( argc < 2 ) { printf("Syntax: %s [-out:outputfilename.txt] [-terse] file1.3dm file2.3dm ...\n",argv[0]); return 0; } for ( argi = 1; argi < argc; argi++ ) { const char* arg = argv[argi]; if ( 0 == arg ) continue; // check for -terse option if ( 0 == strcmp( arg, "-terse" ) ) { bTerseReport = 1; continue; } // check for -out or /out option if ( ( 0 == strncmp(arg,"-out:",5) || 0 == strncmp(arg,"/out:",5) ) && arg[5] ) { // change destination of dump file const char* sDumpFilename = arg+5; FILE* text_fp = ON::OpenFile(sDumpFilename,"w"); if ( text_fp ) { if ( dump_fp ) { delete dump; dump = 0; ON::CloseFile(dump_fp); dump_fp = 0; } dump_fp = text_fp; text_fp = 0; dump = new ON_TextLog(dump_fp); } continue; } Dump3dmFile( arg, *dump ); dump->Print("\n\n"); } if ( dump_fp ) { // close the text dump file delete dump; dump = 0; ON::CloseFile( dump_fp ); dump_fp = 0; } // OPTIONAL: Call just before your application exits to clean // up opennurbs class definition information. // Opennurbs will not work correctly after ON::End() // is called. ON::End(); return 0; }