📄 exenv.cc
字号:
//// exenv.cc//// Copyright (C) 1997 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit 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 Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB. If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifdef __GNUG__#pragma implementation#endif#include <unistd.h>#include <stdlib.h>#include <iostream>#include <fstream>#include <scconfig.h>#ifdef HAVE_PWD_H#include <pwd.h>#endif#ifdef HAVE_SYS_TYPES_H#include <sys/types.h>#endif#include <util/misc/exenv.h>#include <string.h>#ifdef HAVE_NIAMA#include <niama.h>#include <niama_impl.h>#endifusing namespace std;using namespace sc;int ExEnv::initialized_ = 0;size_t ExEnv::mem_ = 0;int ExEnv::nproc_ = 0;int *ExEnv::argc_ = 0;char ***ExEnv::argv_ = 0;char ExEnv::hostname_[256] = { '\0' };char ExEnv::username_[9] = { '\0' };ostream *ExEnv::out_ = 0;ostream *ExEnv::nullstream_ = 0;const char *ExEnv::program_name(){ if (argc_ == 0 || *argc_ == 0) return 0; char *start = strrchr((*argv_)[0],'/'); if (!start) start = (*argv_)[0]; else start++; return start;}std::ostream &ExEnv::out0(){ if (!SCFormIO::get_debug() && SCFormIO::get_printnode() != SCFormIO::get_node()) { if (!nullstream_) { ofstream *nullofstream = new ofstream; if (nullofstream->bad() || nullofstream->fail()) nullofstream->open("/dev/null"); nullstream_ = nullofstream; } return *nullstream_; } return outn();}voidExEnv::init(int &argcref, char **&argvref){ argc_ = &argcref; argv_ = &argvref;#ifdef HAVE_GETHOSTNAME gethostname(hostname_, 256);#else strcpy(hostname_, "UNKNOWN");#endif memset(username_,0,9);#if defined(HAVE_GETPWUID) && defined(HAVE_GETEUID) struct passwd *pw = getpwuid(geteuid()); if (pw && pw->pw_name) { strncpy(username_, pw->pw_name, 9); username_[8] = 0; } else { strcpy(username_,"UNKNOWN"); }#else strcpy(username_,"UNKNOWN");#endif initialized_ = 1;#ifdef HAVE_NIAMA#if 0 using namespace NIAMA; CORBA::ORB_var orb = CORBA::ORB_init(*argc_, *argv_, "mico-local-orb"); CORBA::BOA_var boa = orb->BOA_init(*argc_, *argv_, "mico-local-boa"); CORBA::Object_var obj = orb->bind("IDL:NIAMA/Machine:1.0"); if (CORBA::is_nil (obj)) { ExEnv::outn() << "could not bind to NIAMA server ... giving up" << endl; return; } Machine_var machine = Machine::_narrow (obj); if (CORBA::is_nil(machine)) { return; } nproc_ = machine->n_processor(); mem_ = machine->memory(); ExEnv::outn() << "ExEnv::init: NIAMA: nproc = " << nproc_ << endl; ExEnv::outn() << "ExEnv::init: NIAMA: memory = " << mem_ << endl;#else using namespace NIAMA; // init ORB CORBA::ORB_var orb = CORBA::ORB_init(*argc_, *argv_, "mico-local-orb"); // server side Machine_impl* machine = new Machine_impl; nproc_ = machine->n_processor(); mem_ = machine->memory(); CORBA::release(machine); #endif#endif}// Local Variables:// mode: c++// c-file-style: "CLJ"// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -