AmberCli.js 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561
  1. define(["amber/boot", "amber_core/Kernel-Objects"], function($boot){"use strict";
  2. if(!("nilAsValue" in $boot))$boot.nilAsValue=$boot.nilAsReceiver;
  3. var $core=$boot.api,nil=$boot.nilAsValue,$nil=$boot.nilAsReceiver,$recv=$boot.asReceiver,$globals=$boot.globals;
  4. $core.addPackage("AmberCli");
  5. ($core.packageDescriptors||$core.packages)["AmberCli"].innerEval = function (expr) { return eval(expr); };
  6. ($core.packageDescriptors||$core.packages)["AmberCli"].transport = {"type":"amd","amdNamespace":"amber_cli"};
  7. $core.addClass("AmberCli", $globals.Object, [], "AmberCli");
  8. //>>excludeStart("ide", pragmas.excludeIdeData);
  9. $globals.AmberCli.comment="I am the Amber CLI (CommandLine Interface) tool which runs on Node.js.\x0a\x0aMy responsibility is to start different Amber programs like the FileServer or the Repl.\x0aWhich program to start is determined by the first commandline parameters passed to the AmberCli executable.\x0aUse `help` to get a list of all available options.\x0aAny further commandline parameters are passed to the specific program.\x0a\x0a## Commands\x0a\x0aNew commands can be added by creating a class side method in the `commands` protocol which takes one parameter.\x0aThis parameter is an array of all commandline options + values passed on to the program.\x0aAny `camelCaseCommand` is transformed into a commandline parameter of the form `camel-case-command` and vice versa.";
  10. //>>excludeEnd("ide");
  11. $core.addMethod(
  12. $core.method({
  13. selector: "commandLineSwitches",
  14. protocol: "commandline",
  15. fn: function (){
  16. var self=this,$self=this;
  17. var switches;
  18. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  19. return $core.withContext(function($ctx1) {
  20. //>>excludeEnd("ctx");
  21. switches=$recv($recv($self._class())._methodsInProtocol_("commands"))._collect_((function(each){
  22. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  23. return $core.withContext(function($ctx2) {
  24. //>>excludeEnd("ctx");
  25. return $recv(each)._selector();
  26. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  27. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  28. //>>excludeEnd("ctx");
  29. }));
  30. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  31. $ctx1.sendIdx["collect:"]=1;
  32. //>>excludeEnd("ctx");
  33. switches=$recv(switches)._select_((function(each){
  34. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  35. return $core.withContext(function($ctx2) {
  36. //>>excludeEnd("ctx");
  37. return $recv(each)._match_("^[^:]*:$");
  38. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  39. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});
  40. //>>excludeEnd("ctx");
  41. }));
  42. switches=$recv(switches)._collect_((function(each){
  43. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  44. return $core.withContext(function($ctx2) {
  45. //>>excludeEnd("ctx");
  46. return $recv($recv($recv(each)._allButLast())._replace_with_("([A-Z])","-$1"))._asLowercase();
  47. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  48. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,3)});
  49. //>>excludeEnd("ctx");
  50. }));
  51. return switches;
  52. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  53. }, function($ctx1) {$ctx1.fill(self,"commandLineSwitches",{switches:switches},$globals.AmberCli.a$cls)});
  54. //>>excludeEnd("ctx");
  55. },
  56. //>>excludeStart("ide", pragmas.excludeIdeData);
  57. args: [],
  58. source: "commandLineSwitches\x0a\x09\x22Collect all methodnames from the 'commands' protocol of the class\x0a\x09 and select the ones with only one parameter.\x0a\x09 Then remove the ':' at the end of the name.\x0a\x09 Additionally all uppercase letters are made lowercase and preceded by a '-'.\x0a\x09 Example: fallbackPage: becomes --fallback-page.\x0a\x09 Return the Array containing the commandline switches.\x22\x0a\x09| switches |\x0a\x09switches := ((self class methodsInProtocol: 'commands') collect: [ :each | each selector]).\x0a\x09switches := switches select: [ :each | each match: '^[^:]*:$'].\x0a\x09switches :=switches collect: [ :each |\x0a\x09\x09(each allButLast replace: '([A-Z])' with: '-$1') asLowercase].\x0a\x09^ switches",
  59. referencedClasses: [],
  60. //>>excludeEnd("ide");
  61. messageSends: ["collect:", "methodsInProtocol:", "class", "selector", "select:", "match:", "asLowercase", "replace:with:", "allButLast"]
  62. }),
  63. $globals.AmberCli.a$cls);
  64. $core.addMethod(
  65. $core.method({
  66. selector: "config:",
  67. protocol: "commands",
  68. fn: function (args){
  69. var self=this,$self=this;
  70. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  71. return $core.withContext(function($ctx1) {
  72. //>>excludeEnd("ctx");
  73. $recv($recv($globals.Configurator)._new())._start();
  74. return self;
  75. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  76. }, function($ctx1) {$ctx1.fill(self,"config:",{args:args},$globals.AmberCli.a$cls)});
  77. //>>excludeEnd("ctx");
  78. },
  79. //>>excludeStart("ide", pragmas.excludeIdeData);
  80. args: ["args"],
  81. source: "config: args\x0a\x09Configurator new start",
  82. referencedClasses: ["Configurator"],
  83. //>>excludeEnd("ide");
  84. messageSends: ["start", "new"]
  85. }),
  86. $globals.AmberCli.a$cls);
  87. $core.addMethod(
  88. $core.method({
  89. selector: "handleArguments:",
  90. protocol: "commandline",
  91. fn: function (args){
  92. var self=this,$self=this;
  93. var selector;
  94. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  95. return $core.withContext(function($ctx1) {
  96. //>>excludeEnd("ctx");
  97. var $1;
  98. $1=$recv(args)._first();
  99. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  100. $ctx1.sendIdx["first"]=1;
  101. //>>excludeEnd("ctx");
  102. selector=$self._selectorForCommandLineSwitch_($1);
  103. $recv(args)._remove_($recv(args)._first());
  104. $self._perform_withArguments_(selector,$recv($globals.Array)._with_(args));
  105. return self;
  106. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  107. }, function($ctx1) {$ctx1.fill(self,"handleArguments:",{args:args,selector:selector},$globals.AmberCli.a$cls)});
  108. //>>excludeEnd("ctx");
  109. },
  110. //>>excludeStart("ide", pragmas.excludeIdeData);
  111. args: ["args"],
  112. source: "handleArguments: args\x0a\x09| selector |\x0a\x0a\x09selector := self selectorForCommandLineSwitch: (args first).\x0a\x09args remove: args first.\x0a\x09self perform: selector withArguments: (Array with: args)",
  113. referencedClasses: ["Array"],
  114. //>>excludeEnd("ide");
  115. messageSends: ["selectorForCommandLineSwitch:", "first", "remove:", "perform:withArguments:", "with:"]
  116. }),
  117. $globals.AmberCli.a$cls);
  118. $core.addMethod(
  119. $core.method({
  120. selector: "help:",
  121. protocol: "commands",
  122. fn: function (args){
  123. var self=this,$self=this;
  124. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  125. return $core.withContext(function($ctx1) {
  126. //>>excludeEnd("ctx");
  127. $recv($globals.Transcript)._show_("Available commands");
  128. $recv($self._commandLineSwitches())._do_((function(each){
  129. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  130. return $core.withContext(function($ctx2) {
  131. //>>excludeEnd("ctx");
  132. return $recv(console)._log_(each);
  133. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  134. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  135. //>>excludeEnd("ctx");
  136. }));
  137. return self;
  138. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  139. }, function($ctx1) {$ctx1.fill(self,"help:",{args:args},$globals.AmberCli.a$cls)});
  140. //>>excludeEnd("ctx");
  141. },
  142. //>>excludeStart("ide", pragmas.excludeIdeData);
  143. args: ["args"],
  144. source: "help: args\x0a\x09Transcript show: 'Available commands'.\x0a\x09self commandLineSwitches do: [ :each | console log: each ]",
  145. referencedClasses: ["Transcript"],
  146. //>>excludeEnd("ide");
  147. messageSends: ["show:", "do:", "commandLineSwitches", "log:"]
  148. }),
  149. $globals.AmberCli.a$cls);
  150. $core.addMethod(
  151. $core.method({
  152. selector: "init:",
  153. protocol: "commands",
  154. fn: function (args){
  155. var self=this,$self=this;
  156. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  157. return $core.withContext(function($ctx1) {
  158. //>>excludeEnd("ctx");
  159. $recv($recv($globals.Initer)._new())._start();
  160. return self;
  161. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  162. }, function($ctx1) {$ctx1.fill(self,"init:",{args:args},$globals.AmberCli.a$cls)});
  163. //>>excludeEnd("ctx");
  164. },
  165. //>>excludeStart("ide", pragmas.excludeIdeData);
  166. args: ["args"],
  167. source: "init: args\x0a\x09Initer new start",
  168. referencedClasses: ["Initer"],
  169. //>>excludeEnd("ide");
  170. messageSends: ["start", "new"]
  171. }),
  172. $globals.AmberCli.a$cls);
  173. $core.addMethod(
  174. $core.method({
  175. selector: "main",
  176. protocol: "startup",
  177. fn: function (){
  178. var self=this,$self=this;
  179. var args,packageJSON;
  180. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  181. return $core.withContext(function($ctx1) {
  182. //>>excludeEnd("ctx");
  183. var $7,$6,$5,$4,$3,$2,$1;
  184. var $early={};
  185. try {
  186. packageJSON=$recv(require)._value_("../package.json");
  187. $7=$recv(packageJSON)._version();
  188. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  189. $ctx1.sendIdx["version"]=1;
  190. //>>excludeEnd("ctx");
  191. $6="Welcome to Amber CLI version ".__comma($7);
  192. $5=$recv($6).__comma(" (Amber ");
  193. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  194. $ctx1.sendIdx[","]=5;
  195. //>>excludeEnd("ctx");
  196. $4=$recv($5).__comma($recv($globals.Smalltalk)._version());
  197. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  198. $ctx1.sendIdx[","]=4;
  199. //>>excludeEnd("ctx");
  200. $3=$recv($4).__comma(", NodeJS ");
  201. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  202. $ctx1.sendIdx[","]=3;
  203. //>>excludeEnd("ctx");
  204. $2=$recv($3).__comma($recv($recv(process)._versions())._node());
  205. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  206. $ctx1.sendIdx[","]=2;
  207. //>>excludeEnd("ctx");
  208. $1=$recv($2).__comma(").");
  209. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  210. $ctx1.sendIdx[","]=1;
  211. //>>excludeEnd("ctx");
  212. $recv($globals.Transcript)._show_($1);
  213. args=$recv(process)._argv();
  214. $recv(args)._removeFrom_to_((1),(2));
  215. $recv(args)._ifEmpty_ifNotEmpty_((function(){
  216. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  217. return $core.withContext(function($ctx2) {
  218. //>>excludeEnd("ctx");
  219. return $self._help_(nil);
  220. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  221. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
  222. //>>excludeEnd("ctx");
  223. }),(function(){
  224. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  225. return $core.withContext(function($ctx2) {
  226. //>>excludeEnd("ctx");
  227. throw $early=[$self._handleArguments_(args)];
  228. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  229. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});
  230. //>>excludeEnd("ctx");
  231. }));
  232. return self;
  233. }
  234. catch(e) {if(e===$early)return e[0]; throw e}
  235. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  236. }, function($ctx1) {$ctx1.fill(self,"main",{args:args,packageJSON:packageJSON},$globals.AmberCli.a$cls)});
  237. //>>excludeEnd("ctx");
  238. },
  239. //>>excludeStart("ide", pragmas.excludeIdeData);
  240. args: [],
  241. source: "main\x0a\x09\x22Main entry point for Amber applications.\x0a\x09Parses commandline arguments and starts the according subprogram.\x22\x0a\x09| args packageJSON |\x0a\x09\x0a\x09packageJSON := require value: '../package.json'.\x0a\x09Transcript show: 'Welcome to Amber CLI version ', packageJSON version, ' (Amber ', Smalltalk version, ', NodeJS ', process versions node, ').'.\x0a\x0a\x09args := process argv.\x0a\x09\x22Remove the first args which contain the path to the node executable and the script file.\x22\x0a\x09args removeFrom: 1 to: 2.\x0a\x09\x0a\x09args\x0a\x09\x09ifEmpty: [self help: nil]\x0a\x09\x09ifNotEmpty: [^self handleArguments: args]",
  242. referencedClasses: ["Transcript", "Smalltalk"],
  243. //>>excludeEnd("ide");
  244. messageSends: ["value:", "show:", ",", "version", "node", "versions", "argv", "removeFrom:to:", "ifEmpty:ifNotEmpty:", "help:", "handleArguments:"]
  245. }),
  246. $globals.AmberCli.a$cls);
  247. $core.addMethod(
  248. $core.method({
  249. selector: "repl:",
  250. protocol: "commands",
  251. fn: function (args){
  252. var self=this,$self=this;
  253. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  254. return $core.withContext(function($ctx1) {
  255. //>>excludeEnd("ctx");
  256. return $recv($recv($globals.Repl)._new())._createInterface();
  257. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  258. }, function($ctx1) {$ctx1.fill(self,"repl:",{args:args},$globals.AmberCli.a$cls)});
  259. //>>excludeEnd("ctx");
  260. },
  261. //>>excludeStart("ide", pragmas.excludeIdeData);
  262. args: ["args"],
  263. source: "repl: args\x0a\x09^ Repl new createInterface",
  264. referencedClasses: ["Repl"],
  265. //>>excludeEnd("ide");
  266. messageSends: ["createInterface", "new"]
  267. }),
  268. $globals.AmberCli.a$cls);
  269. $core.addMethod(
  270. $core.method({
  271. selector: "selectorForCommandLineSwitch:",
  272. protocol: "commandline",
  273. fn: function (aSwitch){
  274. var self=this,$self=this;
  275. var command,selector;
  276. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  277. return $core.withContext(function($ctx1) {
  278. //>>excludeEnd("ctx");
  279. var $1;
  280. $1=$recv($self._commandLineSwitches())._includes_(aSwitch);
  281. if($core.assert($1)){
  282. selector=$recv($recv(aSwitch)._replace_with_("-[a-z]",(function(each){
  283. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  284. return $core.withContext(function($ctx2) {
  285. //>>excludeEnd("ctx");
  286. return $recv($recv(each)._second())._asUppercase();
  287. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  288. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});
  289. //>>excludeEnd("ctx");
  290. }))).__comma(":");
  291. selector;
  292. } else {
  293. selector="help:";
  294. selector;
  295. }
  296. return selector;
  297. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  298. }, function($ctx1) {$ctx1.fill(self,"selectorForCommandLineSwitch:",{aSwitch:aSwitch,command:command,selector:selector},$globals.AmberCli.a$cls)});
  299. //>>excludeEnd("ctx");
  300. },
  301. //>>excludeStart("ide", pragmas.excludeIdeData);
  302. args: ["aSwitch"],
  303. source: "selectorForCommandLineSwitch: aSwitch\x0a\x09\x22Add ':' at the end and replace all occurences of a lowercase letter preceded by a '-' with the Uppercase letter.\x0a\x09 Example: fallback-page becomes fallbackPage:.\x0a\x09 If no correct selector is found return 'help:'\x22\x0a\x09 | command selector |\x0a\x0a\x09 (self commandLineSwitches includes: aSwitch)\x0a\x09 ifTrue: [ selector := (aSwitch replace: '-[a-z]' with: [ :each | each second asUppercase ]), ':']\x0a\x09 ifFalse: [ selector := 'help:' ].\x0a\x09^ selector",
  304. referencedClasses: [],
  305. //>>excludeEnd("ide");
  306. messageSends: ["ifTrue:ifFalse:", "includes:", "commandLineSwitches", ",", "replace:with:", "asUppercase", "second"]
  307. }),
  308. $globals.AmberCli.a$cls);
  309. $core.addMethod(
  310. $core.method({
  311. selector: "serve:",
  312. protocol: "commands",
  313. fn: function (args){
  314. var self=this,$self=this;
  315. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  316. return $core.withContext(function($ctx1) {
  317. //>>excludeEnd("ctx");
  318. return $recv($recv($globals.FileServer)._createServerWithArguments_(args))._start();
  319. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  320. }, function($ctx1) {$ctx1.fill(self,"serve:",{args:args},$globals.AmberCli.a$cls)});
  321. //>>excludeEnd("ctx");
  322. },
  323. //>>excludeStart("ide", pragmas.excludeIdeData);
  324. args: ["args"],
  325. source: "serve: args\x0a\x09^ (FileServer createServerWithArguments: args) start",
  326. referencedClasses: ["FileServer"],
  327. //>>excludeEnd("ide");
  328. messageSends: ["start", "createServerWithArguments:"]
  329. }),
  330. $globals.AmberCli.a$cls);
  331. $core.addMethod(
  332. $core.method({
  333. selector: "version:",
  334. protocol: "commands",
  335. fn: function (arguments_){
  336. var self=this,$self=this;
  337. return self;
  338. },
  339. //>>excludeStart("ide", pragmas.excludeIdeData);
  340. args: ["arguments"],
  341. source: "version: arguments",
  342. referencedClasses: [],
  343. //>>excludeEnd("ide");
  344. messageSends: []
  345. }),
  346. $globals.AmberCli.a$cls);
  347. $core.addClass("BaseFileManipulator", $globals.Object, ["path", "fs"], "AmberCli");
  348. $core.addMethod(
  349. $core.method({
  350. selector: "dirname",
  351. protocol: "private",
  352. fn: function (){
  353. var self=this,$self=this;
  354. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  355. return $core.withContext(function($ctx1) {
  356. //>>excludeEnd("ctx");
  357. return __dirname;
  358. return self;
  359. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  360. }, function($ctx1) {$ctx1.fill(self,"dirname",{},$globals.BaseFileManipulator)});
  361. //>>excludeEnd("ctx");
  362. },
  363. //>>excludeStart("ide", pragmas.excludeIdeData);
  364. args: [],
  365. source: "dirname\x0a\x09<inlineJS: 'return __dirname'>",
  366. referencedClasses: [],
  367. //>>excludeEnd("ide");
  368. messageSends: []
  369. }),
  370. $globals.BaseFileManipulator);
  371. $core.addMethod(
  372. $core.method({
  373. selector: "initialize",
  374. protocol: "initialization",
  375. fn: function (){
  376. var self=this,$self=this;
  377. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  378. return $core.withContext(function($ctx1) {
  379. //>>excludeEnd("ctx");
  380. (
  381. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  382. $ctx1.supercall = true,
  383. //>>excludeEnd("ctx");
  384. ($globals.BaseFileManipulator.superclass||$boot.nilAsClass).fn.prototype._initialize.apply($self, []));
  385. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  386. $ctx1.supercall = false;
  387. //>>excludeEnd("ctx");;
  388. $self["@path"]=$recv(require)._value_("path");
  389. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  390. $ctx1.sendIdx["value:"]=1;
  391. //>>excludeEnd("ctx");
  392. $self["@fs"]=$recv(require)._value_("fs");
  393. return self;
  394. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  395. }, function($ctx1) {$ctx1.fill(self,"initialize",{},$globals.BaseFileManipulator)});
  396. //>>excludeEnd("ctx");
  397. },
  398. //>>excludeStart("ide", pragmas.excludeIdeData);
  399. args: [],
  400. source: "initialize\x0a\x09super initialize.\x0a\x09path := require value: 'path'.\x0a\x09fs := require value: 'fs'",
  401. referencedClasses: [],
  402. //>>excludeEnd("ide");
  403. messageSends: ["initialize", "value:"]
  404. }),
  405. $globals.BaseFileManipulator);
  406. $core.addMethod(
  407. $core.method({
  408. selector: "rootDirname",
  409. protocol: "private",
  410. fn: function (){
  411. var self=this,$self=this;
  412. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  413. return $core.withContext(function($ctx1) {
  414. //>>excludeEnd("ctx");
  415. return $recv($self["@path"])._join_with_($self._dirname(),"..");
  416. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  417. }, function($ctx1) {$ctx1.fill(self,"rootDirname",{},$globals.BaseFileManipulator)});
  418. //>>excludeEnd("ctx");
  419. },
  420. //>>excludeStart("ide", pragmas.excludeIdeData);
  421. args: [],
  422. source: "rootDirname\x0a\x09^ path join: self dirname with: '..'",
  423. referencedClasses: [],
  424. //>>excludeEnd("ide");
  425. messageSends: ["join:with:", "dirname"]
  426. }),
  427. $globals.BaseFileManipulator);
  428. $core.addClass("Configurator", $globals.BaseFileManipulator, [], "AmberCli");
  429. $core.addMethod(
  430. $core.method({
  431. selector: "initialize",
  432. protocol: "initialization",
  433. fn: function (){
  434. var self=this,$self=this;
  435. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  436. return $core.withContext(function($ctx1) {
  437. //>>excludeEnd("ctx");
  438. (
  439. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  440. $ctx1.supercall = true,
  441. //>>excludeEnd("ctx");
  442. ($globals.Configurator.superclass||$boot.nilAsClass).fn.prototype._initialize.apply($self, []));
  443. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  444. $ctx1.supercall = false;
  445. //>>excludeEnd("ctx");;
  446. return self;
  447. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  448. }, function($ctx1) {$ctx1.fill(self,"initialize",{},$globals.Configurator)});
  449. //>>excludeEnd("ctx");
  450. },
  451. //>>excludeStart("ide", pragmas.excludeIdeData);
  452. args: [],
  453. source: "initialize\x0a\x09super initialize",
  454. referencedClasses: [],
  455. //>>excludeEnd("ide");
  456. messageSends: ["initialize"]
  457. }),
  458. $globals.Configurator);
  459. $core.addMethod(
  460. $core.method({
  461. selector: "start",
  462. protocol: "action",
  463. fn: function (){
  464. var self=this,$self=this;
  465. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  466. return $core.withContext(function($ctx1) {
  467. //>>excludeEnd("ctx");
  468. var $receiver;
  469. $self._writeConfigThenDo_((function(err){
  470. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  471. return $core.withContext(function($ctx2) {
  472. //>>excludeEnd("ctx");
  473. if(($receiver = err) == null || $receiver.a$nil){
  474. return $recv(process)._exit();
  475. } else {
  476. return $recv(process)._exit_((111));
  477. }
  478. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  479. }, function($ctx2) {$ctx2.fillBlock({err:err},$ctx1,1)});
  480. //>>excludeEnd("ctx");
  481. }));
  482. return self;
  483. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  484. }, function($ctx1) {$ctx1.fill(self,"start",{},$globals.Configurator)});
  485. //>>excludeEnd("ctx");
  486. },
  487. //>>excludeStart("ide", pragmas.excludeIdeData);
  488. args: [],
  489. source: "start\x0a\x09self writeConfigThenDo: [ :err | err\x0a\x09\x09ifNotNil: [ process exit: 111 ]\x0a\x09\x09ifNil: [ process exit ]]",
  490. referencedClasses: [],
  491. //>>excludeEnd("ide");
  492. messageSends: ["writeConfigThenDo:", "ifNotNil:ifNil:", "exit:", "exit"]
  493. }),
  494. $globals.Configurator);
  495. $core.addMethod(
  496. $core.method({
  497. selector: "writeConfigThenDo:",
  498. protocol: "action",
  499. fn: function (aBlock){
  500. var self=this,$self=this;
  501. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  502. return $core.withContext(function($ctx1) {
  503. //>>excludeEnd("ctx");
  504. $recv($recv($recv(require)._value_("@ambers/sdk"))._configBuilder())._writeConfig_toFile_thenDo_($recv(process)._cwd(),"config.js",aBlock);
  505. return self;
  506. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  507. }, function($ctx1) {$ctx1.fill(self,"writeConfigThenDo:",{aBlock:aBlock},$globals.Configurator)});
  508. //>>excludeEnd("ctx");
  509. },
  510. //>>excludeStart("ide", pragmas.excludeIdeData);
  511. args: ["aBlock"],
  512. source: "writeConfigThenDo: aBlock\x0a\x09(require value: '@ambers/sdk') configBuilder\x0a\x09\x09writeConfig: process cwd\x0a\x09\x09toFile: 'config.js'\x0a\x09\x09thenDo: aBlock",
  513. referencedClasses: [],
  514. //>>excludeEnd("ide");
  515. messageSends: ["writeConfig:toFile:thenDo:", "configBuilder", "value:", "cwd"]
  516. }),
  517. $globals.Configurator);
  518. $core.addClass("FileServer", $globals.BaseFileManipulator, ["http", "url", "host", "port", "basePath", "util", "username", "password", "fallbackPage"], "AmberCli");
  519. //>>excludeStart("ide", pragmas.excludeIdeData);
  520. $globals.FileServer.comment="I am the Amber Smalltalk FileServer.\x0aMy runtime requirement is a functional Node.js executable.\x0a\x0aTo start a FileServer instance on port `4000` use the following code:\x0a\x0a FileServer new start\x0a\x0aA parameterized instance can be created with the following code:\x0a\x0a FileServer createServerWithArguments: options\x0a\x0aHere, `options` is an array of commandline style strings each followed by a value e.g. `#('--port', '6000', '--host', '0.0.0.0')`.\x0aA list of all available parameters can be printed to the commandline by passing `--help` as parameter.\x0aSee the `Options` section for further details on how options are mapped to instance methods.\x0a\x0aAfter startup FileServer checks if the directory layout required by Amber is present and logs a warning on absence.\x0a\x0a\x0a## Options\x0a\x0aEach option is of the form `--some-option-string` which is transformed into a selector of the format `someOptionString:`.\x0aThe trailing `--` gets removed, each `-[a-z]` gets transformed into the according uppercase letter, and a `:` is appended to create a selector which takes a single argument.\x0aAfterwards, the selector gets executed on the `FileServer` instance with the value following in the options array as parameter.\x0a\x0a## Adding new commandline parameters\x0a\x0aAdding new commandline parameters to `FileServer` is as easy as adding a new single parameter method to the `accessing` protocol.";
  521. //>>excludeEnd("ide");
  522. $core.addMethod(
  523. $core.method({
  524. selector: "base64Decode:",
  525. protocol: "private",
  526. fn: function (aString){
  527. var self=this,$self=this;
  528. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  529. return $core.withContext(function($ctx1) {
  530. //>>excludeEnd("ctx");
  531. return (new Buffer(aString, "base64").toString());
  532. return self;
  533. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  534. }, function($ctx1) {$ctx1.fill(self,"base64Decode:",{aString:aString},$globals.FileServer)});
  535. //>>excludeEnd("ctx");
  536. },
  537. //>>excludeStart("ide", pragmas.excludeIdeData);
  538. args: ["aString"],
  539. source: "base64Decode: aString\x0a\x09<inlineJS: 'return (new Buffer(aString, \x22base64\x22).toString())'>",
  540. referencedClasses: [],
  541. //>>excludeEnd("ide");
  542. messageSends: []
  543. }),
  544. $globals.FileServer);
  545. $core.addMethod(
  546. $core.method({
  547. selector: "basePath",
  548. protocol: "accessing",
  549. fn: function (){
  550. var self=this,$self=this;
  551. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  552. return $core.withContext(function($ctx1) {
  553. //>>excludeEnd("ctx");
  554. var $1,$receiver;
  555. $1=$self["@basePath"];
  556. if(($receiver = $1) == null || $receiver.a$nil){
  557. return $recv($self._class())._defaultBasePath();
  558. } else {
  559. return $1;
  560. }
  561. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  562. }, function($ctx1) {$ctx1.fill(self,"basePath",{},$globals.FileServer)});
  563. //>>excludeEnd("ctx");
  564. },
  565. //>>excludeStart("ide", pragmas.excludeIdeData);
  566. args: [],
  567. source: "basePath\x0a\x09^ basePath ifNil: [self class defaultBasePath]",
  568. referencedClasses: [],
  569. //>>excludeEnd("ide");
  570. messageSends: ["ifNil:", "defaultBasePath", "class"]
  571. }),
  572. $globals.FileServer);
  573. $core.addMethod(
  574. $core.method({
  575. selector: "basePath:",
  576. protocol: "accessing",
  577. fn: function (aString){
  578. var self=this,$self=this;
  579. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  580. return $core.withContext(function($ctx1) {
  581. //>>excludeEnd("ctx");
  582. $self["@basePath"]=aString;
  583. $self._validateBasePath();
  584. return self;
  585. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  586. }, function($ctx1) {$ctx1.fill(self,"basePath:",{aString:aString},$globals.FileServer)});
  587. //>>excludeEnd("ctx");
  588. },
  589. //>>excludeStart("ide", pragmas.excludeIdeData);
  590. args: ["aString"],
  591. source: "basePath: aString\x0a\x09basePath := aString.\x0a\x09self validateBasePath.",
  592. referencedClasses: [],
  593. //>>excludeEnd("ide");
  594. messageSends: ["validateBasePath"]
  595. }),
  596. $globals.FileServer);
  597. $core.addMethod(
  598. $core.method({
  599. selector: "checkDirectoryLayout",
  600. protocol: "initialization",
  601. fn: function (){
  602. var self=this,$self=this;
  603. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  604. return $core.withContext(function($ctx1) {
  605. //>>excludeEnd("ctx");
  606. var $1;
  607. $1=$recv($self["@fs"])._existsSync_($self._withBasePath_("index.html"));
  608. if(!$core.assert($1)){
  609. $recv(console)._warn_("Warning: project directory does not contain index.html.");
  610. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  611. $ctx1.sendIdx["warn:"]=1;
  612. //>>excludeEnd("ctx");
  613. $recv(console)._warn_(" You can specify the directory containing index.html with --base-path.");
  614. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  615. $ctx1.sendIdx["warn:"]=2;
  616. //>>excludeEnd("ctx");
  617. $recv(console)._warn_(" You can also specify a page to be served by default,");
  618. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  619. $ctx1.sendIdx["warn:"]=3;
  620. //>>excludeEnd("ctx");
  621. $recv(console)._warn_(" for all paths that do not map to a file, with --fallback-page.");
  622. }
  623. return self;
  624. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  625. }, function($ctx1) {$ctx1.fill(self,"checkDirectoryLayout",{},$globals.FileServer)});
  626. //>>excludeEnd("ctx");
  627. },
  628. //>>excludeStart("ide", pragmas.excludeIdeData);
  629. args: [],
  630. source: "checkDirectoryLayout\x0a\x09(fs existsSync:\x09(self withBasePath: 'index.html')) ifFalse: [\x0a\x09\x09console warn: 'Warning: project directory does not contain index.html.'.\x0a\x09\x09console warn: ' You can specify the directory containing index.html with --base-path.'.\x0a\x09\x09console warn: ' You can also specify a page to be served by default,'.\x0a\x09\x09console warn: ' for all paths that do not map to a file, with --fallback-page.'].",
  631. referencedClasses: [],
  632. //>>excludeEnd("ide");
  633. messageSends: ["ifFalse:", "existsSync:", "withBasePath:", "warn:"]
  634. }),
  635. $globals.FileServer);
  636. $core.addMethod(
  637. $core.method({
  638. selector: "fallbackPage",
  639. protocol: "accessing",
  640. fn: function (){
  641. var self=this,$self=this;
  642. return $self["@fallbackPage"];
  643. },
  644. //>>excludeStart("ide", pragmas.excludeIdeData);
  645. args: [],
  646. source: "fallbackPage\x0a\x09^ fallbackPage",
  647. referencedClasses: [],
  648. //>>excludeEnd("ide");
  649. messageSends: []
  650. }),
  651. $globals.FileServer);
  652. $core.addMethod(
  653. $core.method({
  654. selector: "fallbackPage:",
  655. protocol: "accessing",
  656. fn: function (aString){
  657. var self=this,$self=this;
  658. $self["@fallbackPage"]=aString;
  659. return self;
  660. },
  661. //>>excludeStart("ide", pragmas.excludeIdeData);
  662. args: ["aString"],
  663. source: "fallbackPage: aString\x0a\x09fallbackPage := aString",
  664. referencedClasses: [],
  665. //>>excludeEnd("ide");
  666. messageSends: []
  667. }),
  668. $globals.FileServer);
  669. $core.addMethod(
  670. $core.method({
  671. selector: "handleGETRequest:respondTo:",
  672. protocol: "request handling",
  673. fn: function (aRequest,aResponse){
  674. var self=this,$self=this;
  675. var uri,filename;
  676. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  677. return $core.withContext(function($ctx1) {
  678. //>>excludeEnd("ctx");
  679. var $1;
  680. uri=$recv($self["@url"])._parse_($recv(aRequest)._url());
  681. filename=$recv($self["@path"])._join_with_($self._basePath(),$recv(uri)._pathname());
  682. $recv($self["@fs"])._exists_do_(filename,(function(aBoolean){
  683. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  684. return $core.withContext(function($ctx2) {
  685. //>>excludeEnd("ctx");
  686. if($core.assert(aBoolean)){
  687. $1=$recv($recv($self["@fs"])._statSync_(filename))._isDirectory();
  688. if($core.assert($1)){
  689. return $self._respondDirectoryNamed_from_to_(filename,uri,aResponse);
  690. } else {
  691. return $self._respondFileNamed_to_(filename,aResponse);
  692. }
  693. } else {
  694. return $self._respondNotFoundTo_(aResponse);
  695. }
  696. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  697. }, function($ctx2) {$ctx2.fillBlock({aBoolean:aBoolean},$ctx1,1)});
  698. //>>excludeEnd("ctx");
  699. }));
  700. return self;
  701. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  702. }, function($ctx1) {$ctx1.fill(self,"handleGETRequest:respondTo:",{aRequest:aRequest,aResponse:aResponse,uri:uri,filename:filename},$globals.FileServer)});
  703. //>>excludeEnd("ctx");
  704. },
  705. //>>excludeStart("ide", pragmas.excludeIdeData);
  706. args: ["aRequest", "aResponse"],
  707. source: "handleGETRequest: aRequest respondTo: aResponse\x0a\x09| uri filename |\x0a\x09uri := url parse: aRequest url.\x0a\x09filename := path join: self basePath with: uri pathname.\x0a\x09fs exists: filename do: [:aBoolean |\x0a\x09\x09aBoolean\x0a\x09\x09\x09ifFalse: [self respondNotFoundTo: aResponse]\x0a\x09\x09\x09ifTrue: [(fs statSync: filename) isDirectory\x0a\x09\x09\x09\x09ifTrue: [self respondDirectoryNamed: filename from: uri to: aResponse]\x0a\x09\x09\x09\x09ifFalse: [self respondFileNamed: filename to: aResponse]]]",
  708. referencedClasses: [],
  709. //>>excludeEnd("ide");
  710. messageSends: ["parse:", "url", "join:with:", "basePath", "pathname", "exists:do:", "ifFalse:ifTrue:", "respondNotFoundTo:", "ifTrue:ifFalse:", "isDirectory", "statSync:", "respondDirectoryNamed:from:to:", "respondFileNamed:to:"]
  711. }),
  712. $globals.FileServer);
  713. $core.addMethod(
  714. $core.method({
  715. selector: "handleOPTIONSRequest:respondTo:",
  716. protocol: "request handling",
  717. fn: function (aRequest,aResponse){
  718. var self=this,$self=this;
  719. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  720. return $core.withContext(function($ctx1) {
  721. //>>excludeEnd("ctx");
  722. $recv(aResponse)._writeHead_options_((200),$globals.HashedCollection._newFromPairs_(["Access-Control-Allow-Origin","*","Access-Control-Allow-Methods","GET, PUT, POST, DELETE, OPTIONS","Access-Control-Allow-Headers","Content-Type, Accept","Content-Length",(0),"Access-Control-Max-Age",(10)]));
  723. $recv(aResponse)._end();
  724. return self;
  725. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  726. }, function($ctx1) {$ctx1.fill(self,"handleOPTIONSRequest:respondTo:",{aRequest:aRequest,aResponse:aResponse},$globals.FileServer)});
  727. //>>excludeEnd("ctx");
  728. },
  729. //>>excludeStart("ide", pragmas.excludeIdeData);
  730. args: ["aRequest", "aResponse"],
  731. source: "handleOPTIONSRequest: aRequest respondTo: aResponse\x0a\x09aResponse writeHead: 200 options: #{'Access-Control-Allow-Origin' -> '*'.\x0a\x09\x09\x09\x09\x09'Access-Control-Allow-Methods' -> 'GET, PUT, POST, DELETE, OPTIONS'.\x0a\x09\x09\x09\x09\x09'Access-Control-Allow-Headers' -> 'Content-Type, Accept'.\x0a\x09\x09\x09\x09\x09'Content-Length' -> 0.\x0a\x09\x09\x09\x09\x09'Access-Control-Max-Age' -> 10}.\x0a\x09aResponse end",
  732. referencedClasses: [],
  733. //>>excludeEnd("ide");
  734. messageSends: ["writeHead:options:", "end"]
  735. }),
  736. $globals.FileServer);
  737. $core.addMethod(
  738. $core.method({
  739. selector: "handlePUTRequest:respondTo:",
  740. protocol: "request handling",
  741. fn: function (aRequest,aResponse){
  742. var self=this,$self=this;
  743. var file,stream;
  744. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  745. return $core.withContext(function($ctx1) {
  746. //>>excludeEnd("ctx");
  747. var $1,$2,$3,$4;
  748. $1=$self._isAuthenticated_(aRequest);
  749. if(!$core.assert($1)){
  750. $self._respondAuthenticationRequiredTo_(aResponse);
  751. return nil;
  752. }
  753. file=".".__comma($recv(aRequest)._url());
  754. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  755. $ctx1.sendIdx[","]=1;
  756. //>>excludeEnd("ctx");
  757. stream=$recv($self["@fs"])._createWriteStream_(file);
  758. $recv(stream)._on_do_("error",(function(error){
  759. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  760. return $core.withContext(function($ctx2) {
  761. //>>excludeEnd("ctx");
  762. $2=console;
  763. $3="Error creating WriteStream for file ".__comma(file);
  764. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  765. $ctx2.sendIdx[","]=2;
  766. //>>excludeEnd("ctx");
  767. $recv($2)._warn_($3);
  768. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  769. $ctx2.sendIdx["warn:"]=1;
  770. //>>excludeEnd("ctx");
  771. $recv(console)._warn_(" Did you forget to create the necessary directory in your project (often /src)?");
  772. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  773. $ctx2.sendIdx["warn:"]=2;
  774. //>>excludeEnd("ctx");
  775. $recv(console)._warn_(" The exact error is: ".__comma(error));
  776. return $self._respondNotCreatedTo_(aResponse);
  777. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  778. }, function($ctx2) {$ctx2.fillBlock({error:error},$ctx1,2)});
  779. //>>excludeEnd("ctx");
  780. }));
  781. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  782. $ctx1.sendIdx["on:do:"]=1;
  783. //>>excludeEnd("ctx");
  784. $recv(stream)._on_do_("close",(function(){
  785. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  786. return $core.withContext(function($ctx2) {
  787. //>>excludeEnd("ctx");
  788. return $self._respondCreatedTo_(aResponse);
  789. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  790. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)});
  791. //>>excludeEnd("ctx");
  792. }));
  793. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  794. $ctx1.sendIdx["on:do:"]=2;
  795. //>>excludeEnd("ctx");
  796. $recv(aRequest)._setEncoding_("utf8");
  797. $recv(aRequest)._on_do_("data",(function(data){
  798. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  799. return $core.withContext(function($ctx2) {
  800. //>>excludeEnd("ctx");
  801. return $recv(stream)._write_(data);
  802. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  803. }, function($ctx2) {$ctx2.fillBlock({data:data},$ctx1,4)});
  804. //>>excludeEnd("ctx");
  805. }));
  806. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  807. $ctx1.sendIdx["on:do:"]=3;
  808. //>>excludeEnd("ctx");
  809. $recv(aRequest)._on_do_("end",(function(){
  810. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  811. return $core.withContext(function($ctx2) {
  812. //>>excludeEnd("ctx");
  813. $4=$recv(stream)._writable();
  814. if($core.assert($4)){
  815. return $recv(stream)._end();
  816. }
  817. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  818. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)});
  819. //>>excludeEnd("ctx");
  820. }));
  821. return self;
  822. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  823. }, function($ctx1) {$ctx1.fill(self,"handlePUTRequest:respondTo:",{aRequest:aRequest,aResponse:aResponse,file:file,stream:stream},$globals.FileServer)});
  824. //>>excludeEnd("ctx");
  825. },
  826. //>>excludeStart("ide", pragmas.excludeIdeData);
  827. args: ["aRequest", "aResponse"],
  828. source: "handlePUTRequest: aRequest respondTo: aResponse\x0a\x09| file stream |\x0a\x09(self isAuthenticated: aRequest)\x0a\x09\x09ifFalse: [self respondAuthenticationRequiredTo: aResponse. ^ nil].\x0a\x0a\x09file := '.', aRequest url.\x0a\x09stream := fs createWriteStream: file.\x0a\x0a\x09stream on: 'error' do: [:error |\x0a\x09\x09console warn: 'Error creating WriteStream for file ', file.\x0a\x09\x09console warn: ' Did you forget to create the necessary directory in your project (often /src)?'.\x0a\x09\x09console warn: ' The exact error is: ', error.\x0a\x09\x09self respondNotCreatedTo: aResponse].\x0a\x0a\x09stream on: 'close' do: [\x0a\x09\x09self respondCreatedTo: aResponse].\x0a\x0a\x09aRequest setEncoding: 'utf8'.\x0a\x09aRequest on: 'data' do: [:data |\x0a\x09\x09stream write: data].\x0a\x0a\x09aRequest on: 'end' do: [\x0a\x09\x09stream writable ifTrue: [stream end]]",
  829. referencedClasses: [],
  830. //>>excludeEnd("ide");
  831. messageSends: ["ifFalse:", "isAuthenticated:", "respondAuthenticationRequiredTo:", ",", "url", "createWriteStream:", "on:do:", "warn:", "respondNotCreatedTo:", "respondCreatedTo:", "setEncoding:", "write:", "ifTrue:", "writable", "end"]
  832. }),
  833. $globals.FileServer);
  834. $core.addMethod(
  835. $core.method({
  836. selector: "handleRequest:respondTo:",
  837. protocol: "request handling",
  838. fn: function (aRequest,aResponse){
  839. var self=this,$self=this;
  840. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  841. return $core.withContext(function($ctx1) {
  842. //>>excludeEnd("ctx");
  843. var $2,$1,$4,$3,$5;
  844. $2=$recv(aRequest)._method();
  845. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  846. $ctx1.sendIdx["method"]=1;
  847. //>>excludeEnd("ctx");
  848. $1=$recv($2).__eq("PUT");
  849. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  850. $ctx1.sendIdx["="]=1;
  851. //>>excludeEnd("ctx");
  852. if($core.assert($1)){
  853. $self._handlePUTRequest_respondTo_(aRequest,aResponse);
  854. }
  855. $4=$recv(aRequest)._method();
  856. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  857. $ctx1.sendIdx["method"]=2;
  858. //>>excludeEnd("ctx");
  859. $3=$recv($4).__eq("GET");
  860. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  861. $ctx1.sendIdx["="]=2;
  862. //>>excludeEnd("ctx");
  863. if($core.assert($3)){
  864. $self._handleGETRequest_respondTo_(aRequest,aResponse);
  865. }
  866. $5=$recv($recv(aRequest)._method()).__eq("OPTIONS");
  867. if($core.assert($5)){
  868. $self._handleOPTIONSRequest_respondTo_(aRequest,aResponse);
  869. }
  870. return self;
  871. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  872. }, function($ctx1) {$ctx1.fill(self,"handleRequest:respondTo:",{aRequest:aRequest,aResponse:aResponse},$globals.FileServer)});
  873. //>>excludeEnd("ctx");
  874. },
  875. //>>excludeStart("ide", pragmas.excludeIdeData);
  876. args: ["aRequest", "aResponse"],
  877. source: "handleRequest: aRequest respondTo: aResponse\x0a\x09aRequest method = 'PUT'\x0a\x09\x09ifTrue: [self handlePUTRequest: aRequest respondTo: aResponse].\x0a\x09aRequest method = 'GET'\x0a\x09\x09ifTrue:[self handleGETRequest: aRequest respondTo: aResponse].\x0a\x09aRequest method = 'OPTIONS'\x0a\x09\x09ifTrue:[self handleOPTIONSRequest: aRequest respondTo: aResponse]",
  878. referencedClasses: [],
  879. //>>excludeEnd("ide");
  880. messageSends: ["ifTrue:", "=", "method", "handlePUTRequest:respondTo:", "handleGETRequest:respondTo:", "handleOPTIONSRequest:respondTo:"]
  881. }),
  882. $globals.FileServer);
  883. $core.addMethod(
  884. $core.method({
  885. selector: "host",
  886. protocol: "accessing",
  887. fn: function (){
  888. var self=this,$self=this;
  889. return $self["@host"];
  890. },
  891. //>>excludeStart("ide", pragmas.excludeIdeData);
  892. args: [],
  893. source: "host\x0a\x09^ host",
  894. referencedClasses: [],
  895. //>>excludeEnd("ide");
  896. messageSends: []
  897. }),
  898. $globals.FileServer);
  899. $core.addMethod(
  900. $core.method({
  901. selector: "host:",
  902. protocol: "accessing",
  903. fn: function (hostname){
  904. var self=this,$self=this;
  905. $self["@host"]=hostname;
  906. return self;
  907. },
  908. //>>excludeStart("ide", pragmas.excludeIdeData);
  909. args: ["hostname"],
  910. source: "host: hostname\x0a\x09host := hostname",
  911. referencedClasses: [],
  912. //>>excludeEnd("ide");
  913. messageSends: []
  914. }),
  915. $globals.FileServer);
  916. $core.addMethod(
  917. $core.method({
  918. selector: "initialize",
  919. protocol: "initialization",
  920. fn: function (){
  921. var self=this,$self=this;
  922. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  923. return $core.withContext(function($ctx1) {
  924. //>>excludeEnd("ctx");
  925. var $1;
  926. (
  927. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  928. $ctx1.supercall = true,
  929. //>>excludeEnd("ctx");
  930. ($globals.FileServer.superclass||$boot.nilAsClass).fn.prototype._initialize.apply($self, []));
  931. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  932. $ctx1.supercall = false;
  933. //>>excludeEnd("ctx");;
  934. $self["@http"]=$self._require_("http");
  935. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  936. $ctx1.sendIdx["require:"]=1;
  937. //>>excludeEnd("ctx");
  938. $self["@util"]=$self._require_("util");
  939. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  940. $ctx1.sendIdx["require:"]=2;
  941. //>>excludeEnd("ctx");
  942. $self["@url"]=$self._require_("url");
  943. $1=$self._class();
  944. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  945. $ctx1.sendIdx["class"]=1;
  946. //>>excludeEnd("ctx");
  947. $self["@host"]=$recv($1)._defaultHost();
  948. $self["@port"]=$recv($self._class())._defaultPort();
  949. $self["@username"]=nil;
  950. $self["@password"]=nil;
  951. $self["@fallbackPage"]=nil;
  952. return self;
  953. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  954. }, function($ctx1) {$ctx1.fill(self,"initialize",{},$globals.FileServer)});
  955. //>>excludeEnd("ctx");
  956. },
  957. //>>excludeStart("ide", pragmas.excludeIdeData);
  958. args: [],
  959. source: "initialize\x0a\x09super initialize.\x0a\x09http := self require: 'http'.\x0a\x09util := self require: 'util'.\x0a\x09url := self require: 'url'.\x0a\x09host := self class defaultHost.\x0a\x09port := self class defaultPort.\x0a\x09username := nil.\x0a\x09password := nil.\x0a\x09fallbackPage := nil.",
  960. referencedClasses: [],
  961. //>>excludeEnd("ide");
  962. messageSends: ["initialize", "require:", "defaultHost", "class", "defaultPort"]
  963. }),
  964. $globals.FileServer);
  965. $core.addMethod(
  966. $core.method({
  967. selector: "isAuthenticated:",
  968. protocol: "private",
  969. fn: function (aRequest){
  970. var self=this,$self=this;
  971. var header,token,auth,parts;
  972. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  973. return $core.withContext(function($ctx1) {
  974. //>>excludeEnd("ctx");
  975. var $2,$1,$3,$4,$5,$8,$9,$7,$6,$receiver;
  976. var $early={};
  977. try {
  978. $2=$recv($self["@username"])._isNil();
  979. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  980. $ctx1.sendIdx["isNil"]=1;
  981. //>>excludeEnd("ctx");
  982. $1=$recv($2)._and_((function(){
  983. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  984. return $core.withContext(function($ctx2) {
  985. //>>excludeEnd("ctx");
  986. return $recv($self["@password"])._isNil();
  987. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  988. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
  989. //>>excludeEnd("ctx");
  990. }));
  991. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  992. $ctx1.sendIdx["and:"]=1;
  993. //>>excludeEnd("ctx");
  994. if($core.assert($1)){
  995. return true;
  996. }
  997. $3=$recv($recv(aRequest)._headers())._at_("authorization");
  998. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  999. $ctx1.sendIdx["at:"]=1;
  1000. //>>excludeEnd("ctx");
  1001. if(($receiver = $3) == null || $receiver.a$nil){
  1002. header="";
  1003. } else {
  1004. header=$3;
  1005. }
  1006. $recv(header)._ifEmpty_ifNotEmpty_((function(){
  1007. throw $early=[false];
  1008. }),(function(){
  1009. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1010. return $core.withContext(function($ctx2) {
  1011. //>>excludeEnd("ctx");
  1012. $4=$recv(header)._tokenize_(" ");
  1013. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1014. $ctx2.sendIdx["tokenize:"]=1;
  1015. //>>excludeEnd("ctx");
  1016. if(($receiver = $4) == null || $receiver.a$nil){
  1017. token="";
  1018. } else {
  1019. token=$4;
  1020. }
  1021. $5=$recv(token)._at_((2));
  1022. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1023. $ctx2.sendIdx["at:"]=2;
  1024. //>>excludeEnd("ctx");
  1025. auth=$self._base64Decode_($5);
  1026. parts=$recv(auth)._tokenize_(":");
  1027. $8=$self["@username"];
  1028. $9=$recv(parts)._at_((1));
  1029. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1030. $ctx2.sendIdx["at:"]=3;
  1031. //>>excludeEnd("ctx");
  1032. $7=$recv($8).__eq($9);
  1033. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1034. $ctx2.sendIdx["="]=1;
  1035. //>>excludeEnd("ctx");
  1036. $6=$recv($7)._and_((function(){
  1037. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1038. return $core.withContext(function($ctx3) {
  1039. //>>excludeEnd("ctx");
  1040. return $recv($self["@password"]).__eq($recv(parts)._at_((2)));
  1041. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1042. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,7)});
  1043. //>>excludeEnd("ctx");
  1044. }));
  1045. if($core.assert($6)){
  1046. throw $early=[true];
  1047. } else {
  1048. throw $early=[false];
  1049. }
  1050. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1051. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)});
  1052. //>>excludeEnd("ctx");
  1053. }));
  1054. return self;
  1055. }
  1056. catch(e) {if(e===$early)return e[0]; throw e}
  1057. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1058. }, function($ctx1) {$ctx1.fill(self,"isAuthenticated:",{aRequest:aRequest,header:header,token:token,auth:auth,parts:parts},$globals.FileServer)});
  1059. //>>excludeEnd("ctx");
  1060. },
  1061. //>>excludeStart("ide", pragmas.excludeIdeData);
  1062. args: ["aRequest"],
  1063. source: "isAuthenticated: aRequest\x0a\x09\x22Basic HTTP Auth: http://stackoverflow.com/a/5957629/293175\x0a\x09 and https://gist.github.com/1686663\x22\x0a\x09| header token auth parts|\x0a\x0a\x09(username isNil and: [password isNil]) ifTrue: [^ true].\x0a\x0a\x09\x22get authentication header\x22\x0a\x09header := (aRequest headers at: 'authorization') ifNil:[''].\x0a\x09header\x0a\x09ifEmpty: [^ false]\x0a\x09ifNotEmpty: [\x0a\x09\x09\x22get authentication token\x22\x0a\x09\x09token := (header tokenize: ' ') ifNil:[''].\x0a\x09\x09\x22convert back from base64\x22\x0a\x09\x09auth := self base64Decode: (token at: 2).\x0a\x09\x09\x22split token at colon\x22\x0a\x09\x09parts := auth tokenize: ':'.\x0a\x0a\x09\x09((username = (parts at: 1)) and: [password = (parts at: 2)])\x0a\x09\x09\x09ifTrue: [^ true]\x0a\x09\x09\x09ifFalse: [^ false]\x0a\x09].",
  1064. referencedClasses: [],
  1065. //>>excludeEnd("ide");
  1066. messageSends: ["ifTrue:", "and:", "isNil", "ifNil:", "at:", "headers", "ifEmpty:ifNotEmpty:", "tokenize:", "base64Decode:", "ifTrue:ifFalse:", "="]
  1067. }),
  1068. $globals.FileServer);
  1069. $core.addMethod(
  1070. $core.method({
  1071. selector: "password:",
  1072. protocol: "accessing",
  1073. fn: function (aPassword){
  1074. var self=this,$self=this;
  1075. $self["@password"]=aPassword;
  1076. return self;
  1077. },
  1078. //>>excludeStart("ide", pragmas.excludeIdeData);
  1079. args: ["aPassword"],
  1080. source: "password: aPassword\x0a\x09password := aPassword.",
  1081. referencedClasses: [],
  1082. //>>excludeEnd("ide");
  1083. messageSends: []
  1084. }),
  1085. $globals.FileServer);
  1086. $core.addMethod(
  1087. $core.method({
  1088. selector: "port",
  1089. protocol: "accessing",
  1090. fn: function (){
  1091. var self=this,$self=this;
  1092. return $self["@port"];
  1093. },
  1094. //>>excludeStart("ide", pragmas.excludeIdeData);
  1095. args: [],
  1096. source: "port\x0a\x09^ port",
  1097. referencedClasses: [],
  1098. //>>excludeEnd("ide");
  1099. messageSends: []
  1100. }),
  1101. $globals.FileServer);
  1102. $core.addMethod(
  1103. $core.method({
  1104. selector: "port:",
  1105. protocol: "accessing",
  1106. fn: function (aNumber){
  1107. var self=this,$self=this;
  1108. $self["@port"]=aNumber;
  1109. return self;
  1110. },
  1111. //>>excludeStart("ide", pragmas.excludeIdeData);
  1112. args: ["aNumber"],
  1113. source: "port: aNumber\x0a\x09port := aNumber",
  1114. referencedClasses: [],
  1115. //>>excludeEnd("ide");
  1116. messageSends: []
  1117. }),
  1118. $globals.FileServer);
  1119. $core.addMethod(
  1120. $core.method({
  1121. selector: "require:",
  1122. protocol: "private",
  1123. fn: function (aModuleString){
  1124. var self=this,$self=this;
  1125. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1126. return $core.withContext(function($ctx1) {
  1127. //>>excludeEnd("ctx");
  1128. return $recv(require)._value_(aModuleString);
  1129. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1130. }, function($ctx1) {$ctx1.fill(self,"require:",{aModuleString:aModuleString},$globals.FileServer)});
  1131. //>>excludeEnd("ctx");
  1132. },
  1133. //>>excludeStart("ide", pragmas.excludeIdeData);
  1134. args: ["aModuleString"],
  1135. source: "require: aModuleString\x0a\x09\x22call to the require function\x22\x0a\x09^require value: aModuleString",
  1136. referencedClasses: [],
  1137. //>>excludeEnd("ide");
  1138. messageSends: ["value:"]
  1139. }),
  1140. $globals.FileServer);
  1141. $core.addMethod(
  1142. $core.method({
  1143. selector: "respondAuthenticationRequiredTo:",
  1144. protocol: "request handling",
  1145. fn: function (aResponse){
  1146. var self=this,$self=this;
  1147. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1148. return $core.withContext(function($ctx1) {
  1149. //>>excludeEnd("ctx");
  1150. $recv(aResponse)._writeHead_options_((401),$globals.HashedCollection._newFromPairs_(["WWW-Authenticate","Basic realm=\x22Secured Developer Area\x22"]));
  1151. $recv(aResponse)._write_("<html><body>Authentication needed</body></html>");
  1152. $recv(aResponse)._end();
  1153. return self;
  1154. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1155. }, function($ctx1) {$ctx1.fill(self,"respondAuthenticationRequiredTo:",{aResponse:aResponse},$globals.FileServer)});
  1156. //>>excludeEnd("ctx");
  1157. },
  1158. //>>excludeStart("ide", pragmas.excludeIdeData);
  1159. args: ["aResponse"],
  1160. source: "respondAuthenticationRequiredTo: aResponse\x0a\x09aResponse\x0a\x09\x09writeHead: 401 options: #{'WWW-Authenticate' -> 'Basic realm=\x22Secured Developer Area\x22'};\x0a\x09\x09write: '<html><body>Authentication needed</body></html>';\x0a\x09\x09end.",
  1161. referencedClasses: [],
  1162. //>>excludeEnd("ide");
  1163. messageSends: ["writeHead:options:", "write:", "end"]
  1164. }),
  1165. $globals.FileServer);
  1166. $core.addMethod(
  1167. $core.method({
  1168. selector: "respondCreatedTo:",
  1169. protocol: "request handling",
  1170. fn: function (aResponse){
  1171. var self=this,$self=this;
  1172. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1173. return $core.withContext(function($ctx1) {
  1174. //>>excludeEnd("ctx");
  1175. $recv(aResponse)._writeHead_options_((201),$globals.HashedCollection._newFromPairs_(["Content-Type","text/plain","Access-Control-Allow-Origin","*"]));
  1176. $recv(aResponse)._end();
  1177. return self;
  1178. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1179. }, function($ctx1) {$ctx1.fill(self,"respondCreatedTo:",{aResponse:aResponse},$globals.FileServer)});
  1180. //>>excludeEnd("ctx");
  1181. },
  1182. //>>excludeStart("ide", pragmas.excludeIdeData);
  1183. args: ["aResponse"],
  1184. source: "respondCreatedTo: aResponse\x0a\x09aResponse\x0a\x09\x09writeHead: 201 options: #{'Content-Type' -> 'text/plain'. 'Access-Control-Allow-Origin' -> '*'};\x0a\x09\x09end.",
  1185. referencedClasses: [],
  1186. //>>excludeEnd("ide");
  1187. messageSends: ["writeHead:options:", "end"]
  1188. }),
  1189. $globals.FileServer);
  1190. $core.addMethod(
  1191. $core.method({
  1192. selector: "respondDirectoryNamed:from:to:",
  1193. protocol: "request handling",
  1194. fn: function (aDirname,aUrl,aResponse){
  1195. var self=this,$self=this;
  1196. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1197. return $core.withContext(function($ctx1) {
  1198. //>>excludeEnd("ctx");
  1199. var $2,$1,$3,$5,$7,$6,$4,$receiver;
  1200. $2=$recv(aUrl)._pathname();
  1201. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1202. $ctx1.sendIdx["pathname"]=1;
  1203. //>>excludeEnd("ctx");
  1204. $1=$recv($2)._endsWith_("/");
  1205. if($core.assert($1)){
  1206. $3=$recv(aDirname).__comma("index.html");
  1207. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1208. $ctx1.sendIdx[","]=1;
  1209. //>>excludeEnd("ctx");
  1210. $self._respondFileNamed_to_($3,aResponse);
  1211. } else {
  1212. $5=$recv($recv(aUrl)._pathname()).__comma("/");
  1213. $7=$recv(aUrl)._search();
  1214. if(($receiver = $7) == null || $receiver.a$nil){
  1215. $6="";
  1216. } else {
  1217. $6=$7;
  1218. }
  1219. $4=$recv($5).__comma($6);
  1220. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1221. $ctx1.sendIdx[","]=2;
  1222. //>>excludeEnd("ctx");
  1223. $self._respondRedirect_to_($4,aResponse);
  1224. }
  1225. return self;
  1226. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1227. }, function($ctx1) {$ctx1.fill(self,"respondDirectoryNamed:from:to:",{aDirname:aDirname,aUrl:aUrl,aResponse:aResponse},$globals.FileServer)});
  1228. //>>excludeEnd("ctx");
  1229. },
  1230. //>>excludeStart("ide", pragmas.excludeIdeData);
  1231. args: ["aDirname", "aUrl", "aResponse"],
  1232. source: "respondDirectoryNamed: aDirname from: aUrl to: aResponse\x0a\x09(aUrl pathname endsWith: '/')\x0a\x09\x09ifTrue: [self respondFileNamed: aDirname, 'index.html' to: aResponse]\x0a\x09\x09ifFalse: [self respondRedirect: aUrl pathname, '/', (aUrl search ifNil: ['']) to: aResponse]",
  1233. referencedClasses: [],
  1234. //>>excludeEnd("ide");
  1235. messageSends: ["ifTrue:ifFalse:", "endsWith:", "pathname", "respondFileNamed:to:", ",", "respondRedirect:to:", "ifNil:", "search"]
  1236. }),
  1237. $globals.FileServer);
  1238. $core.addMethod(
  1239. $core.method({
  1240. selector: "respondFileNamed:to:",
  1241. protocol: "request handling",
  1242. fn: function (aFilename,aResponse){
  1243. var self=this,$self=this;
  1244. var type,filename;
  1245. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1246. return $core.withContext(function($ctx1) {
  1247. //>>excludeEnd("ctx");
  1248. var $1,$2,$3,$4;
  1249. filename=aFilename;
  1250. $recv($self["@fs"])._readFile_do_(filename,(function(ex,file){
  1251. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1252. return $core.withContext(function($ctx2) {
  1253. //>>excludeEnd("ctx");
  1254. $1=$recv(ex)._notNil();
  1255. if($core.assert($1)){
  1256. $2=console;
  1257. $3=$recv(filename).__comma(" does not exist");
  1258. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1259. $ctx2.sendIdx[","]=1;
  1260. //>>excludeEnd("ctx");
  1261. $recv($2)._log_($3);
  1262. return $self._respondNotFoundTo_(aResponse);
  1263. } else {
  1264. type=$recv($self._class())._mimeTypeFor_(filename);
  1265. $4=$recv(type).__eq("application/javascript");
  1266. if($core.assert($4)){
  1267. type=$recv(type).__comma(";charset=utf-8");
  1268. type;
  1269. }
  1270. $recv(aResponse)._writeHead_options_((200),$globals.HashedCollection._newFromPairs_(["Content-Type",type]));
  1271. $recv(aResponse)._write_encoding_(file,"binary");
  1272. return $recv(aResponse)._end();
  1273. }
  1274. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1275. }, function($ctx2) {$ctx2.fillBlock({ex:ex,file:file},$ctx1,1)});
  1276. //>>excludeEnd("ctx");
  1277. }));
  1278. return self;
  1279. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1280. }, function($ctx1) {$ctx1.fill(self,"respondFileNamed:to:",{aFilename:aFilename,aResponse:aResponse,type:type,filename:filename},$globals.FileServer)});
  1281. //>>excludeEnd("ctx");
  1282. },
  1283. //>>excludeStart("ide", pragmas.excludeIdeData);
  1284. args: ["aFilename", "aResponse"],
  1285. source: "respondFileNamed: aFilename to: aResponse\x0a\x09| type filename |\x0a\x0a\x09filename := aFilename.\x0a\x0a\x09fs readFile: filename do: [:ex :file |\x0a\x09\x09ex notNil \x0a\x09\x09\x09ifTrue: [\x0a\x09\x09\x09\x09console log: filename, ' does not exist'.\x0a\x09\x09\x09\x09self respondNotFoundTo: aResponse]\x0a\x09\x09\x09ifFalse: [\x0a\x09\x09\x09\x09type := self class mimeTypeFor: filename.\x0a\x09\x09\x09\x09type = 'application/javascript'\x0a\x09\x09\x09\x09\x09ifTrue: [ type:=type,';charset=utf-8' ].\x0a\x09\x09\x09\x09aResponse \x0a\x09\x09\x09\x09\x09writeHead: 200 options: #{'Content-Type' -> type};\x0a\x09\x09\x09\x09\x09write: file encoding: 'binary';\x0a\x09\x09\x09\x09\x09end]]",
  1286. referencedClasses: [],
  1287. //>>excludeEnd("ide");
  1288. messageSends: ["readFile:do:", "ifTrue:ifFalse:", "notNil", "log:", ",", "respondNotFoundTo:", "mimeTypeFor:", "class", "ifTrue:", "=", "writeHead:options:", "write:encoding:", "end"]
  1289. }),
  1290. $globals.FileServer);
  1291. $core.addMethod(
  1292. $core.method({
  1293. selector: "respondInternalErrorTo:",
  1294. protocol: "request handling",
  1295. fn: function (aResponse){
  1296. var self=this,$self=this;
  1297. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1298. return $core.withContext(function($ctx1) {
  1299. //>>excludeEnd("ctx");
  1300. $recv(aResponse)._writeHead_options_((500),$globals.HashedCollection._newFromPairs_(["Content-Type","text/plain"]));
  1301. $recv(aResponse)._write_("500 Internal server error");
  1302. $recv(aResponse)._end();
  1303. return self;
  1304. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1305. }, function($ctx1) {$ctx1.fill(self,"respondInternalErrorTo:",{aResponse:aResponse},$globals.FileServer)});
  1306. //>>excludeEnd("ctx");
  1307. },
  1308. //>>excludeStart("ide", pragmas.excludeIdeData);
  1309. args: ["aResponse"],
  1310. source: "respondInternalErrorTo: aResponse\x0a\x09aResponse \x0a\x09\x09writeHead: 500 options: #{'Content-Type' -> 'text/plain'};\x0a\x09\x09write: '500 Internal server error';\x0a\x09\x09end",
  1311. referencedClasses: [],
  1312. //>>excludeEnd("ide");
  1313. messageSends: ["writeHead:options:", "write:", "end"]
  1314. }),
  1315. $globals.FileServer);
  1316. $core.addMethod(
  1317. $core.method({
  1318. selector: "respondNotCreatedTo:",
  1319. protocol: "request handling",
  1320. fn: function (aResponse){
  1321. var self=this,$self=this;
  1322. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1323. return $core.withContext(function($ctx1) {
  1324. //>>excludeEnd("ctx");
  1325. $recv(aResponse)._writeHead_options_((400),$globals.HashedCollection._newFromPairs_(["Content-Type","text/plain"]));
  1326. $recv(aResponse)._write_("File could not be created. Did you forget to create the src directory on the server?");
  1327. $recv(aResponse)._end();
  1328. return self;
  1329. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1330. }, function($ctx1) {$ctx1.fill(self,"respondNotCreatedTo:",{aResponse:aResponse},$globals.FileServer)});
  1331. //>>excludeEnd("ctx");
  1332. },
  1333. //>>excludeStart("ide", pragmas.excludeIdeData);
  1334. args: ["aResponse"],
  1335. source: "respondNotCreatedTo: aResponse\x0a\x09aResponse\x0a\x09\x09writeHead: 400 options: #{'Content-Type' -> 'text/plain'};\x0a\x09\x09write: 'File could not be created. Did you forget to create the src directory on the server?';\x0a\x09\x09end.",
  1336. referencedClasses: [],
  1337. //>>excludeEnd("ide");
  1338. messageSends: ["writeHead:options:", "write:", "end"]
  1339. }),
  1340. $globals.FileServer);
  1341. $core.addMethod(
  1342. $core.method({
  1343. selector: "respondNotFoundTo:",
  1344. protocol: "request handling",
  1345. fn: function (aResponse){
  1346. var self=this,$self=this;
  1347. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1348. return $core.withContext(function($ctx1) {
  1349. //>>excludeEnd("ctx");
  1350. var $2,$1;
  1351. $2=$self._fallbackPage();
  1352. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1353. $ctx1.sendIdx["fallbackPage"]=1;
  1354. //>>excludeEnd("ctx");
  1355. $1=$recv($2)._isNil();
  1356. if(!$core.assert($1)){
  1357. return $self._respondFileNamed_to_($self._fallbackPage(),aResponse);
  1358. }
  1359. $recv(aResponse)._writeHead_options_((404),$globals.HashedCollection._newFromPairs_(["Content-Type","text/html"]));
  1360. $recv(aResponse)._write_("<html><body><p>404 Not found</p>");
  1361. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1362. $ctx1.sendIdx["write:"]=1;
  1363. //>>excludeEnd("ctx");
  1364. $recv(aResponse)._write_("<p>Did you forget to put an index.html file into the directory which is served by \x22bin/amber serve\x22? To solve this you can:<ul>");
  1365. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1366. $ctx1.sendIdx["write:"]=2;
  1367. //>>excludeEnd("ctx");
  1368. $recv(aResponse)._write_("<li>create an index.html in the served directory.</li>");
  1369. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1370. $ctx1.sendIdx["write:"]=3;
  1371. //>>excludeEnd("ctx");
  1372. $recv(aResponse)._write_("<li>can also specify the location of a page to be served whenever path does not resolve to a file with the \x22--fallback-page\x22 option.</li>");
  1373. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1374. $ctx1.sendIdx["write:"]=4;
  1375. //>>excludeEnd("ctx");
  1376. $recv(aResponse)._write_("<li>change the directory to be served with the \x22--base-path\x22 option.</li>");
  1377. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1378. $ctx1.sendIdx["write:"]=5;
  1379. //>>excludeEnd("ctx");
  1380. $recv(aResponse)._write_("</ul></p></body></html>");
  1381. $recv(aResponse)._end();
  1382. return self;
  1383. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1384. }, function($ctx1) {$ctx1.fill(self,"respondNotFoundTo:",{aResponse:aResponse},$globals.FileServer)});
  1385. //>>excludeEnd("ctx");
  1386. },
  1387. //>>excludeStart("ide", pragmas.excludeIdeData);
  1388. args: ["aResponse"],
  1389. source: "respondNotFoundTo: aResponse\x0a\x09self fallbackPage isNil ifFalse: [^self respondFileNamed: self fallbackPage to: aResponse].\x0a\x09aResponse \x0a\x09\x09writeHead: 404 options: #{'Content-Type' -> 'text/html'};\x0a\x09\x09write: '<html><body><p>404 Not found</p>';\x0a\x09\x09write: '<p>Did you forget to put an index.html file into the directory which is served by \x22bin/amber serve\x22? To solve this you can:<ul>';\x0a\x09\x09write: '<li>create an index.html in the served directory.</li>';\x0a\x09\x09write: '<li>can also specify the location of a page to be served whenever path does not resolve to a file with the \x22--fallback-page\x22 option.</li>';\x0a\x09\x09write: '<li>change the directory to be served with the \x22--base-path\x22 option.</li>';\x0a\x09\x09write: '</ul></p></body></html>';\x0a\x09\x09end",
  1390. referencedClasses: [],
  1391. //>>excludeEnd("ide");
  1392. messageSends: ["ifFalse:", "isNil", "fallbackPage", "respondFileNamed:to:", "writeHead:options:", "write:", "end"]
  1393. }),
  1394. $globals.FileServer);
  1395. $core.addMethod(
  1396. $core.method({
  1397. selector: "respondOKTo:",
  1398. protocol: "request handling",
  1399. fn: function (aResponse){
  1400. var self=this,$self=this;
  1401. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1402. return $core.withContext(function($ctx1) {
  1403. //>>excludeEnd("ctx");
  1404. $recv(aResponse)._writeHead_options_((200),$globals.HashedCollection._newFromPairs_(["Content-Type","text/plain","Access-Control-Allow-Origin","*"]));
  1405. $recv(aResponse)._end();
  1406. return self;
  1407. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1408. }, function($ctx1) {$ctx1.fill(self,"respondOKTo:",{aResponse:aResponse},$globals.FileServer)});
  1409. //>>excludeEnd("ctx");
  1410. },
  1411. //>>excludeStart("ide", pragmas.excludeIdeData);
  1412. args: ["aResponse"],
  1413. source: "respondOKTo: aResponse\x0a\x09aResponse\x0a\x09\x09writeHead: 200 options: #{'Content-Type' -> 'text/plain'. 'Access-Control-Allow-Origin' -> '*'};\x0a\x09\x09end.",
  1414. referencedClasses: [],
  1415. //>>excludeEnd("ide");
  1416. messageSends: ["writeHead:options:", "end"]
  1417. }),
  1418. $globals.FileServer);
  1419. $core.addMethod(
  1420. $core.method({
  1421. selector: "respondRedirect:to:",
  1422. protocol: "request handling",
  1423. fn: function (aString,aResponse){
  1424. var self=this,$self=this;
  1425. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1426. return $core.withContext(function($ctx1) {
  1427. //>>excludeEnd("ctx");
  1428. $recv(aResponse)._writeHead_options_((303),$globals.HashedCollection._newFromPairs_(["Location",aString]));
  1429. $recv(aResponse)._end();
  1430. return self;
  1431. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1432. }, function($ctx1) {$ctx1.fill(self,"respondRedirect:to:",{aString:aString,aResponse:aResponse},$globals.FileServer)});
  1433. //>>excludeEnd("ctx");
  1434. },
  1435. //>>excludeStart("ide", pragmas.excludeIdeData);
  1436. args: ["aString", "aResponse"],
  1437. source: "respondRedirect: aString to: aResponse\x0a\x09aResponse\x0a\x09\x09writeHead: 303 options: #{'Location' -> aString};\x0a\x09\x09end.",
  1438. referencedClasses: [],
  1439. //>>excludeEnd("ide");
  1440. messageSends: ["writeHead:options:", "end"]
  1441. }),
  1442. $globals.FileServer);
  1443. $core.addMethod(
  1444. $core.method({
  1445. selector: "start",
  1446. protocol: "starting",
  1447. fn: function (){
  1448. var self=this,$self=this;
  1449. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1450. return $core.withContext(function($ctx1) {
  1451. //>>excludeEnd("ctx");
  1452. var $1,$2,$3,$4,$8,$7,$6,$10,$9,$5;
  1453. $self._checkDirectoryLayout();
  1454. $1=$recv($self["@http"])._createServer_((function(request,response){
  1455. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1456. return $core.withContext(function($ctx2) {
  1457. //>>excludeEnd("ctx");
  1458. return $self._handleRequest_respondTo_(request,response);
  1459. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1460. }, function($ctx2) {$ctx2.fillBlock({request:request,response:response},$ctx1,1)});
  1461. //>>excludeEnd("ctx");
  1462. }));
  1463. $recv($1)._on_do_("error",(function(error){
  1464. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1465. return $core.withContext(function($ctx2) {
  1466. //>>excludeEnd("ctx");
  1467. $2=console;
  1468. $3="Error starting server: ".__comma(error);
  1469. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1470. $ctx2.sendIdx[","]=1;
  1471. //>>excludeEnd("ctx");
  1472. return $recv($2)._log_($3);
  1473. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1474. $ctx2.sendIdx["log:"]=1;
  1475. //>>excludeEnd("ctx");
  1476. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1477. }, function($ctx2) {$ctx2.fillBlock({error:error},$ctx1,2)});
  1478. //>>excludeEnd("ctx");
  1479. }));
  1480. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1481. $ctx1.sendIdx["on:do:"]=1;
  1482. //>>excludeEnd("ctx");
  1483. $recv($1)._on_do_("listening",(function(){
  1484. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1485. return $core.withContext(function($ctx2) {
  1486. //>>excludeEnd("ctx");
  1487. $4=console;
  1488. $8=$self._host();
  1489. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1490. $ctx2.sendIdx["host"]=1;
  1491. //>>excludeEnd("ctx");
  1492. $7="Starting file server on http://".__comma($8);
  1493. $6=$recv($7).__comma(":");
  1494. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1495. $ctx2.sendIdx[","]=3;
  1496. //>>excludeEnd("ctx");
  1497. $10=$self._port();
  1498. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1499. $ctx2.sendIdx["port"]=1;
  1500. //>>excludeEnd("ctx");
  1501. $9=$recv($10)._asString();
  1502. $5=$recv($6).__comma($9);
  1503. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1504. $ctx2.sendIdx[","]=2;
  1505. //>>excludeEnd("ctx");
  1506. return $recv($4)._log_($5);
  1507. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1508. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)});
  1509. //>>excludeEnd("ctx");
  1510. }));
  1511. $recv($1)._listen_host_($self._port(),$self._host());
  1512. return self;
  1513. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1514. }, function($ctx1) {$ctx1.fill(self,"start",{},$globals.FileServer)});
  1515. //>>excludeEnd("ctx");
  1516. },
  1517. //>>excludeStart("ide", pragmas.excludeIdeData);
  1518. args: [],
  1519. source: "start\x0a\x09\x22Checks if required directory layout is present (issue warning if not).\x0a\x09 Afterwards start the server.\x22\x0a\x09self checkDirectoryLayout.\x0a\x09(http createServer: [:request :response |\x0a\x09 self handleRequest: request respondTo: response])\x0a\x09 on: 'error' do: [:error | console log: 'Error starting server: ', error];\x0a\x09 on: 'listening' do: [console log: 'Starting file server on http://', self host, ':', self port asString];\x0a\x09 listen: self port host: self host.",
  1520. referencedClasses: [],
  1521. //>>excludeEnd("ide");
  1522. messageSends: ["checkDirectoryLayout", "on:do:", "createServer:", "handleRequest:respondTo:", "log:", ",", "host", "asString", "port", "listen:host:"]
  1523. }),
  1524. $globals.FileServer);
  1525. $core.addMethod(
  1526. $core.method({
  1527. selector: "startOn:",
  1528. protocol: "starting",
  1529. fn: function (aPort){
  1530. var self=this,$self=this;
  1531. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1532. return $core.withContext(function($ctx1) {
  1533. //>>excludeEnd("ctx");
  1534. $self._port_(aPort);
  1535. $self._start();
  1536. return self;
  1537. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1538. }, function($ctx1) {$ctx1.fill(self,"startOn:",{aPort:aPort},$globals.FileServer)});
  1539. //>>excludeEnd("ctx");
  1540. },
  1541. //>>excludeStart("ide", pragmas.excludeIdeData);
  1542. args: ["aPort"],
  1543. source: "startOn: aPort\x0a\x09self port: aPort.\x0a\x09self start",
  1544. referencedClasses: [],
  1545. //>>excludeEnd("ide");
  1546. messageSends: ["port:", "start"]
  1547. }),
  1548. $globals.FileServer);
  1549. $core.addMethod(
  1550. $core.method({
  1551. selector: "username:",
  1552. protocol: "accessing",
  1553. fn: function (aUsername){
  1554. var self=this,$self=this;
  1555. $self["@username"]=aUsername;
  1556. return self;
  1557. },
  1558. //>>excludeStart("ide", pragmas.excludeIdeData);
  1559. args: ["aUsername"],
  1560. source: "username: aUsername\x0a\x09username := aUsername.",
  1561. referencedClasses: [],
  1562. //>>excludeEnd("ide");
  1563. messageSends: []
  1564. }),
  1565. $globals.FileServer);
  1566. $core.addMethod(
  1567. $core.method({
  1568. selector: "validateBasePath",
  1569. protocol: "private",
  1570. fn: function (){
  1571. var self=this,$self=this;
  1572. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1573. return $core.withContext(function($ctx1) {
  1574. //>>excludeEnd("ctx");
  1575. var $1,$2,$3,$4,$7,$6,$5,$8,$9,$receiver;
  1576. $1=$self["@fs"];
  1577. $2=$self._basePath();
  1578. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1579. $ctx1.sendIdx["basePath"]=1;
  1580. //>>excludeEnd("ctx");
  1581. $recv($1)._stat_then_($2,(function(err,stat){
  1582. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1583. return $core.withContext(function($ctx2) {
  1584. //>>excludeEnd("ctx");
  1585. if(($receiver = err) == null || $receiver.a$nil){
  1586. $3=$recv(stat)._isDirectory();
  1587. if(!$core.assert($3)){
  1588. $4=console;
  1589. $7=$self._basePath();
  1590. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1591. $ctx2.sendIdx["basePath"]=2;
  1592. //>>excludeEnd("ctx");
  1593. $6="Warning: --base-path parameter ".__comma($7);
  1594. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1595. $ctx2.sendIdx[","]=2;
  1596. //>>excludeEnd("ctx");
  1597. $5=$recv($6).__comma(" is not a directory.");
  1598. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1599. $ctx2.sendIdx[","]=1;
  1600. //>>excludeEnd("ctx");
  1601. return $recv($4)._warn_($5);
  1602. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1603. $ctx2.sendIdx["warn:"]=1;
  1604. //>>excludeEnd("ctx");
  1605. }
  1606. } else {
  1607. $8=console;
  1608. $9=$recv("Warning: path at --base-path parameter ".__comma($self._basePath())).__comma(" does not exist.");
  1609. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1610. $ctx2.sendIdx[","]=3;
  1611. //>>excludeEnd("ctx");
  1612. return $recv($8)._warn_($9);
  1613. }
  1614. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1615. }, function($ctx2) {$ctx2.fillBlock({err:err,stat:stat},$ctx1,1)});
  1616. //>>excludeEnd("ctx");
  1617. }));
  1618. return self;
  1619. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1620. }, function($ctx1) {$ctx1.fill(self,"validateBasePath",{},$globals.FileServer)});
  1621. //>>excludeEnd("ctx");
  1622. },
  1623. //>>excludeStart("ide", pragmas.excludeIdeData);
  1624. args: [],
  1625. source: "validateBasePath\x0a\x09\x22The basePath must be an existing directory. \x22\x0a\x09fs stat: self basePath then: [ :err :stat | err\x0a\x09\x09ifNil: [ stat isDirectory ifFalse: [ console warn: 'Warning: --base-path parameter ' , self basePath , ' is not a directory.' ]]\x0a\x09\x09ifNotNil: [ console warn: 'Warning: path at --base-path parameter ' , self basePath , ' does not exist.' ]].",
  1626. referencedClasses: [],
  1627. //>>excludeEnd("ide");
  1628. messageSends: ["stat:then:", "basePath", "ifNil:ifNotNil:", "ifFalse:", "isDirectory", "warn:", ","]
  1629. }),
  1630. $globals.FileServer);
  1631. $core.addMethod(
  1632. $core.method({
  1633. selector: "withBasePath:",
  1634. protocol: "private",
  1635. fn: function (aBaseRelativePath){
  1636. var self=this,$self=this;
  1637. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1638. return $core.withContext(function($ctx1) {
  1639. //>>excludeEnd("ctx");
  1640. return $recv($self["@path"])._join_with_($self._basePath(),aBaseRelativePath);
  1641. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1642. }, function($ctx1) {$ctx1.fill(self,"withBasePath:",{aBaseRelativePath:aBaseRelativePath},$globals.FileServer)});
  1643. //>>excludeEnd("ctx");
  1644. },
  1645. //>>excludeStart("ide", pragmas.excludeIdeData);
  1646. args: ["aBaseRelativePath"],
  1647. source: "withBasePath: aBaseRelativePath\x0a\x09\x22return a file path which is relative to the basePath.\x22\x0a\x09^ path join: self basePath with: aBaseRelativePath",
  1648. referencedClasses: [],
  1649. //>>excludeEnd("ide");
  1650. messageSends: ["join:with:", "basePath"]
  1651. }),
  1652. $globals.FileServer);
  1653. $core.addMethod(
  1654. $core.method({
  1655. selector: "writeData:toFileNamed:",
  1656. protocol: "private",
  1657. fn: function (data,aFilename){
  1658. var self=this,$self=this;
  1659. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1660. return $core.withContext(function($ctx1) {
  1661. //>>excludeEnd("ctx");
  1662. $recv(console)._log_(aFilename);
  1663. return self;
  1664. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1665. }, function($ctx1) {$ctx1.fill(self,"writeData:toFileNamed:",{data:data,aFilename:aFilename},$globals.FileServer)});
  1666. //>>excludeEnd("ctx");
  1667. },
  1668. //>>excludeStart("ide", pragmas.excludeIdeData);
  1669. args: ["data", "aFilename"],
  1670. source: "writeData: data toFileNamed: aFilename\x0a\x09console log: aFilename",
  1671. referencedClasses: [],
  1672. //>>excludeEnd("ide");
  1673. messageSends: ["log:"]
  1674. }),
  1675. $globals.FileServer);
  1676. $globals.FileServer.a$cls.iVarNames = ["mimeTypes"];
  1677. $core.addMethod(
  1678. $core.method({
  1679. selector: "commandLineSwitches",
  1680. protocol: "accessing",
  1681. fn: function (){
  1682. var self=this,$self=this;
  1683. var switches;
  1684. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1685. return $core.withContext(function($ctx1) {
  1686. //>>excludeEnd("ctx");
  1687. switches=$recv($self._methodsInProtocol_("accessing"))._collect_((function(each){
  1688. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1689. return $core.withContext(function($ctx2) {
  1690. //>>excludeEnd("ctx");
  1691. return $recv(each)._selector();
  1692. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1693. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  1694. //>>excludeEnd("ctx");
  1695. }));
  1696. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1697. $ctx1.sendIdx["collect:"]=1;
  1698. //>>excludeEnd("ctx");
  1699. switches=$recv(switches)._select_((function(each){
  1700. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1701. return $core.withContext(function($ctx2) {
  1702. //>>excludeEnd("ctx");
  1703. return $recv(each)._match_("^[^:]*:$");
  1704. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1705. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});
  1706. //>>excludeEnd("ctx");
  1707. }));
  1708. switches=$recv(switches)._collect_((function(each){
  1709. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1710. return $core.withContext(function($ctx2) {
  1711. //>>excludeEnd("ctx");
  1712. return $recv($recv($recv($recv(each)._allButLast())._replace_with_("([A-Z])","-$1"))._asLowercase())._replace_with_("^([a-z])","--$1");
  1713. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1714. $ctx2.sendIdx["replace:with:"]=1;
  1715. //>>excludeEnd("ctx");
  1716. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1717. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,3)});
  1718. //>>excludeEnd("ctx");
  1719. }));
  1720. return switches;
  1721. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1722. }, function($ctx1) {$ctx1.fill(self,"commandLineSwitches",{switches:switches},$globals.FileServer.a$cls)});
  1723. //>>excludeEnd("ctx");
  1724. },
  1725. //>>excludeStart("ide", pragmas.excludeIdeData);
  1726. args: [],
  1727. source: "commandLineSwitches\x0a\x09\x22Collect all methodnames from the 'accessing' protocol\x0a\x09 and select the ones with only one parameter.\x0a\x09 Then remove the ':' at the end of the name\x0a\x09 and add a '--' at the beginning.\x0a\x09 Additionally all uppercase letters are made lowercase and preceded by a '-'.\x0a\x09 Example: fallbackPage: becomes --fallback-page.\x0a\x09 Return the Array containing the commandline switches.\x22\x0a\x09| switches |\x0a\x09switches := ((self methodsInProtocol: 'accessing') collect: [ :each | each selector]).\x0a\x09switches := switches select: [ :each | each match: '^[^:]*:$'].\x0a\x09switches :=switches collect: [ :each |\x0a\x09\x09(each allButLast replace: '([A-Z])' with: '-$1') asLowercase replace: '^([a-z])' with: '--$1' ].\x0a\x09^ switches",
  1728. referencedClasses: [],
  1729. //>>excludeEnd("ide");
  1730. messageSends: ["collect:", "methodsInProtocol:", "selector", "select:", "match:", "replace:with:", "asLowercase", "allButLast"]
  1731. }),
  1732. $globals.FileServer.a$cls);
  1733. $core.addMethod(
  1734. $core.method({
  1735. selector: "createServerWithArguments:",
  1736. protocol: "initialization",
  1737. fn: function (options){
  1738. var self=this,$self=this;
  1739. var server,popFront,front,optionName,optionValue,switches;
  1740. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1741. return $core.withContext(function($ctx1) {
  1742. //>>excludeEnd("ctx");
  1743. var $1,$2,$3,$4,$5,$6,$7,$8;
  1744. var $early={};
  1745. try {
  1746. switches=$self._commandLineSwitches();
  1747. server=$self._new();
  1748. $recv(options)._ifEmpty_((function(){
  1749. throw $early=[server];
  1750. }));
  1751. $1=$recv($recv(options)._size())._even();
  1752. if(!$core.assert($1)){
  1753. $recv(console)._log_("Using default parameters.");
  1754. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1755. $ctx1.sendIdx["log:"]=1;
  1756. //>>excludeEnd("ctx");
  1757. $2=console;
  1758. $3="Wrong commandline options or not enough arguments for: ".__comma(options);
  1759. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1760. $ctx1.sendIdx[","]=1;
  1761. //>>excludeEnd("ctx");
  1762. $recv($2)._log_($3);
  1763. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1764. $ctx1.sendIdx["log:"]=2;
  1765. //>>excludeEnd("ctx");
  1766. $4=console;
  1767. $5="Use any of the following ones: ".__comma(switches);
  1768. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1769. $ctx1.sendIdx[","]=2;
  1770. //>>excludeEnd("ctx");
  1771. $recv($4)._log_($5);
  1772. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1773. $ctx1.sendIdx["log:"]=3;
  1774. //>>excludeEnd("ctx");
  1775. return server;
  1776. }
  1777. popFront=(function(args){
  1778. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1779. return $core.withContext(function($ctx2) {
  1780. //>>excludeEnd("ctx");
  1781. front=$recv(args)._first();
  1782. $recv(args)._remove_(front);
  1783. return front;
  1784. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1785. }, function($ctx2) {$ctx2.fillBlock({args:args},$ctx1,3)});
  1786. //>>excludeEnd("ctx");
  1787. });
  1788. $recv((function(){
  1789. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1790. return $core.withContext(function($ctx2) {
  1791. //>>excludeEnd("ctx");
  1792. return $recv(options)._notEmpty();
  1793. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1794. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,4)});
  1795. //>>excludeEnd("ctx");
  1796. }))._whileTrue_((function(){
  1797. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1798. return $core.withContext(function($ctx2) {
  1799. //>>excludeEnd("ctx");
  1800. optionName=$recv(popFront)._value_(options);
  1801. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1802. $ctx2.sendIdx["value:"]=1;
  1803. //>>excludeEnd("ctx");
  1804. optionValue=$recv(popFront)._value_(options);
  1805. $6=$recv(switches)._includes_(optionName);
  1806. if($core.assert($6)){
  1807. optionName=$self._selectorForCommandLineSwitch_(optionName);
  1808. return $recv(server)._perform_withArguments_(optionName,$recv($globals.Array)._with_(optionValue));
  1809. } else {
  1810. $7=console;
  1811. $8=$recv(optionName).__comma(" is not a valid commandline option");
  1812. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1813. $ctx2.sendIdx[","]=3;
  1814. //>>excludeEnd("ctx");
  1815. $recv($7)._log_($8);
  1816. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1817. $ctx2.sendIdx["log:"]=4;
  1818. //>>excludeEnd("ctx");
  1819. return $recv(console)._log_("Use any of the following ones: ".__comma(switches));
  1820. }
  1821. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1822. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,5)});
  1823. //>>excludeEnd("ctx");
  1824. }));
  1825. return server;
  1826. }
  1827. catch(e) {if(e===$early)return e[0]; throw e}
  1828. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1829. }, function($ctx1) {$ctx1.fill(self,"createServerWithArguments:",{options:options,server:server,popFront:popFront,front:front,optionName:optionName,optionValue:optionValue,switches:switches},$globals.FileServer.a$cls)});
  1830. //>>excludeEnd("ctx");
  1831. },
  1832. //>>excludeStart("ide", pragmas.excludeIdeData);
  1833. args: ["options"],
  1834. source: "createServerWithArguments: options\x0a\x09\x22If options are empty return a default FileServer instance.\x0a\x09 If options are given loop through them and set the passed in values\x0a\x09 on the FileServer instance.\x0a\x09 \x0a\x09 Commanline options map directly to methods in the 'accessing' protocol\x0a\x09 taking one parameter.\x0a\x09 Adding a method to this protocol makes it directly settable through\x0a\x09 command line options.\x0a\x09 \x22\x0a\x09| server popFront front optionName optionValue switches |\x0a\x0a\x09switches := self commandLineSwitches.\x0a\x0a\x09server := self new.\x0a\x0a\x09options ifEmpty: [^server].\x0a\x0a\x09(options size even) ifFalse: [\x0a\x09\x09console log: 'Using default parameters.'.\x0a\x09\x09console log: 'Wrong commandline options or not enough arguments for: ' , options.\x0a\x09\x09console log: 'Use any of the following ones: ', switches.\x0a\x09\x09^server].\x0a\x0a\x09popFront := [:args |\x0a\x09\x09front := args first.\x0a\x09\x09args remove: front.\x0a\x09\x09front].\x0a\x0a\x09[options notEmpty] whileTrue: [\x0a\x09\x09optionName := popFront value: options.\x0a\x09\x09optionValue := popFront value: options.\x0a\x0a\x09\x09(switches includes: optionName) ifTrue: [\x0a\x09\x09\x09optionName := self selectorForCommandLineSwitch: optionName.\x0a\x09\x09\x09server perform: optionName withArguments: (Array with: optionValue)]\x0a\x09\x09\x09ifFalse: [\x0a\x09\x09\x09\x09console log: optionName, ' is not a valid commandline option'.\x0a\x09\x09\x09\x09console log: 'Use any of the following ones: ', switches ]].\x0a\x09^ server.",
  1835. referencedClasses: ["Array"],
  1836. //>>excludeEnd("ide");
  1837. messageSends: ["commandLineSwitches", "new", "ifEmpty:", "ifFalse:", "even", "size", "log:", ",", "first", "remove:", "whileTrue:", "notEmpty", "value:", "ifTrue:ifFalse:", "includes:", "selectorForCommandLineSwitch:", "perform:withArguments:", "with:"]
  1838. }),
  1839. $globals.FileServer.a$cls);
  1840. $core.addMethod(
  1841. $core.method({
  1842. selector: "defaultBasePath",
  1843. protocol: "accessing",
  1844. fn: function (){
  1845. var self=this,$self=this;
  1846. return "./";
  1847. },
  1848. //>>excludeStart("ide", pragmas.excludeIdeData);
  1849. args: [],
  1850. source: "defaultBasePath\x0a\x09^ './'",
  1851. referencedClasses: [],
  1852. //>>excludeEnd("ide");
  1853. messageSends: []
  1854. }),
  1855. $globals.FileServer.a$cls);
  1856. $core.addMethod(
  1857. $core.method({
  1858. selector: "defaultHost",
  1859. protocol: "accessing",
  1860. fn: function (){
  1861. var self=this,$self=this;
  1862. return "127.0.0.1";
  1863. },
  1864. //>>excludeStart("ide", pragmas.excludeIdeData);
  1865. args: [],
  1866. source: "defaultHost\x0a\x09^ '127.0.0.1'",
  1867. referencedClasses: [],
  1868. //>>excludeEnd("ide");
  1869. messageSends: []
  1870. }),
  1871. $globals.FileServer.a$cls);
  1872. $core.addMethod(
  1873. $core.method({
  1874. selector: "defaultMimeTypes",
  1875. protocol: "accessing",
  1876. fn: function (){
  1877. var self=this,$self=this;
  1878. return $globals.HashedCollection._newFromPairs_(["%","application/x-trash","323","text/h323","abw","application/x-abiword","ai","application/postscript","aif","audio/x-aiff","aifc","audio/x-aiff","aiff","audio/x-aiff","alc","chemical/x-alchemy","art","image/x-jg","asc","text/plain","asf","video/x-ms-asf","asn","chemical/x-ncbi-asn1-spec","aso","chemical/x-ncbi-asn1-binary","asx","video/x-ms-asf","au","audio/basic","avi","video/x-msvideo","b","chemical/x-molconn-Z","bak","application/x-trash","bat","application/x-msdos-program","bcpio","application/x-bcpio","bib","text/x-bibtex","bin","application/octet-stream","bmp","image/x-ms-bmp","book","application/x-maker","bsd","chemical/x-crossfire","c","text/x-csrc","c++","text/x-c++src","c3d","chemical/x-chem3d","cac","chemical/x-cache","cache","chemical/x-cache","cascii","chemical/x-cactvs-binary","cat","application/vnd.ms-pki.seccat","cbin","chemical/x-cactvs-binary","cc","text/x-c++src","cdf","application/x-cdf","cdr","image/x-coreldraw","cdt","image/x-coreldrawtemplate","cdx","chemical/x-cdx","cdy","application/vnd.cinderella","cef","chemical/x-cxf","cer","chemical/x-cerius","chm","chemical/x-chemdraw","chrt","application/x-kchart","cif","chemical/x-cif","class","application/java-vm","cls","text/x-tex","cmdf","chemical/x-cmdf","cml","chemical/x-cml","cod","application/vnd.rim.cod","com","application/x-msdos-program","cpa","chemical/x-compass","cpio","application/x-cpio","cpp","text/x-c++src","cpt","image/x-corelphotopaint","crl","application/x-pkcs7-crl","crt","application/x-x509-ca-cert","csf","chemical/x-cache-csf","csh","text/x-csh","csm","chemical/x-csml","csml","chemical/x-csml","css","text/css","csv","text/comma-separated-values","ctab","chemical/x-cactvs-binary","ctx","chemical/x-ctx","cu","application/cu-seeme","cub","chemical/x-gaussian-cube","cxf","chemical/x-cxf","cxx","text/x-c++src","dat","chemical/x-mopac-input","dcr","application/x-director","deb","application/x-debian-package","dif","video/dv","diff","text/plain","dir","application/x-director","djv","image/vnd.djvu","djvu","image/vnd.djvu","dl","video/dl","dll","application/x-msdos-program","dmg","application/x-apple-diskimage","dms","application/x-dms","doc","application/msword","dot","application/msword","dv","video/dv","dvi","application/x-dvi","dx","chemical/x-jcamp-dx","dxr","application/x-director","emb","chemical/x-embl-dl-nucleotide","embl","chemical/x-embl-dl-nucleotide","ent","chemical/x-pdb","eps","application/postscript","etx","text/x-setext","exe","application/x-msdos-program","ez","application/andrew-inset","fb","application/x-maker","fbdoc","application/x-maker","fch","chemical/x-gaussian-checkpoint","fchk","chemical/x-gaussian-checkpoint","fig","application/x-xfig","flac","application/x-flac","fli","video/fli","fm","application/x-maker","frame","application/x-maker","frm","application/x-maker","gal","chemical/x-gaussian-log","gam","chemical/x-gamess-input","gamin","chemical/x-gamess-input","gau","chemical/x-gaussian-input","gcd","text/x-pcs-gcd","gcf","application/x-graphing-calculator","gcg","chemical/x-gcg8-sequence","gen","chemical/x-genbank","gf","application/x-tex-gf","gif","image/gif","gjc","chemical/x-gaussian-input","gjf","chemical/x-gaussian-input","gl","video/gl","gnumeric","application/x-gnumeric","gpt","chemical/x-mopac-graph","gsf","application/x-font","gsm","audio/x-gsm","gtar","application/x-gtar","h","text/x-chdr","h++","text/x-c++hdr","hdf","application/x-hdf","hh","text/x-c++hdr","hin","chemical/x-hin","hpp","text/x-c++hdr","hqx","application/mac-binhex40","hs","text/x-haskell","hta","application/hta","htc","text/x-component","htm","text/html","html","text/html","hxx","text/x-c++hdr","ica","application/x-ica","ice","x-conference/x-cooltalk","ico","image/x-icon","ics","text/calendar","icz","text/calendar","ief","image/ief","iges","model/iges","igs","model/iges","iii","application/x-iphone","inp","chemical/x-gamess-input","ins","application/x-internet-signup","iso","application/x-iso9660-image","isp","application/x-internet-signup","ist","chemical/x-isostar","istr","chemical/x-isostar","jad","text/vnd.sun.j2me.app-descriptor","jar","application/java-archive","java","text/x-java","jdx","chemical/x-jcamp-dx","jmz","application/x-jmol","jng","image/x-jng","jnlp","application/x-java-jnlp-file","jpe","image/jpeg","jpeg","image/jpeg","jpg","image/jpeg","js","application/javascript","kar","audio/midi","key","application/pgp-keys","kil","application/x-killustrator","kin","chemical/x-kinemage","kpr","application/x-kpresenter","kpt","application/x-kpresenter","ksp","application/x-kspread","kwd","application/x-kword","kwt","application/x-kword","latex","application/x-latex","lha","application/x-lha","lhs","text/x-literate-haskell","lsf","video/x-la-asf","lsx","video/x-la-asf","ltx","text/x-tex","lzh","application/x-lzh","lzx","application/x-lzx","m3u","audio/x-mpegurl","m4a","audio/mpeg","maker","application/x-maker","man","application/x-troff-man","mcif","chemical/x-mmcif","mcm","chemical/x-macmolecule","mdb","application/msaccess","me","application/x-troff-me","mesh","model/mesh","mid","audio/midi","midi","audio/midi","mif","application/x-mif","mm","application/x-freemind","mmd","chemical/x-macromodel-input","mmf","application/vnd.smaf","mml","text/mathml","mmod","chemical/x-macromodel-input","mng","video/x-mng","moc","text/x-moc","mol","chemical/x-mdl-molfile","mol2","chemical/x-mol2","moo","chemical/x-mopac-out","mop","chemical/x-mopac-input","mopcrt","chemical/x-mopac-input","mov","video/quicktime","movie","video/x-sgi-movie","mp2","audio/mpeg","mp3","audio/mpeg","mp4","video/mp4","mpc","chemical/x-mopac-input","mpe","video/mpeg","mpeg","video/mpeg","mpega","audio/mpeg","mpg","video/mpeg","mpga","audio/mpeg","ms","application/x-troff-ms","msh","model/mesh","msi","application/x-msi","mvb","chemical/x-mopac-vib","mxu","video/vnd.mpegurl","nb","application/mathematica","nc","application/x-netcdf","nwc","application/x-nwc","o","application/x-object","oda","application/oda","odb","application/vnd.oasis.opendocument.database","odc","application/vnd.oasis.opendocument.chart","odf","application/vnd.oasis.opendocument.formula","odg","application/vnd.oasis.opendocument.graphics","odi","application/vnd.oasis.opendocument.image","odm","application/vnd.oasis.opendocument.text-master","odp","application/vnd.oasis.opendocument.presentation","ods","application/vnd.oasis.opendocument.spreadsheet","odt","application/vnd.oasis.opendocument.text","ogg","application/ogg","old","application/x-trash","oth","application/vnd.oasis.opendocument.text-web","oza","application/x-oz-application","p","text/x-pascal","p7r","application/x-pkcs7-certreqresp","pac","application/x-ns-proxy-autoconfig","pas","text/x-pascal","pat","image/x-coreldrawpattern","pbm","image/x-portable-bitmap","pcf","application/x-font","pcf.Z","application/x-font","pcx","image/pcx","pdb","chemical/x-pdb","pdf","application/pdf","pfa","application/x-font","pfb","application/x-font","pgm","image/x-portable-graymap","pgn","application/x-chess-pgn","pgp","application/pgp-signature","pk","application/x-tex-pk","pl","text/x-perl","pls","audio/x-scpls","pm","text/x-perl","png","image/png","pnm","image/x-portable-anymap","pot","text/plain","ppm","image/x-portable-pixmap","pps","application/vnd.ms-powerpoint","ppt","application/vnd.ms-powerpoint","prf","application/pics-rules","prt","chemical/x-ncbi-asn1-ascii","ps","application/postscript","psd","image/x-photoshop","psp","text/x-psp","py","text/x-python","pyc","application/x-python-code","pyo","application/x-python-code","qt","video/quicktime","qtl","application/x-quicktimeplayer","ra","audio/x-realaudio","ram","audio/x-pn-realaudio","rar","application/rar","ras","image/x-cmu-raster","rd","chemical/x-mdl-rdfile","rdf","application/rdf+xml","rgb","image/x-rgb","rm","audio/x-pn-realaudio","roff","application/x-troff","ros","chemical/x-rosdal","rpm","application/x-redhat-package-manager","rss","application/rss+xml","rtf","text/rtf","rtx","text/richtext","rxn","chemical/x-mdl-rxnfile","sct","text/scriptlet","sd","chemical/x-mdl-sdfile","sd2","audio/x-sd2","sda","application/vnd.stardivision.draw","sdc","application/vnd.stardivision.calc","sdd","application/vnd.stardivision.impress","sdf","chemical/x-mdl-sdfile","sdp","application/vnd.stardivision.impress","sdw","application/vnd.stardivision.writer","ser","application/java-serialized-object","sgf","application/x-go-sgf","sgl","application/vnd.stardivision.writer-global","sh","text/x-sh","shar","application/x-shar","shtml","text/html","sid","audio/prs.sid","sik","application/x-trash","silo","model/mesh","sis","application/vnd.symbian.install","sit","application/x-stuffit","skd","application/x-koan","skm","application/x-koan","skp","application/x-koan","skt","application/x-koan","smf","application/vnd.stardivision.math","smi","application/smil","smil","application/smil","snd","audio/basic","spc","chemical/x-galactic-spc","spl","application/x-futuresplash","src","application/x-wais-source","stc","application/vnd.sun.xml.calc.template","std","application/vnd.sun.xml.draw.template","sti","application/vnd.sun.xml.impress.template","stl","application/vnd.ms-pki.stl","stw","application/vnd.sun.xml.writer.template","sty","text/x-tex","sv4cpio","application/x-sv4cpio","sv4crc","application/x-sv4crc","svg","image/svg+xml","svgz","image/svg+xml","sw","chemical/x-swissprot","swf","application/x-shockwave-flash","swfl","application/x-shockwave-flash","sxc","application/vnd.sun.xml.calc","sxd","application/vnd.sun.xml.draw","sxg","application/vnd.sun.xml.writer.global","sxi","application/vnd.sun.xml.impress","sxm","application/vnd.sun.xml.math","sxw","application/vnd.sun.xml.writer","t","application/x-troff","tar","application/x-tar","taz","application/x-gtar","tcl","text/x-tcl","tex","text/x-tex","texi","application/x-texinfo","texinfo","application/x-texinfo","text","text/plain","tgf","chemical/x-mdl-tgf","tgz","application/x-gtar","tif","image/tiff","tiff","image/tiff","tk","text/x-tcl","tm","text/texmacs","torrent","application/x-bittorrent","tr","application/x-troff","ts","text/texmacs","tsp","application/dsptype","tsv","text/tab-separated-values","txt","text/plain","udeb","application/x-debian-package","uls","text/iuls","ustar","application/x-ustar","val","chemical/x-ncbi-asn1-binary","vcd","application/x-cdlink","vcf","text/x-vcard","vcs","text/x-vcalendar","vmd","chemical/x-vmd","vms","chemical/x-vamas-iso14976","vor","application/vnd.stardivision.writer","vrm","x-world/x-vrml","vrml","x-world/x-vrml","vsd","application/vnd.visio","wad","application/x-doom","wav","audio/x-wav","wax","audio/x-ms-wax","wbmp","image/vnd.wap.wbmp","wbxml","application/vnd.wap.wbxml","wk","application/x-123","wm","video/x-ms-wm","wma","audio/x-ms-wma","wmd","application/x-ms-wmd","wml","text/vnd.wap.wml","wmlc","application/vnd.wap.wmlc","wmls","text/vnd.wap.wmlscript","wmlsc","application/vnd.wap.wmlscriptc","wmv","video/x-ms-wmv","wmx","video/x-ms-wmx","wmz","application/x-ms-wmz","wp5","application/wordperfect5.1","wpd","application/wordperfect","wrl","x-world/x-vrml","wsc","text/scriptlet","wvx","video/x-ms-wvx","wz","application/x-wingz","xbm","image/x-xbitmap","xcf","application/x-xcf","xht","application/xhtml+xml","xhtml","application/xhtml+xml","xlb","application/vnd.ms-excel","xls","application/vnd.ms-excel","xlt","application/vnd.ms-excel","xml","application/xml","xpi","application/x-xpinstall","xpm","image/x-xpixmap","xsl","application/xml","xtel","chemical/x-xtel","xul","application/vnd.mozilla.xul+xml","xwd","image/x-xwindowdump","xyz","chemical/x-xyz","zip","application/zip","zmt","chemical/x-mopac-input","~","application/x-trash"]);
  1879. },
  1880. //>>excludeStart("ide", pragmas.excludeIdeData);
  1881. args: [],
  1882. source: "defaultMimeTypes\x0a\x09^ #{\x0a\x09\x09'%' -> 'application/x-trash'.\x0a\x09\x09'323' -> 'text/h323'.\x0a\x09\x09'abw' -> 'application/x-abiword'.\x0a\x09\x09'ai' -> 'application/postscript'.\x0a\x09\x09'aif' -> 'audio/x-aiff'.\x0a\x09\x09'aifc' -> 'audio/x-aiff'.\x0a\x09\x09'aiff' -> 'audio/x-aiff'.\x0a\x09\x09'alc' -> 'chemical/x-alchemy'.\x0a\x09\x09'art' -> 'image/x-jg'.\x0a\x09\x09'asc' -> 'text/plain'.\x0a\x09\x09'asf' -> 'video/x-ms-asf'.\x0a\x09\x09'asn' -> 'chemical/x-ncbi-asn1-spec'.\x0a\x09\x09'aso' -> 'chemical/x-ncbi-asn1-binary'.\x0a\x09\x09'asx' -> 'video/x-ms-asf'.\x0a\x09\x09'au' -> 'audio/basic'.\x0a\x09\x09'avi' -> 'video/x-msvideo'.\x0a\x09\x09'b' -> 'chemical/x-molconn-Z'.\x0a\x09\x09'bak' -> 'application/x-trash'.\x0a\x09\x09'bat' -> 'application/x-msdos-program'.\x0a\x09\x09'bcpio' -> 'application/x-bcpio'.\x0a\x09\x09'bib' -> 'text/x-bibtex'.\x0a\x09\x09'bin' -> 'application/octet-stream'.\x0a\x09\x09'bmp' -> 'image/x-ms-bmp'.\x0a\x09\x09'book' -> 'application/x-maker'.\x0a\x09\x09'bsd' -> 'chemical/x-crossfire'.\x0a\x09\x09'c' -> 'text/x-csrc'.\x0a\x09\x09'c++' -> 'text/x-c++src'.\x0a\x09\x09'c3d' -> 'chemical/x-chem3d'.\x0a\x09\x09'cac' -> 'chemical/x-cache'.\x0a\x09\x09'cache' -> 'chemical/x-cache'.\x0a\x09\x09'cascii' -> 'chemical/x-cactvs-binary'.\x0a\x09\x09'cat' -> 'application/vnd.ms-pki.seccat'.\x0a\x09\x09'cbin' -> 'chemical/x-cactvs-binary'.\x0a\x09\x09'cc' -> 'text/x-c++src'.\x0a\x09\x09'cdf' -> 'application/x-cdf'.\x0a\x09\x09'cdr' -> 'image/x-coreldraw'.\x0a\x09\x09'cdt' -> 'image/x-coreldrawtemplate'.\x0a\x09\x09'cdx' -> 'chemical/x-cdx'.\x0a\x09\x09'cdy' -> 'application/vnd.cinderella'.\x0a\x09\x09'cef' -> 'chemical/x-cxf'.\x0a\x09\x09'cer' -> 'chemical/x-cerius'.\x0a\x09\x09'chm' -> 'chemical/x-chemdraw'.\x0a\x09\x09'chrt' -> 'application/x-kchart'.\x0a\x09\x09'cif' -> 'chemical/x-cif'.\x0a\x09\x09'class' -> 'application/java-vm'.\x0a\x09\x09'cls' -> 'text/x-tex'.\x0a\x09\x09'cmdf' -> 'chemical/x-cmdf'.\x0a\x09\x09'cml' -> 'chemical/x-cml'.\x0a\x09\x09'cod' -> 'application/vnd.rim.cod'.\x0a\x09\x09'com' -> 'application/x-msdos-program'.\x0a\x09\x09'cpa' -> 'chemical/x-compass'.\x0a\x09\x09'cpio' -> 'application/x-cpio'.\x0a\x09\x09'cpp' -> 'text/x-c++src'.\x0a\x09\x09'cpt' -> 'image/x-corelphotopaint'.\x0a\x09\x09'crl' -> 'application/x-pkcs7-crl'.\x0a\x09\x09'crt' -> 'application/x-x509-ca-cert'.\x0a\x09\x09'csf' -> 'chemical/x-cache-csf'.\x0a\x09\x09'csh' -> 'text/x-csh'.\x0a\x09\x09'csm' -> 'chemical/x-csml'.\x0a\x09\x09'csml' -> 'chemical/x-csml'.\x0a\x09\x09'css' -> 'text/css'.\x0a\x09\x09'csv' -> 'text/comma-separated-values'.\x0a\x09\x09'ctab' -> 'chemical/x-cactvs-binary'.\x0a\x09\x09'ctx' -> 'chemical/x-ctx'.\x0a\x09\x09'cu' -> 'application/cu-seeme'.\x0a\x09\x09'cub' -> 'chemical/x-gaussian-cube'.\x0a\x09\x09'cxf' -> 'chemical/x-cxf'.\x0a\x09\x09'cxx' -> 'text/x-c++src'.\x0a\x09\x09'dat' -> 'chemical/x-mopac-input'.\x0a\x09\x09'dcr' -> 'application/x-director'.\x0a\x09\x09'deb' -> 'application/x-debian-package'.\x0a\x09\x09'dif' -> 'video/dv'.\x0a\x09\x09'diff' -> 'text/plain'.\x0a\x09\x09'dir' -> 'application/x-director'.\x0a\x09\x09'djv' -> 'image/vnd.djvu'.\x0a\x09\x09'djvu' -> 'image/vnd.djvu'.\x0a\x09\x09'dl' -> 'video/dl'.\x0a\x09\x09'dll' -> 'application/x-msdos-program'.\x0a\x09\x09'dmg' -> 'application/x-apple-diskimage'.\x0a\x09\x09'dms' -> 'application/x-dms'.\x0a\x09\x09'doc' -> 'application/msword'.\x0a\x09\x09'dot' -> 'application/msword'.\x0a\x09\x09'dv' -> 'video/dv'.\x0a\x09\x09'dvi' -> 'application/x-dvi'.\x0a\x09\x09'dx' -> 'chemical/x-jcamp-dx'.\x0a\x09\x09'dxr' -> 'application/x-director'.\x0a\x09\x09'emb' -> 'chemical/x-embl-dl-nucleotide'.\x0a\x09\x09'embl' -> 'chemical/x-embl-dl-nucleotide'.\x0a\x09\x09'ent' -> 'chemical/x-pdb'.\x0a\x09\x09'eps' -> 'application/postscript'.\x0a\x09\x09'etx' -> 'text/x-setext'.\x0a\x09\x09'exe' -> 'application/x-msdos-program'.\x0a\x09\x09'ez' -> 'application/andrew-inset'.\x0a\x09\x09'fb' -> 'application/x-maker'.\x0a\x09\x09'fbdoc' -> 'application/x-maker'.\x0a\x09\x09'fch' -> 'chemical/x-gaussian-checkpoint'.\x0a\x09\x09'fchk' -> 'chemical/x-gaussian-checkpoint'.\x0a\x09\x09'fig' -> 'application/x-xfig'.\x0a\x09\x09'flac' -> 'application/x-flac'.\x0a\x09\x09'fli' -> 'video/fli'.\x0a\x09\x09'fm' -> 'application/x-maker'.\x0a\x09\x09'frame' -> 'application/x-maker'.\x0a\x09\x09'frm' -> 'application/x-maker'.\x0a\x09\x09'gal' -> 'chemical/x-gaussian-log'.\x0a\x09\x09'gam' -> 'chemical/x-gamess-input'.\x0a\x09\x09'gamin' -> 'chemical/x-gamess-input'.\x0a\x09\x09'gau' -> 'chemical/x-gaussian-input'.\x0a\x09\x09'gcd' -> 'text/x-pcs-gcd'.\x0a\x09\x09'gcf' -> 'application/x-graphing-calculator'.\x0a\x09\x09'gcg' -> 'chemical/x-gcg8-sequence'.\x0a\x09\x09'gen' -> 'chemical/x-genbank'.\x0a\x09\x09'gf' -> 'application/x-tex-gf'.\x0a\x09\x09'gif' -> 'image/gif'.\x0a\x09\x09'gjc' -> 'chemical/x-gaussian-input'.\x0a\x09\x09'gjf' -> 'chemical/x-gaussian-input'.\x0a\x09\x09'gl' -> 'video/gl'.\x0a\x09\x09'gnumeric' -> 'application/x-gnumeric'.\x0a\x09\x09'gpt' -> 'chemical/x-mopac-graph'.\x0a\x09\x09'gsf' -> 'application/x-font'.\x0a\x09\x09'gsm' -> 'audio/x-gsm'.\x0a\x09\x09'gtar' -> 'application/x-gtar'.\x0a\x09\x09'h' -> 'text/x-chdr'.\x0a\x09\x09'h++' -> 'text/x-c++hdr'.\x0a\x09\x09'hdf' -> 'application/x-hdf'.\x0a\x09\x09'hh' -> 'text/x-c++hdr'.\x0a\x09\x09'hin' -> 'chemical/x-hin'.\x0a\x09\x09'hpp' -> 'text/x-c++hdr'.\x0a\x09\x09'hqx' -> 'application/mac-binhex40'.\x0a\x09\x09'hs' -> 'text/x-haskell'.\x0a\x09\x09'hta' -> 'application/hta'.\x0a\x09\x09'htc' -> 'text/x-component'.\x0a\x09\x09'htm' -> 'text/html'.\x0a\x09\x09'html' -> 'text/html'.\x0a\x09\x09'hxx' -> 'text/x-c++hdr'.\x0a\x09\x09'ica' -> 'application/x-ica'.\x0a\x09\x09'ice' -> 'x-conference/x-cooltalk'.\x0a\x09\x09'ico' -> 'image/x-icon'.\x0a\x09\x09'ics' -> 'text/calendar'.\x0a\x09\x09'icz' -> 'text/calendar'.\x0a\x09\x09'ief' -> 'image/ief'.\x0a\x09\x09'iges' -> 'model/iges'.\x0a\x09\x09'igs' -> 'model/iges'.\x0a\x09\x09'iii' -> 'application/x-iphone'.\x0a\x09\x09'inp' -> 'chemical/x-gamess-input'.\x0a\x09\x09'ins' -> 'application/x-internet-signup'.\x0a\x09\x09'iso' -> 'application/x-iso9660-image'.\x0a\x09\x09'isp' -> 'application/x-internet-signup'.\x0a\x09\x09'ist' -> 'chemical/x-isostar'.\x0a\x09\x09'istr' -> 'chemical/x-isostar'.\x0a\x09\x09'jad' -> 'text/vnd.sun.j2me.app-descriptor'.\x0a\x09\x09'jar' -> 'application/java-archive'.\x0a\x09\x09'java' -> 'text/x-java'.\x0a\x09\x09'jdx' -> 'chemical/x-jcamp-dx'.\x0a\x09\x09'jmz' -> 'application/x-jmol'.\x0a\x09\x09'jng' -> 'image/x-jng'.\x0a\x09\x09'jnlp' -> 'application/x-java-jnlp-file'.\x0a\x09\x09'jpe' -> 'image/jpeg'.\x0a\x09\x09'jpeg' -> 'image/jpeg'.\x0a\x09\x09'jpg' -> 'image/jpeg'.\x0a\x09\x09'js' -> 'application/javascript'.\x0a\x09\x09'kar' -> 'audio/midi'.\x0a\x09\x09'key' -> 'application/pgp-keys'.\x0a\x09\x09'kil' -> 'application/x-killustrator'.\x0a\x09\x09'kin' -> 'chemical/x-kinemage'.\x0a\x09\x09'kpr' -> 'application/x-kpresenter'.\x0a\x09\x09'kpt' -> 'application/x-kpresenter'.\x0a\x09\x09'ksp' -> 'application/x-kspread'.\x0a\x09\x09'kwd' -> 'application/x-kword'.\x0a\x09\x09'kwt' -> 'application/x-kword'.\x0a\x09\x09'latex' -> 'application/x-latex'.\x0a\x09\x09'lha' -> 'application/x-lha'.\x0a\x09\x09'lhs' -> 'text/x-literate-haskell'.\x0a\x09\x09'lsf' -> 'video/x-la-asf'.\x0a\x09\x09'lsx' -> 'video/x-la-asf'.\x0a\x09\x09'ltx' -> 'text/x-tex'.\x0a\x09\x09'lzh' -> 'application/x-lzh'.\x0a\x09\x09'lzx' -> 'application/x-lzx'.\x0a\x09\x09'm3u' -> 'audio/x-mpegurl'.\x0a\x09\x09'm4a' -> 'audio/mpeg'.\x0a\x09\x09'maker' -> 'application/x-maker'.\x0a\x09\x09'man' -> 'application/x-troff-man'.\x0a\x09\x09'mcif' -> 'chemical/x-mmcif'.\x0a\x09\x09'mcm' -> 'chemical/x-macmolecule'.\x0a\x09\x09'mdb' -> 'application/msaccess'.\x0a\x09\x09'me' -> 'application/x-troff-me'.\x0a\x09\x09'mesh' -> 'model/mesh'.\x0a\x09\x09'mid' -> 'audio/midi'.\x0a\x09\x09'midi' -> 'audio/midi'.\x0a\x09\x09'mif' -> 'application/x-mif'.\x0a\x09\x09'mm' -> 'application/x-freemind'.\x0a\x09\x09'mmd' -> 'chemical/x-macromodel-input'.\x0a\x09\x09'mmf' -> 'application/vnd.smaf'.\x0a\x09\x09'mml' -> 'text/mathml'.\x0a\x09\x09'mmod' -> 'chemical/x-macromodel-input'.\x0a\x09\x09'mng' -> 'video/x-mng'.\x0a\x09\x09'moc' -> 'text/x-moc'.\x0a\x09\x09'mol' -> 'chemical/x-mdl-molfile'.\x0a\x09\x09'mol2' -> 'chemical/x-mol2'.\x0a\x09\x09'moo' -> 'chemical/x-mopac-out'.\x0a\x09\x09'mop' -> 'chemical/x-mopac-input'.\x0a\x09\x09'mopcrt' -> 'chemical/x-mopac-input'.\x0a\x09\x09'mov' -> 'video/quicktime'.\x0a\x09\x09'movie' -> 'video/x-sgi-movie'.\x0a\x09\x09'mp2' -> 'audio/mpeg'.\x0a\x09\x09'mp3' -> 'audio/mpeg'.\x0a\x09\x09'mp4' -> 'video/mp4'.\x0a\x09\x09'mpc' -> 'chemical/x-mopac-input'.\x0a\x09\x09'mpe' -> 'video/mpeg'.\x0a\x09\x09'mpeg' -> 'video/mpeg'.\x0a\x09\x09'mpega' -> 'audio/mpeg'.\x0a\x09\x09'mpg' -> 'video/mpeg'.\x0a\x09\x09'mpga' -> 'audio/mpeg'.\x0a\x09\x09'ms' -> 'application/x-troff-ms'.\x0a\x09\x09'msh' -> 'model/mesh'.\x0a\x09\x09'msi' -> 'application/x-msi'.\x0a\x09\x09'mvb' -> 'chemical/x-mopac-vib'.\x0a\x09\x09'mxu' -> 'video/vnd.mpegurl'.\x0a\x09\x09'nb' -> 'application/mathematica'.\x0a\x09\x09'nc' -> 'application/x-netcdf'.\x0a\x09\x09'nwc' -> 'application/x-nwc'.\x0a\x09\x09'o' -> 'application/x-object'.\x0a\x09\x09'oda' -> 'application/oda'.\x0a\x09\x09'odb' -> 'application/vnd.oasis.opendocument.database'.\x0a\x09\x09'odc' -> 'application/vnd.oasis.opendocument.chart'.\x0a\x09\x09'odf' -> 'application/vnd.oasis.opendocument.formula'.\x0a\x09\x09'odg' -> 'application/vnd.oasis.opendocument.graphics'.\x0a\x09\x09'odi' -> 'application/vnd.oasis.opendocument.image'.\x0a\x09\x09'odm' -> 'application/vnd.oasis.opendocument.text-master'.\x0a\x09\x09'odp' -> 'application/vnd.oasis.opendocument.presentation'.\x0a\x09\x09'ods' -> 'application/vnd.oasis.opendocument.spreadsheet'.\x0a\x09\x09'odt' -> 'application/vnd.oasis.opendocument.text'.\x0a\x09\x09'ogg' -> 'application/ogg'.\x0a\x09\x09'old' -> 'application/x-trash'.\x0a\x09\x09'oth' -> 'application/vnd.oasis.opendocument.text-web'.\x0a\x09\x09'oza' -> 'application/x-oz-application'.\x0a\x09\x09'p' -> 'text/x-pascal'.\x0a\x09\x09'p7r' -> 'application/x-pkcs7-certreqresp'.\x0a\x09\x09'pac' -> 'application/x-ns-proxy-autoconfig'.\x0a\x09\x09'pas' -> 'text/x-pascal'.\x0a\x09\x09'pat' -> 'image/x-coreldrawpattern'.\x0a\x09\x09'pbm' -> 'image/x-portable-bitmap'.\x0a\x09\x09'pcf' -> 'application/x-font'.\x0a\x09\x09'pcf.Z' -> 'application/x-font'.\x0a\x09\x09'pcx' -> 'image/pcx'.\x0a\x09\x09'pdb' -> 'chemical/x-pdb'.\x0a\x09\x09'pdf' -> 'application/pdf'.\x0a\x09\x09'pfa' -> 'application/x-font'.\x0a\x09\x09'pfb' -> 'application/x-font'.\x0a\x09\x09'pgm' -> 'image/x-portable-graymap'.\x0a\x09\x09'pgn' -> 'application/x-chess-pgn'.\x0a\x09\x09'pgp' -> 'application/pgp-signature'.\x0a\x09\x09'pk' -> 'application/x-tex-pk'.\x0a\x09\x09'pl' -> 'text/x-perl'.\x0a\x09\x09'pls' -> 'audio/x-scpls'.\x0a\x09\x09'pm' -> 'text/x-perl'.\x0a\x09\x09'png' -> 'image/png'.\x0a\x09\x09'pnm' -> 'image/x-portable-anymap'.\x0a\x09\x09'pot' -> 'text/plain'.\x0a\x09\x09'ppm' -> 'image/x-portable-pixmap'.\x0a\x09\x09'pps' -> 'application/vnd.ms-powerpoint'.\x0a\x09\x09'ppt' -> 'application/vnd.ms-powerpoint'.\x0a\x09\x09'prf' -> 'application/pics-rules'.\x0a\x09\x09'prt' -> 'chemical/x-ncbi-asn1-ascii'.\x0a\x09\x09'ps' -> 'application/postscript'.\x0a\x09\x09'psd' -> 'image/x-photoshop'.\x0a\x09\x09'psp' -> 'text/x-psp'.\x0a\x09\x09'py' -> 'text/x-python'.\x0a\x09\x09'pyc' -> 'application/x-python-code'.\x0a\x09\x09'pyo' -> 'application/x-python-code'.\x0a\x09\x09'qt' -> 'video/quicktime'.\x0a\x09\x09'qtl' -> 'application/x-quicktimeplayer'.\x0a\x09\x09'ra' -> 'audio/x-realaudio'.\x0a\x09\x09'ram' -> 'audio/x-pn-realaudio'.\x0a\x09\x09'rar' -> 'application/rar'.\x0a\x09\x09'ras' -> 'image/x-cmu-raster'.\x0a\x09\x09'rd' -> 'chemical/x-mdl-rdfile'.\x0a\x09\x09'rdf' -> 'application/rdf+xml'.\x0a\x09\x09'rgb' -> 'image/x-rgb'.\x0a\x09\x09'rm' -> 'audio/x-pn-realaudio'.\x0a\x09\x09'roff' -> 'application/x-troff'.\x0a\x09\x09'ros' -> 'chemical/x-rosdal'.\x0a\x09\x09'rpm' -> 'application/x-redhat-package-manager'.\x0a\x09\x09'rss' -> 'application/rss+xml'.\x0a\x09\x09'rtf' -> 'text/rtf'.\x0a\x09\x09'rtx' -> 'text/richtext'.\x0a\x09\x09'rxn' -> 'chemical/x-mdl-rxnfile'.\x0a\x09\x09'sct' -> 'text/scriptlet'.\x0a\x09\x09'sd' -> 'chemical/x-mdl-sdfile'.\x0a\x09\x09'sd2' -> 'audio/x-sd2'.\x0a\x09\x09'sda' -> 'application/vnd.stardivision.draw'.\x0a\x09\x09'sdc' -> 'application/vnd.stardivision.calc'.\x0a\x09\x09'sdd' -> 'application/vnd.stardivision.impress'.\x0a\x09\x09'sdf' -> 'chemical/x-mdl-sdfile'.\x0a\x09\x09'sdp' -> 'application/vnd.stardivision.impress'.\x0a\x09\x09'sdw' -> 'application/vnd.stardivision.writer'.\x0a\x09\x09'ser' -> 'application/java-serialized-object'.\x0a\x09\x09'sgf' -> 'application/x-go-sgf'.\x0a\x09\x09'sgl' -> 'application/vnd.stardivision.writer-global'.\x0a\x09\x09'sh' -> 'text/x-sh'.\x0a\x09\x09'shar' -> 'application/x-shar'.\x0a\x09\x09'shtml' -> 'text/html'.\x0a\x09\x09'sid' -> 'audio/prs.sid'.\x0a\x09\x09'sik' -> 'application/x-trash'.\x0a\x09\x09'silo' -> 'model/mesh'.\x0a\x09\x09'sis' -> 'application/vnd.symbian.install'.\x0a\x09\x09'sit' -> 'application/x-stuffit'.\x0a\x09\x09'skd' -> 'application/x-koan'.\x0a\x09\x09'skm' -> 'application/x-koan'.\x0a\x09\x09'skp' -> 'application/x-koan'.\x0a\x09\x09'skt' -> 'application/x-koan'.\x0a\x09\x09'smf' -> 'application/vnd.stardivision.math'.\x0a\x09\x09'smi' -> 'application/smil'.\x0a\x09\x09'smil' -> 'application/smil'.\x0a\x09\x09'snd' -> 'audio/basic'.\x0a\x09\x09'spc' -> 'chemical/x-galactic-spc'.\x0a\x09\x09'spl' -> 'application/x-futuresplash'.\x0a\x09\x09'src' -> 'application/x-wais-source'.\x0a\x09\x09'stc' -> 'application/vnd.sun.xml.calc.template'.\x0a\x09\x09'std' -> 'application/vnd.sun.xml.draw.template'.\x0a\x09\x09'sti' -> 'application/vnd.sun.xml.impress.template'.\x0a\x09\x09'stl' -> 'application/vnd.ms-pki.stl'.\x0a\x09\x09'stw' -> 'application/vnd.sun.xml.writer.template'.\x0a\x09\x09'sty' -> 'text/x-tex'.\x0a\x09\x09'sv4cpio' -> 'application/x-sv4cpio'.\x0a\x09\x09'sv4crc' -> 'application/x-sv4crc'.\x0a\x09\x09'svg' -> 'image/svg+xml'.\x0a\x09\x09'svgz' -> 'image/svg+xml'.\x0a\x09\x09'sw' -> 'chemical/x-swissprot'.\x0a\x09\x09'swf' -> 'application/x-shockwave-flash'.\x0a\x09\x09'swfl' -> 'application/x-shockwave-flash'.\x0a\x09\x09'sxc' -> 'application/vnd.sun.xml.calc'.\x0a\x09\x09'sxd' -> 'application/vnd.sun.xml.draw'.\x0a\x09\x09'sxg' -> 'application/vnd.sun.xml.writer.global'.\x0a\x09\x09'sxi' -> 'application/vnd.sun.xml.impress'.\x0a\x09\x09'sxm' -> 'application/vnd.sun.xml.math'.\x0a\x09\x09'sxw' -> 'application/vnd.sun.xml.writer'.\x0a\x09\x09't' -> 'application/x-troff'.\x0a\x09\x09'tar' -> 'application/x-tar'.\x0a\x09\x09'taz' -> 'application/x-gtar'.\x0a\x09\x09'tcl' -> 'text/x-tcl'.\x0a\x09\x09'tex' -> 'text/x-tex'.\x0a\x09\x09'texi' -> 'application/x-texinfo'.\x0a\x09\x09'texinfo' -> 'application/x-texinfo'.\x0a\x09\x09'text' -> 'text/plain'.\x0a\x09\x09'tgf' -> 'chemical/x-mdl-tgf'.\x0a\x09\x09'tgz' -> 'application/x-gtar'.\x0a\x09\x09'tif' -> 'image/tiff'.\x0a\x09\x09'tiff' -> 'image/tiff'.\x0a\x09\x09'tk' -> 'text/x-tcl'.\x0a\x09\x09'tm' -> 'text/texmacs'.\x0a\x09\x09'torrent' -> 'application/x-bittorrent'.\x0a\x09\x09'tr' -> 'application/x-troff'.\x0a\x09\x09'ts' -> 'text/texmacs'.\x0a\x09\x09'tsp' -> 'application/dsptype'.\x0a\x09\x09'tsv' -> 'text/tab-separated-values'.\x0a\x09\x09'txt' -> 'text/plain'.\x0a\x09\x09'udeb' -> 'application/x-debian-package'.\x0a\x09\x09'uls' -> 'text/iuls'.\x0a\x09\x09'ustar' -> 'application/x-ustar'.\x0a\x09\x09'val' -> 'chemical/x-ncbi-asn1-binary'.\x0a\x09\x09'vcd' -> 'application/x-cdlink'.\x0a\x09\x09'vcf' -> 'text/x-vcard'.\x0a\x09\x09'vcs' -> 'text/x-vcalendar'.\x0a\x09\x09'vmd' -> 'chemical/x-vmd'.\x0a\x09\x09'vms' -> 'chemical/x-vamas-iso14976'.\x0a\x09\x09'vor' -> 'application/vnd.stardivision.writer'.\x0a\x09\x09'vrm' -> 'x-world/x-vrml'.\x0a\x09\x09'vrml' -> 'x-world/x-vrml'.\x0a\x09\x09'vsd' -> 'application/vnd.visio'.\x0a\x09\x09'wad' -> 'application/x-doom'.\x0a\x09\x09'wav' -> 'audio/x-wav'.\x0a\x09\x09'wax' -> 'audio/x-ms-wax'.\x0a\x09\x09'wbmp' -> 'image/vnd.wap.wbmp'.\x0a\x09\x09'wbxml' -> 'application/vnd.wap.wbxml'.\x0a\x09\x09'wk' -> 'application/x-123'.\x0a\x09\x09'wm' -> 'video/x-ms-wm'.\x0a\x09\x09'wma' -> 'audio/x-ms-wma'.\x0a\x09\x09'wmd' -> 'application/x-ms-wmd'.\x0a\x09\x09'wml' -> 'text/vnd.wap.wml'.\x0a\x09\x09'wmlc' -> 'application/vnd.wap.wmlc'.\x0a\x09\x09'wmls' -> 'text/vnd.wap.wmlscript'.\x0a\x09\x09'wmlsc' -> 'application/vnd.wap.wmlscriptc'.\x0a\x09\x09'wmv' -> 'video/x-ms-wmv'.\x0a\x09\x09'wmx' -> 'video/x-ms-wmx'.\x0a\x09\x09'wmz' -> 'application/x-ms-wmz'.\x0a\x09\x09'wp5' -> 'application/wordperfect5.1'.\x0a\x09\x09'wpd' -> 'application/wordperfect'.\x0a\x09\x09'wrl' -> 'x-world/x-vrml'.\x0a\x09\x09'wsc' -> 'text/scriptlet'.\x0a\x09\x09'wvx' -> 'video/x-ms-wvx'.\x0a\x09\x09'wz' -> 'application/x-wingz'.\x0a\x09\x09'xbm' -> 'image/x-xbitmap'.\x0a\x09\x09'xcf' -> 'application/x-xcf'.\x0a\x09\x09'xht' -> 'application/xhtml+xml'.\x0a\x09\x09'xhtml' -> 'application/xhtml+xml'.\x0a\x09\x09'xlb' -> 'application/vnd.ms-excel'.\x0a\x09\x09'xls' -> 'application/vnd.ms-excel'.\x0a\x09\x09'xlt' -> 'application/vnd.ms-excel'.\x0a\x09\x09'xml' -> 'application/xml'.\x0a\x09\x09'xpi' -> 'application/x-xpinstall'.\x0a\x09\x09'xpm' -> 'image/x-xpixmap'.\x0a\x09\x09'xsl' -> 'application/xml'.\x0a\x09\x09'xtel' -> 'chemical/x-xtel'.\x0a\x09\x09'xul' -> 'application/vnd.mozilla.xul+xml'.\x0a\x09\x09'xwd' -> 'image/x-xwindowdump'.\x0a\x09\x09'xyz' -> 'chemical/x-xyz'.\x0a\x09\x09'zip' -> 'application/zip'.\x0a\x09\x09'zmt' -> 'chemical/x-mopac-input'.\x0a\x09\x09'~' -> 'application/x-trash'\x0a\x09}",
  1883. referencedClasses: [],
  1884. //>>excludeEnd("ide");
  1885. messageSends: []
  1886. }),
  1887. $globals.FileServer.a$cls);
  1888. $core.addMethod(
  1889. $core.method({
  1890. selector: "defaultPort",
  1891. protocol: "accessing",
  1892. fn: function (){
  1893. var self=this,$self=this;
  1894. return (4000);
  1895. },
  1896. //>>excludeStart("ide", pragmas.excludeIdeData);
  1897. args: [],
  1898. source: "defaultPort\x0a\x09^ 4000",
  1899. referencedClasses: [],
  1900. //>>excludeEnd("ide");
  1901. messageSends: []
  1902. }),
  1903. $globals.FileServer.a$cls);
  1904. $core.addMethod(
  1905. $core.method({
  1906. selector: "main",
  1907. protocol: "initialization",
  1908. fn: function (){
  1909. var self=this,$self=this;
  1910. var fileServer,args;
  1911. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1912. return $core.withContext(function($ctx1) {
  1913. //>>excludeEnd("ctx");
  1914. var $1;
  1915. var $early={};
  1916. try {
  1917. args=$recv(process)._argv();
  1918. $recv(args)._removeFrom_to_((1),(3));
  1919. $recv(args)._detect_ifNone_((function(each){
  1920. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1921. return $core.withContext(function($ctx2) {
  1922. //>>excludeEnd("ctx");
  1923. $1=$recv(each).__eq("--help");
  1924. if($core.assert($1)){
  1925. return $recv($globals.FileServer)._printHelp();
  1926. }
  1927. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1928. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  1929. //>>excludeEnd("ctx");
  1930. }),(function(){
  1931. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1932. return $core.withContext(function($ctx2) {
  1933. //>>excludeEnd("ctx");
  1934. fileServer=$recv($globals.FileServer)._createServerWithArguments_(args);
  1935. throw $early=[$recv(fileServer)._start()];
  1936. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1937. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)});
  1938. //>>excludeEnd("ctx");
  1939. }));
  1940. return self;
  1941. }
  1942. catch(e) {if(e===$early)return e[0]; throw e}
  1943. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1944. }, function($ctx1) {$ctx1.fill(self,"main",{fileServer:fileServer,args:args},$globals.FileServer.a$cls)});
  1945. //>>excludeEnd("ctx");
  1946. },
  1947. //>>excludeStart("ide", pragmas.excludeIdeData);
  1948. args: [],
  1949. source: "main\x0a\x09\x22Main entry point for Amber applications.\x0a\x09 Creates and starts a FileServer instance.\x22\x0a\x09| fileServer args |\x0a\x09args := process argv.\x0a\x09\x22Remove the first args which contain the path to the node executable and the script file.\x22\x0a\x09args removeFrom: 1 to: 3.\x0a\x0a\x09args detect: [ :each |\x0a\x09\x09(each = '--help') ifTrue: [FileServer printHelp]]\x0a\x09ifNone: [\x0a\x09\x09fileServer := FileServer createServerWithArguments: args.\x0a\x09\x09^ fileServer start]",
  1950. referencedClasses: ["FileServer"],
  1951. //>>excludeEnd("ide");
  1952. messageSends: ["argv", "removeFrom:to:", "detect:ifNone:", "ifTrue:", "=", "printHelp", "createServerWithArguments:", "start"]
  1953. }),
  1954. $globals.FileServer.a$cls);
  1955. $core.addMethod(
  1956. $core.method({
  1957. selector: "mimeTypeFor:",
  1958. protocol: "accessing",
  1959. fn: function (aString){
  1960. var self=this,$self=this;
  1961. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1962. return $core.withContext(function($ctx1) {
  1963. //>>excludeEnd("ctx");
  1964. return $recv($self._mimeTypes())._at_ifAbsent_($recv(aString)._replace_with_(".*[\x5c.]",""),(function(){
  1965. return "text/plain";
  1966. }));
  1967. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1968. }, function($ctx1) {$ctx1.fill(self,"mimeTypeFor:",{aString:aString},$globals.FileServer.a$cls)});
  1969. //>>excludeEnd("ctx");
  1970. },
  1971. //>>excludeStart("ide", pragmas.excludeIdeData);
  1972. args: ["aString"],
  1973. source: "mimeTypeFor: aString\x0a\x09^ self mimeTypes at: (aString replace: '.*[\x5c.]' with: '') ifAbsent: ['text/plain']",
  1974. referencedClasses: [],
  1975. //>>excludeEnd("ide");
  1976. messageSends: ["at:ifAbsent:", "mimeTypes", "replace:with:"]
  1977. }),
  1978. $globals.FileServer.a$cls);
  1979. $core.addMethod(
  1980. $core.method({
  1981. selector: "mimeTypes",
  1982. protocol: "accessing",
  1983. fn: function (){
  1984. var self=this,$self=this;
  1985. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1986. return $core.withContext(function($ctx1) {
  1987. //>>excludeEnd("ctx");
  1988. var $1,$receiver;
  1989. $1=$self["@mimeTypes"];
  1990. if(($receiver = $1) == null || $receiver.a$nil){
  1991. $self["@mimeTypes"]=$self._defaultMimeTypes();
  1992. return $self["@mimeTypes"];
  1993. } else {
  1994. return $1;
  1995. }
  1996. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  1997. }, function($ctx1) {$ctx1.fill(self,"mimeTypes",{},$globals.FileServer.a$cls)});
  1998. //>>excludeEnd("ctx");
  1999. },
  2000. //>>excludeStart("ide", pragmas.excludeIdeData);
  2001. args: [],
  2002. source: "mimeTypes\x0a\x09^ mimeTypes ifNil: [mimeTypes := self defaultMimeTypes]",
  2003. referencedClasses: [],
  2004. //>>excludeEnd("ide");
  2005. messageSends: ["ifNil:", "defaultMimeTypes"]
  2006. }),
  2007. $globals.FileServer.a$cls);
  2008. $core.addMethod(
  2009. $core.method({
  2010. selector: "printHelp",
  2011. protocol: "accessing",
  2012. fn: function (){
  2013. var self=this,$self=this;
  2014. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2015. return $core.withContext(function($ctx1) {
  2016. //>>excludeEnd("ctx");
  2017. $recv(console)._log_("Available commandline options are:");
  2018. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2019. $ctx1.sendIdx["log:"]=1;
  2020. //>>excludeEnd("ctx");
  2021. $recv(console)._log_("--help");
  2022. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2023. $ctx1.sendIdx["log:"]=2;
  2024. //>>excludeEnd("ctx");
  2025. $recv($self._commandLineSwitches())._do_((function(each){
  2026. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2027. return $core.withContext(function($ctx2) {
  2028. //>>excludeEnd("ctx");
  2029. return $recv(console)._log_($recv(each).__comma(" <parameter>"));
  2030. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2031. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  2032. //>>excludeEnd("ctx");
  2033. }));
  2034. return self;
  2035. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2036. }, function($ctx1) {$ctx1.fill(self,"printHelp",{},$globals.FileServer.a$cls)});
  2037. //>>excludeEnd("ctx");
  2038. },
  2039. //>>excludeStart("ide", pragmas.excludeIdeData);
  2040. args: [],
  2041. source: "printHelp\x0a\x09console log: 'Available commandline options are:'.\x0a\x09console log: '--help'.\x0a\x09self commandLineSwitches do: [ :each |\x0a\x09\x09console log: each, ' <parameter>']",
  2042. referencedClasses: [],
  2043. //>>excludeEnd("ide");
  2044. messageSends: ["log:", "do:", "commandLineSwitches", ","]
  2045. }),
  2046. $globals.FileServer.a$cls);
  2047. $core.addMethod(
  2048. $core.method({
  2049. selector: "selectorForCommandLineSwitch:",
  2050. protocol: "accessing",
  2051. fn: function (aSwitch){
  2052. var self=this,$self=this;
  2053. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2054. return $core.withContext(function($ctx1) {
  2055. //>>excludeEnd("ctx");
  2056. var $1;
  2057. $1=$recv($recv(aSwitch)._replace_with_("^--",""))._replace_with_("-[a-z]",(function(each){
  2058. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2059. return $core.withContext(function($ctx2) {
  2060. //>>excludeEnd("ctx");
  2061. return $recv($recv(each)._second())._asUppercase();
  2062. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2063. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  2064. //>>excludeEnd("ctx");
  2065. }));
  2066. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2067. $ctx1.sendIdx["replace:with:"]=1;
  2068. //>>excludeEnd("ctx");
  2069. return $recv($1).__comma(":");
  2070. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2071. }, function($ctx1) {$ctx1.fill(self,"selectorForCommandLineSwitch:",{aSwitch:aSwitch},$globals.FileServer.a$cls)});
  2072. //>>excludeEnd("ctx");
  2073. },
  2074. //>>excludeStart("ide", pragmas.excludeIdeData);
  2075. args: ["aSwitch"],
  2076. source: "selectorForCommandLineSwitch: aSwitch\x0a\x09\x22Remove the trailing '--', add ':' at the end\x0a\x09 and replace all occurences of a lowercase letter preceded by a '-' with\x0a\x09 the Uppercase letter.\x0a\x09 Example: --fallback-page becomes fallbackPage:\x22\x0a\x09^ ((aSwitch replace: '^--' with: '')\x0a\x09\x09replace: '-[a-z]' with: [ :each | each second asUppercase ]), ':'",
  2077. referencedClasses: [],
  2078. //>>excludeEnd("ide");
  2079. messageSends: [",", "replace:with:", "asUppercase", "second"]
  2080. }),
  2081. $globals.FileServer.a$cls);
  2082. $core.addClass("Initer", $globals.BaseFileManipulator, ["childProcess", "nmPath"], "AmberCli");
  2083. $core.addMethod(
  2084. $core.method({
  2085. selector: "bowerInstallThenDo:",
  2086. protocol: "action",
  2087. fn: function (aBlock){
  2088. var self=this,$self=this;
  2089. var child;
  2090. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2091. return $core.withContext(function($ctx1) {
  2092. //>>excludeEnd("ctx");
  2093. var $1,$3,$2;
  2094. child=$recv($self["@childProcess"])._fork_args_($self._npmScriptForModule_named_("bower","bower"),["install"]);
  2095. $1=child;
  2096. $recv($1)._on_do_("error",aBlock);
  2097. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2098. $ctx1.sendIdx["on:do:"]=1;
  2099. //>>excludeEnd("ctx");
  2100. $recv($1)._on_do_("close",(function(code){
  2101. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2102. return $core.withContext(function($ctx2) {
  2103. //>>excludeEnd("ctx");
  2104. $3=$recv(code).__eq((0));
  2105. if($core.assert($3)){
  2106. $2=nil;
  2107. } else {
  2108. $2=code;
  2109. }
  2110. return $recv(aBlock)._value_($2);
  2111. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2112. }, function($ctx2) {$ctx2.fillBlock({code:code},$ctx1,1)});
  2113. //>>excludeEnd("ctx");
  2114. }));
  2115. return self;
  2116. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2117. }, function($ctx1) {$ctx1.fill(self,"bowerInstallThenDo:",{aBlock:aBlock,child:child},$globals.Initer)});
  2118. //>>excludeEnd("ctx");
  2119. },
  2120. //>>excludeStart("ide", pragmas.excludeIdeData);
  2121. args: ["aBlock"],
  2122. source: "bowerInstallThenDo: aBlock\x0a\x09| child |\x0a\x09child := childProcess\x0a\x09\x09fork: (self npmScriptForModule: 'bower' named: 'bower')\x0a\x09\x09args: #('install').\x0a\x09child\x0a\x09\x09on: 'error' do: aBlock;\x0a\x09\x09on: 'close' do: [ :code |\x0a\x09\x09\x09aBlock value: (code = 0 ifTrue: [ nil ] ifFalse: [ code ]) ]",
  2123. referencedClasses: [],
  2124. //>>excludeEnd("ide");
  2125. messageSends: ["fork:args:", "npmScriptForModule:named:", "on:do:", "value:", "ifTrue:ifFalse:", "="]
  2126. }),
  2127. $globals.Initer);
  2128. $core.addMethod(
  2129. $core.method({
  2130. selector: "finishMessage",
  2131. protocol: "action",
  2132. fn: function (){
  2133. var self=this,$self=this;
  2134. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2135. return $core.withContext(function($ctx1) {
  2136. //>>excludeEnd("ctx");
  2137. $recv(console)._log_([" ", "The project should now be set up.", " ", " "]._join_($recv($globals.String)._lf()));
  2138. $recv((function(){
  2139. }))._valueWithTimeout_((600));
  2140. return self;
  2141. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2142. }, function($ctx1) {$ctx1.fill(self,"finishMessage",{},$globals.Initer)});
  2143. //>>excludeEnd("ctx");
  2144. },
  2145. //>>excludeStart("ide", pragmas.excludeIdeData);
  2146. args: [],
  2147. source: "finishMessage\x0a\x09console log: (#(\x0a\x09\x09' '\x0a\x09\x09'The project should now be set up.'\x0a\x09\x09' '\x0a\x09\x09' '\x0a\x09) join: String lf).\x0a\x09[] valueWithTimeout: 600",
  2148. referencedClasses: ["String"],
  2149. //>>excludeEnd("ide");
  2150. messageSends: ["log:", "join:", "lf", "valueWithTimeout:"]
  2151. }),
  2152. $globals.Initer);
  2153. $core.addMethod(
  2154. $core.method({
  2155. selector: "gruntInitThenDo:",
  2156. protocol: "action",
  2157. fn: function (aBlock){
  2158. var self=this,$self=this;
  2159. var child,sanitizedTemplatePath;
  2160. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2161. return $core.withContext(function($ctx1) {
  2162. //>>excludeEnd("ctx");
  2163. var $1,$3,$2;
  2164. sanitizedTemplatePath=$recv($recv($recv($self["@path"])._join_with_($self["@nmPath"],"@ambers/grunt-init-amber-project"))._replace_with_("\x5c\x5c","\x5c\x5c"))._replace_with_(":","\x5c:");
  2165. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2166. $ctx1.sendIdx["replace:with:"]=1;
  2167. //>>excludeEnd("ctx");
  2168. child=$recv($self["@childProcess"])._fork_args_($self._npmScriptForModule_named_("grunt-init","grunt-init"),[sanitizedTemplatePath]);
  2169. $1=child;
  2170. $recv($1)._on_do_("error",aBlock);
  2171. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2172. $ctx1.sendIdx["on:do:"]=1;
  2173. //>>excludeEnd("ctx");
  2174. $recv($1)._on_do_("close",(function(code){
  2175. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2176. return $core.withContext(function($ctx2) {
  2177. //>>excludeEnd("ctx");
  2178. $3=$recv(code).__eq((0));
  2179. if($core.assert($3)){
  2180. $2=nil;
  2181. } else {
  2182. $2=code;
  2183. }
  2184. return $recv(aBlock)._value_($2);
  2185. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2186. }, function($ctx2) {$ctx2.fillBlock({code:code},$ctx1,1)});
  2187. //>>excludeEnd("ctx");
  2188. }));
  2189. return self;
  2190. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2191. }, function($ctx1) {$ctx1.fill(self,"gruntInitThenDo:",{aBlock:aBlock,child:child,sanitizedTemplatePath:sanitizedTemplatePath},$globals.Initer)});
  2192. //>>excludeEnd("ctx");
  2193. },
  2194. //>>excludeStart("ide", pragmas.excludeIdeData);
  2195. args: ["aBlock"],
  2196. source: "gruntInitThenDo: aBlock\x0a\x09| child sanitizedTemplatePath |\x0a\x09sanitizedTemplatePath := ((path join: nmPath with: '@ambers/grunt-init-amber-project')\x0a\x09\x09replace: '\x5c\x5c' with: '\x5c\x5c') replace: ':' with: '\x5c:'.\x0a\x09child := childProcess\x0a\x09\x09fork: (self npmScriptForModule: 'grunt-init' named: 'grunt-init')\x0a\x09\x09args: {sanitizedTemplatePath}.\x0a\x09child\x0a\x09\x09on: 'error' do: aBlock;\x0a\x09\x09on: 'close' do: [ :code |\x0a\x09\x09\x09aBlock value: (code = 0 ifTrue: [ nil ] ifFalse: [ code ]) ]",
  2197. referencedClasses: [],
  2198. //>>excludeEnd("ide");
  2199. messageSends: ["replace:with:", "join:with:", "fork:args:", "npmScriptForModule:named:", "on:do:", "value:", "ifTrue:ifFalse:", "="]
  2200. }),
  2201. $globals.Initer);
  2202. $core.addMethod(
  2203. $core.method({
  2204. selector: "gruntThenDo:",
  2205. protocol: "action",
  2206. fn: function (aBlock){
  2207. var self=this,$self=this;
  2208. var child;
  2209. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2210. return $core.withContext(function($ctx1) {
  2211. //>>excludeEnd("ctx");
  2212. var $1,$3,$2;
  2213. child=$recv($self["@childProcess"])._fork_args_($self._npmScriptForModule_named_("grunt-cli","grunt"),["default", "devel"]);
  2214. $1=child;
  2215. $recv($1)._on_do_("error",aBlock);
  2216. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2217. $ctx1.sendIdx["on:do:"]=1;
  2218. //>>excludeEnd("ctx");
  2219. $recv($1)._on_do_("close",(function(code){
  2220. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2221. return $core.withContext(function($ctx2) {
  2222. //>>excludeEnd("ctx");
  2223. $3=$recv(code).__eq((0));
  2224. if($core.assert($3)){
  2225. $2=nil;
  2226. } else {
  2227. $2=code;
  2228. }
  2229. return $recv(aBlock)._value_($2);
  2230. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2231. }, function($ctx2) {$ctx2.fillBlock({code:code},$ctx1,1)});
  2232. //>>excludeEnd("ctx");
  2233. }));
  2234. return self;
  2235. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2236. }, function($ctx1) {$ctx1.fill(self,"gruntThenDo:",{aBlock:aBlock,child:child},$globals.Initer)});
  2237. //>>excludeEnd("ctx");
  2238. },
  2239. //>>excludeStart("ide", pragmas.excludeIdeData);
  2240. args: ["aBlock"],
  2241. source: "gruntThenDo: aBlock\x0a\x09| child |\x0a\x09child := childProcess\x0a\x09\x09fork: (self npmScriptForModule: 'grunt-cli' named: 'grunt')\x0a\x09\x09args: #('default' 'devel').\x0a\x09child\x0a\x09\x09on: 'error' do: aBlock;\x0a\x09\x09on: 'close' do: [ :code |\x0a\x09\x09\x09aBlock value: (code = 0 ifTrue: [ nil ] ifFalse: [ code ]) ]",
  2242. referencedClasses: [],
  2243. //>>excludeEnd("ide");
  2244. messageSends: ["fork:args:", "npmScriptForModule:named:", "on:do:", "value:", "ifTrue:ifFalse:", "="]
  2245. }),
  2246. $globals.Initer);
  2247. $core.addMethod(
  2248. $core.method({
  2249. selector: "initialize",
  2250. protocol: "initialization",
  2251. fn: function (){
  2252. var self=this,$self=this;
  2253. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2254. return $core.withContext(function($ctx1) {
  2255. //>>excludeEnd("ctx");
  2256. (
  2257. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2258. $ctx1.supercall = true,
  2259. //>>excludeEnd("ctx");
  2260. ($globals.Initer.superclass||$boot.nilAsClass).fn.prototype._initialize.apply($self, []));
  2261. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2262. $ctx1.supercall = false;
  2263. //>>excludeEnd("ctx");;
  2264. $self["@childProcess"]=$recv(require)._value_("child_process");
  2265. $self["@nmPath"]=$recv($self["@path"])._join_with_($self._rootDirname(),"node_modules");
  2266. return self;
  2267. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2268. }, function($ctx1) {$ctx1.fill(self,"initialize",{},$globals.Initer)});
  2269. //>>excludeEnd("ctx");
  2270. },
  2271. //>>excludeStart("ide", pragmas.excludeIdeData);
  2272. args: [],
  2273. source: "initialize\x0a\x09super initialize.\x0a\x09childProcess := require value: 'child_process'.\x0a\x09nmPath := path join: self rootDirname with: 'node_modules'",
  2274. referencedClasses: [],
  2275. //>>excludeEnd("ide");
  2276. messageSends: ["initialize", "value:", "join:with:", "rootDirname"]
  2277. }),
  2278. $globals.Initer);
  2279. $core.addMethod(
  2280. $core.method({
  2281. selector: "npmInstallThenDo:",
  2282. protocol: "action",
  2283. fn: function (aBlock){
  2284. var self=this,$self=this;
  2285. var child;
  2286. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2287. return $core.withContext(function($ctx1) {
  2288. //>>excludeEnd("ctx");
  2289. var $1;
  2290. child=$recv($self["@childProcess"])._exec_thenDo_("npm install",aBlock);
  2291. $1=$recv(child)._stdout();
  2292. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2293. $ctx1.sendIdx["stdout"]=1;
  2294. //>>excludeEnd("ctx");
  2295. $recv($1)._pipe_options_($recv(process)._stdout(),$globals.HashedCollection._newFromPairs_(["end",false]));
  2296. return self;
  2297. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2298. }, function($ctx1) {$ctx1.fill(self,"npmInstallThenDo:",{aBlock:aBlock,child:child},$globals.Initer)});
  2299. //>>excludeEnd("ctx");
  2300. },
  2301. //>>excludeStart("ide", pragmas.excludeIdeData);
  2302. args: ["aBlock"],
  2303. source: "npmInstallThenDo: aBlock\x0a\x09| child |\x0a\x09child := childProcess\x0a\x09\x09exec: 'npm install'\x0a\x09\x09thenDo: aBlock.\x0a\x09child stdout pipe: process stdout options: #{ 'end' -> false }",
  2304. referencedClasses: [],
  2305. //>>excludeEnd("ide");
  2306. messageSends: ["exec:thenDo:", "pipe:options:", "stdout"]
  2307. }),
  2308. $globals.Initer);
  2309. $core.addMethod(
  2310. $core.method({
  2311. selector: "npmScriptForModule:named:",
  2312. protocol: "npm",
  2313. fn: function (aString,anotherString){
  2314. var self=this,$self=this;
  2315. var modulePath,packageJson,binSection,scriptPath;
  2316. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2317. return $core.withContext(function($ctx1) {
  2318. //>>excludeEnd("ctx");
  2319. var $1,$3,$4,$2,$5;
  2320. $1=$self["@path"];
  2321. $3=$recv(require)._provided();
  2322. $4=$recv(aString).__comma("/package.json");
  2323. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2324. $ctx1.sendIdx[","]=1;
  2325. //>>excludeEnd("ctx");
  2326. $2=$recv($3)._resolve_($4);
  2327. modulePath=$recv($1)._dirname_($2);
  2328. packageJson=$recv($globals.Smalltalk)._readJSObject_($recv(require)._value_($recv(aString).__comma("/package.json")));
  2329. binSection=$recv(packageJson)._at_("bin");
  2330. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2331. $ctx1.sendIdx["at:"]=1;
  2332. //>>excludeEnd("ctx");
  2333. $5=$recv(binSection)._isString();
  2334. if($core.assert($5)){
  2335. scriptPath=binSection;
  2336. } else {
  2337. scriptPath=$recv(binSection)._at_(anotherString);
  2338. }
  2339. return $recv($self["@path"])._join_with_(modulePath,scriptPath);
  2340. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2341. }, function($ctx1) {$ctx1.fill(self,"npmScriptForModule:named:",{aString:aString,anotherString:anotherString,modulePath:modulePath,packageJson:packageJson,binSection:binSection,scriptPath:scriptPath},$globals.Initer)});
  2342. //>>excludeEnd("ctx");
  2343. },
  2344. //>>excludeStart("ide", pragmas.excludeIdeData);
  2345. args: ["aString", "anotherString"],
  2346. source: "npmScriptForModule: aString named: anotherString\x0a\x09| modulePath packageJson binSection scriptPath |\x0a\x09modulePath := path dirname: (\x0a\x09\x09require provided resolve: aString, '/package.json').\x0a\x09packageJson := Smalltalk readJSObject: (\x0a\x09\x09require value: aString, '/package.json').\x0a\x09binSection := packageJson at: 'bin'.\x0a\x09scriptPath := binSection isString\x0a\x09\x09ifTrue: [ binSection ]\x0a\x09\x09ifFalse: [ binSection at: anotherString ].\x0a\x09^ path join: modulePath with: scriptPath",
  2347. referencedClasses: ["Smalltalk"],
  2348. //>>excludeEnd("ide");
  2349. messageSends: ["dirname:", "resolve:", "provided", ",", "readJSObject:", "value:", "at:", "ifTrue:ifFalse:", "isString", "join:with:"]
  2350. }),
  2351. $globals.Initer);
  2352. $core.addMethod(
  2353. $core.method({
  2354. selector: "start",
  2355. protocol: "action",
  2356. fn: function (){
  2357. var self=this,$self=this;
  2358. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2359. return $core.withContext(function($ctx1) {
  2360. //>>excludeEnd("ctx");
  2361. var $1,$2,$3,$4,$5,$6,$7,$receiver;
  2362. $self._gruntInitThenDo_((function(error){
  2363. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2364. return $core.withContext(function($ctx2) {
  2365. //>>excludeEnd("ctx");
  2366. if(($receiver = error) == null || $receiver.a$nil){
  2367. return $self._bowerInstallThenDo_((function(error2){
  2368. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2369. return $core.withContext(function($ctx3) {
  2370. //>>excludeEnd("ctx");
  2371. if(($receiver = error2) == null || $receiver.a$nil){
  2372. return $self._npmInstallThenDo_((function(error3){
  2373. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2374. return $core.withContext(function($ctx4) {
  2375. //>>excludeEnd("ctx");
  2376. if(($receiver = error3) == null || $receiver.a$nil){
  2377. return $self._gruntThenDo_((function(error4){
  2378. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2379. return $core.withContext(function($ctx5) {
  2380. //>>excludeEnd("ctx");
  2381. if(($receiver = error4) == null || $receiver.a$nil){
  2382. $self._finishMessage();
  2383. return $recv(process)._exit();
  2384. } else {
  2385. $7=console;
  2386. $recv($7)._log_("grunt exec error:");
  2387. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2388. $ctx5.sendIdx["log:"]=7;
  2389. //>>excludeEnd("ctx");
  2390. $recv($7)._log_(error4);
  2391. return $recv(process)._exit_((104));
  2392. }
  2393. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2394. }, function($ctx5) {$ctx5.fillBlock({error4:error4},$ctx4,10)});
  2395. //>>excludeEnd("ctx");
  2396. }));
  2397. } else {
  2398. $5=console;
  2399. $recv($5)._log_("npm install exec error:");
  2400. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2401. $ctx4.sendIdx["log:"]=5;
  2402. //>>excludeEnd("ctx");
  2403. $6=$recv($5)._log_(error3);
  2404. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2405. $ctx4.sendIdx["log:"]=6;
  2406. //>>excludeEnd("ctx");
  2407. return $recv(process)._exit_((103));
  2408. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2409. $ctx4.sendIdx["exit:"]=3;
  2410. //>>excludeEnd("ctx");
  2411. }
  2412. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2413. }, function($ctx4) {$ctx4.fillBlock({error3:error3},$ctx3,7)});
  2414. //>>excludeEnd("ctx");
  2415. }));
  2416. } else {
  2417. $3=console;
  2418. $recv($3)._log_("bower install exec error:");
  2419. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2420. $ctx3.sendIdx["log:"]=3;
  2421. //>>excludeEnd("ctx");
  2422. $4=$recv($3)._log_(error2);
  2423. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2424. $ctx3.sendIdx["log:"]=4;
  2425. //>>excludeEnd("ctx");
  2426. return $recv(process)._exit_((102));
  2427. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2428. $ctx3.sendIdx["exit:"]=2;
  2429. //>>excludeEnd("ctx");
  2430. }
  2431. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2432. }, function($ctx3) {$ctx3.fillBlock({error2:error2},$ctx2,4)});
  2433. //>>excludeEnd("ctx");
  2434. }));
  2435. } else {
  2436. $1=console;
  2437. $recv($1)._log_("grunt-init exec error:");
  2438. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2439. $ctx2.sendIdx["log:"]=1;
  2440. //>>excludeEnd("ctx");
  2441. $2=$recv($1)._log_(error);
  2442. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2443. $ctx2.sendIdx["log:"]=2;
  2444. //>>excludeEnd("ctx");
  2445. return $recv(process)._exit_((101));
  2446. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2447. $ctx2.sendIdx["exit:"]=1;
  2448. //>>excludeEnd("ctx");
  2449. }
  2450. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2451. }, function($ctx2) {$ctx2.fillBlock({error:error},$ctx1,1)});
  2452. //>>excludeEnd("ctx");
  2453. }));
  2454. return self;
  2455. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2456. }, function($ctx1) {$ctx1.fill(self,"start",{},$globals.Initer)});
  2457. //>>excludeEnd("ctx");
  2458. },
  2459. //>>excludeStart("ide", pragmas.excludeIdeData);
  2460. args: [],
  2461. source: "start\x0a\x09self gruntInitThenDo: [ :error | error\x0a\x09ifNotNil: [\x0a\x09\x09console log: 'grunt-init exec error:'; log: error.\x0a\x09\x09process exit: 101 ]\x0a\x09ifNil: [\x0a\x0a\x09self bowerInstallThenDo: [ :error2 | error2\x0a\x09ifNotNil: [\x0a\x09\x09console log: 'bower install exec error:'; log: error2.\x0a\x09\x09process exit: 102 ]\x0a\x09ifNil: [\x0a\x0a\x09self npmInstallThenDo: [ :error3 | error3\x0a\x09ifNotNil: [\x0a\x09\x09console log: 'npm install exec error:'; log: error3.\x0a\x09\x09process exit: 103 ]\x0a\x09ifNil: [\x0a\x0a\x09self gruntThenDo: [ :error4 | error4\x0a\x09ifNotNil: [\x0a\x09\x09console log: 'grunt exec error:'; log: error4.\x0a\x09\x09process exit: 104 ]\x0a\x09ifNil: [\x0a\x0a\x09self finishMessage.\x0a\x09process exit ]]]]]]]]",
  2462. referencedClasses: [],
  2463. //>>excludeEnd("ide");
  2464. messageSends: ["gruntInitThenDo:", "ifNotNil:ifNil:", "log:", "exit:", "bowerInstallThenDo:", "npmInstallThenDo:", "gruntThenDo:", "finishMessage", "exit"]
  2465. }),
  2466. $globals.Initer);
  2467. $core.addClass("Repl", $globals.Object, ["readline", "interface", "util", "session", "resultCount", "commands"], "AmberCli");
  2468. //>>excludeStart("ide", pragmas.excludeIdeData);
  2469. $globals.Repl.comment="I am a class representing a REPL (Read Evaluate Print Loop) and provide a command line interface to Amber Smalltalk.\x0aOn the prompt you can type Amber statements which will be evaluated after pressing <Enter>.\x0aThe evaluation is comparable with executing a 'DoIt' in a workspace.\x0a\x0aMy runtime requirement is a functional Node.js executable with working Readline support.";
  2470. //>>excludeEnd("ide");
  2471. $core.addMethod(
  2472. $core.method({
  2473. selector: "addVariableNamed:to:",
  2474. protocol: "private",
  2475. fn: function (aString,anObject){
  2476. var self=this,$self=this;
  2477. var newClass,newObject;
  2478. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2479. return $core.withContext(function($ctx1) {
  2480. //>>excludeEnd("ctx");
  2481. newClass=$self._subclass_withVariable_($recv(anObject)._class(),aString);
  2482. $self._encapsulateVariable_withValue_in_(aString,anObject,newClass);
  2483. newObject=$recv(newClass)._new();
  2484. $self._setPreviousVariablesFor_from_(newObject,anObject);
  2485. return newObject;
  2486. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2487. }, function($ctx1) {$ctx1.fill(self,"addVariableNamed:to:",{aString:aString,anObject:anObject,newClass:newClass,newObject:newObject},$globals.Repl)});
  2488. //>>excludeEnd("ctx");
  2489. },
  2490. //>>excludeStart("ide", pragmas.excludeIdeData);
  2491. args: ["aString", "anObject"],
  2492. source: "addVariableNamed: aString to: anObject\x0a\x09| newClass newObject |\x0a\x09newClass := self subclass: anObject class withVariable: aString.\x0a\x09self encapsulateVariable: aString withValue: anObject in: newClass.\x0a\x09newObject := newClass new.\x0a\x09self setPreviousVariablesFor: newObject from: anObject.\x0a\x09^ newObject",
  2493. referencedClasses: [],
  2494. //>>excludeEnd("ide");
  2495. messageSends: ["subclass:withVariable:", "class", "encapsulateVariable:withValue:in:", "new", "setPreviousVariablesFor:from:"]
  2496. }),
  2497. $globals.Repl);
  2498. $core.addMethod(
  2499. $core.method({
  2500. selector: "assignNewVariable:do:",
  2501. protocol: "private",
  2502. fn: function (buffer,aBlock){
  2503. var self=this,$self=this;
  2504. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2505. return $core.withContext(function($ctx1) {
  2506. //>>excludeEnd("ctx");
  2507. var $2,$3,$1,$receiver;
  2508. return $self._parseAssignment_do_(buffer,(function(name,expr){
  2509. var varName,value;
  2510. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2511. return $core.withContext(function($ctx2) {
  2512. //>>excludeEnd("ctx");
  2513. if(($receiver = name) == null || $receiver.a$nil){
  2514. varName=$self._nextResultName();
  2515. } else {
  2516. varName=name;
  2517. }
  2518. $self["@session"]=$self._addVariableNamed_to_(varName,$self["@session"]);
  2519. $recv((function(){
  2520. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2521. return $core.withContext(function($ctx3) {
  2522. //>>excludeEnd("ctx");
  2523. $2=$recv(varName).__comma(" := ");
  2524. if(($receiver = expr) == null || $receiver.a$nil){
  2525. $3=buffer;
  2526. } else {
  2527. $3=expr;
  2528. }
  2529. $1=$recv($2).__comma($3);
  2530. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2531. $ctx3.sendIdx[","]=1;
  2532. //>>excludeEnd("ctx");
  2533. value=$self._eval_on_($1,$self["@session"]);
  2534. return value;
  2535. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2536. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,3)});
  2537. //>>excludeEnd("ctx");
  2538. }))._on_do_($globals.Error,(function(e){
  2539. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2540. return $core.withContext(function($ctx3) {
  2541. //>>excludeEnd("ctx");
  2542. $recv($recv($globals.ConsoleErrorHandler)._new())._logError_(e);
  2543. value=nil;
  2544. return value;
  2545. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2546. }, function($ctx3) {$ctx3.fillBlock({e:e},$ctx2,5)});
  2547. //>>excludeEnd("ctx");
  2548. }));
  2549. return $recv(aBlock)._value_value_(varName,value);
  2550. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2551. }, function($ctx2) {$ctx2.fillBlock({name:name,expr:expr,varName:varName,value:value},$ctx1,1)});
  2552. //>>excludeEnd("ctx");
  2553. }));
  2554. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2555. }, function($ctx1) {$ctx1.fill(self,"assignNewVariable:do:",{buffer:buffer,aBlock:aBlock},$globals.Repl)});
  2556. //>>excludeEnd("ctx");
  2557. },
  2558. //>>excludeStart("ide", pragmas.excludeIdeData);
  2559. args: ["buffer", "aBlock"],
  2560. source: "assignNewVariable: buffer do: aBlock\x0a\x09\x22Assigns a new variable and calls the given block with the variable's name and value\x0a\x09 if buffer contains an assignment expression. If it doesn't the block is called with nil for\x0a\x09 both arguments.\x22\x0a\x09^ self parseAssignment: buffer do: [ :name :expr || varName value |\x0a\x09\x09varName := name ifNil: [self nextResultName].\x0a\x09\x09session := self addVariableNamed: varName to: session.\x0a\x09\x09[ value := self eval: varName, ' := ', (expr ifNil: [buffer]) on: session ]\x0a\x09\x09\x09on: Error\x0a\x09\x09\x09do: [ :e | ConsoleErrorHandler new logError: e. value := nil].\x0a\x09\x09aBlock value: varName value: value]",
  2561. referencedClasses: ["Error", "ConsoleErrorHandler"],
  2562. //>>excludeEnd("ide");
  2563. messageSends: ["parseAssignment:do:", "ifNil:", "nextResultName", "addVariableNamed:to:", "on:do:", "eval:on:", ",", "logError:", "new", "value:value:"]
  2564. }),
  2565. $globals.Repl);
  2566. $core.addMethod(
  2567. $core.method({
  2568. selector: "clearScreen",
  2569. protocol: "actions",
  2570. fn: function (){
  2571. var self=this,$self=this;
  2572. var esc,cls;
  2573. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2574. return $core.withContext(function($ctx1) {
  2575. //>>excludeEnd("ctx");
  2576. var $1;
  2577. esc=$recv($globals.String)._fromCharCode_((27));
  2578. $1=$recv($recv(esc).__comma("[2J")).__comma(esc);
  2579. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2580. $ctx1.sendIdx[","]=2;
  2581. //>>excludeEnd("ctx");
  2582. cls=$recv($1).__comma("[0;0f");
  2583. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2584. $ctx1.sendIdx[","]=1;
  2585. //>>excludeEnd("ctx");
  2586. $recv($recv(process)._stdout())._write_(cls);
  2587. $recv($self["@interface"])._prompt();
  2588. return self;
  2589. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2590. }, function($ctx1) {$ctx1.fill(self,"clearScreen",{esc:esc,cls:cls},$globals.Repl)});
  2591. //>>excludeEnd("ctx");
  2592. },
  2593. //>>excludeStart("ide", pragmas.excludeIdeData);
  2594. args: [],
  2595. source: "clearScreen\x0a\x09| esc cls |\x0a\x09esc := String fromCharCode: 27.\x0a\x09cls := esc, '[2J', esc, '[0;0f'.\x0a\x09process stdout write: cls.\x0a\x09interface prompt",
  2596. referencedClasses: ["String"],
  2597. //>>excludeEnd("ide");
  2598. messageSends: ["fromCharCode:", ",", "write:", "stdout", "prompt"]
  2599. }),
  2600. $globals.Repl);
  2601. $core.addMethod(
  2602. $core.method({
  2603. selector: "close",
  2604. protocol: "actions",
  2605. fn: function (){
  2606. var self=this,$self=this;
  2607. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2608. return $core.withContext(function($ctx1) {
  2609. //>>excludeEnd("ctx");
  2610. $recv($recv(process)._stdin())._destroy();
  2611. return self;
  2612. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2613. }, function($ctx1) {$ctx1.fill(self,"close",{},$globals.Repl)});
  2614. //>>excludeEnd("ctx");
  2615. },
  2616. //>>excludeStart("ide", pragmas.excludeIdeData);
  2617. args: [],
  2618. source: "close\x0a\x09process stdin destroy",
  2619. referencedClasses: [],
  2620. //>>excludeEnd("ide");
  2621. messageSends: ["destroy", "stdin"]
  2622. }),
  2623. $globals.Repl);
  2624. $core.addMethod(
  2625. $core.method({
  2626. selector: "commands",
  2627. protocol: "accessing",
  2628. fn: function (){
  2629. var self=this,$self=this;
  2630. return $self["@commands"];
  2631. },
  2632. //>>excludeStart("ide", pragmas.excludeIdeData);
  2633. args: [],
  2634. source: "commands\x0a\x09^ commands",
  2635. referencedClasses: [],
  2636. //>>excludeEnd("ide");
  2637. messageSends: []
  2638. }),
  2639. $globals.Repl);
  2640. $core.addMethod(
  2641. $core.method({
  2642. selector: "createInterface",
  2643. protocol: "actions",
  2644. fn: function (){
  2645. var self=this,$self=this;
  2646. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2647. return $core.withContext(function($ctx1) {
  2648. //>>excludeEnd("ctx");
  2649. $self["@interface"]=$recv($self["@readline"])._createInterface_stdout_($recv(process)._stdin(),$recv(process)._stdout());
  2650. $recv($self["@interface"])._on_do_("line",(function(buffer){
  2651. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2652. return $core.withContext(function($ctx2) {
  2653. //>>excludeEnd("ctx");
  2654. return $self._processLine_(buffer);
  2655. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2656. }, function($ctx2) {$ctx2.fillBlock({buffer:buffer},$ctx1,1)});
  2657. //>>excludeEnd("ctx");
  2658. }));
  2659. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2660. $ctx1.sendIdx["on:do:"]=1;
  2661. //>>excludeEnd("ctx");
  2662. $recv($self["@interface"])._on_do_("close",(function(){
  2663. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2664. return $core.withContext(function($ctx2) {
  2665. //>>excludeEnd("ctx");
  2666. return $self._close();
  2667. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2668. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});
  2669. //>>excludeEnd("ctx");
  2670. }));
  2671. $self._printWelcome();
  2672. $self._setupHotkeys();
  2673. $self._setPrompt();
  2674. $recv($self["@interface"])._prompt();
  2675. return self;
  2676. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2677. }, function($ctx1) {$ctx1.fill(self,"createInterface",{},$globals.Repl)});
  2678. //>>excludeEnd("ctx");
  2679. },
  2680. //>>excludeStart("ide", pragmas.excludeIdeData);
  2681. args: [],
  2682. source: "createInterface\x0a\x09interface := readline createInterface: process stdin stdout: process stdout.\x0a\x09interface on: 'line' do: [:buffer | self processLine: buffer].\x0a\x09interface on: 'close' do: [self close].\x0a\x09self printWelcome; setupHotkeys; setPrompt.\x0a\x09interface prompt",
  2683. referencedClasses: [],
  2684. //>>excludeEnd("ide");
  2685. messageSends: ["createInterface:stdout:", "stdin", "stdout", "on:do:", "processLine:", "close", "printWelcome", "setupHotkeys", "setPrompt", "prompt"]
  2686. }),
  2687. $globals.Repl);
  2688. $core.addMethod(
  2689. $core.method({
  2690. selector: "encapsulateVariable:withValue:in:",
  2691. protocol: "private",
  2692. fn: function (aString,anObject,aClass){
  2693. var self=this,$self=this;
  2694. var compiler;
  2695. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2696. return $core.withContext(function($ctx1) {
  2697. //>>excludeEnd("ctx");
  2698. var $1,$4,$3,$2,$5,$6;
  2699. compiler=$recv($globals.Compiler)._new();
  2700. $1=compiler;
  2701. $4=$recv(aString).__comma(": anObject ^ ");
  2702. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2703. $ctx1.sendIdx[","]=3;
  2704. //>>excludeEnd("ctx");
  2705. $3=$recv($4).__comma(aString);
  2706. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2707. $ctx1.sendIdx[","]=2;
  2708. //>>excludeEnd("ctx");
  2709. $2=$recv($3).__comma(" := anObject");
  2710. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2711. $ctx1.sendIdx[","]=1;
  2712. //>>excludeEnd("ctx");
  2713. $recv($1)._install_forClass_protocol_($2,aClass,"session");
  2714. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2715. $ctx1.sendIdx["install:forClass:protocol:"]=1;
  2716. //>>excludeEnd("ctx");
  2717. $5=compiler;
  2718. $6=$recv($recv(aString).__comma(" ^ ")).__comma(aString);
  2719. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2720. $ctx1.sendIdx[","]=4;
  2721. //>>excludeEnd("ctx");
  2722. $recv($5)._install_forClass_protocol_($6,aClass,"session");
  2723. return self;
  2724. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2725. }, function($ctx1) {$ctx1.fill(self,"encapsulateVariable:withValue:in:",{aString:aString,anObject:anObject,aClass:aClass,compiler:compiler},$globals.Repl)});
  2726. //>>excludeEnd("ctx");
  2727. },
  2728. //>>excludeStart("ide", pragmas.excludeIdeData);
  2729. args: ["aString", "anObject", "aClass"],
  2730. source: "encapsulateVariable: aString withValue: anObject in: aClass\x0a\x09\x22Add getter and setter for given variable to session.\x22\x0a\x09| compiler |\x0a\x09compiler := Compiler new.\x0a\x09compiler install: aString, ': anObject ^ ', aString, ' := anObject' forClass: aClass protocol: 'session'.\x0a\x09compiler install: aString, ' ^ ', aString forClass: aClass protocol: 'session'.",
  2731. referencedClasses: ["Compiler"],
  2732. //>>excludeEnd("ide");
  2733. messageSends: ["new", "install:forClass:protocol:", ","]
  2734. }),
  2735. $globals.Repl);
  2736. $core.addMethod(
  2737. $core.method({
  2738. selector: "eval:",
  2739. protocol: "actions",
  2740. fn: function (buffer){
  2741. var self=this,$self=this;
  2742. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2743. return $core.withContext(function($ctx1) {
  2744. //>>excludeEnd("ctx");
  2745. return $self._eval_on_(buffer,$recv($globals.DoIt)._new());
  2746. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2747. }, function($ctx1) {$ctx1.fill(self,"eval:",{buffer:buffer},$globals.Repl)});
  2748. //>>excludeEnd("ctx");
  2749. },
  2750. //>>excludeStart("ide", pragmas.excludeIdeData);
  2751. args: ["buffer"],
  2752. source: "eval: buffer\x0a\x09^ self eval: buffer on: DoIt new.",
  2753. referencedClasses: ["DoIt"],
  2754. //>>excludeEnd("ide");
  2755. messageSends: ["eval:on:", "new"]
  2756. }),
  2757. $globals.Repl);
  2758. $core.addMethod(
  2759. $core.method({
  2760. selector: "eval:on:",
  2761. protocol: "actions",
  2762. fn: function (buffer,anObject){
  2763. var self=this,$self=this;
  2764. var result;
  2765. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2766. return $core.withContext(function($ctx1) {
  2767. //>>excludeEnd("ctx");
  2768. var $1;
  2769. $recv(buffer)._ifNotEmpty_((function(){
  2770. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2771. return $core.withContext(function($ctx2) {
  2772. //>>excludeEnd("ctx");
  2773. return $recv((function(){
  2774. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2775. return $core.withContext(function($ctx3) {
  2776. //>>excludeEnd("ctx");
  2777. result=$recv($recv($globals.Compiler)._new())._evaluateExpression_on_(buffer,anObject);
  2778. return result;
  2779. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2780. }, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)});
  2781. //>>excludeEnd("ctx");
  2782. }))._tryCatch_((function(e){
  2783. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2784. return $core.withContext(function($ctx3) {
  2785. //>>excludeEnd("ctx");
  2786. $1=$recv(e)._isSmalltalkError();
  2787. if($core.assert($1)){
  2788. return $recv(e)._pass();
  2789. } else {
  2790. return $recv($recv(process)._stdout())._write_($recv(e)._jsStack());
  2791. }
  2792. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2793. }, function($ctx3) {$ctx3.fillBlock({e:e},$ctx2,3)});
  2794. //>>excludeEnd("ctx");
  2795. }));
  2796. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2797. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
  2798. //>>excludeEnd("ctx");
  2799. }));
  2800. return result;
  2801. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2802. }, function($ctx1) {$ctx1.fill(self,"eval:on:",{buffer:buffer,anObject:anObject,result:result},$globals.Repl)});
  2803. //>>excludeEnd("ctx");
  2804. },
  2805. //>>excludeStart("ide", pragmas.excludeIdeData);
  2806. args: ["buffer", "anObject"],
  2807. source: "eval: buffer on: anObject\x0a\x09| result |\x0a\x09buffer ifNotEmpty: [\x0a\x09\x09[result := Compiler new evaluateExpression: buffer on: anObject]\x0a\x09\x09\x09tryCatch: [:e |\x0a\x09\x09\x09\x09e isSmalltalkError\x0a\x09\x09\x09\x09\x09ifTrue: [ e pass ]\x0a\x09\x09\x09\x09\x09ifFalse: [ process stdout write: e jsStack ]]].\x0a\x09^ result",
  2808. referencedClasses: ["Compiler"],
  2809. //>>excludeEnd("ide");
  2810. messageSends: ["ifNotEmpty:", "tryCatch:", "evaluateExpression:on:", "new", "ifTrue:ifFalse:", "isSmalltalkError", "pass", "write:", "stdout", "jsStack"]
  2811. }),
  2812. $globals.Repl);
  2813. $core.addMethod(
  2814. $core.method({
  2815. selector: "executeCommand:",
  2816. protocol: "private",
  2817. fn: function (aString){
  2818. var self=this,$self=this;
  2819. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2820. return $core.withContext(function($ctx1) {
  2821. //>>excludeEnd("ctx");
  2822. var $1;
  2823. var $early={};
  2824. try {
  2825. $recv($self._commands())._keysAndValuesDo_((function(names,cmd){
  2826. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2827. return $core.withContext(function($ctx2) {
  2828. //>>excludeEnd("ctx");
  2829. $1=$recv(names)._includes_(aString);
  2830. if($core.assert($1)){
  2831. $recv(cmd)._value();
  2832. throw $early=[true];
  2833. }
  2834. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2835. }, function($ctx2) {$ctx2.fillBlock({names:names,cmd:cmd},$ctx1,1)});
  2836. //>>excludeEnd("ctx");
  2837. }));
  2838. return false;
  2839. }
  2840. catch(e) {if(e===$early)return e[0]; throw e}
  2841. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2842. }, function($ctx1) {$ctx1.fill(self,"executeCommand:",{aString:aString},$globals.Repl)});
  2843. //>>excludeEnd("ctx");
  2844. },
  2845. //>>excludeStart("ide", pragmas.excludeIdeData);
  2846. args: ["aString"],
  2847. source: "executeCommand: aString\x0a\x09\x22Tries to process the given string as a command. Returns true if it was a command, false if not.\x22\x0a\x09self commands keysAndValuesDo: [:names :cmd |\x0a\x09\x09(names includes: aString) ifTrue: [\x0a\x09\x09\x09cmd value.\x0a\x09\x09\x09^ true]].\x0a\x09^ false",
  2848. referencedClasses: [],
  2849. //>>excludeEnd("ide");
  2850. messageSends: ["keysAndValuesDo:", "commands", "ifTrue:", "includes:", "value"]
  2851. }),
  2852. $globals.Repl);
  2853. $core.addMethod(
  2854. $core.method({
  2855. selector: "initialize",
  2856. protocol: "initialization",
  2857. fn: function (){
  2858. var self=this,$self=this;
  2859. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2860. return $core.withContext(function($ctx1) {
  2861. //>>excludeEnd("ctx");
  2862. (
  2863. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2864. $ctx1.supercall = true,
  2865. //>>excludeEnd("ctx");
  2866. ($globals.Repl.superclass||$boot.nilAsClass).fn.prototype._initialize.apply($self, []));
  2867. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2868. $ctx1.supercall = false;
  2869. //>>excludeEnd("ctx");;
  2870. $self["@session"]=$recv($globals.DoIt)._new();
  2871. $self["@readline"]=$recv(require)._value_("readline");
  2872. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2873. $ctx1.sendIdx["value:"]=1;
  2874. //>>excludeEnd("ctx");
  2875. $self["@util"]=$recv(require)._value_("util");
  2876. $self._setupCommands();
  2877. return self;
  2878. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2879. }, function($ctx1) {$ctx1.fill(self,"initialize",{},$globals.Repl)});
  2880. //>>excludeEnd("ctx");
  2881. },
  2882. //>>excludeStart("ide", pragmas.excludeIdeData);
  2883. args: [],
  2884. source: "initialize\x0a\x09super initialize.\x0a\x09session := DoIt new.\x0a\x09readline := require value: 'readline'.\x0a\x09util := require value: 'util'.\x0a\x09self setupCommands",
  2885. referencedClasses: ["DoIt"],
  2886. //>>excludeEnd("ide");
  2887. messageSends: ["initialize", "new", "value:", "setupCommands"]
  2888. }),
  2889. $globals.Repl);
  2890. $core.addMethod(
  2891. $core.method({
  2892. selector: "instanceVariableNamesFor:",
  2893. protocol: "private",
  2894. fn: function (aClass){
  2895. var self=this,$self=this;
  2896. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2897. return $core.withContext(function($ctx1) {
  2898. //>>excludeEnd("ctx");
  2899. var $1,$2,$receiver;
  2900. $1=$recv(aClass)._superclass();
  2901. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2902. $ctx1.sendIdx["superclass"]=1;
  2903. //>>excludeEnd("ctx");
  2904. if(($receiver = $1) == null || $receiver.a$nil){
  2905. return $recv(aClass)._instanceVariableNames();
  2906. } else {
  2907. $2=$recv(aClass)._instanceVariableNames();
  2908. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2909. $ctx1.sendIdx["instanceVariableNames"]=1;
  2910. //>>excludeEnd("ctx");
  2911. return $recv($2)._copyWithAll_($self._instanceVariableNamesFor_($recv(aClass)._superclass()));
  2912. }
  2913. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2914. }, function($ctx1) {$ctx1.fill(self,"instanceVariableNamesFor:",{aClass:aClass},$globals.Repl)});
  2915. //>>excludeEnd("ctx");
  2916. },
  2917. //>>excludeStart("ide", pragmas.excludeIdeData);
  2918. args: ["aClass"],
  2919. source: "instanceVariableNamesFor: aClass\x0a\x09\x22Yields all instance variable names for the given class, including inherited ones.\x22\x0a\x09^ aClass superclass\x0a\x09\x09ifNotNil: [\x0a\x09\x09\x09aClass instanceVariableNames copyWithAll: (self instanceVariableNamesFor: aClass superclass)]\x0a\x09\x09ifNil: [\x0a\x09\x09\x09aClass instanceVariableNames]",
  2920. referencedClasses: [],
  2921. //>>excludeEnd("ide");
  2922. messageSends: ["ifNotNil:ifNil:", "superclass", "copyWithAll:", "instanceVariableNames", "instanceVariableNamesFor:"]
  2923. }),
  2924. $globals.Repl);
  2925. $core.addMethod(
  2926. $core.method({
  2927. selector: "isIdentifier:",
  2928. protocol: "private",
  2929. fn: function (aString){
  2930. var self=this,$self=this;
  2931. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2932. return $core.withContext(function($ctx1) {
  2933. //>>excludeEnd("ctx");
  2934. return $recv(aString)._match_("^[a-z_]\x5cw*$"._asRegexp());
  2935. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2936. }, function($ctx1) {$ctx1.fill(self,"isIdentifier:",{aString:aString},$globals.Repl)});
  2937. //>>excludeEnd("ctx");
  2938. },
  2939. //>>excludeStart("ide", pragmas.excludeIdeData);
  2940. args: ["aString"],
  2941. source: "isIdentifier: aString\x0a\x09^ aString match: '^[a-z_]\x5cw*$' asRegexp",
  2942. referencedClasses: [],
  2943. //>>excludeEnd("ide");
  2944. messageSends: ["match:", "asRegexp"]
  2945. }),
  2946. $globals.Repl);
  2947. $core.addMethod(
  2948. $core.method({
  2949. selector: "isVariableDefined:",
  2950. protocol: "private",
  2951. fn: function (aString){
  2952. var self=this,$self=this;
  2953. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2954. return $core.withContext(function($ctx1) {
  2955. //>>excludeEnd("ctx");
  2956. return $recv($self._instanceVariableNamesFor_($recv($self["@session"])._class()))._includes_(aString);
  2957. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2958. }, function($ctx1) {$ctx1.fill(self,"isVariableDefined:",{aString:aString},$globals.Repl)});
  2959. //>>excludeEnd("ctx");
  2960. },
  2961. //>>excludeStart("ide", pragmas.excludeIdeData);
  2962. args: ["aString"],
  2963. source: "isVariableDefined: aString\x0a\x09^ (self instanceVariableNamesFor: session class) includes: aString",
  2964. referencedClasses: [],
  2965. //>>excludeEnd("ide");
  2966. messageSends: ["includes:", "instanceVariableNamesFor:", "class"]
  2967. }),
  2968. $globals.Repl);
  2969. $core.addMethod(
  2970. $core.method({
  2971. selector: "nextResultName",
  2972. protocol: "private",
  2973. fn: function (){
  2974. var self=this,$self=this;
  2975. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2976. return $core.withContext(function($ctx1) {
  2977. //>>excludeEnd("ctx");
  2978. var $1,$receiver;
  2979. $1=$self["@resultCount"];
  2980. if(($receiver = $1) == null || $receiver.a$nil){
  2981. $self["@resultCount"]=(1);
  2982. } else {
  2983. $self["@resultCount"]=$recv($self["@resultCount"]).__plus((1));
  2984. }
  2985. return "res".__comma($recv($self["@resultCount"])._asString());
  2986. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  2987. }, function($ctx1) {$ctx1.fill(self,"nextResultName",{},$globals.Repl)});
  2988. //>>excludeEnd("ctx");
  2989. },
  2990. //>>excludeStart("ide", pragmas.excludeIdeData);
  2991. args: [],
  2992. source: "nextResultName\x0a\x09resultCount := resultCount\x0a \x09ifNotNil: [resultCount + 1]\x0a \x09ifNil: [1].\x0a ^ 'res', resultCount asString",
  2993. referencedClasses: [],
  2994. //>>excludeEnd("ide");
  2995. messageSends: ["ifNotNil:ifNil:", "+", ",", "asString"]
  2996. }),
  2997. $globals.Repl);
  2998. $core.addMethod(
  2999. $core.method({
  3000. selector: "onKeyPress:",
  3001. protocol: "private",
  3002. fn: function (key){
  3003. var self=this,$self=this;
  3004. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3005. return $core.withContext(function($ctx1) {
  3006. //>>excludeEnd("ctx");
  3007. var $1;
  3008. $1=$recv($recv(key)._ctrl())._and_((function(){
  3009. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3010. return $core.withContext(function($ctx2) {
  3011. //>>excludeEnd("ctx");
  3012. return $recv($recv(key)._name()).__eq("l");
  3013. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3014. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
  3015. //>>excludeEnd("ctx");
  3016. }));
  3017. if($core.assert($1)){
  3018. $self._clearScreen();
  3019. }
  3020. return self;
  3021. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3022. }, function($ctx1) {$ctx1.fill(self,"onKeyPress:",{key:key},$globals.Repl)});
  3023. //>>excludeEnd("ctx");
  3024. },
  3025. //>>excludeStart("ide", pragmas.excludeIdeData);
  3026. args: ["key"],
  3027. source: "onKeyPress: key\x0a\x09(key ctrl and: [key name = 'l'])\x0a\x09\x09ifTrue: [self clearScreen]",
  3028. referencedClasses: [],
  3029. //>>excludeEnd("ide");
  3030. messageSends: ["ifTrue:", "and:", "ctrl", "=", "name", "clearScreen"]
  3031. }),
  3032. $globals.Repl);
  3033. $core.addMethod(
  3034. $core.method({
  3035. selector: "parseAssignment:do:",
  3036. protocol: "private",
  3037. fn: function (aString,aBlock){
  3038. var self=this,$self=this;
  3039. var assignment;
  3040. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3041. return $core.withContext(function($ctx1) {
  3042. //>>excludeEnd("ctx");
  3043. var $2,$1;
  3044. assignment=$recv($recv(aString)._tokenize_(":="))._collect_((function(s){
  3045. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3046. return $core.withContext(function($ctx2) {
  3047. //>>excludeEnd("ctx");
  3048. return $recv(s)._trimBoth();
  3049. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3050. }, function($ctx2) {$ctx2.fillBlock({s:s},$ctx1,1)});
  3051. //>>excludeEnd("ctx");
  3052. }));
  3053. $1=$recv($recv($recv(assignment)._size()).__eq((2)))._and_((function(){
  3054. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3055. return $core.withContext(function($ctx2) {
  3056. //>>excludeEnd("ctx");
  3057. $2=$recv(assignment)._first();
  3058. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3059. $ctx2.sendIdx["first"]=1;
  3060. //>>excludeEnd("ctx");
  3061. return $self._isIdentifier_($2);
  3062. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3063. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});
  3064. //>>excludeEnd("ctx");
  3065. }));
  3066. if($core.assert($1)){
  3067. return $recv(aBlock)._value_value_($recv(assignment)._first(),$recv(assignment)._last());
  3068. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3069. $ctx1.sendIdx["value:value:"]=1;
  3070. //>>excludeEnd("ctx");
  3071. } else {
  3072. return $recv(aBlock)._value_value_(nil,nil);
  3073. }
  3074. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3075. }, function($ctx1) {$ctx1.fill(self,"parseAssignment:do:",{aString:aString,aBlock:aBlock,assignment:assignment},$globals.Repl)});
  3076. //>>excludeEnd("ctx");
  3077. },
  3078. //>>excludeStart("ide", pragmas.excludeIdeData);
  3079. args: ["aString", "aBlock"],
  3080. source: "parseAssignment: aString do: aBlock\x0a\x09\x22Assigns a new variable if the given string is an assignment expression. Calls the given block with name and value.\x0a\x09 If the string is not one no variable will be assigned and the block will be called with nil for both arguments.\x22\x0a\x09| assignment |\x0a\x09assignment := (aString tokenize: ':=') collect: [:s | s trimBoth].\x0a\x09^ (assignment size = 2 and: [self isIdentifier: assignment first])\x0a\x09\x09ifTrue: [ aBlock value: assignment first value: assignment last ]\x0a\x09\x09ifFalse: [ aBlock value: nil value: nil ]",
  3081. referencedClasses: [],
  3082. //>>excludeEnd("ide");
  3083. messageSends: ["collect:", "tokenize:", "trimBoth", "ifTrue:ifFalse:", "and:", "=", "size", "isIdentifier:", "first", "value:value:", "last"]
  3084. }),
  3085. $globals.Repl);
  3086. $core.addMethod(
  3087. $core.method({
  3088. selector: "presentResultNamed:withValue:",
  3089. protocol: "private",
  3090. fn: function (varName,value){
  3091. var self=this,$self=this;
  3092. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3093. return $core.withContext(function($ctx1) {
  3094. //>>excludeEnd("ctx");
  3095. var $3,$2,$1;
  3096. $3=$recv($recv(varName).__comma(": ")).__comma($recv($recv(value)._class())._name());
  3097. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3098. $ctx1.sendIdx[","]=3;
  3099. //>>excludeEnd("ctx");
  3100. $2=$recv($3).__comma(" = ");
  3101. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3102. $ctx1.sendIdx[","]=2;
  3103. //>>excludeEnd("ctx");
  3104. $1=$recv($2).__comma($recv(value)._asString());
  3105. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3106. $ctx1.sendIdx[","]=1;
  3107. //>>excludeEnd("ctx");
  3108. $recv($globals.Transcript)._show_($1);
  3109. $recv($globals.Transcript)._cr();
  3110. $recv($self["@interface"])._prompt();
  3111. return self;
  3112. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3113. }, function($ctx1) {$ctx1.fill(self,"presentResultNamed:withValue:",{varName:varName,value:value},$globals.Repl)});
  3114. //>>excludeEnd("ctx");
  3115. },
  3116. //>>excludeStart("ide", pragmas.excludeIdeData);
  3117. args: ["varName", "value"],
  3118. source: "presentResultNamed: varName withValue: value\x0a\x09Transcript show: varName, ': ', value class name, ' = ', value asString; cr.\x0a\x09interface prompt",
  3119. referencedClasses: ["Transcript"],
  3120. //>>excludeEnd("ide");
  3121. messageSends: ["show:", ",", "name", "class", "asString", "cr", "prompt"]
  3122. }),
  3123. $globals.Repl);
  3124. $core.addMethod(
  3125. $core.method({
  3126. selector: "printWelcome",
  3127. protocol: "actions",
  3128. fn: function (){
  3129. var self=this,$self=this;
  3130. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3131. return $core.withContext(function($ctx1) {
  3132. //>>excludeEnd("ctx");
  3133. $recv($globals.Transcript)._show_("Type :q to exit.");
  3134. $recv($globals.Transcript)._cr();
  3135. return self;
  3136. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3137. }, function($ctx1) {$ctx1.fill(self,"printWelcome",{},$globals.Repl)});
  3138. //>>excludeEnd("ctx");
  3139. },
  3140. //>>excludeStart("ide", pragmas.excludeIdeData);
  3141. args: [],
  3142. source: "printWelcome\x0a\x09Transcript show: 'Type :q to exit.'; cr.",
  3143. referencedClasses: ["Transcript"],
  3144. //>>excludeEnd("ide");
  3145. messageSends: ["show:", "cr"]
  3146. }),
  3147. $globals.Repl);
  3148. $core.addMethod(
  3149. $core.method({
  3150. selector: "processLine:",
  3151. protocol: "private",
  3152. fn: function (buffer){
  3153. var self=this,$self=this;
  3154. var show;
  3155. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3156. return $core.withContext(function($ctx1) {
  3157. //>>excludeEnd("ctx");
  3158. var $1,$2;
  3159. show=(function(varName,value){
  3160. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3161. return $core.withContext(function($ctx2) {
  3162. //>>excludeEnd("ctx");
  3163. return $self._presentResultNamed_withValue_(varName,value);
  3164. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3165. }, function($ctx2) {$ctx2.fillBlock({varName:varName,value:value},$ctx1,1)});
  3166. //>>excludeEnd("ctx");
  3167. });
  3168. $1=$self._executeCommand_(buffer);
  3169. if(!$core.assert($1)){
  3170. $2=$self._isVariableDefined_(buffer);
  3171. if($core.assert($2)){
  3172. $recv(show)._value_value_(buffer,$recv($self["@session"])._perform_(buffer));
  3173. } else {
  3174. $self._assignNewVariable_do_(buffer,show);
  3175. }
  3176. }
  3177. return self;
  3178. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3179. }, function($ctx1) {$ctx1.fill(self,"processLine:",{buffer:buffer,show:show},$globals.Repl)});
  3180. //>>excludeEnd("ctx");
  3181. },
  3182. //>>excludeStart("ide", pragmas.excludeIdeData);
  3183. args: ["buffer"],
  3184. source: "processLine: buffer\x0a\x09\x22Processes lines entered through the readline interface.\x22\x0a\x09| show |\x0a\x09show := [:varName :value | self presentResultNamed: varName withValue: value].\x0a\x09(self executeCommand: buffer) ifFalse: [\x0a\x09\x09(self isVariableDefined: buffer)\x0a\x09\x09\x09ifTrue: [show value: buffer value: (session perform: buffer)]\x0a\x09\x09\x09ifFalse: [self assignNewVariable: buffer do: show]]",
  3185. referencedClasses: [],
  3186. //>>excludeEnd("ide");
  3187. messageSends: ["presentResultNamed:withValue:", "ifFalse:", "executeCommand:", "ifTrue:ifFalse:", "isVariableDefined:", "value:value:", "perform:", "assignNewVariable:do:"]
  3188. }),
  3189. $globals.Repl);
  3190. $core.addMethod(
  3191. $core.method({
  3192. selector: "prompt",
  3193. protocol: "accessing",
  3194. fn: function (){
  3195. var self=this,$self=this;
  3196. return "amber >> ";
  3197. },
  3198. //>>excludeStart("ide", pragmas.excludeIdeData);
  3199. args: [],
  3200. source: "prompt\x0a\x09^ 'amber >> '",
  3201. referencedClasses: [],
  3202. //>>excludeEnd("ide");
  3203. messageSends: []
  3204. }),
  3205. $globals.Repl);
  3206. $core.addMethod(
  3207. $core.method({
  3208. selector: "setPreviousVariablesFor:from:",
  3209. protocol: "private",
  3210. fn: function (newObject,oldObject){
  3211. var self=this,$self=this;
  3212. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3213. return $core.withContext(function($ctx1) {
  3214. //>>excludeEnd("ctx");
  3215. $recv($self._instanceVariableNamesFor_($recv(oldObject)._class()))._do_((function(each){
  3216. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3217. return $core.withContext(function($ctx2) {
  3218. //>>excludeEnd("ctx");
  3219. return $recv(newObject)._perform_withArguments_($recv(each).__comma(":"),[$recv(oldObject)._perform_(each)]);
  3220. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3221. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});
  3222. //>>excludeEnd("ctx");
  3223. }));
  3224. return self;
  3225. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3226. }, function($ctx1) {$ctx1.fill(self,"setPreviousVariablesFor:from:",{newObject:newObject,oldObject:oldObject},$globals.Repl)});
  3227. //>>excludeEnd("ctx");
  3228. },
  3229. //>>excludeStart("ide", pragmas.excludeIdeData);
  3230. args: ["newObject", "oldObject"],
  3231. source: "setPreviousVariablesFor: newObject from: oldObject\x0a\x09(self instanceVariableNamesFor: oldObject class) do: [:each |\x0a\x09\x09newObject perform: each, ':' withArguments: {oldObject perform: each}].",
  3232. referencedClasses: [],
  3233. //>>excludeEnd("ide");
  3234. messageSends: ["do:", "instanceVariableNamesFor:", "class", "perform:withArguments:", ",", "perform:"]
  3235. }),
  3236. $globals.Repl);
  3237. $core.addMethod(
  3238. $core.method({
  3239. selector: "setPrompt",
  3240. protocol: "actions",
  3241. fn: function (){
  3242. var self=this,$self=this;
  3243. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3244. return $core.withContext(function($ctx1) {
  3245. //>>excludeEnd("ctx");
  3246. $recv($self["@interface"])._setPrompt_($self._prompt());
  3247. return self;
  3248. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3249. }, function($ctx1) {$ctx1.fill(self,"setPrompt",{},$globals.Repl)});
  3250. //>>excludeEnd("ctx");
  3251. },
  3252. //>>excludeStart("ide", pragmas.excludeIdeData);
  3253. args: [],
  3254. source: "setPrompt\x0a\x09interface setPrompt: self prompt",
  3255. referencedClasses: [],
  3256. //>>excludeEnd("ide");
  3257. messageSends: ["setPrompt:", "prompt"]
  3258. }),
  3259. $globals.Repl);
  3260. $core.addMethod(
  3261. $core.method({
  3262. selector: "setupCommands",
  3263. protocol: "initialization",
  3264. fn: function (){
  3265. var self=this,$self=this;
  3266. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3267. return $core.withContext(function($ctx1) {
  3268. //>>excludeEnd("ctx");
  3269. var $2,$1;
  3270. $2=$recv([":q"]).__minus_gt((function(){
  3271. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3272. return $core.withContext(function($ctx2) {
  3273. //>>excludeEnd("ctx");
  3274. return $recv(process)._exit();
  3275. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3276. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});
  3277. //>>excludeEnd("ctx");
  3278. }));
  3279. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3280. $ctx1.sendIdx["->"]=1;
  3281. //>>excludeEnd("ctx");
  3282. $1=[$2,$recv([""]).__minus_gt((function(){
  3283. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3284. return $core.withContext(function($ctx2) {
  3285. //>>excludeEnd("ctx");
  3286. return $recv($self["@interface"])._prompt();
  3287. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3288. }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});
  3289. //>>excludeEnd("ctx");
  3290. }))];
  3291. $self["@commands"]=$recv($globals.Dictionary)._from_($1);
  3292. return self;
  3293. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3294. }, function($ctx1) {$ctx1.fill(self,"setupCommands",{},$globals.Repl)});
  3295. //>>excludeEnd("ctx");
  3296. },
  3297. //>>excludeStart("ide", pragmas.excludeIdeData);
  3298. args: [],
  3299. source: "setupCommands\x0a\x09commands := Dictionary from: {\x0a\x09\x09{':q'} -> [process exit].\x0a\x09\x09{''} -> [interface prompt]}",
  3300. referencedClasses: ["Dictionary"],
  3301. //>>excludeEnd("ide");
  3302. messageSends: ["from:", "->", "exit", "prompt"]
  3303. }),
  3304. $globals.Repl);
  3305. $core.addMethod(
  3306. $core.method({
  3307. selector: "setupHotkeys",
  3308. protocol: "initialization",
  3309. fn: function (){
  3310. var self=this,$self=this;
  3311. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3312. return $core.withContext(function($ctx1) {
  3313. //>>excludeEnd("ctx");
  3314. var $receiver;
  3315. $recv($recv(process)._stdin())._on_do_("keypress",(function(s,key){
  3316. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3317. return $core.withContext(function($ctx2) {
  3318. //>>excludeEnd("ctx");
  3319. if(($receiver = key) == null || $receiver.a$nil){
  3320. return key;
  3321. } else {
  3322. return $self._onKeyPress_(key);
  3323. }
  3324. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3325. }, function($ctx2) {$ctx2.fillBlock({s:s,key:key},$ctx1,1)});
  3326. //>>excludeEnd("ctx");
  3327. }));
  3328. return self;
  3329. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3330. }, function($ctx1) {$ctx1.fill(self,"setupHotkeys",{},$globals.Repl)});
  3331. //>>excludeEnd("ctx");
  3332. },
  3333. //>>excludeStart("ide", pragmas.excludeIdeData);
  3334. args: [],
  3335. source: "setupHotkeys\x0a\x09process stdin on: 'keypress' do: [:s :key | key ifNotNil: [self onKeyPress: key]].",
  3336. referencedClasses: [],
  3337. //>>excludeEnd("ide");
  3338. messageSends: ["on:do:", "stdin", "ifNotNil:", "onKeyPress:"]
  3339. }),
  3340. $globals.Repl);
  3341. $core.addMethod(
  3342. $core.method({
  3343. selector: "subclass:withVariable:",
  3344. protocol: "private",
  3345. fn: function (aClass,varName){
  3346. var self=this,$self=this;
  3347. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3348. return $core.withContext(function($ctx1) {
  3349. //>>excludeEnd("ctx");
  3350. return $recv($recv($globals.ClassBuilder)._new())._addSubclassOf_named_instanceVariableNames_package_(aClass,$recv($self._subclassNameFor_(aClass))._asSymbol(),[varName],"Compiler-Core");
  3351. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3352. }, function($ctx1) {$ctx1.fill(self,"subclass:withVariable:",{aClass:aClass,varName:varName},$globals.Repl)});
  3353. //>>excludeEnd("ctx");
  3354. },
  3355. //>>excludeStart("ide", pragmas.excludeIdeData);
  3356. args: ["aClass", "varName"],
  3357. source: "subclass: aClass withVariable: varName\x0a\x09\x22Create subclass with new variable.\x22\x0a\x09^ ClassBuilder new\x0a\x09\x09addSubclassOf: aClass\x0a\x09\x09named: (self subclassNameFor: aClass) asSymbol\x0a\x09\x09instanceVariableNames: {varName}\x0a\x09\x09package: 'Compiler-Core'",
  3358. referencedClasses: ["ClassBuilder"],
  3359. //>>excludeEnd("ide");
  3360. messageSends: ["addSubclassOf:named:instanceVariableNames:package:", "new", "asSymbol", "subclassNameFor:"]
  3361. }),
  3362. $globals.Repl);
  3363. $core.addMethod(
  3364. $core.method({
  3365. selector: "subclassNameFor:",
  3366. protocol: "private",
  3367. fn: function (aClass){
  3368. var self=this,$self=this;
  3369. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3370. return $core.withContext(function($ctx1) {
  3371. //>>excludeEnd("ctx");
  3372. var $2,$1,$6,$5,$4,$3,$7,$receiver;
  3373. $2=$recv(aClass)._name();
  3374. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3375. $ctx1.sendIdx["name"]=1;
  3376. //>>excludeEnd("ctx");
  3377. $1=$recv($2)._matchesOf_("\x5cd+$");
  3378. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3379. $ctx1.sendIdx["matchesOf:"]=1;
  3380. //>>excludeEnd("ctx");
  3381. if(($receiver = $1) == null || $receiver.a$nil){
  3382. return $recv($recv(aClass)._name()).__comma("2");
  3383. } else {
  3384. var counter;
  3385. $6=$recv(aClass)._name();
  3386. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3387. $ctx1.sendIdx["name"]=2;
  3388. //>>excludeEnd("ctx");
  3389. $5=$recv($6)._matchesOf_("\x5cd+$");
  3390. $4=$recv($5)._first();
  3391. $3=$recv($4)._asNumber();
  3392. counter=$recv($3).__plus((1));
  3393. $7=$recv(aClass)._name();
  3394. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3395. $ctx1.sendIdx["name"]=3;
  3396. //>>excludeEnd("ctx");
  3397. return $recv($7)._replaceRegexp_with_("\x5cd+$"._asRegexp(),$recv(counter)._asString());
  3398. }
  3399. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3400. }, function($ctx1) {$ctx1.fill(self,"subclassNameFor:",{aClass:aClass},$globals.Repl)});
  3401. //>>excludeEnd("ctx");
  3402. },
  3403. //>>excludeStart("ide", pragmas.excludeIdeData);
  3404. args: ["aClass"],
  3405. source: "subclassNameFor: aClass\x0a\x09^ (aClass name matchesOf: '\x5cd+$')\x0a\x09\x09ifNotNil: [ | counter |\x0a\x09\x09\x09counter := (aClass name matchesOf: '\x5cd+$') first asNumber + 1.\x0a\x09\x09\x09aClass name replaceRegexp: '\x5cd+$' asRegexp with: counter asString]\x0a\x09\x09ifNil: [\x0a\x09\x09\x09aClass name, '2'].",
  3406. referencedClasses: [],
  3407. //>>excludeEnd("ide");
  3408. messageSends: ["ifNotNil:ifNil:", "matchesOf:", "name", "+", "asNumber", "first", "replaceRegexp:with:", "asRegexp", "asString", ","]
  3409. }),
  3410. $globals.Repl);
  3411. $core.addMethod(
  3412. $core.method({
  3413. selector: "main",
  3414. protocol: "initialization",
  3415. fn: function (){
  3416. var self=this,$self=this;
  3417. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3418. return $core.withContext(function($ctx1) {
  3419. //>>excludeEnd("ctx");
  3420. $recv($self._new())._createInterface();
  3421. return self;
  3422. //>>excludeStart("ctx", pragmas.excludeDebugContexts);
  3423. }, function($ctx1) {$ctx1.fill(self,"main",{},$globals.Repl.a$cls)});
  3424. //>>excludeEnd("ctx");
  3425. },
  3426. //>>excludeStart("ide", pragmas.excludeIdeData);
  3427. args: [],
  3428. source: "main\x0a\x09self new createInterface",
  3429. referencedClasses: [],
  3430. //>>excludeEnd("ide");
  3431. messageSends: ["createInterface", "new"]
  3432. }),
  3433. $globals.Repl.a$cls);
  3434. });