|
@@ -93,11 +93,11 @@ selector: "handleArguments:",
|
|
|
protocol: "commandline",
|
|
|
|
|
|
args: ["args"],
|
|
|
-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)",
|
|
|
-referencedClasses: ["Array"],
|
|
|
+source: "handleArguments: args\x0a\x09| selector |\x0a\x0a\x09selector := self selectorForCommandLineSwitch: (args first).\x0a\x09args remove: args first.\x0a\x09self perform: selector withArguments: { args }",
|
|
|
+referencedClasses: [],
|
|
|
|
|
|
pragmas: [],
|
|
|
-messageSends: ["selectorForCommandLineSwitch:", "first", "remove:", "perform:withArguments:", "with:"]
|
|
|
+messageSends: ["selectorForCommandLineSwitch:", "first", "remove:", "perform:withArguments:"]
|
|
|
}, function ($methodClass){ return function (args){
|
|
|
var self=this,$self=this;
|
|
|
var selector;
|
|
@@ -111,7 +111,7 @@ $ctx1.sendIdx["first"]=1;
|
|
|
|
|
|
selector=$self._selectorForCommandLineSwitch_($1);
|
|
|
$recv(args)._remove_($recv(args)._first());
|
|
|
-$self._perform_withArguments_(selector,$recv($globals.Array)._with_(args));
|
|
|
+$self._perform_withArguments_(selector,[args]);
|
|
|
return self;
|
|
|
|
|
|
}, function($ctx1) {$ctx1.fill(self,"handleArguments:",{args:args,selector:selector})});
|
|
@@ -1803,11 +1803,11 @@ selector: "createServerWithArguments:",
|
|
|
protocol: "initialization",
|
|
|
|
|
|
args: ["options"],
|
|
|
-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.",
|
|
|
-referencedClasses: ["Array"],
|
|
|
+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: { 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.",
|
|
|
+referencedClasses: [],
|
|
|
|
|
|
pragmas: [],
|
|
|
-messageSends: ["commandLineSwitches", "new", "ifEmpty:", "ifFalse:", "even", "size", "log:", ",", "first", "remove:", "whileTrue:", "notEmpty", "value:", "ifTrue:ifFalse:", "includes:", "selectorForCommandLineSwitch:", "perform:withArguments:", "with:"]
|
|
|
+messageSends: ["commandLineSwitches", "new", "ifEmpty:", "ifFalse:", "even", "size", "log:", ",", "first", "remove:", "whileTrue:", "notEmpty", "value:", "ifTrue:ifFalse:", "includes:", "selectorForCommandLineSwitch:", "perform:withArguments:"]
|
|
|
}, function ($methodClass){ return function (options){
|
|
|
var self=this,$self=this;
|
|
|
var server,popFront,front,optionName,optionValue,switches;
|
|
@@ -1880,7 +1880,7 @@ optionValue=$recv(popFront)._value_(options);
|
|
|
$6=$recv(switches)._includes_(optionName);
|
|
|
if($core.assert($6)){
|
|
|
optionName=$self._selectorForCommandLineSwitch_(optionName);
|
|
|
-return $recv(server)._perform_withArguments_(optionName,$recv($globals.Array)._with_(optionValue));
|
|
|
+return $recv(server)._perform_withArguments_(optionName,[optionValue]);
|
|
|
} else {
|
|
|
$7=console;
|
|
|
$8=$recv(optionName).__comma(" is not a valid commandline option");
|