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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
|
/*
* Copyright (C)2005-2022 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <neko.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <locale.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef NEKO_WINDOWS
# include <windows.h>
# include <direct.h>
# include <conio.h>
#else
# include <errno.h>
# include <unistd.h>
# include <dirent.h>
# include <limits.h>
# include <termios.h>
# include <sys/time.h>
# include <sys/times.h>
# include <sys/wait.h>
#ifdef NEKO_XLOCALE_H
# include <xlocale.h>
#else
# include <locale.h>
#endif
#endif
#ifdef NEKO_MAC
# include <sys/syslimits.h>
# include <limits.h>
# include <mach-o/dyld.h>
#endif
#ifndef CLK_TCK
# define CLK_TCK 100
#endif
/**
<doc>
<h1>System</h1>
<p>
Interactions with the operating system.
</p>
</doc>
**/
/**
get_env : string -> string?
<doc>Get some environment variable if exists</doc>
**/
static value get_env( value v ) {
char *s;
val_check(v,string);
s = getenv(val_string(v));
if( s == NULL )
return val_null;
return alloc_string(s);
}
/**
put_env : var:string -> val:string -> void
<doc>Set some environment variable value</doc>
**/
static value put_env( value e, value v ) {
val_check(e,string);
bool is_null = val_is_null(v);
#ifdef NEKO_WINDOWS
buffer b;
if( !is_null )
val_check(v,string);
b = alloc_buffer(NULL);
val_buffer(b,e);
buffer_append_sub(b,"=",1);
if( !is_null )
val_buffer(b,v);
if( putenv(val_string(buffer_to_string(b))) != 0 )
neko_error();
#else
int result;
if( is_null )
result = unsetenv(val_string(e));
else {
val_check(v,string);
result = setenv(val_string(e),val_string(v),1);
}
if( result != 0 )
neko_error();
#endif
return val_true;
}
/**
sys_sleep : number -> void
<doc>Sleep a given number of seconds</doc>
**/
static value sys_sleep( value f ) {
val_check(f,number);
#ifdef NEKO_WINDOWS
Sleep((DWORD)(val_number(f) * 1000));
#else
{
struct timespec t;
struct timespec tmp;
t.tv_sec = (int)val_number(f);
t.tv_nsec = (int)((val_number(f) - t.tv_sec) * 1e9);
while( nanosleep(&t,&tmp) == -1 ) {
if( errno != EINTR )
neko_error();
t = tmp;
}
}
#endif
return val_true;
}
/**
set_time_locale : string -> bool
<doc>Set the locale for LC_TIME, returns true on success</doc>
**/
static value set_time_locale( value l ) {
#ifdef NEKO_POSIX
locale_t lc, old;
val_check(l,string);
lc = newlocale(LC_TIME_MASK,val_string(l),NULL);
if( lc == NULL ) return val_false;
old = uselocale(lc);
if( old == NULL ) {
freelocale(lc);
return val_false;
}
if( old != LC_GLOBAL_LOCALE )
freelocale(old);
return val_true;
#else
val_check(l,string);
return alloc_bool(setlocale(LC_TIME,val_string(l)) != NULL);
#endif
}
/**
get_cwd : void -> string
<doc>Return current working directory</doc>
**/
static value get_cwd() {
char buf[256];
int l;
if( getcwd(buf,256) == NULL )
neko_error();
l = (int)strlen(buf);
if( buf[l-1] != '/' && buf[l-1] != '\\' ) {
buf[l] = '/';
buf[l+1] = 0;
}
return alloc_string(buf);
}
/**
set_cwd : string -> void
<doc>Set current working directory</doc>
**/
static value set_cwd( value d ) {
val_check(d,string);
if( chdir(val_string(d)) )
neko_error();
return val_true;
}
/**
sys_string : void -> string
<doc>
Return the local system string. The current value are possible :
<ul>
<li>[Windows]</li>
<li>[Linux]</li>
<li>[BSD]</li>
<li>[Mac]</li>
</ul>
</doc>
**/
static value sys_string() {
#if defined(NEKO_WINDOWS) || defined(NEKO_CYGWIN)
return alloc_string("Windows");
#elif defined(NEKO_GNUKBSD)
return alloc_string("GNU/kFreeBSD");
#elif defined(NEKO_LINUX)
return alloc_string("Linux");
#elif defined(NEKO_BSD)
return alloc_string("BSD");
#elif defined(NEKO_HURD)
return alloc_string("GNU/Hurd");
#elif defined(NEKO_MAC)
return alloc_string("Mac");
#else
#error Unknow system string
#endif
}
/**
sys_is64 : void -> bool
<doc>
Returns true if we are on a 64-bit system
</doc>
**/
static value sys_is64() {
#ifdef NEKO_64BITS
return val_true;
#else
return val_false;
#endif
}
/**
sys_cpu_arch : void -> string
<doc>
Returns the cpu architecture. Current possible values:
<ul>
<li>[x86_64]</li>
<li>[x86]</li>
<li>[arm64]</li>
<li>[arm]</li>
<li>[riscv64]</li>
<li>[unknown]</li>
</ul>
</doc>
**/
static value sys_cpu_arch() {
#if defined(__x86_64__) || defined(_M_AMD64)
return alloc_string("x86_64");
#elif defined(__i386__) || defined(_M_IX86)
return alloc_string("x86");
#elif defined(__aarch64__) || defined(_M_ARM64)
return alloc_string("arm64");
#elif defined(__arm__) || defined(_M_ARM)
return alloc_string("arm");
#elif (defined(__riscv) && (__riscv_xlen == 64)) || defined(_M_RISCV64)
return alloc_string("riscv64");
#else
#warning Unknown CPU architecture for sys_cpu_arch
return alloc_string("unknown");
#endif
}
/**
sys_command : string -> int
<doc>Run the shell command and return exit code</doc>
**/
static value sys_command( value cmd ) {
val_check(cmd,string);
if( val_strlen(cmd) == 0 )
return alloc_int(-1);
#ifdef NEKO_WINDOWS
return alloc_int( system(val_string(cmd)) );
#else
int status = system(val_string(cmd));
return alloc_int( WEXITSTATUS(status) | (WTERMSIG(status) << 8) );
#endif
}
/**
sys_exit : int -> void
<doc>Exit with the given errorcode. Never returns.</doc>
**/
static value sys_exit( value ecode ) {
val_check(ecode,int);
exit(val_int(ecode));
return val_true;
}
/**
sys_exists : string -> bool
<doc>Returns true if the file or directory exists.</doc>
**/
static value sys_exists( value path ) {
struct stat st;
val_check(path,string);
return alloc_bool(stat(val_string(path),&st) == 0);
}
/**
file_exists : string -> bool
<doc>Deprecated : use sys_exists instead.</doc>
**/
static value file_exists( value path ) {
return sys_exists(path);
}
/**
file_delete : string -> void
<doc>Delete the file. Exception on error.</doc>
**/
static value file_delete( value path ) {
val_check(path,string);
if( unlink(val_string(path)) != 0 )
neko_error();
return val_true;
}
/**
sys_rename : from:string -> to:string -> void
<doc>Rename the file or directory. Exception on error.</doc>
**/
static value sys_rename( value path, value newname ) {
val_check(path,string);
val_check(newname,string);
if( rename(val_string(path),val_string(newname)) != 0 )
neko_error();
return val_true;
}
#define STATF(f) alloc_field(o,val_id(#f),alloc_int(s.st_##f))
#define STATF32(f) alloc_field(o,val_id(#f),alloc_int32((int)s.st_##f))
/**
sys_stat : string -> {
gid => int,
uid => int,
atime => 'int32,
mtime => 'int32,
ctime => 'int32,
dev => int,
ino => int,
nlink => int,
rdev => int,
mode => int,
size => int
}
<doc>Run the [stat] command on the given file or directory.</doc>
**/
static value sys_stat( value path ) {
struct stat s;
value o;
val_check(path,string);
if( stat(val_string(path),&s) != 0 )
neko_error();
o = alloc_object(NULL);
STATF(gid);
STATF(uid);
STATF32(atime);
STATF32(mtime);
STATF32(ctime);
STATF(dev);
STATF(ino);
STATF(mode);
STATF(nlink);
STATF(rdev);
STATF(size);
STATF(mode);
return o;
}
/**
sys_file_type : string -> string
<doc>
Return the type of the file. The current values are possible :
<ul>
<li>[file]</li>
<li>[dir]</li>
<li>[symlink]</li>
<li>[sock]</li>
<li>[char]</li>
<li>[block]</li>
<li>[fifo]</li>
</ul>
</doc>
**/
static value sys_file_type( value path ) {
struct stat s;
val_check(path,string);
if( stat(val_string(path),&s) != 0 )
neko_error();
if( s.st_mode & S_IFREG )
return alloc_string("file");
if( s.st_mode & S_IFDIR )
return alloc_string("dir");
if( s.st_mode & S_IFCHR )
return alloc_string("char");
#ifndef NEKO_WINDOWS
if( s.st_mode & S_IFLNK )
return alloc_string("symlink");
if( s.st_mode & S_IFBLK )
return alloc_string("block");
if( s.st_mode & S_IFIFO )
return alloc_string("fifo");
if( s.st_mode & S_IFSOCK )
return alloc_string("sock");
#endif
neko_error();
}
/**
sys_create_dir : string -> mode:int -> void
<doc>Create a directory with the specified rights</doc>
**/
static value sys_create_dir( value path, value mode ) {
val_check(path,string);
val_check(mode,int);
#ifdef NEKO_WINDOWS
if( mkdir(val_string(path)) != 0 )
#else
if( mkdir(val_string(path),val_int(mode)) != 0 )
#endif
neko_error();
return val_true;
}
/**
sys_remove_dir : string -> void
<doc>Remove a directory. Exception on error</doc>
**/
static value sys_remove_dir( value path ) {
val_check(path,string);
if( rmdir(val_string(path)) != 0 )
neko_error();
return val_true;
}
/**
sys_time : void -> float
<doc>Return an accurate local time stamp in seconds since Jan 1 1970</doc>
**/
static value sys_time() {
#ifdef NEKO_WINDOWS
#define EPOCH_DIFF (134774*24*60*60.0)
SYSTEMTIME t;
FILETIME ft;
ULARGE_INTEGER ui;
GetSystemTime(&t);
if( !SystemTimeToFileTime(&t,&ft) )
neko_error();
ui.LowPart = ft.dwLowDateTime;
ui.HighPart = ft.dwHighDateTime;
return alloc_float( ((tfloat)ui.QuadPart) / 10000000.0 - EPOCH_DIFF );
#else
struct timeval tv;
if( gettimeofday(&tv,NULL) != 0 )
neko_error();
return alloc_float( tv.tv_sec + ((tfloat)tv.tv_usec) / 1000000.0 );
#endif
}
/**
sys_cpu_time : void -> float
<doc>Return the most accurate CPU time spent since the process started (in seconds)</doc>
**/
static value sys_cpu_time() {
#ifdef NEKO_WINDOWS
FILETIME unused;
FILETIME stime;
FILETIME utime;
if( !GetProcessTimes(GetCurrentProcess(),&unused,&unused,&stime,&utime) )
neko_error();
return alloc_float( ((tfloat)(utime.dwHighDateTime+stime.dwHighDateTime)) * 65.536 * 6.5536 + (((tfloat)utime.dwLowDateTime + (tfloat)stime.dwLowDateTime) / 10000000) );
#else
struct tms t;
times(&t);
return alloc_float( ((tfloat)(t.tms_utime + t.tms_stime)) / CLK_TCK );
#endif
}
/**
sys_thread_cpu_time : void -> float
<doc>Return the most accurate CPU time spent in user mode in the current thread (in seconds)</doc>
**/
static value sys_thread_cpu_time() {
#if defined(NEKO_WINDOWS)
FILETIME unused;
FILETIME utime;
if( !GetThreadTimes(GetCurrentThread(),&unused,&unused,&unused,&utime) )
neko_error();
return alloc_float( ((tfloat)utime.dwHighDateTime) * 65.536 * 6.5536 + (((tfloat)utime.dwLowDateTime) / 10000000) );
#elif defined(NEKO_MAC)
val_throw(alloc_string("sys_thread_cpu_time not implmented on OSX"));
return val_null;
#else
struct timespec t;
if( clock_gettime(CLOCK_THREAD_CPUTIME_ID,&t) )
neko_error();
return alloc_float( t.tv_sec + t.tv_nsec * 1e-9 );
#endif
}
/**
sys_read_dir : string -> string list
<doc>Return the content of a directory</doc>
**/
static value sys_read_dir( value path ) {
value h = val_null;
value cur = NULL, tmp;
#ifdef NEKO_WINDOWS
WIN32_FIND_DATA d;
HANDLE handle;
buffer b;
int len;
val_check(path,string);
len = val_strlen(path);
b = alloc_buffer(NULL);
val_buffer(b,path);
if( len && val_string(path)[len-1] != '/' && val_string(path)[len-1] != '\\' )
buffer_append(b,"/*.*");
else
buffer_append(b,"*.*");
path = buffer_to_string(b);
handle = FindFirstFile(val_string(path),&d);
if( handle == INVALID_HANDLE_VALUE )
neko_error();
while( true ) {
// skip magic dirs
if( d.cFileName[0] != '.' || (d.cFileName[1] != 0 && (d.cFileName[1] != '.' || d.cFileName[2] != 0)) ) {
tmp = alloc_array(2);
val_array_ptr(tmp)[0] = alloc_string(d.cFileName);
val_array_ptr(tmp)[1] = val_null;
if( cur )
val_array_ptr(cur)[1] = tmp;
else
h = tmp;
cur = tmp;
}
if( !FindNextFile(handle,&d) )
break;
}
FindClose(handle);
#else
DIR *d;
struct dirent *e;
val_check(path,string);
d = opendir(val_string(path));
if( d == NULL )
neko_error();
while( true ) {
e = readdir(d);
if( e == NULL )
break;
// skip magic dirs
if( e->d_name[0] == '.' && (e->d_name[1] == 0 || (e->d_name[1] == '.' && e->d_name[2] == 0)) )
continue;
tmp = alloc_array(2);
val_array_ptr(tmp)[0] = alloc_string(e->d_name);
val_array_ptr(tmp)[1] = val_null;
if( cur )
val_array_ptr(cur)[1] = tmp;
else
h = tmp;
cur = tmp;
}
closedir(d);
#endif
return h;
}
/**
file_full_path : string -> string
<doc>Return an absolute path from a relative one. The file or directory must exists</doc>
**/
static value file_full_path( value path ) {
#ifdef NEKO_WINDOWS
char buf[MAX_PATH+1];
val_check(path,string);
if( GetFullPathName(val_string(path),MAX_PATH+1,buf,NULL) == 0 )
neko_error();
return alloc_string(buf);
#elif defined(__GLIBC__)
val_check(path,string);
char *buf = realpath(val_string(path), NULL);
if( buf == NULL )
neko_error();
value ret = alloc_string(buf);
free(buf);
return ret;
#else
char buf[PATH_MAX];
val_check(path,string);
if( realpath(val_string(path),buf) == NULL )
neko_error();
return alloc_string(buf);
#endif
}
/**
sys_exe_path : void -> string
<doc>Return the path of the executable</doc>
**/
static value sys_exe_path() {
#if defined(NEKO_WINDOWS)
char path[MAX_PATH];
if( GetModuleFileName(NULL,path,MAX_PATH) == 0 )
neko_error();
return alloc_string(path);
#elif defined(NEKO_MAC)
char path[PATH_MAX+1];
uint32_t path_len = PATH_MAX;
if( _NSGetExecutablePath(path, &path_len) )
neko_error();
return alloc_string(path);
#elif defined(NEKO_LINUX)
static char path[PATH_MAX];
int length = readlink("/proc/self/exe", path, sizeof(path));
if( length < 0 || length >= PATH_MAX ) {
char *p = getenv(" "); // for upx
if( p == NULL )
p = getenv("_");
if( p == NULL )
neko_error();
return alloc_string(p);
}
path[length] = '\0';
return alloc_string(path);
#else
const char *p = getenv("_");
if( p != NULL )
return alloc_string(p);
neko_error();
#endif
}
#ifdef NEKO_MAC
# define environ (*_NSGetEnviron())
#endif
#ifndef NEKO_WINDOWS
extern char **environ;
#endif
/**
sys_env : void -> #list
<doc>Return all the (key,value) pairs in the environment as a chained list</doc>
**/
static value sys_env() {
value h = val_null;
value cur = NULL, tmp, key;
char **e = environ;
while( *e ) {
char *x = strchr(*e,'=');
if( x == NULL ) {
e++;
continue;
}
tmp = alloc_array(3);
key = alloc_empty_string((int)(x - *e));
memcpy(val_string(key),*e,(int)(x - *e));
val_array_ptr(tmp)[0] = key;
val_array_ptr(tmp)[1] = alloc_string(x+1);
val_array_ptr(tmp)[2] = val_null;
if( cur )
val_array_ptr(cur)[2] = tmp;
else
h = tmp;
cur = tmp;
e++;
}
return h;
}
/**
sys_getch : bool -> int
<doc>Read a character from stdin with or without echo</doc>
**/
static value sys_getch( value b ) {
# ifdef NEKO_WINDOWS
val_check(b,bool);
return alloc_int( val_bool(b)?getche():getch() );
# else
// took some time to figure out how to do that
// without relying on ncurses, which clear the
// terminal on initscr()
int c;
struct termios term, old;
val_check(b,bool);
tcgetattr(fileno(stdin), &old);
term = old;
cfmakeraw(&term);
tcsetattr(fileno(stdin), 0, &term);
c = getchar();
tcsetattr(fileno(stdin), 0, &old);
if( val_bool(b) ) fputc(c,stdout);
return alloc_int(c);
# endif
}
/**
sys_get_pid : void -> int
<doc>Returns the current process identifier</doc>
**/
static value sys_get_pid() {
# ifdef NEKO_WINDOWS
return alloc_int(GetCurrentProcessId());
# else
return alloc_int(getpid());
# endif
}
/**
win_env_changed : void -> void
<doc>Tell that the windows envionment variables were changed in the registry</doc>
**/
static value win_env_changed() {
# ifdef NEKO_WINDOWS
DWORD unused;
SendMessageTimeout(HWND_BROADCAST,WM_SETTINGCHANGE, 0, (LPARAM)"Environment", SMTO_ABORTIFHUNG, 5000, &unused );
# endif
return val_null;
}
DEFINE_PRIM(get_env,1);
DEFINE_PRIM(put_env,2);
DEFINE_PRIM(set_time_locale,1);
DEFINE_PRIM(get_cwd,0);
DEFINE_PRIM(set_cwd,1);
DEFINE_PRIM(sys_sleep,1);
DEFINE_PRIM(sys_command,1);
DEFINE_PRIM(sys_exit,1);
DEFINE_PRIM(sys_string,0);
DEFINE_PRIM(sys_is64,0);
DEFINE_PRIM(sys_cpu_arch,0);
DEFINE_PRIM(sys_stat,1);
DEFINE_PRIM(sys_time,0);
DEFINE_PRIM(sys_cpu_time,0);
DEFINE_PRIM(sys_env,0);
DEFINE_PRIM(sys_create_dir,2);
DEFINE_PRIM(sys_remove_dir,1);
DEFINE_PRIM(sys_read_dir,1);
DEFINE_PRIM(file_full_path,1);
DEFINE_PRIM(file_exists,1);
DEFINE_PRIM(sys_exists,1);
DEFINE_PRIM(file_delete,1);
DEFINE_PRIM(sys_rename,2);
DEFINE_PRIM(sys_exe_path,0);
DEFINE_PRIM(sys_file_type,1);
DEFINE_PRIM(sys_getch,1);
DEFINE_PRIM(sys_get_pid,0);
DEFINE_PRIM(sys_thread_cpu_time,0);
DEFINE_PRIM(win_env_changed,0);
/* ************************************************************************ */
|