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
|
/*
FALCON - The Falcon Programming Language.
FILE: sys_solaris.cpp
System specific (UNIX - solaris) support for VM.
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: mar nov 9 2004
-------------------------------------------------------------------
(C) Copyright 2004: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
/** \file
Short description
*/
extern "C"
{
extern char **environ;
}
#define _REENTRANT
#include <sys/time.h>
#include <unistd.h>
#include <sys/stat.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <falcon/setup.h>
#include <falcon/types.h>
#include <falcon/memory.h>
#include <falcon/sys.h>
#include <falcon/string.h>
#include <falcon/transcoding.h>
#include <falcon/autocstring.h>
namespace Falcon {
namespace Sys {
void _dummy_ctrl_c_handler()
{
}
numeric _seconds()
{
struct timeval time;
gettimeofday( &time, 0 );
return time.tv_sec + (time.tv_usec / 1000000.0 );
}
numeric _localSeconds()
{
struct timeval current;
struct tm date_local, date_gm;
time_t t;
gettimeofday( ¤t, 0 );
time( &t );
localtime_r( &t, &date_local );
gmtime_r( &t, &date_gm );
time_t leap = mktime( &date_local) - mktime( &date_gm );
return leap + current.tv_sec + (current.tv_usec / 1000000.0 );
}
uint32 _milliseconds()
{
#if POSIX_TIMERS > 0
struct timespec time;
clock_gettime( CLOCK_REALTIME, &time );
return time.tv_sec * 1000 + time.tv_nsec / 1000000;
#else
struct timeval time;
gettimeofday( &time, 0 );
return time.tv_sec * 1000 + time.tv_usec / 1000;
#endif
}
int64 _epoch()
{
return (int64) time(0);
}
void _tempName( String &res )
{
static bool first = true;
const char *temp_dir;
char *fname;
struct stat st;
if( first ) {
first = false;
time_t t;
srand( (unsigned int ) time( &t ) );
}
temp_dir = getenv( "TMP" );
if ( temp_dir == 0 )
temp_dir = getenv( "TMPDIR" );
if ( temp_dir == 0 ) {
temp_dir = DEFAULT_TEMP_DIR;
}
if ( stat( temp_dir, &st ) == -1 || ! S_ISDIR( st.st_mode ) ) {
temp_dir = ".";
}
res = temp_dir;
res.append( "/falcon_tmp_" );
res.writeNumber( (int64) getpid() );
res.append("_");
res.writeNumber( (int64) rand() );
res.bufferize();
// force buffering
}
bool _describeError( int64 eid, String &target )
{
const char *error = strerror( eid );
if( error != 0 ) {
target.bufferize( error );
return true;
}
return false;
}
int64 _lastError()
{
return (int64) errno;
}
bool _getEnv( const String &var, String &result )
{
AutoCString convertBuf( var );
char *value = getenv( convertBuf.c_str() );
if ( value != 0 && value[0] != '\0' )
{
TranscodeFromString( value, "utf-8", result );
return true;
}
return false;
}
bool _setEnv( const String &var, const String &value )
{
// in unix system, we have at worst UTF-8 var names.
String tmp = var + "=" + value;
AutoCString env( tmp );
// Solaris putenv requires that memory is permanently stored in the system.
char *buffer = (char*) malloc( env.length() + 1 );
memcpy( buffer, env.c_str(), env.length() );
buffer[ env.length() ] = '\0';
return (putenv( buffer ) == 0);
}
bool _unsetEnv( const String &var )
{
// in unix system, we have at worst UTF-8 var names.
String sVarValue = var + "=";
AutoCString env( sVarValue );
// Solaris putenv requires that memory is permanently stored in the system.
char *buffer = (char*) malloc( env.length() + 1 );
memcpy( buffer, env.c_str(), env.length() );
buffer[ env.length() ] = '\0';
return (putenv( buffer ) == 0);
}
void _enumerateEnvironment( EnvStringCallback cb, void* cbData )
{
// do we know which encoding are we using?
String enc;
bool bTranscode = GetSystemEncoding( enc ) && enc != "C";
char** env = environ;
while( *env != 0 )
{
String temp;
if( bTranscode )
{
if( ! TranscodeFromString( *env, enc, temp ) )
{
bTranscode = false;
temp = *env;
}
}
else
temp = *env;
uint32 pos;
if ( (pos = temp.find( "=" )) )
{
cb( temp.subString(0,pos), temp.subString(pos+1), cbData );
}
++env;
}
}
int64 _getpid() {
return (int64) getpid();
}
}
}
/* end of sys_solaris.cpp */
|