Kernel-Methods.st 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. Smalltalk current createPackage: 'Kernel-Methods' properties: #{}!
  2. Object subclass: #BlockClosure
  3. instanceVariableNames: ''
  4. package: 'Kernel-Methods'!
  5. !BlockClosure commentStamp!
  6. A BlockClosure is a lexical closure.
  7. The JavaScript representation is a function.
  8. A BlockClosure is evaluated with the `#value*` methods in the 'evaluating' protocol.!
  9. !BlockClosure methodsFor: 'accessing'!
  10. compiledSource
  11. <return self.toString()>
  12. !
  13. numArgs
  14. <return self.length>
  15. ! !
  16. !BlockClosure methodsFor: 'controlling'!
  17. whileFalse
  18. "inlined in the Compiler"
  19. self whileFalse: []
  20. !
  21. whileFalse: aBlock
  22. "inlined in the Compiler"
  23. <while(!!self()) {aBlock()}>
  24. !
  25. whileTrue
  26. "inlined in the Compiler"
  27. self whileTrue: []
  28. !
  29. whileTrue: aBlock
  30. "inlined in the Compiler"
  31. <while(self()) {aBlock()}>
  32. ! !
  33. !BlockClosure methodsFor: 'error handling'!
  34. on: anErrorClass do: aBlock
  35. ^self try: self catch: [:error |
  36. (error isKindOf: anErrorClass)
  37. ifTrue: [aBlock value: error]
  38. ifFalse: [error signal]]
  39. ! !
  40. !BlockClosure methodsFor: 'evaluating'!
  41. applyTo: anObject arguments: aCollection
  42. <return self.apply(anObject, aCollection)>
  43. !
  44. ensure: aBlock
  45. | success |
  46. success := false.
  47. ^[self value. success := true. aBlock value]
  48. on: Error
  49. do: [:ex |
  50. success ifFalse: [aBlock value].
  51. ex signal]
  52. !
  53. new
  54. "Use the receiver as a JS constructor.
  55. *Do not* use this method to instanciate Smalltalk objects!!"
  56. <return new self()>
  57. !
  58. newValue: anObject
  59. "Use the receiver as a JS constructor.
  60. *Do not* use this method to instanciate Smalltalk objects!!"
  61. <return new self(anObject)>
  62. !
  63. newValue: anObject value: anObject2
  64. "Use the receiver as a JS constructor.
  65. *Do not* use this method to instanciate Smalltalk objects!!"
  66. <return new self(anObject, anObject2)>
  67. !
  68. newValue: anObject value: anObject2 value: anObject3
  69. "Use the receiver as a JS constructor.
  70. *Do not* use this method to instanciate Smalltalk objects!!"
  71. <return new self(anObject, anObject2)>
  72. !
  73. timeToRun
  74. "Answer the number of milliseconds taken to execute this block."
  75. ^ Date millisecondsToRun: self
  76. !
  77. value
  78. "inlined in the Compiler"
  79. <return self();>
  80. !
  81. value: anArg
  82. "inlined in the Compiler"
  83. <return self(anArg);>
  84. !
  85. value: firstArg value: secondArg
  86. "inlined in the Compiler"
  87. <return self(firstArg, secondArg);>
  88. !
  89. value: firstArg value: secondArg value: thirdArg
  90. "inlined in the Compiler"
  91. <return self(firstArg, secondArg, thirdArg);>
  92. !
  93. valueWithPossibleArguments: aCollection
  94. <return self.apply(null, aCollection);>
  95. ! !
  96. !BlockClosure methodsFor: 'timeout/interval'!
  97. fork
  98. ForkPool default fork: self
  99. !
  100. valueWithInterval: aNumber
  101. <return setInterval(self, aNumber)>
  102. !
  103. valueWithTimeout: aNumber
  104. <return setTimeout(self, aNumber)>
  105. ! !
  106. Object subclass: #CompiledMethod
  107. instanceVariableNames: ''
  108. package: 'Kernel-Methods'!
  109. !CompiledMethod commentStamp!
  110. CompiledMethod hold the source and compiled code of a class method.
  111. You can get a CompiledMethod using `Behavior>>methodAt:`
  112. String methodAt: 'lines'
  113. and read the source code
  114. (String methodAt: 'lines') source
  115. See referenced classes:
  116. (String methodAt: 'lines') referencedClasses
  117. or messages sent from this method:
  118. (String methodAt: 'lines') messageSends!
  119. !CompiledMethod methodsFor: 'accessing'!
  120. arguments
  121. <return self.args || []>
  122. !
  123. category
  124. ^(self basicAt: 'category') ifNil: ['']
  125. !
  126. category: aString
  127. | oldCategory |
  128. oldCategory := self category.
  129. self basicAt: 'category' put: aString.
  130. self methodClass ifNotNil: [
  131. self methodClass organization addElement: aString.
  132. (self methodClass methods
  133. select: [ :each | each category = oldCategory ])
  134. ifEmpty: [ self methodClass organization removeElement: oldCategory ] ]
  135. !
  136. fn
  137. ^self basicAt: 'fn'
  138. !
  139. fn: aBlock
  140. self basicAt: 'fn' put: aBlock
  141. !
  142. messageSends
  143. ^self basicAt: 'messageSends'
  144. !
  145. methodClass
  146. ^self basicAt: 'methodClass'
  147. !
  148. protocol
  149. ^ self category
  150. !
  151. referencedClasses
  152. ^self basicAt: 'referencedClasses'
  153. !
  154. selector
  155. ^self basicAt: 'selector'
  156. !
  157. selector: aString
  158. self basicAt: 'selector' put: aString
  159. !
  160. source
  161. ^(self basicAt: 'source') ifNil: ['']
  162. !
  163. source: aString
  164. self basicAt: 'source' put: aString
  165. ! !
  166. Object subclass: #ForkPool
  167. instanceVariableNames: 'poolSize maxPoolSize queue worker'
  168. package: 'Kernel-Methods'!
  169. !ForkPool methodsFor: 'action'!
  170. addWorker
  171. worker valueWithTimeout: 0.
  172. poolSize := poolSize + 1
  173. !
  174. fork: aBlock
  175. poolSize < maxPoolSize ifTrue: [ self addWorker ].
  176. queue back: aBlock
  177. ! !
  178. !ForkPool methodsFor: 'initialization'!
  179. initialize
  180. | sentinel |
  181. poolSize := 0.
  182. maxPoolSize := self class defaultMaxPoolSize.
  183. queue := Queue new.
  184. sentinel := Object new.
  185. worker := [
  186. | block |
  187. poolSize := poolSize - 1.
  188. block := queue frontIfAbsent: [ sentinel ].
  189. block == sentinel ifFalse: [
  190. [ block value ] ensure: [ self addWorker ]]].
  191. ! !
  192. ForkPool class instanceVariableNames: 'default'!
  193. !ForkPool class methodsFor: 'accessing'!
  194. default
  195. ^default ifNil: [ default := self new ]
  196. !
  197. defaultMaxPoolSize
  198. ^100
  199. !
  200. resetDefault
  201. default := nil
  202. ! !
  203. Object subclass: #Message
  204. instanceVariableNames: 'selector arguments'
  205. package: 'Kernel-Methods'!
  206. !Message commentStamp!
  207. Generally, the system does not use instances of Message for efficiency reasons.
  208. However, when a message is not understood by its receiver, the interpreter will make up an instance of it in order to capture the information involved in an actual message transmission.
  209. This instance is sent it as an argument with the message `doesNotUnderstand:` to the receiver.
  210. See boot.js, `messageNotUnderstood` and its counterpart `Object>>doesNotUnderstand:`!
  211. !Message methodsFor: 'accessing'!
  212. arguments
  213. ^arguments
  214. !
  215. arguments: anArray
  216. arguments := anArray
  217. !
  218. selector
  219. ^selector
  220. !
  221. selector: aString
  222. selector := aString
  223. ! !
  224. !Message methodsFor: 'printing'!
  225. printString
  226. ^ String streamContents: [:aStream|
  227. aStream
  228. nextPutAll: super printString;
  229. nextPutAll: '(';
  230. nextPutAll: selector;
  231. nextPutAll: ')' ]
  232. !
  233. sendTo: anObject
  234. ^ Smalltalk current send: self selector to: anObject arguments: self arguments
  235. ! !
  236. !Message class methodsFor: 'instance creation'!
  237. selector: aString arguments: anArray
  238. ^self new
  239. selector: aString;
  240. arguments: anArray;
  241. yourself
  242. ! !
  243. Object subclass: #MethodContext
  244. instanceVariableNames: ''
  245. package: 'Kernel-Methods'!
  246. !MethodContext commentStamp!
  247. MethodContext holds all the dynamic state associated with the execution of either a method activation resulting from a message send. That is used to build the call stack while debugging.
  248. MethodContext instances are JavaScript `SmalltalkMethodContext` objects defined in boot.js
  249. Current limitation: MethodContext instances are not created on Block evaluation. That means it's actually impossible to debug inside a Block.!
  250. !MethodContext methodsFor: 'accessing'!
  251. asString
  252. ^self receiver class printString, ' >> ', self selector
  253. !
  254. home
  255. <return self.homeContext>
  256. !
  257. pc
  258. <return self.pc>
  259. !
  260. printString
  261. ^super printString, '(', self asString, ')'
  262. !
  263. receiver
  264. <return self.receiver>
  265. !
  266. selector
  267. <return smalltalk.convertSelector(self.selector)>
  268. !
  269. temps
  270. <return self.temps>
  271. ! !