remake.red 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. module remake; % Update the fasl loading version and cross-reference of
  2. % a given file.
  3. % Authors: Martin L. Griss and Anthony C. Hearn.
  4. fluid '(!*break
  5. !*cref
  6. !*crefchk
  7. !*faslp
  8. !*int
  9. !*loadall
  10. !*usermode
  11. !*writingfaslfile
  12. lispsystem!*);
  13. global '(!*argnochk nolist!*);
  14. symbolic procedure psl!-file!-write!-date u;
  15. % Returns write date of file u as an integer.
  16. (if null x then rederr list("file not found:",u)
  17. else cddr assoc('writetime,x))
  18. where x = filestatus(u,nil);
  19. symbolic procedure olderfaslp(u,v);
  20. if 'psl memq lispsystem!*
  21. then null filep u
  22. or psl!-file!-write!-date u < psl!-file!-write!-date v
  23. else if null filedate v then rederr list("Missing file",v)
  24. else null modulep u or datelessp(modulep u,filedate v);
  25. % Code for updating cross reference information.
  26. nolist!* := append('(module endmodule),nolist!*);
  27. symbolic procedure update!-cref x;
  28. % Updates cross-reference for x (module . path).
  29. begin scalar y,z;
  30. y := concat2("$rcref/",concat2(mkfil car x,".crf"));
  31. z := module2!-to!-file(car x,get(cdr x,'path));
  32. if olderfaslp(y,z)
  33. then <<terpri();
  34. terpri();
  35. if errorp errorset!*(list('upd!-cref1,mkquote car x,
  36. mkquote z,mkquote y),
  37. t)
  38. then lprie list("Error during cref of",x)>>
  39. % then errorprintf("***** Error during cref of %w%n",x)>>
  40. end;
  41. symbolic procedure upd!-cref1(u,v,w);
  42. begin scalar !*break,!*cref,!*int,!*usermode,ochan,oldochan,oldll;
  43. lprim list("Cross referencing",u,"...");
  44. % prin2t bldmsg("*** Cross referencing %w ...",u);
  45. ochan := open(w,'output);
  46. oldochan := wrs ochan;
  47. oldll := linelength 75;
  48. crefon(); % this is entry point to cref routines
  49. !*cref := t;
  50. infile v;
  51. !*cref := nil;
  52. crefoff();
  53. close ochan;
  54. wrs oldochan;
  55. linelength oldll
  56. end;
  57. % Support for packages directory.
  58. symbolic procedure package!-remake x;
  59. (if y then package!-remake2(x,y) else package!-remake2(x,x))
  60. where y=get(x,'folder);
  61. symbolic procedure package!-remake2(u,v);
  62. begin scalar y;
  63. % if !*crefchk then update!-cref2(u . v);
  64. update!-fasl2(u . v);
  65. evload list u;
  66. y := get(u,'package);
  67. if y then y := cdr y;
  68. for each j in y do
  69. <<update!-fasl2(j . v);
  70. % if !*crefchk then update!-cref2(j . v)>>
  71. >>
  72. end;
  73. symbolic procedure update!-fasl2 x;
  74. begin scalar y,z;
  75. if 'psl memq lispsystem!*
  76. then y := concat2("$reduce/lisp/psl/$MACHINE/red/",
  77. concat2(mkfil car x,".b"))
  78. else y := car x;
  79. if memq(car x,'(fide)) then !*argnochk := nil; % STILL TRUE??
  80. z := module2!-to!-file(car x,cdr x);
  81. if olderfaslp(y,z)
  82. then <<terpri();
  83. terpri();
  84. if errorp errorset!*(list('upd!-fasl1,mkquote car x,
  85. mkquote z,
  86. mkquote cdr x),
  87. t)
  88. then <<if !*writingfaslfile then lispeval '(faslend);
  89. lprie list("Error during mkfasl of",x)>>>>
  90. end;
  91. symbolic procedure upd!-fasl1(u,v,w);
  92. % We rebind *fastfor here because it's the only case of "compiletime"
  93. % at the moment (!).
  94. begin scalar !*fastfor,!*lower,!*usermode,!*quiet!_faslout,!*break,x;
  95. !*faslp := t;
  96. !*quiet!_faslout := t;
  97. if not('psl memq lispsystem!*) then !*lower := t;
  98. if !*loadall and w neq u then evload list w;
  99. if x := get(u,'compiletime)
  100. then <<prin2 "*** Compile time: "; prin2t x; lispeval x>>;
  101. u := mkfil u;
  102. lprim list("Compiling",u,"...");
  103. % prin2t bldmsg("*** Compiling %w ...",u);
  104. terpri();
  105. if 'psl memq lispsystem!*
  106. then lispeval list('faslout,
  107. concat2("$reduce/lisp/psl/$MACHINE/red/",u))
  108. else lispeval list('faslout,u);
  109. infile v;
  110. lispeval '(faslend)
  111. end;
  112. symbolic procedure module2!-to!-file(u,v);
  113. % Converts the module u in package directory v to a fully rooted file
  114. % name.
  115. concat2("$reduce/packages/",concat2(mkfil v,
  116. concat2("/",concat2(mkfil u,".red"))));
  117. endmodule;
  118. end;