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 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
|
/* Generated by Nim Compiler v2.2.0 */
#define NIM_INTBITS 32
#include "nimbase.h"
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <dirent.h>
#include <time.h>
#include <unistd.h>
#undef LANGUAGE_C
#undef MIPSEB
#undef MIPSEL
#undef PPC
#undef R3000
#undef R4000
#undef i386
#undef linux
#undef mips
#undef near
#undef far
#undef powerpc
#undef unix
typedef struct NimStrPayload NimStrPayload;
typedef struct NimStringV2 NimStringV2;
typedef struct tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q;
typedef struct tyObject_CatchableError__TCF9b1Y9b2ct0xPZvZnaY7gg tyObject_CatchableError__TCF9b1Y9b2ct0xPZvZnaY7gg;
typedef struct Exception Exception;
typedef struct RootObj RootObj;
typedef struct TNimTypeV2 TNimTypeV2;
typedef struct tySequence__S89cE01OvNjsN9c71FKsSrqQ tySequence__S89cE01OvNjsN9c71FKsSrqQ;
typedef struct tySequence__S89cE01OvNjsN9c71FKsSrqQ_Content tySequence__S89cE01OvNjsN9c71FKsSrqQ_Content;
typedef struct tyTuple__9cCtUq5i0enQQmapg7J4F7g tyTuple__9cCtUq5i0enQQmapg7J4F7g;
typedef struct tyTuple__UV3llMMYFckfui8YMBuUZA tyTuple__UV3llMMYFckfui8YMBuUZA;
typedef struct tyObject_StackTraceEntry__RcJz5RXFIYjIseutvVFICA tyObject_StackTraceEntry__RcJz5RXFIYjIseutvVFICA;
struct NimStrPayload {
NI cap;
NIM_CHAR data[SEQ_DECL_SIZE];
};
struct NimStringV2 {
NI len;
NimStrPayload* p;
};
struct TNimTypeV2 {
void* destructor;
NI size;
NI16 align;
NI16 depth;
NU32* display;
void* traceImpl;
void* typeInfoV1;
NI flags;
void* vTable[SEQ_DECL_SIZE];
};
struct RootObj {
TNimTypeV2* m_type;
};
struct tySequence__S89cE01OvNjsN9c71FKsSrqQ {
NI len; tySequence__S89cE01OvNjsN9c71FKsSrqQ_Content* p;
};
struct Exception {
RootObj Sup;
Exception* parent;
NCSTRING name;
NimStringV2 message;
tySequence__S89cE01OvNjsN9c71FKsSrqQ trace;
Exception* up;
};
struct tyObject_CatchableError__TCF9b1Y9b2ct0xPZvZnaY7gg {
Exception Sup;
};
struct tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q {
tyObject_CatchableError__TCF9b1Y9b2ct0xPZvZnaY7gg Sup;
};
typedef NU8 tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ;
typedef NIM_CHAR tyArray__dTlC27m9c9aWd5dvuePYanug[256];
struct tyTuple__9cCtUq5i0enQQmapg7J4F7g {
tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ Field0;
NIM_BOOL Field1;
};
struct tyTuple__UV3llMMYFckfui8YMBuUZA {
NimStringV2 Field0;
NimStringV2 Field1;
};
typedef NU8 tySet_tyEnum_CopyFlag__1j5oUmplkZXgil3SrVhR7g;
struct tyObject_StackTraceEntry__RcJz5RXFIYjIseutvVFICA {
NCSTRING procname;
NI line;
NCSTRING filename;
};
struct tySequence__S89cE01OvNjsN9c71FKsSrqQ_Content { NI cap; tyObject_StackTraceEntry__RcJz5RXFIYjIseutvVFICA data[SEQ_DECL_SIZE]; };
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, nosisAbsolute)(NimStringV2 path_p0);
N_LIB_PRIVATE N_NIMCALL(void, eqcopy___system_u2600)(NimStringV2* dest_p0, NimStringV2 src_p1);
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, nosexistsOrCreateDir)(NimStringV2 dir_p0);
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, rawCreateDir__stdZprivateZosdirs_u467)(NimStringV2 dir_p0);
static N_INLINE(NCSTRING, nimToCStringConv)(NimStringV2 s_p0);
N_LIB_PRIVATE N_NOINLINE(void, raiseOSError__stdZoserrors_u119)(NI32 errorCode_p0, NimStringV2 additionalInfo_p1);
N_LIB_PRIVATE N_NIMCALL(NI32, osLastError__stdZoserrors_u122)(void);
static N_INLINE(NIM_BOOL*, nimErrorFlag)(void);
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, nosdirExists)(NimStringV2 dir_p0);
N_LIB_PRIVATE N_NIMCALL(void*, nimNewObj)(NI size_p0, NI alignment_p1);
static N_INLINE(void, appendString)(NimStringV2* dest_p0, NimStringV2 src_p1);
static N_INLINE(void, copyMem__system_u1713)(void* dest_p0, void* source_p1, NI size_p2);
static N_INLINE(void, nimCopyMem)(void* dest_p0, void* source_p1, NI size_p2);
N_LIB_PRIVATE N_NIMCALL(NimStringV2, rawNewString)(NI space_p0);
N_LIB_PRIVATE N_NIMCALL(void, raiseExceptionEx)(Exception* e_p0, NCSTRING ename_p1, NCSTRING procname_p2, NCSTRING filename_p3, NI line_p4);
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, nosisRootDir)(NimStringV2 path_p0);
N_LIB_PRIVATE N_NIMCALL(void, eqsink___system_u2606)(NimStringV2* dest_p0, NimStringV2 src_p1);
N_LIB_PRIVATE N_NIMCALL(NimStringV2, nosparentDir)(NimStringV2 path_p0);
N_LIB_PRIVATE N_NIMCALL(void, eqdestroy___system_u2597)(NimStringV2 dest_p0);
N_LIB_PRIVATE N_NIMCALL(NimStringV2, substr__system_u8347)(NimStringV2 s_p0, NI first_p1, NI last_p2);
N_LIB_PRIVATE N_NIMCALL(NimStringV2, cstrToNimstr)(NCSTRING str_p0);
static N_INLINE(NIM_BOOL, eqStrings)(NimStringV2 a_p0, NimStringV2 b_p1);
static N_INLINE(NIM_BOOL, equalMem__system_u1721)(void* a_p0, void* b_p1, NI size_p2);
static N_INLINE(int, nimCmpMem)(void* a_p0, void* b_p1, NI size_p2);
static N_INLINE(void, nimZeroMem)(void* p_p0, NI size_p1);
static N_INLINE(void, nimSetMem__systemZmemory_u7)(void* a_p0, int v_p1, NI size_p2);
static N_INLINE(NimStringV2, slash___stdZprivateZospaths2_u91)(NimStringV2 head_p0, NimStringV2 tail_p1);
N_LIB_PRIVATE N_NIMCALL(NimStringV2, nosjoinPath)(NimStringV2 head_p0, NimStringV2 tail_p1);
N_LIB_PRIVATE N_NIMCALL(tyTuple__9cCtUq5i0enQQmapg7J4F7g, getSymlinkFileKind__stdZprivateZoscommon_u26)(NimStringV2 path_p0);
N_LIB_PRIVATE N_NIMCALL(void, eqwasMoved___system_u2594)(NimStringV2* dest_p0);
N_LIB_PRIVATE N_NIMCALL(void, nosremoveFile)(NimStringV2 file_p0);
N_LIB_PRIVATE N_NIMCALL(void, nosremoveDir)(NimStringV2 dir_p0, NIM_BOOL checkDir_p1);
N_LIB_PRIVATE N_NIMCALL(void, rawRemoveDir__stdZprivateZosdirs_u460)(NimStringV2 dir_p0);
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, tryMoveFSObject__stdZprivateZoscommon_u93)(NimStringV2 source_p0, NimStringV2 dest_p1, NIM_BOOL isDir_p2);
N_LIB_PRIVATE N_NIMCALL(void, noscopyDir)(NimStringV2 source_p0, NimStringV2 dest_p1, NIM_BOOL skipSpecial_p2);
N_LIB_PRIVATE N_NIMCALL(void, noscreateDir)(NimStringV2 dir_p0);
N_LIB_PRIVATE N_NIMCALL(void, eqdestroy___stdZprivateZospaths2_u306)(tyTuple__UV3llMMYFckfui8YMBuUZA dest_p0);
N_LIB_PRIVATE N_NIMCALL(tyTuple__UV3llMMYFckfui8YMBuUZA, nossplitPath)(NimStringV2 path_p0);
N_LIB_PRIVATE N_NIMCALL(void, noscopyFile)(NimStringV2 source_p0, NimStringV2 dest_p1, tySet_tyEnum_CopyFlag__1j5oUmplkZXgil3SrVhR7g options_p2, NI bufferSize_p3);
extern TNimTypeV2 NTIv2__vBePDvr8fj01uTfaJy9aD3Q_;
static const struct {
NI cap; NIM_CHAR data[18+1];
} TM__UhMx4BhJKblm8VrPrbmAGA_2 = { 18 | NIM_STRLIT_FLAG, "Failed to create \'" };
static const NimStringV2 TM__UhMx4BhJKblm8VrPrbmAGA_3 = {18, (NimStrPayload*)&TM__UhMx4BhJKblm8VrPrbmAGA_2};
static const struct {
NI cap; NIM_CHAR data[1+1];
} TM__UhMx4BhJKblm8VrPrbmAGA_4 = { 1 | NIM_STRLIT_FLAG, "\'" };
static const NimStringV2 TM__UhMx4BhJKblm8VrPrbmAGA_5 = {1, (NimStrPayload*)&TM__UhMx4BhJKblm8VrPrbmAGA_4};
static const struct {
NI cap; NIM_CHAR data[1+1];
} TM__UhMx4BhJKblm8VrPrbmAGA_6 = { 1 | NIM_STRLIT_FLAG, "." };
static const NimStringV2 TM__UhMx4BhJKblm8VrPrbmAGA_7 = {1, (NimStrPayload*)&TM__UhMx4BhJKblm8VrPrbmAGA_6};
static const struct {
NI cap; NIM_CHAR data[2+1];
} TM__UhMx4BhJKblm8VrPrbmAGA_8 = { 2 | NIM_STRLIT_FLAG, ".." };
static const NimStringV2 TM__UhMx4BhJKblm8VrPrbmAGA_9 = {2, (NimStrPayload*)&TM__UhMx4BhJKblm8VrPrbmAGA_8};
static const NimStringV2 TM__UhMx4BhJKblm8VrPrbmAGA_10 = {1, (NimStrPayload*)&TM__UhMx4BhJKblm8VrPrbmAGA_6};
static const NimStringV2 TM__UhMx4BhJKblm8VrPrbmAGA_11 = {2, (NimStrPayload*)&TM__UhMx4BhJKblm8VrPrbmAGA_8};
extern NIM_BOOL nimInErrorMode__system_u4272;
static N_INLINE(NCSTRING, nimToCStringConv)(NimStringV2 s_p0) {
NCSTRING result;
{
if (!(s_p0.len == ((NI)0))) goto LA3_;
result = "";
}
goto LA1_;
LA3_: ;
{
result = ((NCSTRING) ((*s_p0.p).data));
}
LA1_: ;
return result;
}
static N_INLINE(NIM_BOOL*, nimErrorFlag)(void) {
NIM_BOOL* result;
result = (&nimInErrorMode__system_u4272);
return result;
}
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, rawCreateDir__stdZprivateZosdirs_u467)(NimStringV2 dir_p0) {
NIM_BOOL result;
int res;
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
result = (NIM_BOOL)0;
res = mkdir(nimToCStringConv(dir_p0), ((mode_t)511));
{
if (!(res == ((NI32)0))) goto LA3_;
result = NIM_TRUE;
}
goto LA1_;
LA3_: ;
{
if (!(errno == EEXIST)) goto LA6_;
result = NIM_FALSE;
}
goto LA1_;
LA6_: ;
{
NI32 T9_;
T9_ = (NI32)0;
T9_ = osLastError__stdZoserrors_u122();
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
raiseOSError__stdZoserrors_u119(T9_, dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}
LA1_: ;
}BeforeRet_: ;
return result;
}
static N_INLINE(void, nimCopyMem)(void* dest_p0, void* source_p1, NI size_p2) {
void* T1_;
T1_ = (void*)0;
T1_ = memcpy(dest_p0, source_p1, ((size_t) (size_p2)));
}
static N_INLINE(void, copyMem__system_u1713)(void* dest_p0, void* source_p1, NI size_p2) {
nimCopyMem(dest_p0, source_p1, size_p2);
}
static N_INLINE(void, appendString)(NimStringV2* dest_p0, NimStringV2 src_p1) {
{
if (!(((NI)0) < src_p1.len)) goto LA3_;
copyMem__system_u1713(((void*) ((&(*(*dest_p0).p).data[(*dest_p0).len]))), ((void*) ((&(*src_p1.p).data[((NI)0)]))), ((NI)(src_p1.len + ((NI)1))));
(*dest_p0).len += src_p1.len;
}
LA3_: ;
}
N_LIB_PRIVATE N_NIMCALL(NIM_BOOL, nosexistsOrCreateDir)(NimStringV2 dir_p0) {
NIM_BOOL result;
NIM_BOOL T1_;
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
result = (NIM_BOOL)0;
T1_ = (NIM_BOOL)0;
T1_ = rawCreateDir__stdZprivateZosdirs_u467(dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
result = !(T1_);
{
if (!result) goto LA4_;
{
NIM_BOOL T8_;
tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q* T11_;
NimStringV2 T12_;
T8_ = (NIM_BOOL)0;
T8_ = nosdirExists(dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
if (!!(T8_)) goto LA9_;
T11_ = NIM_NIL;
T11_ = (tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q*) nimNewObj(sizeof(tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q), NIM_ALIGNOF(tyObject_IOError__vBePDvr8fj01uTfaJy9aD3Q));
(*T11_).Sup.Sup.Sup.m_type = (&NTIv2__vBePDvr8fj01uTfaJy9aD3Q_);
(*T11_).Sup.Sup.name = "IOError";
T12_.len = 0; T12_.p = NIM_NIL;
T12_ = rawNewString(dir_p0.len + 19);
appendString((&T12_), TM__UhMx4BhJKblm8VrPrbmAGA_3);
appendString((&T12_), dir_p0);
appendString((&T12_), TM__UhMx4BhJKblm8VrPrbmAGA_5);
(*T11_).Sup.Sup.message = T12_;
(*T11_).Sup.Sup.parent = ((Exception*) NIM_NIL);
raiseExceptionEx((Exception*)T11_, "IOError", "existsOrCreateDir", "osdirs.nim", 422);
goto BeforeRet_;
}
LA9_: ;
}
LA4_: ;
}BeforeRet_: ;
return result;
}
N_LIB_PRIVATE N_NIMCALL(void, noscreateDir)(NimStringV2 dir_p0) {
NIM_BOOL omitNext;
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
{
if (!(dir_p0.len == 0)) goto LA3_;
goto BeforeRet_;
}
LA3_: ;
omitNext = nosisAbsolute(dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
{
NimStringV2 p;
p.len = 0; p.p = NIM_NIL;
{
NimStringV2 current;
if (!NIM_FALSE) goto LA9_;
current.len = 0; current.p = NIM_NIL;
eqcopy___system_u2600((¤t), dir_p0);
{
if (!NIM_TRUE) goto LA14_;
eqcopy___system_u2600((&p), dir_p0);
{
if (!omitNext) goto LA18_;
omitNext = NIM_FALSE;
}
goto LA16_;
LA18_: ;
{
NIM_BOOL T21_;
T21_ = (NIM_BOOL)0;
T21_ = nosexistsOrCreateDir(p);
if (NIM_UNLIKELY(*nimErr_)) goto LA11_;
(void)(T21_);
}
LA16_: ;
}
LA14_: ;
{
while (1) {
NimStringV2 T29_;
{
NIM_BOOL T26_;
T26_ = (NIM_BOOL)0;
T26_ = nosisRootDir(current);
if (NIM_UNLIKELY(*nimErr_)) goto LA11_;
if (!T26_) goto LA27_;
goto LA22;
}
LA27_: ;
T29_.len = 0; T29_.p = NIM_NIL;
T29_ = nosparentDir(current);
if (NIM_UNLIKELY(*nimErr_)) {eqdestroy___system_u2597(T29_); goto LA11_;}
eqsink___system_u2606((¤t), T29_);
eqcopy___system_u2600((&p), current);
{
if (!omitNext) goto LA32_;
omitNext = NIM_FALSE;
}
goto LA30_;
LA32_: ;
{
NIM_BOOL T35_;
T35_ = (NIM_BOOL)0;
T35_ = nosexistsOrCreateDir(p);
if (NIM_UNLIKELY(*nimErr_)) goto LA11_;
(void)(T35_);
}
LA30_: ;
}
} LA22: ;
{
LA11_:;
}
{
eqdestroy___system_u2597(current);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA6_;
}
goto LA7_;
LA9_: ;
{
{
NI i;
NI colontmp_;
NI res;
i = (NI)0;
colontmp_ = (NI)0;
colontmp_ = (NI)(dir_p0.len - ((NI)2));
res = ((NI)0);
{
while (1) {
if (!(res <= colontmp_)) goto LA41;
i = ((NI) (res));
{
NIM_BOOL T44_;
NIM_BOOL T46_;
NimStringV2 T50_;
T44_ = (NIM_BOOL)0;
T44_ = (((NU8)(dir_p0.p->data[i])) == ((NU8)(47)) || ((NU8)(dir_p0.p->data[i])) == ((NU8)(47)));
if (!(T44_)) goto LA45_;
T46_ = (NIM_BOOL)0;
T46_ = (i == ((NI)0));
if (T46_) goto LA47_;
T46_ = !((((NU8)(dir_p0.p->data[(NI)(i - ((NI)1))])) == ((NU8)(47)) || ((NU8)(dir_p0.p->data[(NI)(i - ((NI)1))])) == ((NU8)(47))));
LA47_: ;
T44_ = T46_;
LA45_: ;
if (!T44_) goto LA48_;
T50_.len = 0; T50_.p = NIM_NIL;
T50_ = substr__system_u8347(dir_p0, ((NI)0), i);
eqsink___system_u2606((&p), T50_);
{
if (!omitNext) goto LA53_;
omitNext = NIM_FALSE;
}
goto LA51_;
LA53_: ;
{
NIM_BOOL T56_;
T56_ = (NIM_BOOL)0;
T56_ = nosexistsOrCreateDir(p);
if (NIM_UNLIKELY(*nimErr_)) goto LA6_;
(void)(T56_);
}
LA51_: ;
}
LA48_: ;
res += ((NI)1);
} LA41: ;
}
}
{
if (!NIM_TRUE) goto LA59_;
eqcopy___system_u2600((&p), dir_p0);
{
if (!omitNext) goto LA63_;
omitNext = NIM_FALSE;
}
goto LA61_;
LA63_: ;
{
NIM_BOOL T66_;
T66_ = (NIM_BOOL)0;
T66_ = nosexistsOrCreateDir(p);
if (NIM_UNLIKELY(*nimErr_)) goto LA6_;
(void)(T66_);
}
LA61_: ;
}
LA59_: ;
}
LA7_: ;
{
LA6_:;
}
{
eqdestroy___system_u2597(p);
}
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}
}BeforeRet_: ;
}
static N_INLINE(int, nimCmpMem)(void* a_p0, void* b_p1, NI size_p2) {
int result;
result = memcmp(a_p0, b_p1, ((size_t) (size_p2)));
return result;
}
static N_INLINE(NIM_BOOL, equalMem__system_u1721)(void* a_p0, void* b_p1, NI size_p2) {
NIM_BOOL result;
int T1_;
T1_ = (int)0;
T1_ = nimCmpMem(a_p0, b_p1, size_p2);
result = (T1_ == ((NI32)0));
return result;
}
static N_INLINE(NIM_BOOL, eqStrings)(NimStringV2 a_p0, NimStringV2 b_p1) {
NIM_BOOL result;
NI alen;
NI blen;
{ result = (NIM_BOOL)0;
alen = a_p0.len;
blen = b_p1.len;
{
if (!(alen == blen)) goto LA3_;
{
if (!(alen == ((NI)0))) goto LA7_;
result = NIM_TRUE;
goto BeforeRet_;
}
LA7_: ;
result = equalMem__system_u1721(((void*) ((&a_p0.p->data[((NI)0)]))), ((void*) ((&b_p1.p->data[((NI)0)]))), (alen));
goto BeforeRet_;
}
LA3_: ;
}BeforeRet_: ;
return result;
}
static N_INLINE(void, nimSetMem__systemZmemory_u7)(void* a_p0, int v_p1, NI size_p2) {
void* T1_;
T1_ = (void*)0;
T1_ = memset(a_p0, v_p1, ((size_t) (size_p2)));
}
static N_INLINE(void, nimZeroMem)(void* p_p0, NI size_p1) {
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
nimSetMem__systemZmemory_u7(p_p0, ((int)0), size_p1);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}BeforeRet_: ;
}
static N_INLINE(NimStringV2, slash___stdZprivateZospaths2_u91)(NimStringV2 head_p0, NimStringV2 tail_p1) {
NimStringV2 result;
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
result.len = 0; result.p = NIM_NIL;
result = nosjoinPath(head_p0, tail_p1);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}BeforeRet_: ;
return result;
}
N_LIB_PRIVATE N_NIMCALL(void, rawRemoveDir__stdZprivateZosdirs_u460)(NimStringV2 dir_p0) {
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
{
NIM_BOOL T3_;
int T4_;
NI32 T8_;
T3_ = (NIM_BOOL)0;
T4_ = (int)0;
T4_ = rmdir(nimToCStringConv(dir_p0));
T3_ = !((T4_ == ((NI32)0)));
if (!(T3_)) goto LA5_;
T3_ = !((errno == ENOENT));
LA5_: ;
if (!T3_) goto LA6_;
T8_ = (NI32)0;
T8_ = osLastError__stdZoserrors_u122();
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
raiseOSError__stdZoserrors_u119(T8_, dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}
LA6_: ;
}BeforeRet_: ;
}
N_LIB_PRIVATE N_NIMCALL(void, nosremoveDir)(NimStringV2 dir_p0, NIM_BOOL checkDir_p1) {
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
{
NimStringV2 path;
tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ kind;
DIR* d;
path.len = 0; path.p = NIM_NIL;
kind = (tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)0;
d = opendir(nimToCStringConv(dir_p0));
{
if (!(d == ((DIR*) NIM_NIL))) goto LA5_;
{
NI32 T11_;
if (!checkDir_p1) goto LA9_;
T11_ = (NI32)0;
T11_ = osLastError__stdZoserrors_u122();
if (NIM_UNLIKELY(*nimErr_)) goto LA2_;
raiseOSError__stdZoserrors_u119(T11_, dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto LA2_;
}
LA9_: ;
}
goto LA3_;
LA5_: ;
{
{
while (1) {
{
NimStringV2 y;
struct dirent* x;
y.len = 0; y.p = NIM_NIL;
x = readdir(d);
{
if (!(x == ((struct dirent*) NIM_NIL))) goto LA20_;
eqdestroy___system_u2597(y);
goto LA14;
}
LA20_: ;
y = cstrToNimstr(((NCSTRING) ((*x).d_name)));
{
NIM_BOOL T24_;
NimStringV2 path_2;
struct stat s;
tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ k;
T24_ = (NIM_BOOL)0;
T24_ = !(eqStrings(y, TM__UhMx4BhJKblm8VrPrbmAGA_7));
if (!(T24_)) goto LA25_;
T24_ = !(eqStrings(y, TM__UhMx4BhJKblm8VrPrbmAGA_9));
LA25_: ;
if (!T24_) goto LA26_;
path_2.len = 0; path_2.p = NIM_NIL;
nimZeroMem((void*)(&s), sizeof(struct stat));
path_2 = slash___stdZprivateZospaths2_u91(dir_p0, y);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
{
if (!NIM_TRUE) goto LA31_;
eqcopy___system_u2600((&y), path_2);
}
LA31_: ;
k = ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)0);
switch ((*x).d_type) {
case ((NI8)4):
{
k = ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)2);
}
break;
case ((NI8)10):
{
NIM_BOOL isSpecialX60gensym19_;
tyTuple__9cCtUq5i0enQQmapg7J4F7g tmpTupleAsgn;
isSpecialX60gensym19_ = (NIM_BOOL)0;
tmpTupleAsgn = getSymlinkFileKind__stdZprivateZoscommon_u26(path_2);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
k = tmpTupleAsgn.Field0;
isSpecialX60gensym19_ = tmpTupleAsgn.Field1;
{
NIM_BOOL T37_;
T37_ = (NIM_BOOL)0;
T37_ = NIM_FALSE;
if (!(T37_)) goto LA38_;
T37_ = isSpecialX60gensym19_;
LA38_: ;
if (!T37_) goto LA39_;
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
LA39_: ;
}
break;
case ((NI8)0):
{
{
int T44_;
T44_ = (int)0;
T44_ = lstat(nimToCStringConv(path_2), (&s));
if (!(T44_ < ((NI32)0))) goto LA45_;
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
goto LA42_;
LA45_: ;
{
NIM_BOOL T48_;
T48_ = (NIM_BOOL)0;
T48_ = S_ISDIR(s.st_mode);
if (!T48_) goto LA49_;
k = ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)2);
}
goto LA42_;
LA49_: ;
{
NIM_BOOL T52_;
NIM_BOOL isSpecialX60gensym21_;
tyTuple__9cCtUq5i0enQQmapg7J4F7g tmpTupleAsgn_2;
T52_ = (NIM_BOOL)0;
T52_ = S_ISLNK(s.st_mode);
if (!T52_) goto LA53_;
isSpecialX60gensym21_ = (NIM_BOOL)0;
tmpTupleAsgn_2 = getSymlinkFileKind__stdZprivateZoscommon_u26(path_2);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
k = tmpTupleAsgn_2.Field0;
isSpecialX60gensym21_ = tmpTupleAsgn_2.Field1;
{
NIM_BOOL T57_;
T57_ = (NIM_BOOL)0;
T57_ = NIM_FALSE;
if (!(T57_)) goto LA58_;
T57_ = isSpecialX60gensym21_;
LA58_: ;
if (!T57_) goto LA59_;
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
LA59_: ;
}
goto LA42_;
LA53_: ;
{
NIM_BOOL T62_;
NIM_BOOL T64_;
T62_ = (NIM_BOOL)0;
T62_ = NIM_FALSE;
if (!(T62_)) goto LA63_;
T64_ = (NIM_BOOL)0;
T64_ = S_ISREG(s.st_mode);
T62_ = !(T64_);
LA63_: ;
if (!T62_) goto LA65_;
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
goto LA42_;
LA65_: ;
LA42_: ;
}
break;
default:
{
{
NIM_BOOL T70_;
T70_ = (NIM_BOOL)0;
T70_ = NIM_FALSE;
if (!(T70_)) goto LA71_;
T70_ = !(((*x).d_type == ((NI8)8)));
LA71_: ;
if (!T70_) goto LA72_;
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
goto LA68_;
LA72_: ;
{
}
LA68_: ;
}
break;
}
kind = k;
eqsink___system_u2606((&path), y);
eqwasMoved___system_u2594((&y));
switch (kind) {
case ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)0):
case ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)1):
case ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)3):
{
nosremoveFile(path);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
}
break;
case ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)2):
{
nosremoveDir(path, NIM_TRUE);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
}
break;
default: __builtin_unreachable();
}
{
LA28_:;
}
{
eqdestroy___system_u2597(path_2);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA17_;
}
LA26_: ;
{
LA17_:;
}
{
eqdestroy___system_u2597(y);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA13_;
} LA16: ;
}
} LA14: ;
{
LA13_:;
}
{
int T83_;
T83_ = (int)0;
T83_ = closedir(d);
(void)(T83_);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA2_;
}
LA3_: ;
{
LA2_:;
}
{
eqdestroy___system_u2597(path);
}
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}
rawRemoveDir__stdZprivateZosdirs_u460(dir_p0);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}BeforeRet_: ;
}
N_LIB_PRIVATE N_NIMCALL(void, noscopyDir)(NimStringV2 source_p0, NimStringV2 dest_p1, NIM_BOOL skipSpecial_p2) {
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
noscreateDir(dest_p1);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
{
NimStringV2 path;
tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ kind;
DIR* d;
path.len = 0; path.p = NIM_NIL;
kind = (tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)0;
d = opendir(nimToCStringConv(source_p0));
{
if (!(d == ((DIR*) NIM_NIL))) goto LA5_;
{
NI32 T11_;
if (!NIM_FALSE) goto LA9_;
T11_ = (NI32)0;
T11_ = osLastError__stdZoserrors_u122();
if (NIM_UNLIKELY(*nimErr_)) goto LA2_;
raiseOSError__stdZoserrors_u119(T11_, source_p0);
if (NIM_UNLIKELY(*nimErr_)) goto LA2_;
}
LA9_: ;
}
goto LA3_;
LA5_: ;
{
{
while (1) {
{
NimStringV2 y;
struct dirent* x;
y.len = 0; y.p = NIM_NIL;
x = readdir(d);
{
if (!(x == ((struct dirent*) NIM_NIL))) goto LA20_;
eqdestroy___system_u2597(y);
goto LA14;
}
LA20_: ;
y = cstrToNimstr(((NCSTRING) ((*x).d_name)));
{
NIM_BOOL T24_;
NimStringV2 path_2;
NimStringV2 noSource;
tyTuple__UV3llMMYFckfui8YMBuUZA colontmpD_;
struct stat s;
tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ k;
T24_ = (NIM_BOOL)0;
T24_ = !(eqStrings(y, TM__UhMx4BhJKblm8VrPrbmAGA_10));
if (!(T24_)) goto LA25_;
T24_ = !(eqStrings(y, TM__UhMx4BhJKblm8VrPrbmAGA_11));
LA25_: ;
if (!T24_) goto LA26_;
path_2.len = 0; path_2.p = NIM_NIL;
noSource.len = 0; noSource.p = NIM_NIL;
nimZeroMem((void*)(&colontmpD_), sizeof(tyTuple__UV3llMMYFckfui8YMBuUZA));
nimZeroMem((void*)(&s), sizeof(struct stat));
path_2 = slash___stdZprivateZospaths2_u91(source_p0, y);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
{
if (!NIM_TRUE) goto LA31_;
eqcopy___system_u2600((&y), path_2);
}
LA31_: ;
k = ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)0);
switch ((*x).d_type) {
case ((NI8)4):
{
k = ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)2);
}
break;
case ((NI8)10):
{
NIM_BOOL isSpecialX60gensym19_;
tyTuple__9cCtUq5i0enQQmapg7J4F7g tmpTupleAsgn;
isSpecialX60gensym19_ = (NIM_BOOL)0;
tmpTupleAsgn = getSymlinkFileKind__stdZprivateZoscommon_u26(path_2);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
k = tmpTupleAsgn.Field0;
isSpecialX60gensym19_ = tmpTupleAsgn.Field1;
{
NIM_BOOL T37_;
T37_ = (NIM_BOOL)0;
T37_ = skipSpecial_p2;
if (!(T37_)) goto LA38_;
T37_ = isSpecialX60gensym19_;
LA38_: ;
if (!T37_) goto LA39_;
eqdestroy___stdZprivateZospaths2_u306(colontmpD_);
eqdestroy___system_u2597(noSource);
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
LA39_: ;
}
break;
case ((NI8)0):
{
{
int T44_;
T44_ = (int)0;
T44_ = lstat(nimToCStringConv(path_2), (&s));
if (!(T44_ < ((NI32)0))) goto LA45_;
eqdestroy___stdZprivateZospaths2_u306(colontmpD_);
eqdestroy___system_u2597(noSource);
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
goto LA42_;
LA45_: ;
{
NIM_BOOL T48_;
T48_ = (NIM_BOOL)0;
T48_ = S_ISDIR(s.st_mode);
if (!T48_) goto LA49_;
k = ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)2);
}
goto LA42_;
LA49_: ;
{
NIM_BOOL T52_;
NIM_BOOL isSpecialX60gensym21_;
tyTuple__9cCtUq5i0enQQmapg7J4F7g tmpTupleAsgn_2;
T52_ = (NIM_BOOL)0;
T52_ = S_ISLNK(s.st_mode);
if (!T52_) goto LA53_;
isSpecialX60gensym21_ = (NIM_BOOL)0;
tmpTupleAsgn_2 = getSymlinkFileKind__stdZprivateZoscommon_u26(path_2);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
k = tmpTupleAsgn_2.Field0;
isSpecialX60gensym21_ = tmpTupleAsgn_2.Field1;
{
NIM_BOOL T57_;
T57_ = (NIM_BOOL)0;
T57_ = skipSpecial_p2;
if (!(T57_)) goto LA58_;
T57_ = isSpecialX60gensym21_;
LA58_: ;
if (!T57_) goto LA59_;
eqdestroy___stdZprivateZospaths2_u306(colontmpD_);
eqdestroy___system_u2597(noSource);
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
LA59_: ;
}
goto LA42_;
LA53_: ;
{
NIM_BOOL T62_;
NIM_BOOL T64_;
T62_ = (NIM_BOOL)0;
T62_ = skipSpecial_p2;
if (!(T62_)) goto LA63_;
T64_ = (NIM_BOOL)0;
T64_ = S_ISREG(s.st_mode);
T62_ = !(T64_);
LA63_: ;
if (!T62_) goto LA65_;
eqdestroy___stdZprivateZospaths2_u306(colontmpD_);
eqdestroy___system_u2597(noSource);
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
goto LA42_;
LA65_: ;
LA42_: ;
}
break;
default:
{
{
NIM_BOOL T70_;
T70_ = (NIM_BOOL)0;
T70_ = skipSpecial_p2;
if (!(T70_)) goto LA71_;
T70_ = !(((*x).d_type == ((NI8)8)));
LA71_: ;
if (!T70_) goto LA72_;
eqdestroy___stdZprivateZospaths2_u306(colontmpD_);
eqdestroy___system_u2597(noSource);
eqdestroy___system_u2597(path_2);
eqdestroy___system_u2597(y);
goto LA16;
}
goto LA68_;
LA72_: ;
{
}
LA68_: ;
}
break;
}
kind = k;
eqsink___system_u2606((&path), y);
eqwasMoved___system_u2594((&y));
colontmpD_ = nossplitPath(path);
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
eqcopy___system_u2600((&noSource), colontmpD_.Field1);
{
NimStringV2 colontmpD__2;
if (!(kind == ((tyEnum_PathComponent__i8fM5ZocsqRz0g9ccV33pvQ)2))) goto LA77_;
colontmpD__2.len = 0; colontmpD__2.p = NIM_NIL;
colontmpD__2 = slash___stdZprivateZospaths2_u91(dest_p1, noSource);
if (NIM_UNLIKELY(*nimErr_)) goto LA79_;
noscopyDir(path, colontmpD__2, skipSpecial_p2);
if (NIM_UNLIKELY(*nimErr_)) goto LA79_;
{
LA79_:;
}
{
eqdestroy___system_u2597(colontmpD__2);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
}
goto LA75_;
LA77_: ;
{
NimStringV2 colontmpD__3;
colontmpD__3.len = 0; colontmpD__3.p = NIM_NIL;
colontmpD__3 = slash___stdZprivateZospaths2_u91(dest_p1, noSource);
if (NIM_UNLIKELY(*nimErr_)) goto LA83_;
noscopyFile(path, colontmpD__3, 1, ((NI)16384));
if (NIM_UNLIKELY(*nimErr_)) goto LA83_;
{
LA83_:;
}
{
eqdestroy___system_u2597(colontmpD__3);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA28_;
}
LA75_: ;
{
LA28_:;
}
{
eqdestroy___stdZprivateZospaths2_u306(colontmpD_);
eqdestroy___system_u2597(noSource);
eqdestroy___system_u2597(path_2);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA17_;
}
LA26_: ;
{
LA17_:;
}
{
eqdestroy___system_u2597(y);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA13_;
} LA16: ;
}
} LA14: ;
{
LA13_:;
}
{
int T92_;
T92_ = (int)0;
T92_ = closedir(d);
(void)(T92_);
}
if (NIM_UNLIKELY(*nimErr_)) goto LA2_;
}
LA3_: ;
{
LA2_:;
}
{
eqdestroy___system_u2597(path);
}
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}
}BeforeRet_: ;
}
N_LIB_PRIVATE N_NIMCALL(void, moveDir__stdZprivateZosdirs_u503)(NimStringV2 source_p0, NimStringV2 dest_p1) {
NIM_BOOL* nimErr_;
{nimErr_ = nimErrorFlag();
{
NIM_BOOL T3_;
T3_ = (NIM_BOOL)0;
T3_ = tryMoveFSObject__stdZprivateZoscommon_u93(source_p0, dest_p1, NIM_TRUE);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
if (!!(T3_)) goto LA4_;
noscopyDir(source_p0, dest_p1, NIM_FALSE);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
nosremoveDir(source_p0, NIM_FALSE);
if (NIM_UNLIKELY(*nimErr_)) goto BeforeRet_;
}
LA4_: ;
}BeforeRet_: ;
}
|