| 1 | //
 | 
|---|
| 2 | // exenv.cc
 | 
|---|
| 3 | //
 | 
|---|
| 4 | // Copyright (C) 1997 Limit Point Systems, Inc.
 | 
|---|
| 5 | //
 | 
|---|
| 6 | // Author: Curtis Janssen <cljanss@limitpt.com>
 | 
|---|
| 7 | // Maintainer: LPS
 | 
|---|
| 8 | //
 | 
|---|
| 9 | // This file is part of the SC Toolkit.
 | 
|---|
| 10 | //
 | 
|---|
| 11 | // The SC Toolkit is free software; you can redistribute it and/or modify
 | 
|---|
| 12 | // it under the terms of the GNU Library General Public License as published by
 | 
|---|
| 13 | // the Free Software Foundation; either version 2, or (at your option)
 | 
|---|
| 14 | // any later version.
 | 
|---|
| 15 | //
 | 
|---|
| 16 | // The SC Toolkit is distributed in the hope that it will be useful,
 | 
|---|
| 17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
| 18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
| 19 | // GNU Library General Public License for more details.
 | 
|---|
| 20 | //
 | 
|---|
| 21 | // You should have received a copy of the GNU Library General Public License
 | 
|---|
| 22 | // along with the SC Toolkit; see the file COPYING.LIB.  If not, write to
 | 
|---|
| 23 | // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
|---|
| 24 | //
 | 
|---|
| 25 | // The U.S. Government is granted a limited license as per AL 91-7.
 | 
|---|
| 26 | //
 | 
|---|
| 27 | 
 | 
|---|
| 28 | #ifdef __GNUG__
 | 
|---|
| 29 | #pragma implementation
 | 
|---|
| 30 | #endif
 | 
|---|
| 31 | 
 | 
|---|
| 32 | #include <unistd.h>
 | 
|---|
| 33 | #include <stdlib.h>
 | 
|---|
| 34 | #include <iostream>
 | 
|---|
| 35 | #include <fstream>
 | 
|---|
| 36 | 
 | 
|---|
| 37 | #include <scconfig.h>
 | 
|---|
| 38 | 
 | 
|---|
| 39 | #ifdef HAVE_PWD_H
 | 
|---|
| 40 | #include <pwd.h>
 | 
|---|
| 41 | #endif
 | 
|---|
| 42 | #ifdef HAVE_SYS_TYPES_H
 | 
|---|
| 43 | #include <sys/types.h>
 | 
|---|
| 44 | #endif
 | 
|---|
| 45 | 
 | 
|---|
| 46 | #include <util/misc/exenv.h>
 | 
|---|
| 47 | #include <string.h>
 | 
|---|
| 48 | 
 | 
|---|
| 49 | #ifdef HAVE_NIAMA
 | 
|---|
| 50 | #include <niama.h>
 | 
|---|
| 51 | #include <niama_impl.h>
 | 
|---|
| 52 | #endif
 | 
|---|
| 53 | 
 | 
|---|
| 54 | using namespace std;
 | 
|---|
| 55 | using namespace sc;
 | 
|---|
| 56 | 
 | 
|---|
| 57 | int ExEnv::initialized_ = 0;
 | 
|---|
| 58 | size_t ExEnv::mem_ = 0;
 | 
|---|
| 59 | int ExEnv::nproc_ = 0;
 | 
|---|
| 60 | int *ExEnv::argc_ = 0;
 | 
|---|
| 61 | char ***ExEnv::argv_ = 0;
 | 
|---|
| 62 | char ExEnv::hostname_[256] = { '\0' };
 | 
|---|
| 63 | char ExEnv::username_[9] = { '\0' };
 | 
|---|
| 64 | ostream *ExEnv::out_ = 0;
 | 
|---|
| 65 | ostream *ExEnv::nullstream_ = 0;
 | 
|---|
| 66 | 
 | 
|---|
| 67 | const char *
 | 
|---|
| 68 | ExEnv::program_name()
 | 
|---|
| 69 | {
 | 
|---|
| 70 |   if (argc_ == 0 || *argc_ == 0) return 0;
 | 
|---|
| 71 |   char *start = strrchr((*argv_)[0],'/');
 | 
|---|
| 72 |   if (!start) start = (*argv_)[0];
 | 
|---|
| 73 |   else start++;
 | 
|---|
| 74 |   return start;
 | 
|---|
| 75 | }
 | 
|---|
| 76 | 
 | 
|---|
| 77 | std::ostream &
 | 
|---|
| 78 | ExEnv::out0()
 | 
