/** * @brief Reinitialize * * @param e * @param p */ void Table::reinit( const Eref& e, ProcPtr p ) { tablePath_ = e.id().path(); unsigned int numTick = e.element()->getTick(); Clock* clk = reinterpret_cast<Clock*>(Id(1).eref().data()); dt_ = clk->getTickDt( numTick ); /** Create the default filepath for this table. */ if( useStreamer_ ) { // The first column is variable time. columns_.push_back( "time" ); // And the second column name is the name of the table. columns_.push_back( moose::moosePathToUserPath( tablePath_ ) ); // If user has not set the filepath, then use the table path prefixed // with rootdit as path. if( ! outfileIsSet_ ) setOutfile( rootdir_ + moose::moosePathToUserPath(tablePath_) + '.' + format_ ); } input_ = 0.0; vec().resize( 0 ); lastTime_ = 0; vector< double > ret; requestOut()->send( e, &ret ); vec().insert( vec().end(), ret.begin(), ret.end() ); if( useStreamer_ ) { zipWithTime( vec(), data_, lastTime_ ); StreamerBase::writeToOutFile( outfile_, format_, "w", data_, columns_); clearVec(); data_.clear(); clearVec(); } }
Module::Module(const char *filename, Identifier *ident, int doDocComment, int doHdrGen) : Package(ident) { const char *srcfilename; const char *symfilename; // printf("Module::Module(filename = '%s', ident = '%s')\n", filename, ident->toChars()); this->arg = filename; md = NULL; errors = 0; numlines = 0; members = NULL; isDocFile = 0; needmoduleinfo = 0; selfimports = 0; insearch = 0; decldefs = NULL; massert = NULL; munittest = NULL; marray = NULL; sictor = NULL; sctor = NULL; sdtor = NULL; ssharedctor = NULL; sshareddtor = NULL; stest = NULL; sfilename = NULL; importedFrom = NULL; srcfile = NULL; docfile = NULL; debuglevel = 0; debugids = NULL; debugidsNot = NULL; versionlevel = 0; versionids = NULL; versionidsNot = NULL; macrotable = NULL; escapetable = NULL; safe = false; doppelganger = 0; cov = NULL; covb = NULL; nameoffset = 0; namelen = 0; srcfilename = FileName::defaultExt(filename, global.mars_ext); if (global.run_noext && global.params.run && !FileName::ext(filename) && FileName::exists(srcfilename) == 0 && FileName::exists(filename) == 1) { FileName::free(srcfilename); srcfilename = FileName::removeExt(filename); // just does a mem.strdup(filename) } else if (!FileName::equalsExt(srcfilename, global.mars_ext) && !FileName::equalsExt(srcfilename, global.hdr_ext) && !FileName::equalsExt(srcfilename, "dd")) { error("source file name '%s' must have .%s extension", srcfilename, global.mars_ext); fatal(); } srcfile = new File(srcfilename); objfile = setOutfile(global.params.objname, global.params.objdir, filename, global.obj_ext); symfilename = FileName::forceExt(filename, global.sym_ext); if (doDocComment) setDocfile(); if (doHdrGen) hdrfile = setOutfile(global.params.hdrname, global.params.hdrdir, arg, global.hdr_ext); //objfile = new File(objfilename); symfile = new File(symfilename); }
void Module::setDocfile() { docfile = setOutfile(global.params.docname, global.params.docdir, arg, global.doc_ext); }