home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume20 / pt < prev    next >
Text File  |  1989-10-26  |  17KB  |  740 lines

  1. Subject:  v20i078:  Display process family tree
  2. Newsgroups: comp.sources.unix
  3. Sender: sources
  4. Approved: rsalz@uunet.UU.NET
  5.  
  6. Submitted-by: Jeff Bauer <bauer@loligo.cc.fsu.edu>
  7. Posting-number: Volume 20, Issue 78
  8. Archive-name: pt
  9.  
  10. Get frustrated poring through "ps" output trying to figure out which child
  11. belongs to what parent?  Well, this might help.  "Pt" makes a valiant
  12. effort to filter "ps" output into a hierarchical process tree.
  13.  
  14. It runs well on System V.3 and makes a good effort on bsd derivatives,
  15. where "ps" columns tend to stretch and run together.  Note the define in
  16. the Makefile for bsd/SysV builds.
  17.  
  18.                     -- Jeff Bauer
  19.  
  20. PS : If anybody hacks at this and has more luck parsing "ps" output or
  21. generates changes to run on different unix flavors, please mail/post me
  22. the diffs.
  23.  
  24. -- Cut here, as usual --
  25. #!/bin/sh
  26. # shar:    Shell Archiver
  27. #    Run the following text with /bin/sh to create:
  28. #    Makefile
  29. #    pt.1
  30. #    pt.c
  31. sed 's/^X//' << 'SHAR_EOF' > Makefile
  32. X#
  33. X# Comment out the next line if you are building for System V
  34. X#
  35. XDEFINES=-DBSD
  36. XCFLAGS=-O
  37. X
  38. Xpt:    pt.c
  39. X    $(CC) $@.c -o $@ $(CFLAGS) $(DEFINES)
  40. SHAR_EOF
  41. sed 's/^X//' << 'SHAR_EOF' > pt.1
  42. X.TH PT 1
  43. X.SH NAME
  44. X\fBpt\fR \- display process family tree
  45. X.SH USAGE
  46. X.B pt [-a] [user]
  47. X.SH DESCRIPTION
  48. XThe 
  49. X.I pt
  50. Xcommand is a convenient alternative to using ps(1) to display a list
  51. Xof user processes.  Instead of showing a list of processes in the order
  52. Xthat they appear in the system process table,
  53. X.I pt
  54. Xdisplays processes in order of their family hierarchy.  The PID of
  55. Xchildren processes are indented to show the relationship between a
  56. Xparent and child process.
  57. X.sp
  58. XWith no parameters specified,
  59. X.I pt
  60. Xwill display only those processes not owned by "root".  If
  61. X.I \-a
  62. Xis specified,
  63. X.I pt
  64. Xwill display all processes.  If
  65. X.I user
  66. Xis specified,
  67. X.I pt
  68. Xwill display only processes owned by the user name specified.
  69. X.sp
  70. XThe column headings are somewhat self-explanatory; for further
  71. Xdetails see ps(1).
  72. X.SH EXAMPLE
  73. X.sp
  74. X$ pt carr
  75. X.br
  76. XPID                  User     Time    Pages  S  Command
  77. X.br
  78. X 8618                carr     0:00        8 (S) -ksh
  79. X.br
  80. X  8724               carr     0:00        8 (S) -ksh
  81. X.br
  82. X   8756              carr    16:13      479 (R) vlad6
  83. X.SH CAVEATS
  84. XWhen a user name is specified on the command line sometimes
  85. X.I pt
  86. Xcannot determine the correct lineage of a process.  Any of these
  87. Xorphan processes will appear under the heading of "Orphans" on
  88. Xthe output.
  89. X.sp
  90. XSince
  91. X.I pt
  92. Xreally is a filter from a forked-off ps(1) sometimes the parsing of
  93. Xthe output from ps(1) fails and the fields get garbled.
  94. X.SH SEE ALSO
  95. X.BR ps(1).
  96. SHAR_EOF
  97. sed 's/^X//' << 'SHAR_EOF' > pt.c
  98. X/*
  99. X    pt.c    - show process family tree
  100. X
  101. X    pt [-a] [user]
  102. X
  103. X    Default compilation is for System V UNIX.
  104. X    To compile for a bsd system try :
  105. X
  106. X    cc pt.c -o pt -O -DBSD
  107. X                            */
  108. X
  109. X#include <stdio.h>
  110. X#include <fcntl.h>
  111. X#include <string.h>
  112. X#ifdef    BSD
  113. X#include <pwd.h>
  114. X#include <ctype.h>
  115. X#endif    BSD
  116. X
  117. X#define    MAXLINE    256
  118. X#define    MYBUFSZ    256
  119. X#define    STDIN    0
  120. X#define    STDOUT    1
  121. X#define    STDERR    2
  122. X
  123. Xchar line[MAXLINE], token[MAXLINE];
  124. Xint firstr, cur_char, cur_row, cur_col;
  125. X
  126. X#define    TRUE    1
  127. X#define    FALSE    0
  128. X#define    UNDEF    2
  129. X
  130. Xstruct psl {
  131. X    char state[8];        /* S */
  132. X    char user[9];        /* UID */
  133. X    unsigned int pid;    /* PID */
  134. X    unsigned int ppid;    /* PPID */
  135. X    unsigned int pages;    /* SZ */
  136. X    char time[12];        /* TIME */
  137. X    char verb[32];        /* COMD */
  138. X};
  139. X
  140. Xstruct plist {
  141. X    struct psl cp;
  142. X    struct plist *s;        /* sibling */
  143. X    struct plist *c;        /* child */
  144. X};
  145. X
  146. Xstruct psl cp;
  147. Xstruct plist *proot;
  148. Xstruct plist *orphans;
  149. Xint orphcnt;
  150. Xint showroot = FALSE;
  151. X#ifdef    BSD
  152. Xstruct passwd *pe;
  153. Xextern int errno;
  154. X#endif    BSD
  155. X
  156. Xextern char *malloc();
  157. Xvoid strcpy2(), cp_plist(), pprint();
  158. Xint pinsert();
  159. Xstruct plist *pfind();
  160. X
  161. Xvoid main(argc, argv)
  162. Xint argc;
  163. Xchar **argv;
  164. X{
  165. X    int gls;
  166. X    int pfds[2];
  167. X    char who[9];
  168. X    int slen, wsp;
  169. X    char tbuf[32], tbuf2[32];
  170. X#ifdef    BSD
  171. X    char d1[32], d2[32], d3[32], d4[32], d5[32], d6[32], d7[32];
  172. X#endif
  173. X    struct plist *child;
  174. X    int fostered;
  175. X    int offset;
  176. X    int adopted;
  177. X    int i, j;
  178. X
  179. X    if (argc == 1) who[0] = '\0';
  180. X
  181. X    while (argc--) {
  182. X      if (argc != 0) {
  183. X        if (strcmp(argv[argc], "-a") == 0)
  184. X          showroot = TRUE;
  185. X        else
  186. X          strcpy2(who, argv[argc], 8);
  187. X      }
  188. X    }
  189. X    if (argc > 3) {
  190. X      fprintf(stderr,"Usage : %s [-a] [user]\n", argv[0]);
  191. X      exit(1);
  192. X    }
  193. X    if (strcmp(who, "root") == 0)
  194. X      showroot = TRUE;
  195. X
  196. X    orphcnt = 0;
  197. X
  198. X    if (pipe(pfds) < 0) {
  199. X        perror("pipe");
  200. X        exit(1);
  201. X    }
  202. X
  203. X    if (fork() == 0) {        /* BEGIN child processing */
  204. X      if (close(STDOUT) < 0) {    /* release fd 1 */
  205. X        perror("close1");
  206. X        exit(1);
  207. X      }
  208. X      if (dup(pfds[1]) < 0) {    /* re-use fd 1 */
  209. X        perror("dup1");
  210. X        exit(1);
  211. X      }
  212. X      if (close(pfds[1]) < 0) {
  213. X        perror("close2");
  214. X        exit(1);
  215. X      }
  216. X      if (close(pfds[0]) < 0) {
  217. X        perror("close3");
  218. X        exit(1);
  219. X      }
  220. X      if (who[0] == '\0')
  221. X#ifdef    BSD
  222. X        execl("/bin/ps","ps","-axlw",0);
  223. X#else
  224. X        execl("/bin/ps","ps","-elf",0);
  225. X#endif    BSD
  226. X      else 
  227. X#ifdef    BSD
  228. X        execl("/bin/ps","ps","-axlw",0);    /* no single-user filter on bsd "ps" */
  229. X#else
  230. X        execl("/bin/ps","ps","-u",who,"-lf",0);
  231. X#endif    BSD
  232. X    }                /* END child processing */
  233. X
  234. X    if (close(STDIN) < 0) {        /* release fd 0 */
  235. X      perror("close4");
  236. X      exit(1);
  237. X    }
  238. X    if (dup(pfds[0]) < 0) {        /* re-use fd 0 */
  239. X      perror("dup2");
  240. X      exit(1);
  241. X    }
  242. X    if (close(pfds[0]) < 0) {
  243. X      perror("close5");
  244. X      exit(1);
  245. X    }
  246. X    if (close(pfds[1]) < 0) {
  247. X      perror("close6");
  248. X      exit(1);
  249. X    }
  250. X
  251. X    firstr = TRUE;
  252. X    cur_row = 0;
  253. X    while ((gls = getline(STDIN, line, MAXLINE)) >= 0) {
  254. X      if (gls == -2) break;
  255. X      cur_char = 0;
  256. X      cur_col = 0;
  257. X      offset = FALSE;
  258. X#ifdef    BSD
  259. X      d7[0] = '\0';
  260. X#endif    BSD
  261. X      while (get_token(line, token, MAXLINE, &wsp) >= 0) {
  262. X        if (cur_row > 0) {        /* skip column headings */
  263. X          switch (cur_col) {
  264. X#ifdef    BSD
  265. X        case 0 :
  266. X          if (((wsp > 0) && (strlen(token) > 5)) ||
  267. X            ((wsp == 0) && (strlen(token) > 10))) {
  268. X            j = 0;
  269. X            for (i = (7 - wsp); i < strlen(token); i++)
  270. X              tbuf[j++] = token[i];
  271. X            tbuf[j+1] = '\0';
  272. X            strcpy(token, tbuf);
  273. X            cur_col += 1;
  274. X            sscanf(token, "%d", &i);
  275. X            if ((pe = getpwuid(i)) != NULL)
  276. X              strcpy2(cp.user, pe->pw_name, 8);
  277. X            else {
  278. X              strcpy2(cp.user, "(bogus)", 8);
  279. X              fprintf(stderr,"1: Checking UID %d : ",i);
  280. X              perror("getpwuid");
  281. X            }
  282. X          }
  283. X          else if ((wsp == 6) && (strlen(token) > 1)) {
  284. X            cur_col += 1;
  285. X            sscanf(token, "%d", &i);
  286. X            if ((pe = getpwuid(i)) != NULL)
  287. X              strcpy2(cp.user, pe->pw_name, 8);
  288. X            else {
  289. X              strcpy2(cp.user, "(bogus)", 8);
  290. X              fprintf(stderr,"2: Checking UID %d : ",i);
  291. X              perror("getpwuid");
  292. X            }
  293. X          }
  294. X          break;      
  295. X        case 1 :
  296. X          sscanf(token, "%d", &i);
  297. X          if ((pe = getpwuid(i)) != NULL)
  298. X            strcpy2(cp.user, pe->pw_name, 8);
  299. X          else {
  300. X            strcpy2(cp.user, "(bogus)", 8);
  301. X            fprintf(stderr,"3: Checking UID %d : ",i);
  302. X            perror("getpwuid");
  303. X          }        
  304. X          break;
  305. X        case 2 :
  306. X          sscanf(token, "%d", &cp.pid);
  307. X          break;
  308. X        case 3 :
  309. X          sscanf(token, "%d", &cp.ppid);
  310. X          break;
  311. X        case 7 :
  312. X          if (strlen(token) > 4)
  313. X            offset = TRUE;
  314. X          break;
  315. X        case 8 :
  316. X          if (offset == TRUE) {
  317. X            strcpy2(d1, token, 32);
  318. X          }
  319. X          break;
  320. X        case 9 :
  321. X          if (offset == TRUE) {
  322. X            strcpy2(d2, token, 32);
  323. X          }
  324. X          else {
  325. X            strcpy2(d1, token, 32);
  326. X          }        
  327. X          break;
  328. X        case 10 :
  329. X          if (offset == TRUE) {
  330. X            strcpy2(d3,token, 32);
  331. X          }
  332. X          else {
  333. X            strcpy2(d2, token, 32);
  334. X          }        
  335. X          break;
  336. X        case 11 :
  337. X          if (offset == TRUE) {
  338. X            strcpy(d4, token, 32);
  339. X          }
  340. X          else {
  341. X            strcpy2(d3, token, 32);
  342. X          }
  343. X          break;
  344. X        case 12 :
  345. X          if (offset == TRUE) {
  346. X            strcpy2(d5, token, 32);
  347. X          }
  348. X          else {
  349. X            strcpy2(d4, token, 32);
  350. X          }
  351. X          break;
  352. X        case 13 :
  353. X          if (offset == TRUE) { 
  354. X            strcpy2(d6, token, 32);
  355. X          }
  356. X          else {
  357. X            strcpy2(d5, token, 32);
  358. X          }
  359. X          break;
  360. X        case 14 :
  361. X          if (offset == TRUE) {
  362. X            strcpy2(d7, token, 32);
  363. X          }
  364. X          else {
  365. X            strcpy2(d6, token, 32);
  366. X          }
  367. X          break;
  368. X#else
  369. X        case 1 :
  370. X          cp.state[0] = token[0];
  371. X          cp.state[1] = '\0';
  372. X          if (strlen(token) > 1) {
  373. X            strcpy2(cp.user, (token+1), 8);
  374. X            cur_col += 1;
  375. X          }
  376. X          if ((cp.state[0] == 'R') || (cp.state[0] == 'O'))
  377. X            offset = TRUE;    /* "WCHAN" is empty */
  378. X          break;
  379. X        case 2 :
  380. X          strcpy2(cp.user, token, 8);
  381. X          break;
  382. X        case 3 :
  383. X          sscanf(token, "%d", &cp.pid);
  384. X          break;
  385. X        case 4 :
  386. X          sscanf(token, "%d", &cp.ppid);
  387. X          break;
  388. X        case 9 :
  389. X          if (cp.state[0] == 'Z') {
  390. X            cp.pages = 0;
  391. X            break;
  392. X          }
  393. X          strcpy(tbuf,token);
  394. X          if ((slen = strlen(token)) > 9 ) {
  395. X            strcpy2(tbuf, token, (slen-9));
  396. X            cur_col += 1;
  397. X          }
  398. X          sscanf(tbuf, "%d", &cp.pages);
  399. X          break;
  400. X        case 12 :
  401. X          if (offset == TRUE) {
  402. X            strcpy2(cp.time, token, 12);
  403. X          }
  404. X          break;
  405. X        case 13 :
  406. X          if (offset == TRUE) {
  407. X            strcpy2(cp.verb, token, 32);
  408. X          }
  409. X          else {
  410. X            strcpy2(cp.time, token, 12);
  411. X          }
  412. X          strcpy2(tbuf2, token, 12);
  413. X          break;
  414. X        case 14 :
  415. X          if (offset == FALSE) {
  416. X            strcpy2(cp.verb, token, 32);
  417. X          }
  418. X          break;
  419. X#endif    BSD
  420. X          }
  421. X          cur_col += 1;
  422. X        }
  423. X      }
  424. X#ifdef    BSD
  425. X    
  426. X      /* Sigh... */
  427. X
  428. X      if (isupper(d2[0]) || (d2[0] == 'p')) {
  429. X        strcpy(cp.state, d2);
  430. X        strcpy(cp.time, d4);
  431. X        strcpy(cp.verb, d5);
  432. X      }
  433. X      else {
  434. X        strcpy(cp.state, d3);
  435. X        strcpy(cp.time, d5);
  436. X        strcpy(cp.verb, d6);
  437. X      }
  438. X
  439. X#endif    BSD
  440. X      if (cur_row > 0) {
  441. X#ifdef    BSD
  442. X        if (who[0] == '\0')
  443. X          pinsert(&cp, TRUE);
  444. X        else
  445. X          if (strcmp(cp.user, who) == 0)
  446. X            pinsert(&cp, TRUE);
  447. X#else
  448. X        pinsert(&cp, TRUE);
  449. X#endif    BSD
  450. X      }
  451. X      cur_row += 1;
  452. X    }
  453. X    wait(0);
  454. X
  455. X    /* Place orphans into their foster homes */
  456. X
  457. X    fostered = 0;
  458. X
  459. X    while (orphcnt != fostered) {
  460. X
  461. X      adopted = FALSE;
  462. X
  463. X      for (child = orphans; child != NULL; child = child->s) {
  464. X        if (strcmp(child->cp.state, "HOME") != 0) {
  465. X          if (pinsert(&child->cp, FALSE) == TRUE) {
  466. X        strcpy(child->cp.state, "HOME");
  467. X            fostered += 1;
  468. X        adopted = TRUE;
  469. X          }
  470. X        }
  471. X      }
  472. X      if (adopted == FALSE) {
  473. X        break;
  474. X      }
  475. X    }
  476. X    printf("PID\t\t\t    User     Time    Pages  S  Command\n");
  477. X    pprint(proot, 0, FALSE);
  478. X    if (orphcnt != fostered) {
  479. X      printf("Orphans :\n");
  480. X      printf("PID (PPID)\t\t    User     Time    Pages  S  Command\n");
  481. X      pprint(orphans, 0, TRUE);
  482. X    }
  483. X}
  484. X
  485. Xint pinsert(cp, adopt)        /* TRUE = info inserted; FALSE = info orphaned */
  486. Xstruct psl *cp;
  487. Xint adopt;            /* TRUE = add orphans to orphan list */
  488. X{
  489. X    struct plist *parent, *sibling;
  490. X    int iflag;
  491. X
  492. X    iflag = TRUE;
  493. X    if (proot == NULL) {    /* call this one root for now */
  494. X      if ((proot = (struct plist *) malloc(sizeof(struct plist))) == NULL) {
  495. X        fprintf(stderr,"malloc failed\n");
  496. X        exit(1);
  497. X      }
  498. X      cp_plist(proot, cp);
  499. X    }
  500. X    else {            /* find parent; traverse sibling list & insert */
  501. X      if ((parent = pfind(proot, cp->ppid)) == NULL) {    /* no parent yet */
  502. X        iflag = FALSE;
  503. X        if (adopt == TRUE) {
  504. X          orphcnt += 1;
  505. X          if (orphans == NULL) {
  506. X            if ((orphans = (struct plist *) malloc(sizeof(struct plist))) == NULL) {
  507. X              fprintf(stderr,"malloc failed\n");
  508. X              exit(1);
  509. X            }
  510. X            cp_plist(orphans, cp);
  511. X          }
  512. X          else {            /* chain orphans together (heartless!) */
  513. X            for (sibling = orphans; sibling->s != NULL; sibling = sibling->s);
  514. X            if ((sibling->s = (struct plist *) malloc(sizeof(struct plist))) == NULL) {
  515. X              fprintf(stderr,"malloc failed\n");
  516. X              exit(1);
  517. X            }
  518. X            cp_plist(sibling->s, cp);
  519. X          }
  520. X        }
  521. X      }
  522. X      else {            /* parent exists */
  523. X        if (parent->c == NULL) {    /* first child */
  524. X          if ((parent->c = (struct plist *) malloc(sizeof(struct plist))) == NULL) {
  525. X            fprintf(stderr,"malloc failed\n");
  526. X            exit(1);
  527. X          }
  528. X          cp_plist(parent->c, cp);
  529. X        }
  530. X        else {            /* siblings exist */
  531. X          sibling = parent->c;
  532. X          while (sibling->s != NULL) sibling = sibling->s;
  533. X          if ((sibling->s = (struct plist *) malloc(sizeof(struct plist))) == NULL) {
  534. X            fprintf(stderr,"malloc failed\n");
  535. X            exit(1);
  536. X          }
  537. X          cp_plist(sibling->s, cp);
  538. X        }
  539. X      }
  540. X    }
  541. X    return(iflag);
  542. X}
  543. X
  544. Xstruct plist *pfind(cp, ppid)
  545. Xstruct plist *cp;
  546. Xint ppid;
  547. X{
  548. X    struct plist *p;
  549. X
  550. X    if (cp == NULL) return(NULL);
  551. X    else if (cp->cp.pid == ppid) return(cp);
  552. X    else {
  553. X      if ((p = pfind(cp->c, ppid)) == NULL)
  554. X        return(pfind(cp->s, ppid));
  555. X      else
  556. X        return(p);
  557. X    }
  558. X}
  559. X
  560. Xvoid pprint(cp, cnt, orphflg)
  561. Xstruct plist *cp;
  562. Xint cnt, orphflg;
  563. X{
  564. X    int i, j;
  565. X    char buf[16];
  566. X
  567. X    if (cp == NULL) return;
  568. X
  569. X    if (strcmp(cp->cp.state, "HOME") != 0) {
  570. X      if (!((showroot == FALSE) && (strcmp(cp->cp.user, "root") == 0))) {
  571. X        if (orphflg == TRUE) {
  572. X#ifdef    BSD
  573. X          sprintf(buf, "%d (%d)",cp->cp.pid, cp->cp.ppid);
  574. X          j = strlen(buf);
  575. X#else
  576. X          j = sprintf(buf, "%d (%d)",cp->cp.pid, cp->cp.ppid);
  577. X#endif    BSD
  578. X        }
  579. X        else {
  580. X#ifdef    BSD
  581. X          sprintf(buf, "%d", cp->cp.pid);
  582. X          j = strlen(buf);
  583. X#else
  584. X          j = sprintf(buf, "%d", cp->cp.pid);
  585. X#endif    BSD
  586. X        }
  587. X        for (i = 0; i < cnt; i++) printf(" ");
  588. X        printf(" %s", buf);
  589. X        for (i = 0; i < (3-(((cnt*1)+j+1)/8)); i++) printf("\t");
  590. X        printf("%8s %8s %8d (%s) %s\n", cp->cp.user, cp->cp.time,
  591. X          cp->cp.pages, cp->cp.state, cp->cp.verb);
  592. X      }
  593. X    }
  594. X
  595. X    pprint(cp->c, cnt+1, orphflg);
  596. X    pprint(cp->s, cnt, orphflg);
  597. X}
  598. X
  599. Xvoid cp_plist(pto, pfrom)
  600. Xstruct plist *pto;
  601. Xstruct psl *pfrom;
  602. X{
  603. X    strcpy(pto->cp.state, pfrom->state);
  604. X    strcpy(pto->cp.user, pfrom->user);
  605. X    pto->cp.pid = pfrom->pid;
  606. X    pto->cp.ppid = pfrom->ppid;
  607. X    pto->cp.pages = pfrom->pages;
  608. X    strcpy(pto->cp.time, pfrom->time);
  609. X    strcpy(pto->cp.verb, pfrom->verb);
  610. X    pto->c = pto->s = NULL;
  611. X}
  612. X
  613. Xint getline(fd,buf,max)
  614. Xint fd;
  615. Xchar *buf;
  616. Xint max;
  617. X
  618. X/*
  619. X    getline(fd, buffer, max)
  620. X
  621. X    Get a line from file *fd* up to *max* bytes into *buffer*.
  622. X    Return 0 if OK, -1 if hit EOF, -2 if first read is NULL,
  623. X    -3 if read failed.
  624. X                                */
  625. X
  626. X{
  627. X    static char mybuf[MYBUFSZ];    /* internal buffer */
  628. X    static int myend = 0;        /* # bytes in mybuf */
  629. X    static int mycnt = 0;        /* # bytes already scanned */
  630. X    static char *curline = NULL;    /* beginning of current line to get */
  631. X    char *p, lastc;
  632. X    int nbytes;
  633. X
  634. X    if (firstr == TRUE) curline = NULL;
  635. X
  636. X    if (curline == NULL) {    /* empty buffer */
  637. X      if ((myend = read(fd, mybuf, MYBUFSZ)) < 0) {
  638. X        perror("read");
  639. X        return(-3);
  640. X      }
  641. X      curline = mybuf;        /* new buffer filled */
  642. X      mycnt = 0;
  643. X    }
  644. X
  645. X    if ((myend == 0) && firstr) {    /* first read hit EOF (empty file) */
  646. X      *buf = '\0';
  647. X      return(-2);
  648. X    }
  649. X
  650. X    if (myend == 0) {        /* later read hit EOF */
  651. X      *buf = '\0';
  652. X      return(-1);
  653. X    }
  654. X
  655. X    firstr = FALSE;
  656. X
  657. X    p = curline;
  658. X    nbytes = 0;
  659. X
  660. X    read_loop:
  661. X
  662. X    while ((*p != '\n') && (mycnt < myend) && (nbytes <= max)) {
  663. X      *buf++ = *p++;
  664. X      mycnt += 1;
  665. X      nbytes += 1;
  666. X    }
  667. X    lastc = *p;
  668. X    p += 1;
  669. X    mycnt += 1;
  670. X
  671. X    if ((mycnt >= myend) && (lastc != '\n')) {
  672. X      if ((myend = read(fd, mybuf, MYBUFSZ)) < 0) {
  673. X        perror("read");
  674. X        return(-3);
  675. X      }
  676. X      p = curline = mybuf;
  677. X      lastc = *p;
  678. X      mycnt = 0;
  679. X    }
  680. X    if ((mycnt != myend) && (lastc != '\n')) goto read_loop;
  681. X
  682. X    *buf += 1;
  683. X    *buf = '\0';
  684. X    curline = p;    /* set for next *getline* call */
  685. X
  686. X    if (mycnt >= myend)
  687. X      curline = NULL;    /* reached end of buffer */
  688. X
  689. X    return(0);
  690. X}
  691. X
  692. Xint get_token(line, token, max, wsp)    /* return 0 = token, -1 = no tokens left on line */
  693. Xchar *line, *token;
  694. Xint *wsp;                /* # of white spaces preceding token */
  695. Xint max;
  696. X{
  697. X    int i, j;
  698. X
  699. X    i = cur_char;
  700. X    j = 0;
  701. X    *wsp = 0;
  702. X
  703. X    if ((i >= (max-1)) || (line[i] == '\0')) {
  704. X      *token = '\0';
  705. X      return(-1);
  706. X    }
  707. X
  708. X    while((line[i] == ' ') || (line[i] == '\t')) {
  709. X      i++;
  710. X      *(wsp)++;
  711. X    }
  712. X
  713. X    while ((line[i] != ' ') && (line[i] != '\t') && (line[i] != '\n')
  714. X        && (line[i] != '\r') && (line[i] != '\0'))
  715. X      token[j++] = line[i++];
  716. X
  717. X    token[j] = '\0';
  718. X
  719. X    if (line[i] != '\0') cur_char = i + 1;
  720. X    else cur_char = i;
  721. X    return(0);
  722. X}
  723. X
  724. Xvoid strcpy2(dst, src, max)
  725. Xchar *dst, *src;
  726. Xint max;
  727. X{
  728. X    int i;
  729. X
  730. X    i = 0;
  731. X    while ((src[i] != ' ') && (i < max) && (src[i] != '\0')) {
  732. X      dst[i] = src[i];
  733. X      i += 1;
  734. X    }
  735. X    dst[i] = '\0';
  736. X}
  737. SHAR_EOF
  738. exit
  739.  
  740.