|
@@ -1,353 +1,438 @@
|
|
(function(smalltalk,nil,_st){
|
|
(function(smalltalk,nil,_st){
|
|
smalltalk.addPackage('Importer-Exporter');
|
|
smalltalk.addPackage('Importer-Exporter');
|
|
|
|
|
|
-smalltalk.addClass('ChunkParser', smalltalk.Object, ['stream'], 'Importer-Exporter');
|
|
|
|
-smalltalk.ChunkParser.comment="I am responsible for parsing aStream contents in the chunk format.\x0a\x0a## API\x0a\x0a ChunkParser new\x0a stream: aStream;\x0a nextChunk";
|
|
|
|
|
|
+smalltalk.addClass('ChunkExporter', smalltalk.Object, [], 'Importer-Exporter');
|
|
|
|
+smalltalk.ChunkExporter.comment="I am an exporter dedicated to outputting Amber source code in the classic Smalltalk chunk format.\x0a\x0aI do not output any compiled code.";
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "nextChunk",
|
|
|
|
-category: 'reading',
|
|
|
|
-fn: function (){
|
|
|
|
|
|
+selector: "chunkEscape:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (aString){
|
|
var self=this;
|
|
var self=this;
|
|
-var char,result,chunk;
|
|
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2,$3;
|
|
|
|
-var $early={};
|
|
|
|
-try {
|
|
|
|
-result=""._writeStream();
|
|
|
|
-_st((function(){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-char=_st(self["@stream"])._next();
|
|
|
|
-char;
|
|
|
|
-return _st(char)._notNil();
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-$1=_st(char).__eq("!");
|
|
|
|
-if(smalltalk.assert($1)){
|
|
|
|
-$2=_st(_st(self["@stream"])._peek()).__eq("!");
|
|
|
|
|
|
+var $1;
|
|
|
|
+$1=_st(_st(aString)._replace_with_("!","!!"))._trimBoth();
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"chunkEscape:",{aString:aString},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aString"],
|
|
|
|
+source: "chunkEscape: aString\x0a\x09\x22Replace all occurrences of ! with !! and trim at both ends.\x22\x0a\x0a\x09^(aString replace: '!' with: '!!') trimBoth",
|
|
|
|
+messageSends: ["trimBoth", "replace:with:"],
|
|
|
|
+referencedClasses: []
|
|
|
|
+}),
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
+
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "classNameFor:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (aClass){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
|
|
|
|
+var $2,$3,$1;
|
|
|
|
+$2=_st(aClass)._isMetaclass();
|
|
if(smalltalk.assert($2)){
|
|
if(smalltalk.assert($2)){
|
|
-_st(self["@stream"])._next();
|
|
|
|
|
|
+$1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(" class");
|
|
} else {
|
|
} else {
|
|
-$3=_st(_st(result)._contents())._trimBoth();
|
|
|
|
-throw $early=[$3];
|
|
|
|
|
|
+$3=_st(aClass)._isNil();
|
|
|
|
+if(smalltalk.assert($3)){
|
|
|
|
+$1="nil";
|
|
|
|
+} else {
|
|
|
|
+$1=_st(aClass)._name();
|
|
};
|
|
};
|
|
};
|
|
};
|
|
-return _st(result)._nextPut_(char);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
-return nil;
|
|
|
|
-}
|
|
|
|
-catch(e) {if(e===$early)return e[0]; throw e}
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"nextChunk",{char:char,result:result,chunk:chunk},smalltalk.ChunkParser)})},
|
|
|
|
-args: [],
|
|
|
|
-source: "nextChunk\x0a\x09\x22The chunk format (Smalltalk Interchange Format or Fileout format)\x0a\x09is a trivial format but can be a bit tricky to understand:\x0a\x09\x09- Uses the exclamation mark as delimiter of chunks.\x0a\x09\x09- Inside a chunk a normal exclamation mark must be doubled.\x0a\x09\x09- A non empty chunk must be a valid Smalltalk expression.\x0a\x09\x09- A chunk on top level with a preceding empty chunk is an instruction chunk:\x0a\x09\x09\x09- The object created by the expression then takes over reading chunks.\x0a\x0a\x09This metod returns next chunk as a String (trimmed), empty String (all whitespace) or nil.\x22\x0a\x0a\x09| char result chunk |\x0a\x09result := '' writeStream.\x0a\x09\x09[char := stream next.\x0a\x09\x09char notNil] whileTrue: [\x0a\x09\x09\x09\x09char = '!' ifTrue: [\x0a\x09\x09\x09\x09\x09\x09stream peek = '!'\x0a\x09\x09\x09\x09\x09\x09\x09\x09ifTrue: [stream next \x22skipping the escape double\x22]\x0a\x09\x09\x09\x09\x09\x09\x09\x09ifFalse: [^result contents trimBoth \x22chunk end marker found\x22]].\x0a\x09\x09\x09\x09result nextPut: char].\x0a\x09^nil \x22a chunk needs to end with !\x22",
|
|
|
|
-messageSends: ["writeStream", "whileTrue:", "ifTrue:", "ifTrue:ifFalse:", "next", "trimBoth", "contents", "=", "peek", "nextPut:", "notNil"],
|
|
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"classNameFor:",{aClass:aClass},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aClass"],
|
|
|
|
+source: "classNameFor: aClass\x0a\x09^aClass isMetaclass\x0a\x09\x09ifTrue: [aClass instanceClass name, ' class']\x0a\x09\x09ifFalse: [\x0a\x09\x09aClass isNil\x0a\x09\x09\x09ifTrue: ['nil']\x0a\x09\x09\x09ifFalse: [aClass name]]",
|
|
|
|
+messageSends: ["ifTrue:ifFalse:", ",", "name", "instanceClass", "isNil", "isMetaclass"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkParser);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "stream:",
|
|
|
|
-category: 'accessing',
|
|
|
|
-fn: function (aStream){
|
|
|
|
|
|
+selector: "exportCategoryEpilogueOf:on:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (category,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-self["@stream"]=aStream;
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"stream:",{aStream:aStream},smalltalk.ChunkParser)})},
|
|
|
|
-args: ["aStream"],
|
|
|
|
-source: "stream: aStream\x0a\x09stream := aStream",
|
|
|
|
-messageSends: [],
|
|
|
|
|
|
+var $1,$2;
|
|
|
|
+$1=aStream;
|
|
|
|
+_st($1)._nextPutAll_(" !");
|
|
|
|
+_st($1)._lf();
|
|
|
|
+$2=_st($1)._lf();
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryEpilogueOf:on:",{category:category,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["category", "aStream"],
|
|
|
|
+source: "exportCategoryEpilogueOf: category on: aStream\x0a\x09aStream nextPutAll: ' !'; lf; lf",
|
|
|
|
+messageSends: ["nextPutAll:", "lf"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkParser);
|
|
|
|
-
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "on:",
|
|
|
|
-category: 'not yet classified',
|
|
|
|
-fn: function (aStream){
|
|
|
|
|
|
+selector: "exportCategoryPrologueOf:on:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (category,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1;
|
|
|
|
-$1=_st(self._new())._stream_(aStream);
|
|
|
|
-return $1;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"on:",{aStream:aStream},smalltalk.ChunkParser.klass)})},
|
|
|
|
-args: ["aStream"],
|
|
|
|
-source: "on: aStream\x0a\x09^self new stream: aStream",
|
|
|
|
-messageSends: ["stream:", "new"],
|
|
|
|
|
|
+var $1,$2;
|
|
|
|
+$1=aStream;
|
|
|
|
+_st($1)._nextPutAll_("!".__comma(self._classNameFor_(_st(category)._at_("class"))));
|
|
|
|
+$2=_st($1)._nextPutAll_(_st(" methodsFor: '".__comma(_st(category)._at_("name"))).__comma("'!"));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryPrologueOf:on:",{category:category,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["category", "aStream"],
|
|
|
|
+source: "exportCategoryPrologueOf: category on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: (category at: #class));\x0a\x09\x09nextPutAll: ' methodsFor: ''', (category at: #name), '''!'",
|
|
|
|
+messageSends: ["nextPutAll:", ",", "classNameFor:", "at:"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkParser.klass);
|
|
|
|
-
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
-smalltalk.addClass('Importer', smalltalk.Object, [], 'Importer-Exporter');
|
|
|
|
-smalltalk.Importer.comment="I can import Amber code from a string in the chunk format.\x0a\x0a## API\x0a\x0a Importer new import: aString";
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "import:",
|
|
|
|
-category: 'fileIn',
|
|
|
|
-fn: function (aStream){
|
|
|
|
|
|
+selector: "exportDefinitionOf:on:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (aClass,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
-var chunk,result,parser,lastEmpty;
|
|
|
|
-function $ChunkParser(){return smalltalk.ChunkParser||(typeof ChunkParser=="undefined"?nil:ChunkParser)}
|
|
|
|
-function $Compiler(){return smalltalk.Compiler||(typeof Compiler=="undefined"?nil:Compiler)}
|
|
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2;
|
|
|
|
-parser=_st($ChunkParser())._on_(aStream);
|
|
|
|
-lastEmpty=false;
|
|
|
|
-_st((function(){
|
|
|
|
|
|
+var $1,$2,$3,$4,$5,$6,$7;
|
|
|
|
+$1=aStream;
|
|
|
|
+_st($1)._nextPutAll_(self._classNameFor_(_st(aClass)._superclass()));
|
|
|
|
+_st($1)._nextPutAll_(" subclass: #".__comma(self._classNameFor_(aClass)));
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._tab();
|
|
|
|
+$2=_st($1)._nextPutAll_("instanceVariableNames: '");
|
|
|
|
+_st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-chunk=_st(parser)._nextChunk();
|
|
|
|
-chunk;
|
|
|
|
-return _st(chunk)._isNil();
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
|
|
|
|
|
|
+return _st(aStream)._nextPutAll_(each);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-$1=_st(chunk)._isEmpty();
|
|
|
|
-if(smalltalk.assert($1)){
|
|
|
|
-lastEmpty=true;
|
|
|
|
-return lastEmpty;
|
|
|
|
-} else {
|
|
|
|
-result=_st(_st($Compiler())._new())._evaluateExpression_(chunk);
|
|
|
|
-result;
|
|
|
|
-$2=lastEmpty;
|
|
|
|
-if(smalltalk.assert($2)){
|
|
|
|
-lastEmpty=false;
|
|
|
|
-lastEmpty;
|
|
|
|
-return _st(result)._scanFrom_(parser);
|
|
|
|
-};
|
|
|
|
-};
|
|
|
|
|
|
+return _st(aStream)._nextPutAll_(" ");
|
|
}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"import:",{aStream:aStream,chunk:chunk,result:result,parser:parser,lastEmpty:lastEmpty},smalltalk.Importer)})},
|
|
|
|
-args: ["aStream"],
|
|
|
|
-source: "import: aStream\x0a\x09| chunk result parser lastEmpty |\x0a\x09parser := ChunkParser on: aStream.\x0a\x09lastEmpty := false.\x0a\x09[chunk := parser nextChunk.\x0a\x09chunk isNil] whileFalse: [\x0a\x09\x09chunk isEmpty\x0a\x09\x09\x09ifTrue: [lastEmpty := true]\x0a\x09\x09\x09ifFalse: [\x0a\x09\x09\x09\x09result := Compiler new evaluateExpression: chunk.\x0a\x09\x09\x09\x09lastEmpty\x0a\x09\x09\x09\x09\x09\x09ifTrue: [\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09lastEmpty := false.\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09result scanFrom: parser]]]",
|
|
|
|
-messageSends: ["on:", "whileFalse:", "ifTrue:ifFalse:", "evaluateExpression:", "new", "ifTrue:", "scanFrom:", "isEmpty", "nextChunk", "isNil"],
|
|
|
|
-referencedClasses: ["ChunkParser", "Compiler"]
|
|
|
|
|
|
+$3=aStream;
|
|
|
|
+_st($3)._nextPutAll_("'");
|
|
|
|
+_st($3)._lf();
|
|
|
|
+_st($3)._tab();
|
|
|
|
+_st($3)._nextPutAll_(_st("package: '".__comma(_st(aClass)._category())).__comma("'!"));
|
|
|
|
+$4=_st($3)._lf();
|
|
|
|
+$5=_st(_st(aClass)._comment())._notEmpty();
|
|
|
|
+if(smalltalk.assert($5)){
|
|
|
|
+$6=aStream;
|
|
|
|
+_st($6)._nextPutAll_(_st("!".__comma(self._classNameFor_(aClass))).__comma(" commentStamp!"));
|
|
|
|
+_st($6)._lf();
|
|
|
|
+_st($6)._nextPutAll_(_st(self._chunkEscape_(_st(aClass)._comment())).__comma("!"));
|
|
|
|
+$7=_st($6)._lf();
|
|
|
|
+$7;
|
|
|
|
+};
|
|
|
|
+_st(aStream)._lf();
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aClass", "aStream"],
|
|
|
|
+source: "exportDefinitionOf: aClass on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ' subclass: #', (self classNameFor: aClass); lf;\x0a\x09\x09tab; nextPutAll: 'instanceVariableNames: '''.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09aStream\x0a\x09\x09nextPutAll: ''''; lf;\x0a\x09\x09tab; nextPutAll: 'package: ''', aClass category, '''!'; lf.\x0a\x09aClass comment notEmpty ifTrue: [\x0a\x09\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: aClass), ' commentStamp!';lf;\x0a\x09\x09nextPutAll: (self chunkEscape: aClass comment), '!';lf].\x0a\x09aStream lf",
|
|
|
|
+messageSends: ["nextPutAll:", "classNameFor:", "superclass", ",", "lf", "tab", "do:separatedBy:", "instanceVariableNames", "category", "ifTrue:", "chunkEscape:", "comment", "notEmpty"],
|
|
|
|
+referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.Importer);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "exportMetaDefinitionOf:on:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (aClass,aStream){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
|
|
|
|
+var $1,$2,$3,$4,$5;
|
|
|
|
+$1=_st(_st(_st(aClass)._class())._instanceVariableNames())._isEmpty();
|
|
|
|
+if(! smalltalk.assert($1)){
|
|
|
|
+$2=aStream;
|
|
|
|
+_st($2)._nextPutAll_(self._classNameFor_(_st(aClass)._class()));
|
|
|
|
+$3=_st($2)._nextPutAll_(" instanceVariableNames: '");
|
|
|
|
+$3;
|
|
|
|
+_st(_st(_st(aClass)._class())._instanceVariableNames())._do_separatedBy_((function(each){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(aStream)._nextPutAll_(each);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(aStream)._nextPutAll_(" ");
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
+$4=aStream;
|
|
|
|
+_st($4)._nextPutAll_("'!");
|
|
|
|
+_st($4)._lf();
|
|
|
|
+$5=_st($4)._lf();
|
|
|
|
+$5;
|
|
|
|
+};
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportMetaDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aClass", "aStream"],
|
|
|
|
+source: "exportMetaDefinitionOf: aClass on: aStream\x0a\x0a\x09aClass class instanceVariableNames isEmpty ifFalse: [\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: (self classNameFor: aClass class);\x0a\x09\x09\x09nextPutAll: ' instanceVariableNames: '''.\x0a\x09\x09aClass class instanceVariableNames\x0a\x09\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: '''!'; lf; lf]",
|
|
|
|
+messageSends: ["ifFalse:", "nextPutAll:", "classNameFor:", "class", "do:separatedBy:", "instanceVariableNames", "lf", "isEmpty"],
|
|
|
|
+referencedClasses: []
|
|
|
|
+}),
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "exportMethod:on:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (aMethod,aStream){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
|
|
|
|
+var $1,$2;
|
|
|
|
+$1=aStream;
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_(self._chunkEscape_(_st(aMethod)._source()));
|
|
|
|
+_st($1)._lf();
|
|
|
|
+$2=_st($1)._nextPutAll_("!");
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aMethod", "aStream"],
|
|
|
|
+source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09lf; lf; nextPutAll: (self chunkEscape: aMethod source); lf;\x0a\x09\x09nextPutAll: '!'",
|
|
|
|
+messageSends: ["lf", "nextPutAll:", "chunkEscape:", "source"],
|
|
|
|
+referencedClasses: []
|
|
|
|
+}),
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
-smalltalk.addClass('PackageHandler', smalltalk.Object, [], 'Importer-Exporter');
|
|
|
|
-smalltalk.PackageHandler.comment="I am responsible for handling package loading and committing.\x0a\x0aI should not be used directly. Instead, use the corresponding `Package` methods.";
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "ajaxPutAt:data:",
|
|
|
|
|
|
+selector: "exportPackageDefinitionOf:on:",
|
|
category: 'private',
|
|
category: 'private',
|
|
-fn: function (aURL,aString){
|
|
|
|
|
|
+fn: function (package_,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-_st(jQuery)._ajax_options_(aURL,smalltalk.HashedCollection._from_(["type".__minus_gt("PUT"),"data".__minus_gt(aString),"contentType".__minus_gt("text/plain;charset=UTF-8"),"error".__minus_gt((function(xhr){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return self._error_(_st(_st(_st("Commiting ".__comma(aURL)).__comma(" failed with reason: \x22")).__comma(_st(xhr)._responseText())).__comma("\x22"));
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({xhr:xhr},$ctx1)})}))]));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"ajaxPutAt:data:",{aURL:aURL,aString:aString},smalltalk.PackageHandler)})},
|
|
|
|
-args: ["aURL", "aString"],
|
|
|
|
-source: "ajaxPutAt: aURL data: aString\x0a\x09jQuery\x0a\x09\x09ajax: aURL \x0a\x09\x09options: #{ \x0a\x09\x09\x09'type' -> 'PUT'.\x0a\x09\x09\x09'data' -> aString.\x0a\x09\x09\x09'contentType' -> 'text/plain;charset=UTF-8'.\x0a\x09\x09\x09'error' -> [ :xhr | self error: 'Commiting ' , aURL , ' failed with reason: \x22' , (xhr responseText) , '\x22'] }",
|
|
|
|
-messageSends: ["ajax:options:", "->", "error:", ",", "responseText"],
|
|
|
|
|
|
+var $1,$2;
|
|
|
|
+$1=aStream;
|
|
|
|
+_st($1)._nextPutAll_(_st("Smalltalk current createPackage: '".__comma(_st(package_)._name())).__comma("'!"));
|
|
|
|
+$2=_st($1)._lf();
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportPackageDefinitionOf:on:",{package_:package_,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["package", "aStream"],
|
|
|
|
+source: "exportPackageDefinitionOf: package on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: 'Smalltalk current createPackage: ''', package name, '''!';\x0a\x09\x09lf",
|
|
|
|
+messageSends: ["nextPutAll:", ",", "name", "lf"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.PackageHandler);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "commit:",
|
|
|
|
-category: 'committing',
|
|
|
|
-fn: function (aPackage){
|
|
|
|
|
|
+selector: "extensionCategoriesOfPackage:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (package_){
|
|
var self=this;
|
|
var self=this;
|
|
-function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
|
|
|
|
-function $Exporter(){return smalltalk.Exporter||(typeof Exporter=="undefined"?nil:Exporter)}
|
|
|
|
-function $StrippedExporter(){return smalltalk.StrippedExporter||(typeof StrippedExporter=="undefined"?nil:StrippedExporter)}
|
|
|
|
-function $ChunkExporter(){return smalltalk.ChunkExporter||(typeof ChunkExporter=="undefined"?nil:ChunkExporter)}
|
|
|
|
|
|
+var name,map,result;
|
|
|
|
+function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
|
|
|
|
+function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
|
|
|
|
+function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
|
|
|
|
+function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-_st([_st($Exporter()).__minus_gt(_st(_st(_st(_st(aPackage)._commitPathJs()).__comma("/")).__comma(_st(aPackage)._name())).__comma(".js")),_st($StrippedExporter()).__minus_gt(_st(_st(_st(_st(aPackage)._commitPathJs()).__comma("/")).__comma(_st(aPackage)._name())).__comma(".deploy.js")),_st($ChunkExporter()).__minus_gt(_st(_st(_st(_st(aPackage)._commitPathSt()).__comma("/")).__comma(_st(aPackage)._name())).__comma(".st"))])._do_displayingProgress_((function(commitStrategy){
|
|
|
|
-var fileContents;
|
|
|
|
|
|
+var $1,$2;
|
|
|
|
+name=_st(package_)._name();
|
|
|
|
+result=_st($OrderedCollection())._new();
|
|
|
|
+_st(_st($Package())._sortedClasses_(_st(_st($Smalltalk())._current())._classes()))._do_((function(each){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-fileContents=_st($String())._streamContents_((function(stream){
|
|
|
|
|
|
+return _st([each,_st(each)._class()])._do_((function(aClass){
|
|
return smalltalk.withContext(function($ctx3) {
|
|
return smalltalk.withContext(function($ctx3) {
|
|
-return _st(_st(_st(commitStrategy)._key())._new())._exportPackage_on_(aPackage,stream);
|
|
|
|
-}, function($ctx3) {$ctx3.fillBlock({stream:stream},$ctx2)})}));
|
|
|
|
-fileContents;
|
|
|
|
-return self._ajaxPutAt_data_(_st(commitStrategy)._value(),fileContents);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({commitStrategy:commitStrategy,fileContents:fileContents},$ctx1)})}),"Committing package ".__comma(_st(aPackage)._name()));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"commit:",{aPackage:aPackage},smalltalk.PackageHandler)})},
|
|
|
|
-args: ["aPackage"],
|
|
|
|
-source: "commit: aPackage\x0a\x09{ \x0a\x09\x09Exporter -> (aPackage commitPathJs, '/', aPackage name, '.js').\x0a\x09\x09StrippedExporter -> (aPackage commitPathJs, '/', aPackage name, '.deploy.js').\x0a\x09\x09ChunkExporter -> (aPackage commitPathSt, '/', aPackage name, '.st')\x0a\x09} \x0a\x09\x09do: [ :commitStrategy|| fileContents |\x0a\x09\x09\x09fileContents := String streamContents: [ :stream |\x0a\x09\x09\x09\x09commitStrategy key new exportPackage: aPackage on: stream ].\x0a\x09\x09\x09self ajaxPutAt: commitStrategy value data: fileContents ]\x0a\x09\x09displayingProgress: 'Committing package ', aPackage name",
|
|
|
|
-messageSends: ["do:displayingProgress:", "streamContents:", "exportPackage:on:", "new", "key", "ajaxPutAt:data:", "value", ",", "name", "->", "commitPathJs", "commitPathSt"],
|
|
|
|
-referencedClasses: ["String", "Exporter", "StrippedExporter", "ChunkExporter"]
|
|
|
|
|
|
+map=_st($Dictionary())._new();
|
|
|
|
+map;
|
|
|
|
+_st(aClass)._protocolsDo_((function(category,methods){
|
|
|
|
+return smalltalk.withContext(function($ctx4) {
|
|
|
|
+$1=_st(category)._match_("^\x5c*".__comma(name));
|
|
|
|
+if(smalltalk.assert($1)){
|
|
|
|
+return _st(map)._at_put_(category,methods);
|
|
|
|
+};
|
|
|
|
+}, function($ctx4) {$ctx4.fillBlock({category:category,methods:methods},$ctx3)})}));
|
|
|
|
+return _st(result)._addAll_(_st(_st(_st(map)._keys())._sorted_((function(a,b){
|
|
|
|
+return smalltalk.withContext(function($ctx4) {
|
|
|
|
+return _st(a).__lt_eq(b);
|
|
|
|
+}, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx3)})})))._collect_((function(category){
|
|
|
|
+return smalltalk.withContext(function($ctx4) {
|
|
|
|
+return smalltalk.HashedCollection._from_(["methods".__minus_gt(_st(map)._at_(category)),"name".__minus_gt(category),"class".__minus_gt(aClass)]);
|
|
|
|
+}, function($ctx4) {$ctx4.fillBlock({category:category},$ctx3)})})));
|
|
|
|
+}, function($ctx3) {$ctx3.fillBlock({aClass:aClass},$ctx2)})}));
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
|
|
|
|
+$2=result;
|
|
|
|
+return $2;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"extensionCategoriesOfPackage:",{package_:package_,name:name,map:map,result:result},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["package"],
|
|
|
|
+source: "extensionCategoriesOfPackage: package\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| name map result |\x0a\x09name := package name.\x0a\x09result := OrderedCollection new.\x0a\x09(Package sortedClasses: Smalltalk current classes) do: [:each |\x0a\x09\x09{each. each class} do: [:aClass |\x0a\x09\x09\x09map := Dictionary new.\x0a\x09\x09\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09\x09\x09(category match: '^\x5c*', name) ifTrue: [ map at: category put: methods ]].\x0a\x09\x09\x09result addAll: ((map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09\x09\x09#{ 'methods'->(map at: category). 'name'->category. 'class'->aClass}]) ]].\x0a\x09^result",
|
|
|
|
+messageSends: ["name", "new", "do:", "protocolsDo:", "ifTrue:", "at:put:", "match:", ",", "addAll:", "collect:", "->", "at:", "sorted:", "<=", "keys", "class", "sortedClasses:", "classes", "current"],
|
|
|
|
+referencedClasses: ["OrderedCollection", "Dictionary", "Smalltalk", "Package"]
|
|
}),
|
|
}),
|
|
-smalltalk.PackageHandler);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "loadPackage:prefix:",
|
|
|
|
-category: 'loading',
|
|
|
|
-fn: function (packageName,aString){
|
|
|
|
|
|
+selector: "methodsOfCategory:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (category){
|
|
var self=this;
|
|
var self=this;
|
|
-var url;
|
|
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1;
|
|
var $1;
|
|
-url=_st(_st(_st("/".__comma(aString)).__comma("/js/")).__comma(packageName)).__comma(".js");
|
|
|
|
-_st(jQuery)._ajax_options_(url,smalltalk.HashedCollection._from_(["type".__minus_gt("GET"),"dataType".__minus_gt("script"),"complete".__minus_gt((function(jqXHR,textStatus){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-$1=_st(_st(jqXHR)._readyState()).__eq((4));
|
|
|
|
-if(smalltalk.assert($1)){
|
|
|
|
-return self._setupPackageNamed_prefix_(packageName,aString);
|
|
|
|
-};
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({jqXHR:jqXHR,textStatus:textStatus},$ctx1)})})),"error".__minus_gt((function(){
|
|
|
|
|
|
+$1=_st(_st(category)._at_("methods"))._sorted_((function(a,b){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-return _st(window)._alert_("Could not load package at: ".__comma(url));
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))]));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"loadPackage:prefix:",{packageName:packageName,aString:aString,url:url},smalltalk.PackageHandler)})},
|
|
|
|
-args: ["packageName", "aString"],
|
|
|
|
-source: "loadPackage: packageName prefix: aString\x0a\x09| url |\x0a\x09url := '/', aString, '/js/', packageName, '.js'.\x0a\x09jQuery\x0a\x09\x09ajax: url\x0a\x09\x09options: #{\x0a\x09\x09\x09'type' -> 'GET'.\x0a\x09\x09\x09'dataType' -> 'script'.\x0a\x09\x09\x09'complete' -> [ :jqXHR :textStatus |\x0a\x09\x09\x09\x09jqXHR readyState = 4\x0a\x09\x09\x09\x09\x09ifTrue: [ self setupPackageNamed: packageName prefix: aString ] ].\x0a\x09\x09\x09'error' -> [ window alert: 'Could not load package at: ', url ]\x0a\x09\x09}",
|
|
|
|
-messageSends: [",", "ajax:options:", "->", "ifTrue:", "setupPackageNamed:prefix:", "=", "readyState", "alert:"],
|
|
|
|
|
|
+return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"methodsOfCategory:",{category:category},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["category"],
|
|
|
|
+source: "methodsOfCategory: category\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^(category at: #methods) sorted: [:a :b | a selector <= b selector]",
|
|
|
|
+messageSends: ["sorted:", "<=", "selector", "at:"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.PackageHandler);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "loadPackages:prefix:",
|
|
|
|
-category: 'loading',
|
|
|
|
-fn: function (aCollection,aString){
|
|
|
|
|
|
+selector: "ownCategoriesOfClass:",
|
|
|
|
+category: 'private',
|
|
|
|
+fn: function (aClass){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+var map;
|
|
|
|
+function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-_st(aCollection)._do_((function(each){
|
|
|
|
|
|
+var $1,$2;
|
|
|
|
+map=_st($Dictionary())._new();
|
|
|
|
+_st(aClass)._protocolsDo_((function(category,methods){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-return self._loadPackage_prefix_(each,aString);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"loadPackages:prefix:",{aCollection:aCollection,aString:aString},smalltalk.PackageHandler)})},
|
|
|
|
-args: ["aCollection", "aString"],
|
|
|
|
-source: "loadPackages: aCollection prefix: aString\x0a\x09aCollection do: [ :each |\x0a\x09\x09self loadPackage: each prefix: aString ]",
|
|
|
|
-messageSends: ["do:", "loadPackage:prefix:"],
|
|
|
|
-referencedClasses: []
|
|
|
|
|
|
+$1=_st(category)._match_("^\x5c*");
|
|
|
|
+if(! smalltalk.assert($1)){
|
|
|
|
+return _st(map)._at_put_(category,methods);
|
|
|
|
+};
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({category:category,methods:methods},$ctx1)})}));
|
|
|
|
+$2=_st(_st(_st(map)._keys())._sorted_((function(a,b){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(a).__lt_eq(b);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._collect_((function(category){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return smalltalk.HashedCollection._from_(["methods".__minus_gt(_st(map)._at_(category)),"name".__minus_gt(category),"class".__minus_gt(aClass)]);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({category:category},$ctx1)})}));
|
|
|
|
+return $2;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfClass:",{aClass:aClass,map:map},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aClass"],
|
|
|
|
+source: "ownCategoriesOfClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| map |\x0a\x09map := Dictionary new.\x0a\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09(category match: '^\x5c*') ifFalse: [ map at: category put: methods ]].\x0a\x09^(map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09#{\x0a\x09\x09\x09'methods'->(map at: category).\x0a\x09\x09\x09'name'->category.\x0a\x09\x09\x09'class'->aClass }]",
|
|
|
|
+messageSends: ["new", "protocolsDo:", "ifFalse:", "at:put:", "match:", "collect:", "->", "at:", "sorted:", "<=", "keys"],
|
|
|
|
+referencedClasses: ["Dictionary"]
|
|
}),
|
|
}),
|
|
-smalltalk.PackageHandler);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "setupPackageNamed:prefix:",
|
|
|
|
|
|
+selector: "ownCategoriesOfMetaClass:",
|
|
category: 'private',
|
|
category: 'private',
|
|
-fn: function (packageName,aString){
|
|
|
|
|
|
+fn: function (aClass){
|
|
var self=this;
|
|
var self=this;
|
|
-function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
|
|
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2;
|
|
|
|
-$1=_st($Package())._named_(packageName);
|
|
|
|
-_st($1)._setupClasses();
|
|
|
|
-_st($1)._commitPathJs_(_st("/".__comma(aString)).__comma("/js"));
|
|
|
|
-$2=_st($1)._commitPathSt_(_st("/".__comma(aString)).__comma("/st"));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"setupPackageNamed:prefix:",{packageName:packageName,aString:aString},smalltalk.PackageHandler)})},
|
|
|
|
-args: ["packageName", "aString"],
|
|
|
|
-source: "setupPackageNamed: packageName prefix: aString\x0a\x0a\x09(Package named: packageName)\x0a\x09\x09setupClasses;\x0a\x09\x09commitPathJs: '/', aString, '/js';\x0a\x09\x09commitPathSt: '/', aString, '/st'",
|
|
|
|
-messageSends: ["setupClasses", "named:", "commitPathJs:", ",", "commitPathSt:"],
|
|
|
|
-referencedClasses: ["Package"]
|
|
|
|
|
|
+var $1;
|
|
|
|
+$1=self._ownCategoriesOfClass_(_st(aClass)._class());
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfMetaClass:",{aClass:aClass},smalltalk.ChunkExporter)})},
|
|
|
|
+args: ["aClass"],
|
|
|
|
+source: "ownCategoriesOfMetaClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09^self ownCategoriesOfClass: aClass class",
|
|
|
|
+messageSends: ["ownCategoriesOfClass:", "class"],
|
|
|
|
+referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.PackageHandler);
|
|
|
|
-
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "loadPackages:prefix:",
|
|
|
|
-category: 'loading',
|
|
|
|
-fn: function (aCollection,aString){
|
|
|
|
|
|
+selector: "recipe",
|
|
|
|
+category: 'fileOut',
|
|
|
|
+fn: function (){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+var exportCategoryRecipe;
|
|
|
|
+function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1;
|
|
var $1;
|
|
-$1=_st(self._new())._loadPackages_prefix_(aCollection,aString);
|
|
|
|
|
|
+exportCategoryRecipe=[self.__minus_gt("exportCategoryPrologueOf:on:"),[self.__minus_gt("methodsOfCategory:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportCategoryEpilogueOf:on:")];
|
|
|
|
+$1=[self.__minus_gt("exportPackageDefinitionOf:on:"),[_st($PluggableExporter()).__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfClass:")]).__comma(exportCategoryRecipe),self.__minus_gt("exportMetaDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfMetaClass:")]).__comma(exportCategoryRecipe)],_st([self.__minus_gt("extensionCategoriesOfPackage:")]).__comma(exportCategoryRecipe)];
|
|
return $1;
|
|
return $1;
|
|
-}, function($ctx1) {$ctx1.fill(self,"loadPackages:prefix:",{aCollection:aCollection,aString:aString},smalltalk.PackageHandler.klass)})},
|
|
|
|
-args: ["aCollection", "aString"],
|
|
|
|
-source: "loadPackages: aCollection prefix: aString\x0a\x09^ self new loadPackages: aCollection prefix: aString",
|
|
|
|
-messageSends: ["loadPackages:prefix:", "new"],
|
|
|
|
-referencedClasses: []
|
|
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"recipe",{exportCategoryRecipe:exportCategoryRecipe},smalltalk.ChunkExporter)})},
|
|
|
|
+args: [],
|
|
|
|
+source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09| exportCategoryRecipe |\x0a\x09exportCategoryRecipe := {\x0a\x09\x09self -> #exportCategoryPrologueOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09self -> #methodsOfCategory:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportCategoryEpilogueOf:on: }.\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09PluggableExporter -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfClass: }, exportCategoryRecipe.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfMetaClass: }, exportCategoryRecipe }.\x0a\x09\x09{ self -> #extensionCategoriesOfPackage: }, exportCategoryRecipe\x0a\x09}",
|
|
|
|
+messageSends: ["->", ","],
|
|
|
|
+referencedClasses: ["PluggableExporter"]
|
|
}),
|
|
}),
|
|
-smalltalk.PackageHandler.klass);
|
|
|
|
|
|
+smalltalk.ChunkExporter);
|
|
|
|
|
|
|
|
|
|
-smalltalk.addClass('PluggableExporter', smalltalk.Object, [], 'Importer-Exporter');
|
|
|
|
|
|
+
|
|
|
|
+smalltalk.addClass('ChunkParser', smalltalk.Object, ['stream'], 'Importer-Exporter');
|
|
|
|
+smalltalk.ChunkParser.comment="I am responsible for parsing aStream contents in the chunk format.\x0a\x0a## API\x0a\x0a ChunkParser new\x0a stream: aStream;\x0a nextChunk";
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "export:usingRecipe:on:",
|
|
|
|
-category: 'fileOut',
|
|
|
|
-fn: function (anObject,anArray,aStream){
|
|
|
|
|
|
+selector: "nextChunk",
|
|
|
|
+category: 'reading',
|
|
|
|
+fn: function (){
|
|
var self=this;
|
|
var self=this;
|
|
-var args;
|
|
|
|
|
|
+var char,result,chunk;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1;
|
|
|
|
-args=[anObject,aStream];
|
|
|
|
-_st(anArray)._do_((function(each){
|
|
|
|
-var val;
|
|
|
|
|
|
+var $1,$2,$3;
|
|
|
|
+var $early={};
|
|
|
|
+try {
|
|
|
|
+result=""._writeStream();
|
|
|
|
+_st((function(){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-val=_st(each)._value();
|
|
|
|
-val;
|
|
|
|
-$1=_st(val).__eq_eq(each);
|
|
|
|
|
|
+char=_st(self["@stream"])._next();
|
|
|
|
+char;
|
|
|
|
+return _st(char)._notNil();
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+$1=_st(char).__eq("!");
|
|
if(smalltalk.assert($1)){
|
|
if(smalltalk.assert($1)){
|
|
-var selection;
|
|
|
|
-selection=_st(_st(_st(each)._first())._key())._perform_withArguments_(_st(_st(each)._first())._value(),[anObject]);
|
|
|
|
-selection;
|
|
|
|
-return _st(selection)._do_((function(eachPart){
|
|
|
|
-return smalltalk.withContext(function($ctx3) {
|
|
|
|
-return self._export_usingRecipe_on_(eachPart,_st(each)._allButFirst(),aStream);
|
|
|
|
-}, function($ctx3) {$ctx3.fillBlock({eachPart:eachPart},$ctx2)})}));
|
|
|
|
|
|
+$2=_st(_st(self["@stream"])._peek()).__eq("!");
|
|
|
|
+if(smalltalk.assert($2)){
|
|
|
|
+_st(self["@stream"])._next();
|
|
} else {
|
|
} else {
|
|
-return _st(_st(each)._key())._perform_withArguments_(val,args);
|
|
|
|
|
|
+$3=_st(_st(result)._contents())._trimBoth();
|
|
|
|
+throw $early=[$3];
|
|
};
|
|
};
|
|
-}, function($ctx2) {$ctx2.fillBlock({each:each,val:val},$ctx1)})}));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"export:usingRecipe:on:",{anObject:anObject,anArray:anArray,aStream:aStream,args:args},smalltalk.PluggableExporter)})},
|
|
|
|
-args: ["anObject", "anArray", "aStream"],
|
|
|
|
-source: "export: anObject usingRecipe: anArray on: aStream\x0a\x09| args |\x0a\x09args := { anObject. aStream }.\x0a\x09anArray do: [ :each | | val |\x0a\x09\x09val := each value.\x0a\x09\x09val == each\x0a\x09\x09\x09ifFalse: [ \x22association\x22\x0a\x09\x09\x09\x09each key perform: val withArguments: args ]\x0a\x09\x09\x09ifTrue: [ \x22sub-array\x22\x0a\x09\x09\x09\x09| selection |\x0a\x09\x09\x09\x09selection := each first key perform: each first value withArguments: { anObject }.\x0a\x09\x09\x09\x09selection do: [ :eachPart |\x09self export: eachPart usingRecipe: each allButFirst on: aStream ]]]",
|
|
|
|
-messageSends: ["do:", "value", "ifFalse:ifTrue:", "perform:withArguments:", "key", "first", "export:usingRecipe:on:", "allButFirst", "=="],
|
|
|
|
|
|
+};
|
|
|
|
+return _st(result)._nextPut_(char);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
+return nil;
|
|
|
|
+}
|
|
|
|
+catch(e) {if(e===$early)return e[0]; throw e}
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"nextChunk",{char:char,result:result,chunk:chunk},smalltalk.ChunkParser)})},
|
|
|
|
+args: [],
|
|
|
|
+source: "nextChunk\x0a\x09\x22The chunk format (Smalltalk Interchange Format or Fileout format)\x0a\x09is a trivial format but can be a bit tricky to understand:\x0a\x09\x09- Uses the exclamation mark as delimiter of chunks.\x0a\x09\x09- Inside a chunk a normal exclamation mark must be doubled.\x0a\x09\x09- A non empty chunk must be a valid Smalltalk expression.\x0a\x09\x09- A chunk on top level with a preceding empty chunk is an instruction chunk:\x0a\x09\x09\x09- The object created by the expression then takes over reading chunks.\x0a\x0a\x09This metod returns next chunk as a String (trimmed), empty String (all whitespace) or nil.\x22\x0a\x0a\x09| char result chunk |\x0a\x09result := '' writeStream.\x0a\x09\x09[char := stream next.\x0a\x09\x09char notNil] whileTrue: [\x0a\x09\x09\x09\x09char = '!' ifTrue: [\x0a\x09\x09\x09\x09\x09\x09stream peek = '!'\x0a\x09\x09\x09\x09\x09\x09\x09\x09ifTrue: [stream next \x22skipping the escape double\x22]\x0a\x09\x09\x09\x09\x09\x09\x09\x09ifFalse: [^result contents trimBoth \x22chunk end marker found\x22]].\x0a\x09\x09\x09\x09result nextPut: char].\x0a\x09^nil \x22a chunk needs to end with !\x22",
|
|
|
|
+messageSends: ["writeStream", "whileTrue:", "ifTrue:", "ifTrue:ifFalse:", "next", "trimBoth", "contents", "=", "peek", "nextPut:", "notNil"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.PluggableExporter);
|
|
|
|
|
|
+smalltalk.ChunkParser);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportAll",
|
|
|
|
-category: 'fileOut',
|
|
|
|
-fn: function (){
|
|
|
|
|
|
+selector: "stream:",
|
|
|
|
+category: 'accessing',
|
|
|
|
+fn: function (aStream){
|
|
var self=this;
|
|
var self=this;
|
|
-function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
|
|
|
|
-function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
|
|
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1;
|
|
|
|
-$1=_st($String())._streamContents_((function(stream){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(_st(_st($Smalltalk())._current())._packages())._do_((function(pkg){
|
|
|
|
-return smalltalk.withContext(function($ctx3) {
|
|
|
|
-return self._exportPackage_on_(pkg,stream);
|
|
|
|
-}, function($ctx3) {$ctx3.fillBlock({pkg:pkg},$ctx2)})}));
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1)})}));
|
|
|
|
-return $1;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"exportAll",{},smalltalk.PluggableExporter)})},
|
|
|
|
-args: [],
|
|
|
|
-source: "exportAll\x0a\x09\x22Export all packages in the system.\x22\x0a\x0a\x09^String streamContents: [:stream |\x0a\x09\x09Smalltalk current packages do: [:pkg |\x0a\x09\x09self exportPackage: pkg on: stream]]",
|
|
|
|
-messageSends: ["streamContents:", "do:", "exportPackage:on:", "packages", "current"],
|
|
|
|
-referencedClasses: ["Smalltalk", "String"]
|
|
|
|
|
|
+self["@stream"]=aStream;
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"stream:",{aStream:aStream},smalltalk.ChunkParser)})},
|
|
|
|
+args: ["aStream"],
|
|
|
|
+source: "stream: aStream\x0a\x09stream := aStream",
|
|
|
|
+messageSends: [],
|
|
|
|
+referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.PluggableExporter);
|
|
|
|
|
|
+smalltalk.ChunkParser);
|
|
|
|
+
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportPackage:on:",
|
|
|
|
-category: 'fileOut',
|
|
|
|
-fn: function (aPackage,aStream){
|
|
|
|
|
|
+selector: "on:",
|
|
|
|
+category: 'not yet classified',
|
|
|
|
+fn: function (aStream){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-self._export_usingRecipe_on_(aPackage,self._recipe(),aStream);
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportPackage:on:",{aPackage:aPackage,aStream:aStream},smalltalk.PluggableExporter)})},
|
|
|
|
-args: ["aPackage", "aStream"],
|
|
|
|
-source: "exportPackage: aPackage on: aStream\x0a\x09self export: aPackage usingRecipe: self recipe on: aStream",
|
|
|
|
-messageSends: ["export:usingRecipe:on:", "recipe"],
|
|
|
|
|
|
+var $1;
|
|
|
|
+$1=_st(self._new())._stream_(aStream);
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"on:",{aStream:aStream},smalltalk.ChunkParser.klass)})},
|
|
|
|
+args: ["aStream"],
|
|
|
|
+source: "on: aStream\x0a\x09^self new stream: aStream",
|
|
|
|
+messageSends: ["stream:", "new"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.PluggableExporter);
|
|
|
|
-
|
|
|
|
|
|
+smalltalk.ChunkParser.klass);
|
|
|
|
|
|
|
|
|
|
-smalltalk.addClass('Exporter', smalltalk.PluggableExporter, [], 'Importer-Exporter');
|
|
|
|
|
|
+smalltalk.addClass('Exporter', smalltalk.Object, [], 'Importer-Exporter');
|
|
smalltalk.Exporter.comment="I am responsible for outputting Amber code into a JavaScript string.\x0a\x0aThe generated output is enough to reconstruct the exported data, including Smalltalk source code and other metadata.\x0a\x0a## Use case\x0a\x0aI am typically used to save code outside of the Amber runtime (committing to disk, etc.).\x0a\x0a## API\x0a\x0aUse `#exportAll`, `#exportClass:` or `#exportPackage:` methods.";
|
|
smalltalk.Exporter.comment="I am responsible for outputting Amber code into a JavaScript string.\x0a\x0aThe generated output is enough to reconstruct the exported data, including Smalltalk source code and other metadata.\x0a\x0a## Use case\x0a\x0aI am typically used to save code outside of the Amber runtime (committing to disk, etc.).\x0a\x0a## API\x0a\x0aUse `#exportAll`, `#exportClass:` or `#exportPackage:` methods.";
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
@@ -592,24 +677,6 @@ referencedClasses: ["OrderedCollection", "Smalltalk", "Package"]
|
|
}),
|
|
}),
|
|
smalltalk.Exporter);
|
|
smalltalk.Exporter);
|
|
|
|
|
|
-smalltalk.addMethod(
|
|
|
|
-smalltalk.method({
|
|
|
|
-selector: "ownClassesOfPackage:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (package_){
|
|
|
|
-var self=this;
|
|
|
|
-return smalltalk.withContext(function($ctx1) {
|
|
|
|
-var $1;
|
|
|
|
-$1=_st(_st(package_)._sortedClasses())._asSet();
|
|
|
|
-return $1;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"ownClassesOfPackage:",{package_:package_},smalltalk.Exporter)})},
|
|
|
|
-args: ["package"],
|
|
|
|
-source: "ownClassesOfPackage: package\x0a\x09\x22Export classes in dependency order.\x0a\x09Update (issue #171): Remove duplicates for export\x22\x0a\x09^package sortedClasses asSet",
|
|
|
|
-messageSends: ["asSet", "sortedClasses"],
|
|
|
|
-referencedClasses: []
|
|
|
|
-}),
|
|
|
|
-smalltalk.Exporter);
|
|
|
|
-
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "ownMethodsOfClass:",
|
|
selector: "ownMethodsOfClass:",
|
|
@@ -658,438 +725,429 @@ selector: "recipe",
|
|
category: 'fileOut',
|
|
category: 'fileOut',
|
|
fn: function (){
|
|
fn: function (){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1;
|
|
var $1;
|
|
-$1=[self.__minus_gt("exportPackagePrologueOf:on:"),self.__minus_gt("exportPackageDefinitionOf:on:"),[self.__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfClass:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportMetaDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfMetaClass:"),self.__minus_gt("exportMethod:on:")]],[self.__minus_gt("extensionMethodsOfPackage:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportPackageEpilogueOf:on:")];
|
|
|
|
|
|
+$1=[self.__minus_gt("exportPackagePrologueOf:on:"),self.__minus_gt("exportPackageDefinitionOf:on:"),[_st($PluggableExporter()).__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfClass:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportMetaDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfMetaClass:"),self.__minus_gt("exportMethod:on:")]],[self.__minus_gt("extensionMethodsOfPackage:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportPackageEpilogueOf:on:")];
|
|
return $1;
|
|
return $1;
|
|
}, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.Exporter)})},
|
|
}, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.Exporter)})},
|
|
args: [],
|
|
args: [],
|
|
-source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackagePrologueOf:on:.\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09self -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfMetaClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: } }.\x0a\x09\x09{\x0a\x09\x09\x09self -> #extensionMethodsOfPackage:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportPackageEpilogueOf:on:\x0a\x09}",
|
|
|
|
|
|
+source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackagePrologueOf:on:.\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09PluggableExporter -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfMetaClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: } }.\x0a\x09\x09{\x0a\x09\x09\x09self -> #extensionMethodsOfPackage:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportPackageEpilogueOf:on:\x0a\x09}",
|
|
messageSends: ["->"],
|
|
messageSends: ["->"],
|
|
-referencedClasses: []
|
|
|
|
|
|
+referencedClasses: ["PluggableExporter"]
|
|
}),
|
|
}),
|
|
smalltalk.Exporter);
|
|
smalltalk.Exporter);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-smalltalk.addClass('ChunkExporter', smalltalk.Exporter, [], 'Importer-Exporter');
|
|
|
|
-smalltalk.ChunkExporter.comment="I am an exporter dedicated to outputting Amber source code in the classic Smalltalk chunk format.\x0a\x0aI do not output any compiled code.";
|
|
|
|
-smalltalk.addMethod(
|
|
|
|
-smalltalk.method({
|
|
|
|
-selector: "chunkEscape:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aString){
|
|
|
|
-var self=this;
|
|
|
|
-return smalltalk.withContext(function($ctx1) {
|
|
|
|
-var $1;
|
|
|
|
-$1=_st(_st(aString)._replace_with_("!","!!"))._trimBoth();
|
|
|
|
-return $1;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"chunkEscape:",{aString:aString},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aString"],
|
|
|
|
-source: "chunkEscape: aString\x0a\x09\x22Replace all occurrences of ! with !! and trim at both ends.\x22\x0a\x0a\x09^(aString replace: '!' with: '!!') trimBoth",
|
|
|
|
-messageSends: ["trimBoth", "replace:with:"],
|
|
|
|
-referencedClasses: []
|
|
|
|
-}),
|
|
|
|
-smalltalk.ChunkExporter);
|
|
|
|
-
|
|
|
|
|
|
+smalltalk.addClass('StrippedExporter', smalltalk.Exporter, [], 'Importer-Exporter');
|
|
|
|
+smalltalk.StrippedExporter.comment="I export Amber code into a JavaScript string, but without any optional associated data like the Amber source code.";
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "classNameFor:",
|
|
|
|
|
|
+selector: "exportDefinitionOf:on:",
|
|
category: 'private',
|
|
category: 'private',
|
|
-fn: function (aClass){
|
|
|
|
|
|
+fn: function (aClass,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $2,$3,$1;
|
|
|
|
-$2=_st(aClass)._isMetaclass();
|
|
|
|
-if(smalltalk.assert($2)){
|
|
|
|
-$1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(" class");
|
|
|
|
-} else {
|
|
|
|
-$3=_st(aClass)._isNil();
|
|
|
|
-if(smalltalk.assert($3)){
|
|
|
|
-$1="nil";
|
|
|
|
-} else {
|
|
|
|
-$1=_st(aClass)._name();
|
|
|
|
-};
|
|
|
|
-};
|
|
|
|
-return $1;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"classNameFor:",{aClass:aClass},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aClass"],
|
|
|
|
-source: "classNameFor: aClass\x0a\x09^aClass isMetaclass\x0a\x09\x09ifTrue: [aClass instanceClass name, ' class']\x0a\x09\x09ifFalse: [\x0a\x09\x09aClass isNil\x0a\x09\x09\x09ifTrue: ['nil']\x0a\x09\x09\x09ifFalse: [aClass name]]",
|
|
|
|
-messageSends: ["ifTrue:ifFalse:", ",", "name", "instanceClass", "isNil", "isMetaclass"],
|
|
|
|
|
|
+var $1,$2,$3,$4;
|
|
|
|
+$1=aStream;
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_("smalltalk.addClass(");
|
|
|
|
+_st($1)._nextPutAll_(_st("'".__comma(self._classNameFor_(aClass))).__comma("', "));
|
|
|
|
+_st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._superclass())));
|
|
|
|
+$2=_st($1)._nextPutAll_(", [");
|
|
|
|
+_st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(aStream)._nextPutAll_(", ");
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
+$3=aStream;
|
|
|
|
+_st($3)._nextPutAll_("], '");
|
|
|
|
+_st($3)._nextPutAll_(_st(_st(aClass)._category()).__comma("'"));
|
|
|
|
+$4=_st($3)._nextPutAll_(");");
|
|
|
|
+_st(aStream)._lf();
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.StrippedExporter)})},
|
|
|
|
+args: ["aClass", "aStream"],
|
|
|
|
+source: "exportDefinitionOf: aClass on: aStream\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.addClass(';\x0a\x09\x09nextPutAll: '''', (self classNameFor: aClass), ''', ';\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ', ['.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ', '].\x0a\x09aStream\x0a\x09\x09nextPutAll: '], ''';\x0a\x09\x09nextPutAll: aClass category, '''';\x0a\x09\x09nextPutAll: ');'.\x0a\x09aStream lf",
|
|
|
|
+messageSends: ["lf", "nextPutAll:", ",", "classNameFor:", "superclass", "do:separatedBy:", "instanceVariableNames", "category"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.StrippedExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportCategoryEpilogueOf:on:",
|
|
|
|
|
|
+selector: "exportMethod:on:",
|
|
category: 'private',
|
|
category: 'private',
|
|
-fn: function (category,aStream){
|
|
|
|
|
|
+fn: function (aMethod,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1,$2;
|
|
var $1,$2;
|
|
$1=aStream;
|
|
$1=aStream;
|
|
-_st($1)._nextPutAll_(" !");
|
|
|
|
|
|
+_st($1)._nextPutAll_("smalltalk.addMethod(");
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_("smalltalk.method({");
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_(_st("selector: ".__comma(_st(_st(aMethod)._selector())._asJavascript())).__comma(","));
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_(_st("fn: ".__comma(_st(_st(aMethod)._fn())._compiledSource())).__comma(","));
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_("messageSends: ".__comma(_st(_st(aMethod)._messageSends())._asJavascript()));
|
|
|
|
+_st($1)._nextPutAll_("}),");
|
|
|
|
+_st($1)._lf();
|
|
|
|
+_st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aMethod)._methodClass())));
|
|
|
|
+_st($1)._nextPutAll_(");");
|
|
_st($1)._lf();
|
|
_st($1)._lf();
|
|
$2=_st($1)._lf();
|
|
$2=_st($1)._lf();
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryEpilogueOf:on:",{category:category,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["category", "aStream"],
|
|
|
|
-source: "exportCategoryEpilogueOf: category on: aStream\x0a\x09aStream nextPutAll: ' !'; lf; lf",
|
|
|
|
-messageSends: ["nextPutAll:", "lf"],
|
|
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.StrippedExporter)})},
|
|
|
|
+args: ["aMethod", "aStream"],
|
|
|
|
+source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addMethod(';lf;\x0a\x09\x09\x22nextPutAll: aMethod selector asSelector asJavascript, ',';lf;\x22\x0a\x09\x09nextPutAll: 'smalltalk.method({';lf;\x0a\x09\x09nextPutAll: 'selector: ', aMethod selector asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;\x0a\x09\x09nextPutAll: 'messageSends: ', aMethod messageSends asJavascript;\x0a\x09\x09nextPutAll: '}),';lf;\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aMethod methodClass);\x0a\x09\x09nextPutAll: ');';lf;lf",
|
|
|
|
+messageSends: ["nextPutAll:", "lf", ",", "asJavascript", "selector", "compiledSource", "fn", "messageSends", "classNameFor:", "methodClass"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.StrippedExporter);
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+smalltalk.addClass('Importer', smalltalk.Object, [], 'Importer-Exporter');
|
|
|
|
+smalltalk.Importer.comment="I can import Amber code from a string in the chunk format.\x0a\x0a## API\x0a\x0a Importer new import: aString";
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportCategoryPrologueOf:on:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (category,aStream){
|
|
|
|
|
|
+selector: "import:",
|
|
|
|
+category: 'fileIn',
|
|
|
|
+fn: function (aStream){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+var chunk,result,parser,lastEmpty;
|
|
|
|
+function $ChunkParser(){return smalltalk.ChunkParser||(typeof ChunkParser=="undefined"?nil:ChunkParser)}
|
|
|
|
+function $Compiler(){return smalltalk.Compiler||(typeof Compiler=="undefined"?nil:Compiler)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1,$2;
|
|
var $1,$2;
|
|
-$1=aStream;
|
|
|
|
-_st($1)._nextPutAll_("!".__comma(self._classNameFor_(_st(category)._at_("class"))));
|
|
|
|
-$2=_st($1)._nextPutAll_(_st(" methodsFor: '".__comma(_st(category)._at_("name"))).__comma("'!"));
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryPrologueOf:on:",{category:category,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["category", "aStream"],
|
|
|
|
-source: "exportCategoryPrologueOf: category on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: (category at: #class));\x0a\x09\x09nextPutAll: ' methodsFor: ''', (category at: #name), '''!'",
|
|
|
|
-messageSends: ["nextPutAll:", ",", "classNameFor:", "at:"],
|
|
|
|
-referencedClasses: []
|
|
|
|
|
|
+parser=_st($ChunkParser())._on_(aStream);
|
|
|
|
+lastEmpty=false;
|
|
|
|
+_st((function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+chunk=_st(parser)._nextChunk();
|
|
|
|
+chunk;
|
|
|
|
+return _st(chunk)._isNil();
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+$1=_st(chunk)._isEmpty();
|
|
|
|
+if(smalltalk.assert($1)){
|
|
|
|
+lastEmpty=true;
|
|
|
|
+return lastEmpty;
|
|
|
|
+} else {
|
|
|
|
+result=_st(_st($Compiler())._new())._evaluateExpression_(chunk);
|
|
|
|
+result;
|
|
|
|
+$2=lastEmpty;
|
|
|
|
+if(smalltalk.assert($2)){
|
|
|
|
+lastEmpty=false;
|
|
|
|
+lastEmpty;
|
|
|
|
+return _st(result)._scanFrom_(parser);
|
|
|
|
+};
|
|
|
|
+};
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"import:",{aStream:aStream,chunk:chunk,result:result,parser:parser,lastEmpty:lastEmpty},smalltalk.Importer)})},
|
|
|
|
+args: ["aStream"],
|
|
|
|
+source: "import: aStream\x0a\x09| chunk result parser lastEmpty |\x0a\x09parser := ChunkParser on: aStream.\x0a\x09lastEmpty := false.\x0a\x09[chunk := parser nextChunk.\x0a\x09chunk isNil] whileFalse: [\x0a\x09\x09chunk isEmpty\x0a\x09\x09\x09ifTrue: [lastEmpty := true]\x0a\x09\x09\x09ifFalse: [\x0a\x09\x09\x09\x09result := Compiler new evaluateExpression: chunk.\x0a\x09\x09\x09\x09lastEmpty\x0a\x09\x09\x09\x09\x09\x09ifTrue: [\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09lastEmpty := false.\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09result scanFrom: parser]]]",
|
|
|
|
+messageSends: ["on:", "whileFalse:", "ifTrue:ifFalse:", "evaluateExpression:", "new", "ifTrue:", "scanFrom:", "isEmpty", "nextChunk", "isNil"],
|
|
|
|
+referencedClasses: ["ChunkParser", "Compiler"]
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.Importer);
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+smalltalk.addClass('PackageHandler', smalltalk.Object, [], 'Importer-Exporter');
|
|
|
|
+smalltalk.PackageHandler.comment="I am responsible for handling package loading and committing.\x0a\x0aI should not be used directly. Instead, use the corresponding `Package` methods.";
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportDefinitionOf:on:",
|
|
|
|
|
|
+selector: "ajaxPutAt:data:",
|
|
category: 'private',
|
|
category: 'private',
|
|
-fn: function (aClass,aStream){
|
|
|
|
|
|
+fn: function (aURL,aString){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2,$3,$4,$5,$6,$7;
|
|
|
|
-$1=aStream;
|
|
|
|
-_st($1)._nextPutAll_(self._classNameFor_(_st(aClass)._superclass()));
|
|
|
|
-_st($1)._nextPutAll_(" subclass: #".__comma(self._classNameFor_(aClass)));
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._tab();
|
|
|
|
-$2=_st($1)._nextPutAll_("instanceVariableNames: '");
|
|
|
|
-_st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(aStream)._nextPutAll_(each);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
|
|
|
|
|
|
+_st(jQuery)._ajax_options_(aURL,smalltalk.HashedCollection._from_(["type".__minus_gt("PUT"),"data".__minus_gt(aString),"contentType".__minus_gt("text/plain;charset=UTF-8"),"error".__minus_gt((function(xhr){
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-return _st(aStream)._nextPutAll_(" ");
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
-$3=aStream;
|
|
|
|
-_st($3)._nextPutAll_("'");
|
|
|
|
-_st($3)._lf();
|
|
|
|
-_st($3)._tab();
|
|
|
|
-_st($3)._nextPutAll_(_st("package: '".__comma(_st(aClass)._category())).__comma("'!"));
|
|
|
|
-$4=_st($3)._lf();
|
|
|
|
-$5=_st(_st(aClass)._comment())._notEmpty();
|
|
|
|
-if(smalltalk.assert($5)){
|
|
|
|
-$6=aStream;
|
|
|
|
-_st($6)._nextPutAll_(_st("!".__comma(self._classNameFor_(aClass))).__comma(" commentStamp!"));
|
|
|
|
-_st($6)._lf();
|
|
|
|
-_st($6)._nextPutAll_(_st(self._chunkEscape_(_st(aClass)._comment())).__comma("!"));
|
|
|
|
-$7=_st($6)._lf();
|
|
|
|
-$7;
|
|
|
|
-};
|
|
|
|
-_st(aStream)._lf();
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aClass", "aStream"],
|
|
|
|
-source: "exportDefinitionOf: aClass on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ' subclass: #', (self classNameFor: aClass); lf;\x0a\x09\x09tab; nextPutAll: 'instanceVariableNames: '''.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09aStream\x0a\x09\x09nextPutAll: ''''; lf;\x0a\x09\x09tab; nextPutAll: 'package: ''', aClass category, '''!'; lf.\x0a\x09aClass comment notEmpty ifTrue: [\x0a\x09\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: aClass), ' commentStamp!';lf;\x0a\x09\x09nextPutAll: (self chunkEscape: aClass comment), '!';lf].\x0a\x09aStream lf",
|
|
|
|
-messageSends: ["nextPutAll:", "classNameFor:", "superclass", ",", "lf", "tab", "do:separatedBy:", "instanceVariableNames", "category", "ifTrue:", "chunkEscape:", "comment", "notEmpty"],
|
|
|
|
|
|
+return self._error_(_st(_st(_st("Commiting ".__comma(aURL)).__comma(" failed with reason: \x22")).__comma(_st(xhr)._responseText())).__comma("\x22"));
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({xhr:xhr},$ctx1)})}))]));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"ajaxPutAt:data:",{aURL:aURL,aString:aString},smalltalk.PackageHandler)})},
|
|
|
|
+args: ["aURL", "aString"],
|
|
|
|
+source: "ajaxPutAt: aURL data: aString\x0a\x09jQuery\x0a\x09\x09ajax: aURL \x0a\x09\x09options: #{ \x0a\x09\x09\x09'type' -> 'PUT'.\x0a\x09\x09\x09'data' -> aString.\x0a\x09\x09\x09'contentType' -> 'text/plain;charset=UTF-8'.\x0a\x09\x09\x09'error' -> [ :xhr | self error: 'Commiting ' , aURL , ' failed with reason: \x22' , (xhr responseText) , '\x22'] }",
|
|
|
|
+messageSends: ["ajax:options:", "->", "error:", ",", "responseText"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PackageHandler);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportMetaDefinitionOf:on:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aClass,aStream){
|
|
|
|
|
|
+selector: "commit:",
|
|
|
|
+category: 'committing',
|
|
|
|
+fn: function (aPackage){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
|
|
|
|
+function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
|
|
|
|
+function $Exporter(){return smalltalk.Exporter||(typeof Exporter=="undefined"?nil:Exporter)}
|
|
|
|
+function $StrippedExporter(){return smalltalk.StrippedExporter||(typeof StrippedExporter=="undefined"?nil:StrippedExporter)}
|
|
|
|
+function $ChunkExporter(){return smalltalk.ChunkExporter||(typeof ChunkExporter=="undefined"?nil:ChunkExporter)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2,$3,$4,$5;
|
|
|
|
-$1=_st(_st(_st(aClass)._class())._instanceVariableNames())._isEmpty();
|
|
|
|
-if(! smalltalk.assert($1)){
|
|
|
|
-$2=aStream;
|
|
|
|
-_st($2)._nextPutAll_(self._classNameFor_(_st(aClass)._class()));
|
|
|
|
-$3=_st($2)._nextPutAll_(" instanceVariableNames: '");
|
|
|
|
-$3;
|
|
|
|
-_st(_st(_st(aClass)._class())._instanceVariableNames())._do_separatedBy_((function(each){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(aStream)._nextPutAll_(each);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
|
|
|
|
|
|
+_st([_st($Exporter()).__minus_gt(_st(_st(_st(_st(aPackage)._commitPathJs()).__comma("/")).__comma(_st(aPackage)._name())).__comma(".js")),_st($StrippedExporter()).__minus_gt(_st(_st(_st(_st(aPackage)._commitPathJs()).__comma("/")).__comma(_st(aPackage)._name())).__comma(".deploy.js")),_st($ChunkExporter()).__minus_gt(_st(_st(_st(_st(aPackage)._commitPathSt()).__comma("/")).__comma(_st(aPackage)._name())).__comma(".st"))])._do_displayingProgress_((function(commitStrategy){
|
|
|
|
+var fileContents;
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-return _st(aStream)._nextPutAll_(" ");
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
-$4=aStream;
|
|
|
|
-_st($4)._nextPutAll_("'!");
|
|
|
|
-_st($4)._lf();
|
|
|
|
-$5=_st($4)._lf();
|
|
|
|
-$5;
|
|
|
|
-};
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportMetaDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aClass", "aStream"],
|
|
|
|
-source: "exportMetaDefinitionOf: aClass on: aStream\x0a\x0a\x09aClass class instanceVariableNames isEmpty ifFalse: [\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: (self classNameFor: aClass class);\x0a\x09\x09\x09nextPutAll: ' instanceVariableNames: '''.\x0a\x09\x09aClass class instanceVariableNames\x0a\x09\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: '''!'; lf; lf]",
|
|
|
|
-messageSends: ["ifFalse:", "nextPutAll:", "classNameFor:", "class", "do:separatedBy:", "instanceVariableNames", "lf", "isEmpty"],
|
|
|
|
-referencedClasses: []
|
|
|
|
|
|
+fileContents=_st($String())._streamContents_((function(stream){
|
|
|
|
+return smalltalk.withContext(function($ctx3) {
|
|
|
|
+return _st(_st($PluggableExporter())._newUsing_(_st(_st(_st(commitStrategy)._key())._new())._recipe()))._exportPackage_on_(aPackage,stream);
|
|
|
|
+}, function($ctx3) {$ctx3.fillBlock({stream:stream},$ctx2)})}));
|
|
|
|
+fileContents;
|
|
|
|
+return self._ajaxPutAt_data_(_st(commitStrategy)._value(),fileContents);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({commitStrategy:commitStrategy,fileContents:fileContents},$ctx1)})}),"Committing package ".__comma(_st(aPackage)._name()));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"commit:",{aPackage:aPackage},smalltalk.PackageHandler)})},
|
|
|
|
+args: ["aPackage"],
|
|
|
|
+source: "commit: aPackage\x0a\x09{ \x0a\x09\x09Exporter -> (aPackage commitPathJs, '/', aPackage name, '.js').\x0a\x09\x09StrippedExporter -> (aPackage commitPathJs, '/', aPackage name, '.deploy.js').\x0a\x09\x09ChunkExporter -> (aPackage commitPathSt, '/', aPackage name, '.st')\x0a\x09} \x0a\x09\x09do: [ :commitStrategy|| fileContents |\x0a\x09\x09\x09fileContents := String streamContents: [ :stream |\x0a\x09\x09\x09\x09(PluggableExporter newUsing: commitStrategy key new recipe) exportPackage: aPackage on: stream ].\x0a\x09\x09\x09self ajaxPutAt: commitStrategy value data: fileContents ]\x0a\x09\x09displayingProgress: 'Committing package ', aPackage name",
|
|
|
|
+messageSends: ["do:displayingProgress:", "streamContents:", "exportPackage:on:", "newUsing:", "recipe", "new", "key", "ajaxPutAt:data:", "value", ",", "name", "->", "commitPathJs", "commitPathSt"],
|
|
|
|
+referencedClasses: ["PluggableExporter", "String", "Exporter", "StrippedExporter", "ChunkExporter"]
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PackageHandler);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportMethod:on:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aMethod,aStream){
|
|
|
|
|
|
+selector: "loadPackage:prefix:",
|
|
|
|
+category: 'loading',
|
|
|
|
+fn: function (packageName,aString){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+var url;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2;
|
|
|
|
-$1=aStream;
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_(self._chunkEscape_(_st(aMethod)._source()));
|
|
|
|
-_st($1)._lf();
|
|
|
|
-$2=_st($1)._nextPutAll_("!");
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aMethod", "aStream"],
|
|
|
|
-source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09lf; lf; nextPutAll: (self chunkEscape: aMethod source); lf;\x0a\x09\x09nextPutAll: '!'",
|
|
|
|
-messageSends: ["lf", "nextPutAll:", "chunkEscape:", "source"],
|
|
|
|
|
|
+var $1;
|
|
|
|
+url=_st(_st(_st("/".__comma(aString)).__comma("/js/")).__comma(packageName)).__comma(".js");
|
|
|
|
+_st(jQuery)._ajax_options_(url,smalltalk.HashedCollection._from_(["type".__minus_gt("GET"),"dataType".__minus_gt("script"),"complete".__minus_gt((function(jqXHR,textStatus){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+$1=_st(_st(jqXHR)._readyState()).__eq((4));
|
|
|
|
+if(smalltalk.assert($1)){
|
|
|
|
+return self._setupPackageNamed_prefix_(packageName,aString);
|
|
|
|
+};
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({jqXHR:jqXHR,textStatus:textStatus},$ctx1)})})),"error".__minus_gt((function(){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(window)._alert_("Could not load package at: ".__comma(url));
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))]));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"loadPackage:prefix:",{packageName:packageName,aString:aString,url:url},smalltalk.PackageHandler)})},
|
|
|
|
+args: ["packageName", "aString"],
|
|
|
|
+source: "loadPackage: packageName prefix: aString\x0a\x09| url |\x0a\x09url := '/', aString, '/js/', packageName, '.js'.\x0a\x09jQuery\x0a\x09\x09ajax: url\x0a\x09\x09options: #{\x0a\x09\x09\x09'type' -> 'GET'.\x0a\x09\x09\x09'dataType' -> 'script'.\x0a\x09\x09\x09'complete' -> [ :jqXHR :textStatus |\x0a\x09\x09\x09\x09jqXHR readyState = 4\x0a\x09\x09\x09\x09\x09ifTrue: [ self setupPackageNamed: packageName prefix: aString ] ].\x0a\x09\x09\x09'error' -> [ window alert: 'Could not load package at: ', url ]\x0a\x09\x09}",
|
|
|
|
+messageSends: [",", "ajax:options:", "->", "ifTrue:", "setupPackageNamed:prefix:", "=", "readyState", "alert:"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PackageHandler);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportPackageDefinitionOf:on:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (package_,aStream){
|
|
|
|
|
|
+selector: "loadPackages:prefix:",
|
|
|
|
+category: 'loading',
|
|
|
|
+fn: function (aCollection,aString){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2;
|
|
|
|
-$1=aStream;
|
|
|
|
-_st($1)._nextPutAll_(_st("Smalltalk current createPackage: '".__comma(_st(package_)._name())).__comma("'!"));
|
|
|
|
-$2=_st($1)._lf();
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportPackageDefinitionOf:on:",{package_:package_,aStream:aStream},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["package", "aStream"],
|
|
|
|
-source: "exportPackageDefinitionOf: package on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: 'Smalltalk current createPackage: ''', package name, '''!';\x0a\x09\x09lf",
|
|
|
|
-messageSends: ["nextPutAll:", ",", "name", "lf"],
|
|
|
|
|
|
+_st(aCollection)._do_((function(each){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return self._loadPackage_prefix_(each,aString);
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"loadPackages:prefix:",{aCollection:aCollection,aString:aString},smalltalk.PackageHandler)})},
|
|
|
|
+args: ["aCollection", "aString"],
|
|
|
|
+source: "loadPackages: aCollection prefix: aString\x0a\x09aCollection do: [ :each |\x0a\x09\x09self loadPackage: each prefix: aString ]",
|
|
|
|
+messageSends: ["do:", "loadPackage:prefix:"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PackageHandler);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "extensionCategoriesOfPackage:",
|
|
|
|
|
|
+selector: "setupPackageNamed:prefix:",
|
|
category: 'private',
|
|
category: 'private',
|
|
-fn: function (package_){
|
|
|
|
|
|
+fn: function (packageName,aString){
|
|
var self=this;
|
|
var self=this;
|
|
-var name,map,result;
|
|
|
|
-function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
|
|
|
|
-function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
|
|
|
|
-function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
|
|
|
|
function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
|
|
function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1,$2;
|
|
var $1,$2;
|
|
-name=_st(package_)._name();
|
|
|
|
-result=_st($OrderedCollection())._new();
|
|
|
|
-_st(_st($Package())._sortedClasses_(_st(_st($Smalltalk())._current())._classes()))._do_((function(each){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st([each,_st(each)._class()])._do_((function(aClass){
|
|
|
|
-return smalltalk.withContext(function($ctx3) {
|
|
|
|
-map=_st($Dictionary())._new();
|
|
|
|
-map;
|
|
|
|
-_st(aClass)._protocolsDo_((function(category,methods){
|
|
|
|
-return smalltalk.withContext(function($ctx4) {
|
|
|
|
-$1=_st(category)._match_("^\x5c*".__comma(name));
|
|
|
|
-if(smalltalk.assert($1)){
|
|
|
|
-return _st(map)._at_put_(category,methods);
|
|
|
|
-};
|
|
|
|
-}, function($ctx4) {$ctx4.fillBlock({category:category,methods:methods},$ctx3)})}));
|
|
|
|
-return _st(result)._addAll_(_st(_st(_st(map)._keys())._sorted_((function(a,b){
|
|
|
|
-return smalltalk.withContext(function($ctx4) {
|
|
|
|
-return _st(a).__lt_eq(b);
|
|
|
|
-}, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx3)})})))._collect_((function(category){
|
|
|
|
-return smalltalk.withContext(function($ctx4) {
|
|
|
|
-return smalltalk.HashedCollection._from_(["methods".__minus_gt(_st(map)._at_(category)),"name".__minus_gt(category),"class".__minus_gt(aClass)]);
|
|
|
|
-}, function($ctx4) {$ctx4.fillBlock({category:category},$ctx3)})})));
|
|
|
|
-}, function($ctx3) {$ctx3.fillBlock({aClass:aClass},$ctx2)})}));
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
|
|
|
|
-$2=result;
|
|
|
|
-return $2;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"extensionCategoriesOfPackage:",{package_:package_,name:name,map:map,result:result},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["package"],
|
|
|
|
-source: "extensionCategoriesOfPackage: package\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| name map result |\x0a\x09name := package name.\x0a\x09result := OrderedCollection new.\x0a\x09(Package sortedClasses: Smalltalk current classes) do: [:each |\x0a\x09\x09{each. each class} do: [:aClass |\x0a\x09\x09\x09map := Dictionary new.\x0a\x09\x09\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09\x09\x09(category match: '^\x5c*', name) ifTrue: [ map at: category put: methods ]].\x0a\x09\x09\x09result addAll: ((map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09\x09\x09#{ 'methods'->(map at: category). 'name'->category. 'class'->aClass}]) ]].\x0a\x09^result",
|
|
|
|
-messageSends: ["name", "new", "do:", "protocolsDo:", "ifTrue:", "at:put:", "match:", ",", "addAll:", "collect:", "->", "at:", "sorted:", "<=", "keys", "class", "sortedClasses:", "classes", "current"],
|
|
|
|
-referencedClasses: ["OrderedCollection", "Dictionary", "Smalltalk", "Package"]
|
|
|
|
|
|
+$1=_st($Package())._named_(packageName);
|
|
|
|
+_st($1)._setupClasses();
|
|
|
|
+_st($1)._commitPathJs_(_st("/".__comma(aString)).__comma("/js"));
|
|
|
|
+$2=_st($1)._commitPathSt_(_st("/".__comma(aString)).__comma("/st"));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"setupPackageNamed:prefix:",{packageName:packageName,aString:aString},smalltalk.PackageHandler)})},
|
|
|
|
+args: ["packageName", "aString"],
|
|
|
|
+source: "setupPackageNamed: packageName prefix: aString\x0a\x0a\x09(Package named: packageName)\x0a\x09\x09setupClasses;\x0a\x09\x09commitPathJs: '/', aString, '/js';\x0a\x09\x09commitPathSt: '/', aString, '/st'",
|
|
|
|
+messageSends: ["setupClasses", "named:", "commitPathJs:", ",", "commitPathSt:"],
|
|
|
|
+referencedClasses: ["Package"]
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PackageHandler);
|
|
|
|
+
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "methodsOfCategory:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (category){
|
|
|
|
|
|
+selector: "loadPackages:prefix:",
|
|
|
|
+category: 'loading',
|
|
|
|
+fn: function (aCollection,aString){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1;
|
|
var $1;
|
|
-$1=_st(_st(category)._at_("methods"))._sorted_((function(a,b){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
|
|
|
|
|
|
+$1=_st(self._new())._loadPackages_prefix_(aCollection,aString);
|
|
return $1;
|
|
return $1;
|
|
-}, function($ctx1) {$ctx1.fill(self,"methodsOfCategory:",{category:category},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["category"],
|
|
|
|
-source: "methodsOfCategory: category\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^(category at: #methods) sorted: [:a :b | a selector <= b selector]",
|
|
|
|
-messageSends: ["sorted:", "<=", "selector", "at:"],
|
|
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"loadPackages:prefix:",{aCollection:aCollection,aString:aString},smalltalk.PackageHandler.klass)})},
|
|
|
|
+args: ["aCollection", "aString"],
|
|
|
|
+source: "loadPackages: aCollection prefix: aString\x0a\x09^ self new loadPackages: aCollection prefix: aString",
|
|
|
|
+messageSends: ["loadPackages:prefix:", "new"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PackageHandler.klass);
|
|
|
|
|
|
|
|
+
|
|
|
|
+smalltalk.addClass('PluggableExporter', smalltalk.Object, ['recipe'], 'Importer-Exporter');
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "ownCategoriesOfClass:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aClass){
|
|
|
|
|
|
+selector: "export:usingRecipe:on:",
|
|
|
|
+category: 'fileOut',
|
|
|
|
+fn: function (anObject,anArray,aStream){
|
|
var self=this;
|
|
var self=this;
|
|
-var map;
|
|
|
|
-function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
|
|
|
|
|
|
+var args;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2;
|
|
|
|
-map=_st($Dictionary())._new();
|
|
|
|
-_st(aClass)._protocolsDo_((function(category,methods){
|
|
|
|
|
|
+var $1;
|
|
|
|
+args=[anObject,aStream];
|
|
|
|
+_st(anArray)._do_((function(each){
|
|
|
|
+var val;
|
|
return smalltalk.withContext(function($ctx2) {
|
|
return smalltalk.withContext(function($ctx2) {
|
|
-$1=_st(category)._match_("^\x5c*");
|
|
|
|
-if(! smalltalk.assert($1)){
|
|
|
|
-return _st(map)._at_put_(category,methods);
|
|
|
|
|
|
+val=_st(each)._value();
|
|
|
|
+val;
|
|
|
|
+$1=_st(val).__eq_eq(each);
|
|
|
|
+if(smalltalk.assert($1)){
|
|
|
|
+var selection;
|
|
|
|
+selection=_st(_st(_st(each)._first())._key())._perform_withArguments_(_st(_st(each)._first())._value(),[anObject]);
|
|
|
|
+selection;
|
|
|
|
+return _st(selection)._do_((function(eachPart){
|
|
|
|
+return smalltalk.withContext(function($ctx3) {
|
|
|
|
+return self._export_usingRecipe_on_(eachPart,_st(each)._allButFirst(),aStream);
|
|
|
|
+}, function($ctx3) {$ctx3.fillBlock({eachPart:eachPart},$ctx2)})}));
|
|
|
|
+} else {
|
|
|
|
+return _st(_st(each)._key())._perform_withArguments_(val,args);
|
|
};
|
|
};
|
|
-}, function($ctx2) {$ctx2.fillBlock({category:category,methods:methods},$ctx1)})}));
|
|
|
|
-$2=_st(_st(_st(map)._keys())._sorted_((function(a,b){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(a).__lt_eq(b);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._collect_((function(category){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return smalltalk.HashedCollection._from_(["methods".__minus_gt(_st(map)._at_(category)),"name".__minus_gt(category),"class".__minus_gt(aClass)]);
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({category:category},$ctx1)})}));
|
|
|
|
-return $2;
|
|
|
|
-}, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfClass:",{aClass:aClass,map:map},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aClass"],
|
|
|
|
-source: "ownCategoriesOfClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| map |\x0a\x09map := Dictionary new.\x0a\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09(category match: '^\x5c*') ifFalse: [ map at: category put: methods ]].\x0a\x09^(map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09#{\x0a\x09\x09\x09'methods'->(map at: category).\x0a\x09\x09\x09'name'->category.\x0a\x09\x09\x09'class'->aClass }]",
|
|
|
|
-messageSends: ["new", "protocolsDo:", "ifFalse:", "at:put:", "match:", "collect:", "->", "at:", "sorted:", "<=", "keys"],
|
|
|
|
-referencedClasses: ["Dictionary"]
|
|
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({each:each,val:val},$ctx1)})}));
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"export:usingRecipe:on:",{anObject:anObject,anArray:anArray,aStream:aStream,args:args},smalltalk.PluggableExporter)})},
|
|
|
|
+args: ["anObject", "anArray", "aStream"],
|
|
|
|
+source: "export: anObject usingRecipe: anArray on: aStream\x0a\x09| args |\x0a\x09args := { anObject. aStream }.\x0a\x09anArray do: [ :each | | val |\x0a\x09\x09val := each value.\x0a\x09\x09val == each\x0a\x09\x09\x09ifFalse: [ \x22association\x22\x0a\x09\x09\x09\x09each key perform: val withArguments: args ]\x0a\x09\x09\x09ifTrue: [ \x22sub-array\x22\x0a\x09\x09\x09\x09| selection |\x0a\x09\x09\x09\x09selection := each first key perform: each first value withArguments: { anObject }.\x0a\x09\x09\x09\x09selection do: [ :eachPart |\x09self export: eachPart usingRecipe: each allButFirst on: aStream ]]]",
|
|
|
|
+messageSends: ["do:", "value", "ifFalse:ifTrue:", "perform:withArguments:", "key", "first", "export:usingRecipe:on:", "allButFirst", "=="],
|
|
|
|
+referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PluggableExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "ownCategoriesOfMetaClass:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aClass){
|
|
|
|
|
|
+selector: "exportAll",
|
|
|
|
+category: 'fileOut',
|
|
|
|
+fn: function (){
|
|
var self=this;
|
|
var self=this;
|
|
|
|
+function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
|
|
|
|
+function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1;
|
|
var $1;
|
|
-$1=self._ownCategoriesOfClass_(_st(aClass)._class());
|
|
|
|
|
|
+$1=_st($String())._streamContents_((function(stream){
|
|
|
|
+return smalltalk.withContext(function($ctx2) {
|
|
|
|
+return _st(_st(_st($Smalltalk())._current())._packages())._do_((function(pkg){
|
|
|
|
+return smalltalk.withContext(function($ctx3) {
|
|
|
|
+return self._exportPackage_on_(pkg,stream);
|
|
|
|
+}, function($ctx3) {$ctx3.fillBlock({pkg:pkg},$ctx2)})}));
|
|
|
|
+}, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1)})}));
|
|
return $1;
|
|
return $1;
|
|
-}, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfMetaClass:",{aClass:aClass},smalltalk.ChunkExporter)})},
|
|
|
|
-args: ["aClass"],
|
|
|
|
-source: "ownCategoriesOfMetaClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09^self ownCategoriesOfClass: aClass class",
|
|
|
|
-messageSends: ["ownCategoriesOfClass:", "class"],
|
|
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"exportAll",{},smalltalk.PluggableExporter)})},
|
|
|
|
+args: [],
|
|
|
|
+source: "exportAll\x0a\x09\x22Export all packages in the system.\x22\x0a\x0a\x09^String streamContents: [:stream |\x0a\x09\x09Smalltalk current packages do: [:pkg |\x0a\x09\x09self exportPackage: pkg on: stream]]",
|
|
|
|
+messageSends: ["streamContents:", "do:", "exportPackage:on:", "packages", "current"],
|
|
|
|
+referencedClasses: ["Smalltalk", "String"]
|
|
|
|
+}),
|
|
|
|
+smalltalk.PluggableExporter);
|
|
|
|
+
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "exportPackage:on:",
|
|
|
|
+category: 'fileOut',
|
|
|
|
+fn: function (aPackage,aStream){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
|
|
|
|
+self._export_usingRecipe_on_(aPackage,self._recipe(),aStream);
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"exportPackage:on:",{aPackage:aPackage,aStream:aStream},smalltalk.PluggableExporter)})},
|
|
|
|
+args: ["aPackage", "aStream"],
|
|
|
|
+source: "exportPackage: aPackage on: aStream\x0a\x09self export: aPackage usingRecipe: self recipe on: aStream",
|
|
|
|
+messageSends: ["export:usingRecipe:on:", "recipe"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PluggableExporter);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
selector: "recipe",
|
|
selector: "recipe",
|
|
-category: 'fileOut',
|
|
|
|
|
|
+category: 'accessing',
|
|
fn: function (){
|
|
fn: function (){
|
|
var self=this;
|
|
var self=this;
|
|
-var exportCategoryRecipe;
|
|
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
var $1;
|
|
var $1;
|
|
-exportCategoryRecipe=[self.__minus_gt("exportCategoryPrologueOf:on:"),[self.__minus_gt("methodsOfCategory:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportCategoryEpilogueOf:on:")];
|
|
|
|
-$1=[self.__minus_gt("exportPackageDefinitionOf:on:"),[self.__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfClass:")]).__comma(exportCategoryRecipe),self.__minus_gt("exportMetaDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfMetaClass:")]).__comma(exportCategoryRecipe)],_st([self.__minus_gt("extensionCategoriesOfPackage:")]).__comma(exportCategoryRecipe)];
|
|
|
|
|
|
+$1=self["@recipe"];
|
|
return $1;
|
|
return $1;
|
|
-}, function($ctx1) {$ctx1.fill(self,"recipe",{exportCategoryRecipe:exportCategoryRecipe},smalltalk.ChunkExporter)})},
|
|
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.PluggableExporter)})},
|
|
args: [],
|
|
args: [],
|
|
-source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09| exportCategoryRecipe |\x0a\x09exportCategoryRecipe := {\x0a\x09\x09self -> #exportCategoryPrologueOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09self -> #methodsOfCategory:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportCategoryEpilogueOf:on: }.\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09self -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfClass: }, exportCategoryRecipe.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfMetaClass: }, exportCategoryRecipe }.\x0a\x09\x09{ self -> #extensionCategoriesOfPackage: }, exportCategoryRecipe\x0a\x09}",
|
|
|
|
-messageSends: ["->", ","],
|
|
|
|
|
|
+source: "recipe\x0a\x09^recipe",
|
|
|
|
+messageSends: [],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.ChunkExporter);
|
|
|
|
|
|
+smalltalk.PluggableExporter);
|
|
|
|
|
|
|
|
+smalltalk.addMethod(
|
|
|
|
+smalltalk.method({
|
|
|
|
+selector: "recipe:",
|
|
|
|
+category: 'accessing',
|
|
|
|
+fn: function (anArray){
|
|
|
|
+var self=this;
|
|
|
|
+return smalltalk.withContext(function($ctx1) {
|
|
|
|
+self["@recipe"]=anArray;
|
|
|
|
+return self}, function($ctx1) {$ctx1.fill(self,"recipe:",{anArray:anArray},smalltalk.PluggableExporter)})},
|
|
|
|
+args: ["anArray"],
|
|
|
|
+source: "recipe: anArray\x0a\x09recipe := anArray",
|
|
|
|
+messageSends: [],
|
|
|
|
+referencedClasses: []
|
|
|
|
+}),
|
|
|
|
+smalltalk.PluggableExporter);
|
|
|
|
|
|
|
|
|
|
-smalltalk.addClass('StrippedExporter', smalltalk.Exporter, [], 'Importer-Exporter');
|
|
|
|
-smalltalk.StrippedExporter.comment="I export Amber code into a JavaScript string, but without any optional associated data like the Amber source code.";
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportDefinitionOf:on:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aClass,aStream){
|
|
|
|
|
|
+selector: "newUsing:",
|
|
|
|
+category: 'exporting-accessing',
|
|
|
|
+fn: function (recipe){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2,$3,$4;
|
|
|
|
-$1=aStream;
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_("smalltalk.addClass(");
|
|
|
|
-_st($1)._nextPutAll_(_st("'".__comma(self._classNameFor_(aClass))).__comma("', "));
|
|
|
|
-_st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._superclass())));
|
|
|
|
-$2=_st($1)._nextPutAll_(", [");
|
|
|
|
-_st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
|
|
|
|
-return smalltalk.withContext(function($ctx2) {
|
|
|
|
-return _st(aStream)._nextPutAll_(", ");
|
|
|
|
-}, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
|
|
|
|
-$3=aStream;
|
|
|
|
-_st($3)._nextPutAll_("], '");
|
|
|
|
-_st($3)._nextPutAll_(_st(_st(aClass)._category()).__comma("'"));
|
|
|
|
-$4=_st($3)._nextPutAll_(");");
|
|
|
|
-_st(aStream)._lf();
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.StrippedExporter)})},
|
|
|
|
-args: ["aClass", "aStream"],
|
|
|
|
-source: "exportDefinitionOf: aClass on: aStream\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.addClass(';\x0a\x09\x09nextPutAll: '''', (self classNameFor: aClass), ''', ';\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ', ['.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ', '].\x0a\x09aStream\x0a\x09\x09nextPutAll: '], ''';\x0a\x09\x09nextPutAll: aClass category, '''';\x0a\x09\x09nextPutAll: ');'.\x0a\x09aStream lf",
|
|
|
|
-messageSends: ["lf", "nextPutAll:", ",", "classNameFor:", "superclass", "do:separatedBy:", "instanceVariableNames", "category"],
|
|
|
|
|
|
+var $2,$3,$1;
|
|
|
|
+$2=self._new();
|
|
|
|
+_st($2)._recipe_(recipe);
|
|
|
|
+$3=_st($2)._yourself();
|
|
|
|
+$1=$3;
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"newUsing:",{recipe:recipe},smalltalk.PluggableExporter.klass)})},
|
|
|
|
+args: ["recipe"],
|
|
|
|
+source: "newUsing: recipe\x0a\x09^self new recipe: recipe; yourself",
|
|
|
|
+messageSends: ["recipe:", "new", "yourself"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.StrippedExporter);
|
|
|
|
|
|
+smalltalk.PluggableExporter.klass);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|
|
-selector: "exportMethod:on:",
|
|
|
|
-category: 'private',
|
|
|
|
-fn: function (aMethod,aStream){
|
|
|
|
|
|
+selector: "ownClassesOfPackage:",
|
|
|
|
+category: 'exporting-accessing',
|
|
|
|
+fn: function (package_){
|
|
var self=this;
|
|
var self=this;
|
|
return smalltalk.withContext(function($ctx1) {
|
|
return smalltalk.withContext(function($ctx1) {
|
|
-var $1,$2;
|
|
|
|
-$1=aStream;
|
|
|
|
-_st($1)._nextPutAll_("smalltalk.addMethod(");
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_("smalltalk.method({");
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_(_st("selector: ".__comma(_st(_st(aMethod)._selector())._asJavascript())).__comma(","));
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_(_st("fn: ".__comma(_st(_st(aMethod)._fn())._compiledSource())).__comma(","));
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_("messageSends: ".__comma(_st(_st(aMethod)._messageSends())._asJavascript()));
|
|
|
|
-_st($1)._nextPutAll_("}),");
|
|
|
|
-_st($1)._lf();
|
|
|
|
-_st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aMethod)._methodClass())));
|
|
|
|
-_st($1)._nextPutAll_(");");
|
|
|
|
-_st($1)._lf();
|
|
|
|
-$2=_st($1)._lf();
|
|
|
|
-return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.StrippedExporter)})},
|
|
|
|
-args: ["aMethod", "aStream"],
|
|
|
|
-source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addMethod(';lf;\x0a\x09\x09\x22nextPutAll: aMethod selector asSelector asJavascript, ',';lf;\x22\x0a\x09\x09nextPutAll: 'smalltalk.method({';lf;\x0a\x09\x09nextPutAll: 'selector: ', aMethod selector asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;\x0a\x09\x09nextPutAll: 'messageSends: ', aMethod messageSends asJavascript;\x0a\x09\x09nextPutAll: '}),';lf;\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aMethod methodClass);\x0a\x09\x09nextPutAll: ');';lf;lf",
|
|
|
|
-messageSends: ["nextPutAll:", "lf", ",", "asJavascript", "selector", "compiledSource", "fn", "messageSends", "classNameFor:", "methodClass"],
|
|
|
|
|
|
+var $1;
|
|
|
|
+$1=_st(_st(package_)._sortedClasses())._asSet();
|
|
|
|
+return $1;
|
|
|
|
+}, function($ctx1) {$ctx1.fill(self,"ownClassesOfPackage:",{package_:package_},smalltalk.PluggableExporter.klass)})},
|
|
|
|
+args: ["package"],
|
|
|
|
+source: "ownClassesOfPackage: package\x0a\x09\x22Export classes in dependency order.\x0a\x09Update (issue #171): Remove duplicates for export\x22\x0a\x09^package sortedClasses asSet",
|
|
|
|
+messageSends: ["asSet", "sortedClasses"],
|
|
referencedClasses: []
|
|
referencedClasses: []
|
|
}),
|
|
}),
|
|
-smalltalk.StrippedExporter);
|
|
|
|
-
|
|
|
|
|
|
+smalltalk.PluggableExporter.klass);
|
|
|
|
|
|
smalltalk.addMethod(
|
|
smalltalk.addMethod(
|
|
smalltalk.method({
|
|
smalltalk.method({
|