home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / macintosh / AE_example.pl next >
Text File  |  1996-09-28  |  2KB  |  96 lines

  1. #
  2. # This fragment illustrates how to invoke MacCVS via AppleEvents and pass environment
  3. # variables to MacCVS.  Not all CVS environment variables make sense for MacOS.  This
  4. # fragment also illustrates the default result handling mode, which is to put the info on
  5. # a SIOUX console.
  6. #
  7.  
  8. &MacPerl'DoAppleScript(<<ENDIT);
  9. tell application "Data:Mike:Projects:cvs-1.8.6:macintosh:MacCVS"
  10.     do script { "status" } environment { "CVSROOT", "ladwig\@manic:/projects/sdt/repository/eM2" }
  11. end tell
  12. ENDIT
  13.  
  14. exit(0);
  15.  
  16.  
  17.  
  18. #
  19. # This fragment illustrates how to invoke MacCVS change its directory prior to executing
  20. # the CVS command.  This is akin to being in a directory when you invoke CVS.
  21. #
  22.  
  23. &MacPerl'DoAppleScript(<<ENDIT);
  24. tell application "Data:Mike:Projects:cvs-1.8.6:macintosh:MacCVS"
  25.     do script { "status" } environment { "CVSROOT", "ladwig\@manic:/projects/sdt/repository/eM2" } pathway "OS:Workspace:eM:src:daemon"
  26. end tell
  27. ENDIT
  28.  
  29. exit(0);
  30.  
  31.  
  32.  
  33. #
  34. # This fragment illustrates how to get MacCVS to return results via AppleEvents.
  35. # Note:  If you add "NoLineBuffer True" after the "Mode AE", each individual line
  36. # of results will be returned in a separate AppleEvent.
  37. #
  38.  
  39. use Mac::AppleEvents;
  40.  
  41. AEInstallEventHandler("MCVS", "DATA", "MacCVSData", 0);
  42.  
  43. &MacPerl'DoAppleScript(<<ENDIT);
  44. tell application "Data:Mike:Projects:cvs-1.8.6:macintosh:MacCVS.PPC"
  45.     do script { "-help add" } environment { "CVSROOT", "ladwig\@manic:/projects/sdt/repository/sdt" } Mode AE
  46. end tell
  47. ENDIT
  48.  
  49. $done = 0;
  50. $in = 0;
  51. while( $done = 0 ) { sleep(1);}
  52. print "QUITTING!\n";
  53.  
  54. AERemoveEventHandler ("MCVS", "DATA");
  55. exit(0);
  56.  
  57. sub MacCVSData {
  58.     my($event) = @_;
  59.     
  60.     print "**** MCVS/Data Handler called\n";
  61.  
  62.  $rDesc = AEGetParamDesc($event, "----");
  63.     if( $rDesc )
  64.     {
  65.         $data =  AEPrint($rDesc);
  66.         chop $data; $data = substr($data, 1);
  67.         print "---- data = <$data> \n";
  68.     }
  69.     AEDisposeDesc($rDesc);
  70.  
  71.  $rDesc = AEGetParamDesc($event, "DONE");
  72.     if( $rDesc )
  73.         { print "!!!! DONE\n"; $done = 1; AEDisposeDesc($rDesc); }
  74.  
  75.     print "Exiting MCVS/Data Handler ****\n";
  76.     return 0;
  77. }
  78.  
  79.  
  80.  
  81.  
  82.  
  83. #
  84. # This fragment illustrates how to have MacCVS save the results to a file in your MacOS
  85. # filesystem.
  86. #
  87.  
  88. &MacPerl'DoAppleScript(<<ENDIT);
  89. tell application "Data:Projects:cvs-1.8.6:macintosh:MacCVS"
  90.     do script { "-d ladwig\@manic:/projects/sdt/repository/eM2", "status" } mode file filename "os:out.file"
  91. end tell
  92. ENDIT
  93.  
  94. exit(0);
  95.  
  96.