1. Си / Говнокод #27407

    0

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    // https://github.com/sergev/bkunix/blob/master/src/bin/pwd.c
    void
    cat(name)
    	char *name;
    {
    	register int i, j;
    
    	i = -1;
    	while (name[++i] != 0);
    	if ((off+i+2) > 511) {
    		write(2, "pwd: too long path\n", 19);
    		exit(1);
    	}
    	for (j=off+1; j>=0; --j)
    		path[j+i+1] = path[j];
    	off=i+off+1;
    	path[i] = '/';
    	for (--i; i>=0; --i)
    		path[i] = name[i];
    }
    
    char * ckroot(dev, ino)
    int dev, ino;
    {
    	DIR * dir;
    	struct stat st;
    	register struct dirent * d;
    	chdir("/");
    	dir = opendir("/");
    	do {
    		d = readdir(dir);
    		if (! d) {
    			return "[mount point]";
    		}
    		stat(d->d_name, &st);
    	} while (st.st_dev != dev || st.st_ino != ino);
    	closedir(dir);
    	return d->d_name;
    }
    
    int
    main()
    {
    	int rdev, rino;
    	DIR *dir;
    	struct stat dot, dotdot;
    	register struct dirent *d;
    
    	stat("/", &dot);
    	rdev = dot.st_dev;
    	rino = dot.st_ino;
    /*printf ("/ dev=%d ino=%d\n", rdev, (int) rino);*/
    	for (;;) {
    		stat(".", &dot);
    /*printf (". dev=%d ino=%d\n", (int) dot.st_dev, (int) dot.st_ino);*/
    		if (dot.st_ino == rino && dot.st_dev == rdev)
    			break;
    		dir = opendir("..");
    		if (! dir) {
    			write(2, "pwd: cannot open ..\n", 20);
    			return 1;
    		}
    		stat("..", &dotdot);
    /*printf (".. dev=%d ino=%d\n", (int) dotdot.st_dev, (int) dotdot.st_ino);*/
    		chdir("..");
    		if (dot.st_dev == dotdot.st_dev) {
    			if (dot.st_ino == dotdot.st_ino) {
    				cat(ckroot(dot.st_dev, dot.st_ino));
    				break;
    			}
    			do {
    				d = readdir(dir);
    				if (! d) {
    					write(2, "read error in ..\n", 17);
    					return 1;
    				}
    			} while (d->d_ino != dot.st_ino);
    		} else {
    			do {
    				d = readdir(dir);
    				if (! d) {
    					write(2, "read error in ..\n", 17);
    					return 1;
    				}
    				stat(d->d_name, &dotdot);
    /*printf ("%.14s dev=%d ino=%d\n", d->d_name, (int) dotdot.st_dev, (int) dotdot.st_ino);*/
    			} while (dotdot.st_ino != dot.st_ino ||
    				dotdot.st_dev != dot.st_dev);
    		}
    		closedir(dir);
    		cat(d->d_name);
    /*path[off] = 0; printf ("pwd %s\n", path);*/
    	}
    	write(1, "/", 1);
    	if (off < 0)
    		off = 0;
    	path[off] = '\n';
    	write(1, path, off + 1);
    	return 0;
    }

    какой pwd )))

    Запостил: j123123, 09 Мая 2021

    Комментарии (15) RSS

    • Если нет getcwd, надо в цикле делать chdir("..") пока не дойдем до корня, а потом всю питушню состыковать
      Ответить
      • > Если нет getcwd

        А почему его нет? Какая-то необычная эмбеддед ось?
        Ответить
        • Да, эмбеддед ось для БК-0010
          https://ru.wikipedia.org/wiki/Операционные_системы_БК-0010/11#BKUNIX

          https://github.com/sergev/bkunix/

          .
          		BKUNIX - what could have been...
          
          Starting from the mid-1980s in the USSR a home microcomputer BK-0010
          was produced that used the instruction set of DEC LSI-11.
          Its first version, released in 1985, had 32 Kb of RAM, out of which
          up to 16 Kb had to be reserved for the video memory.
          A tape recorder was the external storage device. A great variety of games,
          educational and text processing software, as well as a few programming
          systems have been written for it.
          
          ...
          
          After learning about the existence of Mini-Unix and LSX - the minimalistic
          Unix kernels derived from Unix V6, and reviving the latter from an incomplete
          floppy image dump, I realized that it could have been possible to run a real
          Unix on BK-0010! Indeed, LSX in its minimal configuration required only 40 Kb
          of RAM, and a BK with a floppy controller could provide up to 44 Kb.
          
          As all the LSX and Mini-Unix sources were written in an ancient dialect of the
          C language (no unsigned, void, long; weird - by today's standards - syntax
          of assignment operators and initializations), the first step was to patch
          the source to conform to the newer style of C. An initial attempt to use
          GCC for cross-development failed: it produced a buggy and size-inefficient
          code. We have settled on using the Ritchie C compiler from a BSD distribution
          and the Johnson Portable C compiler (PCC). In the process, quite a few bugs
          in PCC got fixed.
          Ответить
          • какой си))

            https://github.com/sergev/bkunix/blob/master/src/stand/console.c
            Ответить
            • https://github.com/sergev/bkunix/blob/master/src/sys/trap.c
              какой свитч)

              какой к&r
              Ответить
        • https://gunkies.org/wiki/LSX
          https://www.mailcom.com/lsx/index.html
          Ответить
          • >https://www.mailcom.com/lsx/index.html
            блядь, реально чтоли эмуль поставть и запидролица?
            >Most importantly, on Unix V6, it's not cd, it's chdir!
            хи

            А какой там редактор? ed?
            Ответить
            • > А какой там редактор? ed?

              Да.
              https://www.mailcom.com/lsx/log.txt
              Ответить
              • ого, регистр букв это свойство подсистемы терминалов:)

                Не, в ed я должно не просижу. vi вроде изобрели примерно в том же году, но в BSD, а не в самом unix
                Ответить
    • иногда мне кажется если бы не придумали java - то люди бы сих пор не научились бы программировать
      Ответить
    • > //

      Ого, думал в Си так незя
      Ответить
      • В том древнеСи так действительно было нельзя. Это только в C99 появилось и пришло из крестов
        Ответить
        • Ты доволен, или хуйня ненужная?
          Ответить
          • Удобно. Но я и так бы обошелся. Это далеко не самая нужная фича
            Ответить

    Добавить комментарий