|---|
| 79 | {
 | 
|---|
| 80 |   if (!SCFormIO::get_debug()
 | 
|---|
| 81 |       && SCFormIO::get_printnode() != SCFormIO::get_node()) {
 | 
|---|
| 82 |       if (!nullstream_) {
 | 
|---|
| 83 |           ofstream *nullofstream = new ofstream;
 | 
|---|
| 84 |           if (nullofstream->bad() || nullofstream->fail())
 | 
|---|
| 85 |               nullofstream->open("/dev/null");
 | 
|---|
| 86 |           nullstream_ = nullofstream;
 | 
|---|
| 87 |         }
 | 
|---|
| 88 |     return *nullstream_;
 | 
|---|
| 89 |     }
 | 
|---|
| 90 | 
 | 
|---|
| 91 |   return outn();
 | 
|---|
| 92 | }
 | 
|---|
| 93 | 
 | 
|---|
| 94 | void
 | 
|---|
| 95 | ExEnv::init(int &argcref, char **&argvref)
 | 
|---|
| 96 | {
 | 
|---|
| 97 |   argc_ = &argcref;
 | 
|---|
| 98 |   argv_ = &argvref;
 | 
|---|
| 99 | 
 | 
|---|
| 100 | #ifdef HAVE_GETHOSTNAME
 | 
|---|
| 101 |   gethostname(hostname_, 256);
 | 
|---|
| 102 | #else
 | 
|---|
| 103 |   strcpy(hostname_, "UNKNOWN");
 | 
|---|
| 104 | #endif
 | 
|---|
| 105 | 
 | 
|---|
| 106 |   memset(username_,0,9);
 | 
|---|
| 107 | #if defined(HAVE_GETPWUID) && defined(HAVE_GETEUID)
 | 
|---|
| 108 |   struct passwd *pw = getpwuid(geteuid());
 | 
|---|
| 109 |   if (pw && pw->pw_name) {
 | 
|---|
| 110 |       strncpy(username_, pw->pw_name, 9);
 | 
|---|
| 111 |       username_[8] = 0;
 | 
|---|
| 112 |     }
 | 
|---|
| 113 |   else {
 | 
|---|
| 114 |       strcpy(username_,"UNKNOWN");
 | 
|---|
| 115 |     }
 | 
|---|
| 116 | #else
 | 
|---|
| 117 |   strcpy(username_,"UNKNOWN");
 | 
|---|
| 118 | #endif
 | 
|---|
| 119 | 
 | 
|---|
| 120 |   initialized_ = 1;
 | 
|---|
| 121 | 
 | 
|---|
| 122 | #ifdef HAVE_NIAMA
 | 
|---|
| 123 | #if 0
 | 
|---|
| 124 |   using namespace NIAMA;
 | 
|---|
| 125 | 
 | 
|---|
| 126 |   CORBA::ORB_var orb = CORBA::ORB_init(*argc_, *argv_, "mico-local-orb");
 | 
|---|
| 127 |   CORBA::BOA_var boa = orb->BOA_init(*argc_, *argv_, "mico-local-boa");
 | 
|---|
| 128 |   CORBA::Object_var obj = orb->bind("IDL:NIAMA/Machine:1.0");
 | 
|---|
| 129 |   if (CORBA::is_nil (obj)) {
 | 
|---|
| 130 |       ExEnv::outn() << "could not bind to NIAMA server ... giving up" << endl;
 | 
|---|
| 131 |       return;
 | 
|---|
| 132 |     }
 | 
|---|
| 133 |   Machine_var machine = Machine::_narrow (obj);
 | 
|---|
| 134 |   if (CORBA::is_nil(machine)) {
 | 
|---|
| 135 |       return;
 | 
|---|
| 136 |     }
 | 
|---|
| 137 | 
 | 
|---|
| 138 |   nproc_ = machine->n_processor();
 | 
|---|
| 139 |   mem_ = machine->memory();
 | 
|---|
| 140 | 
 | 
|---|
| 141 |   ExEnv::outn() << "ExEnv::init: NIAMA: nproc = " << nproc_ << endl;
 | 
|---|
| 142 |   ExEnv::outn() << "ExEnv::init: NIAMA: memory = " << mem_ << endl;
 | 
|---|
| 143 | #else
 | 
|---|
| 144 |   using namespace NIAMA;
 | 
|---|
| 145 |   // init ORB
 | 
|---|
| 146 |   CORBA::ORB_var orb = CORBA::ORB_init(*argc_, *argv_, "mico-local-orb");
 | 
|---|
| 147 | 
 | 
|---|
| 148 |   // server side
 | 
|---|
| 149 |   Machine_impl* machine = new Machine_impl;
 | 
|---|
| 150 | 
 | 
|---|
| 151 |   nproc_ = machine->n_processor();
 | 
|---|
| 152 |   mem_ = machine->memory();
 | 
|---|
| 153 | 
 | 
|---|
| 154 |   CORBA::release(machine);
 | 
|---|
| 155 |   
 | 
|---|
| 156 | #endif
 | 
|---|
| 157 | #endif
 | 
|---|
| 158 | }
 | 
|---|
| 159 | 
 | 
|---|
| 160 | // Local Variables:
 | 
|---|
| 161 | // mode: c++
 | 
|---|
| 162 | // c-file-style: "CLJ"
 | 
|---|
| 163 | // End:
 | 
|---|