Helios-Browser.st 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541
  1. Smalltalk createPackage: 'Helios-Browser'!
  2. HLWidget subclass: #HLBrowser
  3. instanceVariableNames: 'model packagesListWidget classesListWidget protocolsListWidget methodsListWidget sourceWidget bottomDiv'
  4. package: 'Helios-Browser'!
  5. !HLBrowser commentStamp!
  6. I render a system browser with 4 panes (Packages, Classes, Protocols, Methods) and a source area.!
  7. !HLBrowser methodsFor: 'accessing'!
  8. environment
  9. ^ self model environment
  10. !
  11. model
  12. ^ model ifNil: [ self model: HLBrowserModel new. model ]
  13. !
  14. model: aModel
  15. model := aModel.
  16. self observeModel
  17. ! !
  18. !HLBrowser methodsFor: 'actions'!
  19. focus
  20. ^ self packagesListWidget focus
  21. !
  22. observeModel
  23. self model announcer
  24. on: HLPackageSelected
  25. send: #onPackageSelected:
  26. to: self.
  27. self model announcer
  28. on: HLClassSelected
  29. send: #onClassSelected:
  30. to: self
  31. !
  32. openClassNamed: aString
  33. self model openClassNamed: aString
  34. !
  35. openMethod: aCompiledMethod
  36. self model
  37. "Workaround for the package selection announcement when the package list is focused"
  38. focusOnSourceCode;
  39. selectedPackage: aCompiledMethod methodClass package;
  40. selectedClass: aCompiledMethod methodClass;
  41. selectedProtocol: aCompiledMethod protocol;
  42. selectedMethod: aCompiledMethod;
  43. focusOnSourceCode
  44. !
  45. unregister
  46. super unregister.
  47. {
  48. self packagesListWidget.
  49. self classesListWidget.
  50. self protocolsListWidget.
  51. self methodsListWidget.
  52. self sourceWidget
  53. }
  54. do: [ :each | each unregister ]
  55. ! !
  56. !HLBrowser methodsFor: 'keybindings'!
  57. registerBindingsOn: aBindingGroup
  58. HLToolCommand
  59. registerConcreteClassesOn: aBindingGroup
  60. for: self model
  61. ! !
  62. !HLBrowser methodsFor: 'reactions'!
  63. onClassSelected: anAnnouncement
  64. anAnnouncement item
  65. ifNil: [ self setTabLabel: (self model selectedPackage
  66. ifNil: [ self defaultTabLabel ]
  67. ifNotNil: [ :package | package name ]) ]
  68. ifNotNil: [ :item | self setTabLabel: item name ]
  69. !
  70. onPackageSelected: anAnnouncement
  71. anAnnouncement item ifNotNil: [ :item |
  72. self setTabLabel: item name ]
  73. ! !
  74. !HLBrowser methodsFor: 'rendering'!
  75. renderContentOn: html
  76. html with: (HLContainer with: (HLHorizontalSplitter
  77. with: (HLVerticalSplitter
  78. with: (HLVerticalSplitter
  79. with: self packagesListWidget
  80. with: self classesListWidget)
  81. with: (HLVerticalSplitter
  82. with: self protocolsListWidget
  83. with: self methodsListWidget))
  84. with: self sourceWidget)).
  85. self packagesListWidget focus
  86. ! !
  87. !HLBrowser methodsFor: 'testing'!
  88. canHaveFocus
  89. ^ true
  90. ! !
  91. !HLBrowser methodsFor: 'widgets'!
  92. classesListWidget
  93. ^ classesListWidget ifNil: [
  94. classesListWidget := HLClassesListWidget on: self model.
  95. classesListWidget next: self protocolsListWidget ]
  96. !
  97. methodsListWidget
  98. ^ methodsListWidget ifNil: [
  99. methodsListWidget := HLMethodsListWidget on: self model.
  100. methodsListWidget next: self sourceWidget ]
  101. !
  102. packagesListWidget
  103. ^ packagesListWidget ifNil: [
  104. packagesListWidget := HLPackagesListWidget on: self model.
  105. packagesListWidget next: self classesListWidget ]
  106. !
  107. protocolsListWidget
  108. ^ protocolsListWidget ifNil: [
  109. protocolsListWidget := HLProtocolsListWidget on: self model.
  110. protocolsListWidget next: self methodsListWidget ]
  111. !
  112. sourceWidget
  113. ^ sourceWidget ifNil: [
  114. sourceWidget := HLBrowserBottomWidget new
  115. model: self model;
  116. yourself ]
  117. ! !
  118. HLBrowser class instanceVariableNames: 'nextId'!
  119. !HLBrowser class methodsFor: 'accessing'!
  120. nextId
  121. nextId ifNil: [ nextId := 0 ].
  122. ^ 'browser_', (nextId + 1) asString
  123. !
  124. tabClass
  125. ^ 'browser'
  126. !
  127. tabLabel
  128. ^ 'Browser'
  129. !
  130. tabPriority
  131. ^ 0
  132. ! !
  133. !HLBrowser class methodsFor: 'testing'!
  134. canBeOpenAsTab
  135. ^ true
  136. ! !
  137. HLWidget subclass: #HLBrowserBottomWidget
  138. instanceVariableNames: 'model codeWidget documentationWidget'
  139. package: 'Helios-Browser'!
  140. !HLBrowserBottomWidget commentStamp!
  141. I render the code area of a browser and optionally the documentation for the selected class.!
  142. !HLBrowserBottomWidget methodsFor: 'accessing'!
  143. codeWidget
  144. ^ codeWidget ifNil: [ codeWidget := HLBrowserCodeWidget new
  145. browserModel: self model;
  146. yourself ]
  147. !
  148. documentationWidget
  149. ^ documentationWidget ifNil: [ documentationWidget := HLDocumentationWidget new
  150. model: self model;
  151. yourself ]
  152. !
  153. model
  154. ^ model
  155. !
  156. model: aModel
  157. model := aModel.
  158. self observeModel
  159. !
  160. previous
  161. "For navigation"
  162. !
  163. previous: aWidget
  164. "For navigation"
  165. ! !
  166. !HLBrowserBottomWidget methodsFor: 'actions'!
  167. focus
  168. self codeWidget focus
  169. !
  170. observeModel
  171. self model announcer
  172. on: HLShowInstanceToggled
  173. send: #onShowInstanceToggled
  174. to: self;
  175. on: HLShowCommentToggled
  176. send: #onShowCommentToggled
  177. to: self
  178. ! !
  179. !HLBrowserBottomWidget methodsFor: 'reactions'!
  180. onShowCommentToggled
  181. self refresh
  182. !
  183. onShowInstanceToggled
  184. self refresh
  185. ! !
  186. !HLBrowserBottomWidget methodsFor: 'rendering'!
  187. renderContentOn: html
  188. self model showComment
  189. ifTrue: [ self renderPanesOn: html ]
  190. ifFalse: [ html with: self codeWidget ]
  191. !
  192. renderPanesOn: html
  193. html with: (HLVerticalSplitter
  194. with: self codeWidget
  195. with: self documentationWidget)
  196. ! !
  197. !HLBrowserBottomWidget methodsFor: 'testing'!
  198. canHaveFocus
  199. ^ true
  200. ! !
  201. HLToolModel subclass: #HLBrowserModel
  202. instanceVariableNames: 'showInstance showComment'
  203. package: 'Helios-Browser'!
  204. !HLBrowserModel methodsFor: 'accessing'!
  205. showComment
  206. ^ showComment ifNil: [ true ]
  207. !
  208. showComment: aBoolean
  209. self withChangesDo: [
  210. showComment := aBoolean.
  211. self announcer announce: HLShowCommentToggled new ]
  212. !
  213. showInstance
  214. ^ showInstance ifNil: [ true ]
  215. !
  216. showInstance: aBoolean
  217. self withChangesDo: [
  218. showInstance := aBoolean.
  219. self selectedClass ifNotNil: [
  220. self selectedClass: (aBoolean
  221. ifTrue: [ self selectedClass theNonMetaClass ]
  222. ifFalse: [ self selectedClass theMetaClass ]) ].
  223. self announcer announce: HLShowInstanceToggled new ]
  224. ! !
  225. !HLBrowserModel methodsFor: 'actions'!
  226. focusOnClasses
  227. self announcer announce: HLClassesFocusRequested new
  228. !
  229. focusOnDocumentation
  230. self announcer announce: HLDocumentationFocusRequested new
  231. !
  232. focusOnMethods
  233. self announcer announce: HLMethodsFocusRequested new
  234. !
  235. focusOnPackages
  236. self announcer announce: HLPackagesFocusRequested new
  237. !
  238. focusOnProtocols
  239. self announcer announce: HLProtocolsFocusRequested new
  240. !
  241. focusOnSourceCode
  242. self announcer announce: HLSourceCodeFocusRequested new
  243. !
  244. setClassComment: aString
  245. self environment
  246. setClassCommentOf: self selectedClass theNonMetaClass
  247. to: aString
  248. !
  249. showClassTemplate
  250. self selectedPackage ifNotNil: [ :package |
  251. self announcer announce: (HLShowTemplate new
  252. template: package classTemplate;
  253. yourself) ]
  254. !
  255. showMethodTemplate
  256. self selectedClass ifNotNil: [ :theClass |
  257. self announcer announce: (HLShowTemplate new
  258. template: theClass methodTemplate;
  259. yourself) ]
  260. ! !
  261. !HLBrowserModel methodsFor: 'commands actions'!
  262. editComment
  263. self announcer announce: HLEditComment new
  264. ! !
  265. !HLBrowserModel methodsFor: 'testing'!
  266. isBrowserModel
  267. ^ true
  268. ! !
  269. !HLBrowserModel class methodsFor: 'instance creation'!
  270. on: anEnvironment
  271. ^ self new
  272. environment: anEnvironment;
  273. yourself
  274. ! !
  275. Object subclass: #HLClassCache
  276. instanceVariableNames: 'class selectorsCache overrideCache overriddenCache'
  277. package: 'Helios-Browser'!
  278. !HLClassCache methodsFor: 'accessing'!
  279. overriddenCache
  280. ^ overriddenCache ifNil: [ overriddenCache := HashedCollection new ]
  281. !
  282. overrideCache
  283. ^ overrideCache ifNil: [ overrideCache := HashedCollection new ]
  284. !
  285. selectorsCache
  286. ^ selectorsCache
  287. !
  288. selectorsCache: aCache
  289. selectorsCache := aCache
  290. !
  291. theClass
  292. ^ class
  293. !
  294. theClass: aClass
  295. class := aClass
  296. ! !
  297. !HLClassCache methodsFor: 'actions'!
  298. invalidateChildrenSelector: aSelector
  299. self theClass subclasses do: [ :each |
  300. (self selectorsCache cacheFor: each)
  301. removeSelector: aSelector;
  302. invalidateChildrenSelector: aSelector ]
  303. !
  304. invalidateParentSelector: aSelector
  305. self theClass superclass ifNotNil: [
  306. (self selectorsCache cacheFor: self theClass superclass)
  307. removeSelector: aSelector;
  308. invalidateParentSelector: aSelector ]
  309. !
  310. invalidateSelector: aSelector
  311. self
  312. invalidateParentSelector: aSelector;
  313. invalidateChildrenSelector: aSelector;
  314. removeSelector: aSelector
  315. ! !
  316. !HLClassCache methodsFor: 'private'!
  317. removeSelector: aSelector
  318. self overriddenCache
  319. removeKey: aSelector
  320. ifAbsent: [ ].
  321. self overrideCache
  322. removeKey: aSelector
  323. ifAbsent: [ ]
  324. ! !
  325. !HLClassCache methodsFor: 'testing'!
  326. isOverridden: aMethod
  327. ^ self overriddenCache
  328. at: aMethod selector
  329. ifAbsentPut: [ aMethod isOverridden ]
  330. !
  331. isOverride: aMethod
  332. ^ self overrideCache
  333. at: aMethod selector
  334. ifAbsentPut: [ aMethod isOverride ]
  335. ! !
  336. !HLClassCache class methodsFor: 'instance creation'!
  337. on: aClass selectorsCache: aSelectorsCache
  338. ^ self new
  339. theClass: aClass;
  340. selectorsCache: aSelectorsCache;
  341. yourself
  342. ! !
  343. HLToolListWidget subclass: #HLClassesListWidget
  344. instanceVariableNames: ''
  345. package: 'Helios-Browser'!
  346. !HLClassesListWidget commentStamp!
  347. I render a list of classes in the selected package.!
  348. !HLClassesListWidget methodsFor: 'accessing'!
  349. cssClassForItem: aClass
  350. ^ aClass theNonMetaClass heliosClass
  351. !
  352. getChildrenOf: aClass
  353. ^ self items select: [ :each | each superclass = aClass ]
  354. !
  355. getRootClassesOf: aCollection
  356. ^ aCollection select: [ :each |
  357. (aCollection includes: each superclass) not ]
  358. !
  359. label
  360. ^ 'Classes'
  361. ! !
  362. !HLClassesListWidget methodsFor: 'actions'!
  363. focus
  364. super focus.
  365. self selectedItem
  366. ifNil: [ self model showClassTemplate ]
  367. !
  368. focusMethodsListWidget
  369. self model announcer announce: HLMethodsListFocus new
  370. !
  371. focusProtocolsListWidget
  372. self model announcer announce: HLProtocolsListFocus new
  373. !
  374. observeModel
  375. self model announcer
  376. on: HLPackageSelected
  377. send: #onPackageSelected:
  378. to: self;
  379. on: HLShowInstanceToggled
  380. send: #onShowInstanceToggled
  381. to: self;
  382. on: HLShowCommentToggled
  383. send: #onShowCommentToggled
  384. to: self;
  385. on: HLClassSelected
  386. send: #onClassSelected:
  387. to: self;
  388. on: HLClassesFocusRequested
  389. send: #onClassesFocusRequested
  390. to: self
  391. !
  392. observeSystem
  393. self model systemAnnouncer
  394. on: ClassAdded
  395. send: #onClassAdded:
  396. to: self;
  397. on: ClassRemoved
  398. send: #onClassRemoved:
  399. to: self;
  400. on: ClassMoved
  401. send: #onClassMoved:
  402. to: self;
  403. on: ClassRenamed
  404. send: #onClassRenamed:
  405. to: self;
  406. on: ClassMigrated
  407. send: #onClassMigrated:
  408. to: self;
  409. on: ClassCommentChanged
  410. send: #onClassCommentChanged:
  411. to: self
  412. !
  413. reselectItem: anItem
  414. self model forceSelectedClass: anItem
  415. !
  416. selectItem: aClass
  417. self model selectedClass: aClass
  418. !
  419. showComment: aBoolean
  420. self model showComment: aBoolean
  421. !
  422. showInstance: aBoolean
  423. self model showInstance: aBoolean
  424. !
  425. toggleShowComment
  426. self model showComment: self showComment not
  427. ! !
  428. !HLClassesListWidget methodsFor: 'private'!
  429. setItemsForPackage: aPackage
  430. self items: (aPackage
  431. ifNil: [ #() ]
  432. ifNotNil: [ (aPackage classes
  433. collect: [ :each | each theNonMetaClass ])
  434. sort: [ :a :b | a name < b name ] ]).
  435. !
  436. setItemsForSelectedPackage
  437. self setItemsForPackage: self model selectedPackage
  438. ! !
  439. !HLClassesListWidget methodsFor: 'reactions'!
  440. onClassAdded: anAnnouncement
  441. | class |
  442. class := anAnnouncement theClass.
  443. (class package = self model selectedPackage or: [
  444. self items includes: class ]) ifFalse: [ ^ self ].
  445. self
  446. setItemsForSelectedPackage;
  447. refresh;
  448. focus
  449. !
  450. onClassCommentChanged: anAnnouncement
  451. | class |
  452. class := anAnnouncement theClass.
  453. class package = self model selectedPackage ifFalse: [ ^ self ].
  454. self
  455. refresh;
  456. focus
  457. !
  458. onClassMigrated: anAnnouncement
  459. | class oldClass |
  460. class := anAnnouncement theClass.
  461. oldClass := anAnnouncement oldClass.
  462. (self items includes: oldClass) ifFalse: [ ^ self ].
  463. self model selectedClass = oldClass ifTrue: [
  464. self model selectedClass: class ].
  465. self setItemsForSelectedPackage.
  466. self
  467. refresh;
  468. focus
  469. !
  470. onClassMoved: anAnnouncement
  471. | class oldPackage |
  472. class := anAnnouncement theClass.
  473. oldPackage := anAnnouncement oldPackage.
  474. (oldPackage = self model selectedPackage or: [
  475. class package = self model selectedPackage ])
  476. ifFalse: [ ^ self ].
  477. oldPackage = self model selectedPackage ifTrue: [
  478. self
  479. selectedItem: nil;
  480. selectItem: nil ].
  481. self setItemsForSelectedPackage.
  482. self
  483. refresh;
  484. focus
  485. !
  486. onClassRemoved: anAnnouncement
  487. | class |
  488. class := anAnnouncement theClass.
  489. class package = self model selectedPackage ifFalse: [ ^ self ].
  490. self
  491. selectItem: nil;
  492. selectedItem: nil.
  493. self setItemsForSelectedPackage.
  494. self
  495. refresh;
  496. focus
  497. !
  498. onClassRenamed: anAnnouncement
  499. anAnnouncement theClass package = self model selectedPackage ifFalse: [ ^ self ].
  500. self setItemsForSelectedPackage.
  501. self
  502. refresh;
  503. focus
  504. !
  505. onClassSelected: anAnnouncement
  506. | selectedClass |
  507. anAnnouncement item ifNil: [ ^ self ].
  508. selectedClass := anAnnouncement item theNonMetaClass.
  509. self selectedItem: selectedClass.
  510. self hasFocus ifFalse: [
  511. self
  512. activateItem: selectedClass;
  513. focus ]
  514. !
  515. onClassesFocusRequested
  516. self focus
  517. !
  518. onPackageSelected: anAnnouncement
  519. self selectedItem: nil.
  520. self setItemsForSelectedPackage.
  521. self refresh
  522. !
  523. onShowCommentToggled
  524. self refresh
  525. !
  526. onShowInstanceToggled
  527. self refresh
  528. ! !
  529. !HLClassesListWidget methodsFor: 'rendering'!
  530. renderButtonsOn: html
  531. | checkbox |
  532. html div
  533. class: 'btn-group';
  534. with: [
  535. html button
  536. class: (String streamContents: [ :str |
  537. str nextPutAll: 'btn'.
  538. self showInstance ifTrue: [
  539. str nextPutAll: ' active' ] ]);
  540. with: 'Instance';
  541. onClick: [ self showInstance: true ].
  542. html button
  543. class: (String streamContents: [ :str |
  544. str nextPutAll: 'btn'.
  545. self showClass ifTrue: [
  546. str nextPutAll: ' active' ] ]);
  547. with: 'Class';
  548. onClick: [ self showInstance: false ] ].
  549. html label
  550. class: 'checkbox';
  551. with: [
  552. checkbox := html input
  553. type: 'checkbox';
  554. onClick: [ self toggleShowComment ].
  555. html with: 'Doc' ].
  556. self showComment ifTrue: [
  557. checkbox at: 'checked' put: 'checked' ]
  558. !
  559. renderItem: aClass level: anInteger on: html
  560. | li |
  561. li := html li.
  562. li asJQuery data: 'item' put: aClass.
  563. li
  564. class: (self listCssClassForItem: aClass);
  565. with: [
  566. html a
  567. with: [
  568. (html tag: 'i') class: (self cssClassForItem: aClass).
  569. self renderItemLabel: aClass level: anInteger on: html ];
  570. onClick: [
  571. self reactivateListItem: li asJQuery ] ].
  572. (self getChildrenOf: aClass) do: [ :each |
  573. self renderItem: each level: anInteger + 1 on: html ]
  574. !
  575. renderItem: aClass on: html
  576. super renderItem: aClass on: html.
  577. (self getChildrenOf: aClass) do: [ :each |
  578. self renderItem: each level: 1 on: html ]
  579. !
  580. renderItemLabel: aClass level: anInteger on: html
  581. html span asJQuery html: (String streamContents: [ :str |
  582. anInteger timesRepeat: [
  583. str nextPutAll: '&nbsp;&nbsp;&nbsp;&nbsp;' ].
  584. str nextPutAll: aClass name ])
  585. !
  586. renderItemLabel: aClass on: html
  587. self renderItemLabel: aClass level: 0 on: html
  588. !
  589. renderListOn: html
  590. (self getRootClassesOf: self items)
  591. do: [ :each | self renderItem: each on: html ]
  592. ! !
  593. !HLClassesListWidget methodsFor: 'testing'!
  594. showClass
  595. ^ self model showInstance not
  596. !
  597. showComment
  598. ^ self model showComment
  599. !
  600. showInstance
  601. ^ self model showInstance
  602. ! !
  603. HLFocusableWidget subclass: #HLDocumentationWidget
  604. instanceVariableNames: 'model'
  605. package: 'Helios-Browser'!
  606. !HLDocumentationWidget commentStamp!
  607. I render the documentation for the selected class!
  608. !HLDocumentationWidget methodsFor: 'accessing'!
  609. documentation
  610. ^ self selectedItem
  611. ifNil: [ '' ]
  612. ifNotNil: [ :item | item comment ifEmpty: [ self defaultDocumentation ] ]
  613. !
  614. head
  615. ^ self selectedItem
  616. ifNil: [ self defaultHead ]
  617. ifNotNil: [ :item | item name ]
  618. !
  619. model
  620. ^ model
  621. !
  622. model: aModel
  623. model := aModel.
  624. self
  625. observeSystem;
  626. observeModel
  627. !
  628. selectedItem
  629. ^ self model selectedClass ifNotNil: [ :class | class theNonMetaClass ]
  630. ! !
  631. !HLDocumentationWidget methodsFor: 'actions'!
  632. editDocumentation
  633. self model editComment
  634. !
  635. observeModel
  636. self model announcer
  637. on: HLClassSelected
  638. send: #onClassSelected:
  639. to: self;
  640. on: HLEditComment
  641. send: #onEditDocumentation
  642. to: self;
  643. on: HLDocumentationFocusRequested
  644. send: #onDocumentationFocusRequested
  645. to: self
  646. !
  647. observeSystem
  648. self model systemAnnouncer
  649. on: ClassCommentChanged
  650. send: #onClassCommentChanged:
  651. to: self
  652. !
  653. selectClass: aClass
  654. self model selectedClass: aClass
  655. !
  656. unregister
  657. super unregister.
  658. self model announcer unregister: self
  659. ! !
  660. !HLDocumentationWidget methodsFor: 'defaults'!
  661. defaultDocumentation
  662. ^ 'No documentation is available for this class.'
  663. !
  664. defaultHead
  665. ^ 'No class selected'
  666. ! !
  667. !HLDocumentationWidget methodsFor: 'reactions'!
  668. onClassCommentChanged: anAnnouncement
  669. self model selectedClass ifNil: [ ^ self ].
  670. anAnnouncement theClass = self model selectedClass theNonMetaClass
  671. ifTrue: [ self refresh ]
  672. !
  673. onClassSelected: anAnnouncement
  674. self refresh
  675. !
  676. onDocumentationFocusRequested
  677. self focus
  678. !
  679. onEditDocumentation
  680. self
  681. request: self model selectedClass theNonMetaClass name, ' comment'
  682. value: self model selectedClass theNonMetaClass comment
  683. do: [ :comment | self setClassComment: comment ]
  684. !
  685. setClassComment: aString
  686. self model setClassComment: aString
  687. ! !
  688. !HLDocumentationWidget methodsFor: 'rendering'!
  689. renderContentOn: html
  690. html div
  691. class: 'doc';
  692. with: [
  693. self
  694. renderHeadOn: html;
  695. renderDocOn: html ]
  696. !
  697. renderDocOn: html
  698. self selectedItem ifNotNil: [
  699. self renderInheritanceOn: html.
  700. html h1
  701. with: 'Overview';
  702. with: [
  703. html button
  704. class: 'button default';
  705. with: 'Edit';
  706. onClick: [ self editDocumentation ] ].
  707. (html div
  708. class: 'markdown';
  709. asJQuery) html: ((Showdown at: 'converter') new makeHtml: self documentation) ]
  710. !
  711. renderHeadOn: html
  712. html div
  713. class: 'head';
  714. with: self head
  715. !
  716. renderInheritanceOn: html
  717. html div
  718. class: 'inheritance';
  719. with: [
  720. html with: 'Subclass of '.
  721. self selectedItem superclass
  722. ifNil: [ html em with: 'nil' ]
  723. ifNotNil: [
  724. html a
  725. with: self selectedItem superclass name;
  726. onClick: [ self selectClass: self selectedItem superclass ] ] ]
  727. ! !
  728. HLToolListWidget subclass: #HLMethodsListWidget
  729. instanceVariableNames: 'selectorsCache'
  730. package: 'Helios-Browser'!
  731. !HLMethodsListWidget commentStamp!
  732. I render a list of methods for the selected protocol.!
  733. !HLMethodsListWidget methodsFor: 'accessing'!
  734. allProtocol
  735. ^ self model allProtocol
  736. !
  737. cssClassForItem: aSelector
  738. | override overriden method |
  739. method := self methodForSelector: aSelector.
  740. override := self isOverride: method.
  741. overriden := self isOverridden: method.
  742. ^ override
  743. ifTrue: [ overriden
  744. ifTrue: [ 'override-overridden' ]
  745. ifFalse: [ 'override' ] ]
  746. ifFalse: [
  747. overriden
  748. ifTrue: [ 'overridden' ]
  749. ifFalse: [ '' ] ]
  750. !
  751. label
  752. ^ 'Methods'
  753. !
  754. methodForSelector: aSelector
  755. ^ self model selectedClass
  756. methodDictionary at: aSelector
  757. !
  758. methodsInProtocol: aString
  759. self model selectedClass ifNil: [ ^ #() ].
  760. ^ aString = self allProtocol
  761. ifTrue: [ self model selectedClass methods ]
  762. ifFalse: [ self model selectedClass methodsInProtocol: aString ]
  763. !
  764. overrideSelectors
  765. ^ self selectorsCache
  766. at: 'override'
  767. ifAbsentPut: [
  768. self model selectedClass allSuperclasses
  769. inject: Set new into: [ :acc :each | acc addAll: each selectors; yourself ] ]
  770. !
  771. overridenSelectors
  772. ^ self selectorsCache
  773. at: 'overriden'
  774. ifAbsentPut: [
  775. self model selectedClass allSubclasses
  776. inject: Set new into: [ :acc :each | acc addAll: each selectors; yourself ] ]
  777. !
  778. selectorsCache
  779. ^ self class selectorsCache
  780. !
  781. selectorsInProtocol: aString
  782. ^ ((self methodsInProtocol: aString)
  783. collect: [ :each | each selector ]) sorted
  784. ! !
  785. !HLMethodsListWidget methodsFor: 'actions'!
  786. focus
  787. super focus.
  788. self selectedItem ifNil: [
  789. self model showMethodTemplate ]
  790. !
  791. observeModel
  792. self model announcer
  793. on: HLProtocolSelected
  794. send: #onProtocolSelected:
  795. to: self;
  796. on: HLShowInstanceToggled
  797. send: #onShowInstanceToggled
  798. to: self;
  799. on: HLMethodSelected
  800. send: #onMethodSelected:
  801. to: self;
  802. on: HLMethodsFocusRequested
  803. send: #onMethodsFocusRequested
  804. to: self
  805. !
  806. observeSystem
  807. self model systemAnnouncer
  808. on: ProtocolAdded
  809. send: #onProtocolAdded:
  810. to: self;
  811. on: ProtocolRemoved
  812. send: #onProtocolRemoved:
  813. to: self;
  814. on: MethodAdded
  815. send: #onMethodAdded:
  816. to: self;
  817. on: MethodRemoved
  818. send: #onMethodRemoved:
  819. to: self;
  820. on: MethodMoved
  821. send: #onMethodMoved:
  822. to: self
  823. !
  824. reselectItem: aSelector
  825. self model forceSelectedMethod: (self methodForSelector: aSelector)
  826. !
  827. selectItem: aSelector
  828. aSelector ifNil: [ ^ self model selectedMethod: nil ].
  829. self model selectedMethod: (self methodForSelector: aSelector)
  830. ! !
  831. !HLMethodsListWidget methodsFor: 'private'!
  832. setItemsForProtocol: aString
  833. ^ self items: (aString
  834. ifNil: [ #() ]
  835. ifNotNil: [ self selectorsInProtocol: aString ])
  836. !
  837. setItemsForSelectedProtocol
  838. self setItemsForProtocol: self model selectedProtocol
  839. ! !
  840. !HLMethodsListWidget methodsFor: 'reactions'!
  841. onMethodAdded: anAnnouncement
  842. self model selectedClass = anAnnouncement method methodClass ifFalse: [ ^ self ].
  843. self setItemsForSelectedProtocol.
  844. self refresh
  845. !
  846. onMethodMoved: anAnnouncement
  847. self model selectedMethod = anAnnouncement method ifFalse: [ ^ self ].
  848. self model selectedProtocol = self model allProtocol ifFalse: [
  849. self
  850. selectedItem: nil;
  851. selectItem: nil;
  852. setItemsForSelectedProtocol;
  853. refresh ]
  854. !
  855. onMethodRemoved: anAnnouncement
  856. | method |
  857. method := anAnnouncement method.
  858. self items detect: [ :each | each = method selector ] ifNone: [ ^ self ].
  859. self selectedItem ifNotNil: [
  860. (method methodClass = self model selectedClass and: [ method selector = self selectedItem ])
  861. ifTrue: [
  862. self selectedItem: nil;
  863. selectItem: nil ] ].
  864. self setItemsForSelectedProtocol.
  865. self
  866. refresh;
  867. focus
  868. !
  869. onMethodSelected: anAnnouncement
  870. | selector method |
  871. method := anAnnouncement item.
  872. selector := method isCompiledMethod
  873. ifTrue: [ method selector ]
  874. ifFalse: [ nil ].
  875. self
  876. selectedItem: selector;
  877. activateItem: selector
  878. !
  879. onMethodsFocusRequested
  880. self focus
  881. !
  882. onProtocolAdded: anAnnouncement
  883. self model selectedClass = anAnnouncement theClass ifFalse: [ ^ self ].
  884. self setItemsForSelectedProtocol.
  885. self refresh.
  886. self focus
  887. !
  888. onProtocolRemoved: anAnnouncement
  889. self model selectedClass = anAnnouncement theClass ifFalse: [ ^ self ].
  890. self setItemsForSelectedProtocol.
  891. self refresh.
  892. self focus
  893. !
  894. onProtocolSelected: anAnnouncement
  895. self selectedItem: nil.
  896. self setItemsForSelectedProtocol.
  897. self refresh
  898. !
  899. onShowInstanceToggled
  900. self onProtocolSelected: nil
  901. ! !
  902. !HLMethodsListWidget methodsFor: 'rendering'!
  903. renderContentOn: html
  904. self model showInstance
  905. ifFalse: [ html div
  906. class: 'class_side';
  907. with: [ super renderContentOn: html ] ]
  908. ifTrue: [ super renderContentOn: html ]
  909. !
  910. renderItemLabel: aSelector on: html
  911. html with: aSelector
  912. ! !
  913. !HLMethodsListWidget methodsFor: 'testing'!
  914. isOverridden: aMethod
  915. ^ self selectorsCache isOverridden: aMethod
  916. !
  917. isOverride: aMethod
  918. ^ self selectorsCache isOverride: aMethod
  919. ! !
  920. HLMethodsListWidget class instanceVariableNames: 'selectorsCache'!
  921. !HLMethodsListWidget class methodsFor: 'accessing'!
  922. selectorsCache
  923. ^ HLSelectorsCache current
  924. ! !
  925. HLToolListWidget subclass: #HLPackagesListWidget
  926. instanceVariableNames: ''
  927. package: 'Helios-Browser'!
  928. !HLPackagesListWidget commentStamp!
  929. I render a list of the system packages.!
  930. !HLPackagesListWidget methodsFor: 'accessing'!
  931. cssClassForItem: anItem
  932. ^ 'package'
  933. !
  934. items
  935. ^ items ifNil: [ self initializeItems ]
  936. !
  937. label
  938. ^ 'Packages'
  939. ! !
  940. !HLPackagesListWidget methodsFor: 'actions'!
  941. focusClassesListWidget
  942. self model announcer announce: HLClassesListFocus new
  943. !
  944. observeModel
  945. self model announcer
  946. on: HLPackageSelected
  947. send: #onPackageSelected:
  948. to: self;
  949. on: HLPackagesFocusRequested
  950. send: #onPackagesFocusRequested
  951. to: self
  952. !
  953. observeSystem
  954. self model systemAnnouncer
  955. on: ClassAdded
  956. send: #onClassAdded:
  957. to: self.
  958. self model systemAnnouncer
  959. on: PackageAdded
  960. send: #onPackageAdded:
  961. to: self
  962. !
  963. reselectItem: anItem
  964. self model forceSelectedPackage: anItem
  965. !
  966. selectItem: aPackage
  967. super selectItem: aPackage.
  968. self model selectedPackage: aPackage
  969. ! !
  970. !HLPackagesListWidget methodsFor: 'initialization'!
  971. initializeItems
  972. ^ items := self model packages
  973. sort: [ :a :b | a name < b name ]
  974. ! !
  975. !HLPackagesListWidget methodsFor: 'reactions'!
  976. onClassAdded: anAnnouncement
  977. "Amber doesn't have yet a global organizer for packages"
  978. (self items includes: anAnnouncement theClass package) ifFalse: [
  979. self
  980. initializeItems;
  981. refresh ]
  982. !
  983. onPackageAdded: anAnnouncement
  984. self
  985. initializeItems;
  986. refresh
  987. !
  988. onPackageSelected: anAnnouncement
  989. | package |
  990. package := anAnnouncement item.
  991. self selectedItem: package.
  992. self hasFocus ifFalse: [
  993. self
  994. activateItem: package;
  995. focus ]
  996. !
  997. onPackagesFocusRequested
  998. self focus
  999. ! !
  1000. !HLPackagesListWidget methodsFor: 'rendering'!
  1001. renderItemLabel: aPackage on: html
  1002. html with: aPackage name
  1003. ! !
  1004. HLToolListWidget subclass: #HLProtocolsListWidget
  1005. instanceVariableNames: ''
  1006. package: 'Helios-Browser'!
  1007. !HLProtocolsListWidget commentStamp!
  1008. I render a list of protocols for the selected class.!
  1009. !HLProtocolsListWidget methodsFor: 'accessing'!
  1010. allProtocol
  1011. ^ self model allProtocol
  1012. !
  1013. cssClassForItem: anItem
  1014. anItem = self allProtocol ifTrue: [ ^ '' ].
  1015. anItem = 'private' ifTrue: [ ^ 'private' ].
  1016. anItem = 'initialization' ifTrue: [ ^ 'initialization' ].
  1017. (anItem match: '^\*') ifTrue: [ ^ 'extension' ].
  1018. ^ ''
  1019. !
  1020. label
  1021. ^ 'Protocols'
  1022. !
  1023. selectedItem
  1024. ^ super selectedItem" ifNil: [ self allProtocol ]"
  1025. ! !
  1026. !HLProtocolsListWidget methodsFor: 'actions'!
  1027. observeModel
  1028. self model announcer
  1029. on: HLClassSelected
  1030. send: #onClassSelected:
  1031. to: self;
  1032. on: HLShowInstanceToggled
  1033. send: #onClassSelected:
  1034. to: self;
  1035. on: HLProtocolSelected
  1036. send: #onProtocolSelected:
  1037. to: self;
  1038. on: HLProtocolsFocusRequested
  1039. send: #onProtocolsFocusRequested
  1040. to: self
  1041. !
  1042. observeSystem
  1043. self model systemAnnouncer
  1044. on: ProtocolAdded
  1045. send: #onProtocolAdded:
  1046. to: self;
  1047. on: ProtocolRemoved
  1048. send: #onProtocolRemoved:
  1049. to: self
  1050. !
  1051. reselectItem: anItem
  1052. self model forceSelectedProtocol: anItem
  1053. !
  1054. selectItem: aString
  1055. self model selectedProtocol: aString
  1056. ! !
  1057. !HLProtocolsListWidget methodsFor: 'private'!
  1058. setItemsForClass: aClass
  1059. self items: (aClass
  1060. ifNil: [ Array with: self allProtocol ]
  1061. ifNotNil: [
  1062. (Array with: self allProtocol)
  1063. addAll: aClass protocols;
  1064. yourself ])
  1065. !
  1066. setItemsForSelectedClass
  1067. self setItemsForClass: self model selectedClass
  1068. ! !
  1069. !HLProtocolsListWidget methodsFor: 'reactions'!
  1070. onClassSelected: anAnnouncement
  1071. self selectedItem: nil.
  1072. self setItemsForSelectedClass.
  1073. self refresh
  1074. !
  1075. onProtocolAdded: anAnnouncement
  1076. | class |
  1077. class := anAnnouncement theClass.
  1078. class = self model selectedClass ifFalse: [ ^ self ].
  1079. self setItemsForSelectedClass.
  1080. self refresh
  1081. !
  1082. onProtocolRemoved: anAnnouncement
  1083. | class protocol |
  1084. class := anAnnouncement theClass.
  1085. protocol := anAnnouncement protocol.
  1086. class = self model selectedClass ifFalse: [ ^ self ].
  1087. self model selectedProtocol = protocol
  1088. ifTrue: [
  1089. self
  1090. selectedItem: nil;
  1091. selectItem: nil ].
  1092. self setItemsForSelectedClass.
  1093. self refresh
  1094. !
  1095. onProtocolSelected: anAnnouncement
  1096. | protocol |
  1097. protocol := anAnnouncement item.
  1098. self selectedItem: protocol.
  1099. protocol ifNil: [ ^ self ].
  1100. self hasFocus ifFalse: [
  1101. self
  1102. activateItem: protocol;
  1103. focus ]
  1104. !
  1105. onProtocolsFocusRequested
  1106. self focus
  1107. ! !
  1108. !HLProtocolsListWidget methodsFor: 'rendering'!
  1109. renderContentOn: html
  1110. self model showInstance
  1111. ifFalse: [ html div
  1112. class: 'class_side';
  1113. with: [ super renderContentOn: html ] ]
  1114. ifTrue: [ super renderContentOn: html ]
  1115. ! !
  1116. Object subclass: #HLSelectorsCache
  1117. instanceVariableNames: 'classesCache'
  1118. package: 'Helios-Browser'!
  1119. !HLSelectorsCache methodsFor: 'accessing'!
  1120. cacheFor: aClass
  1121. aClass ifNil: [ ^ nil ].
  1122. ^ self classesCache
  1123. at: aClass name
  1124. ifAbsentPut: [ self newCacheFor: aClass ]
  1125. !
  1126. classesCache
  1127. ^ classesCache ifNil: [ classesCache := HashedCollection new ]
  1128. ! !
  1129. !HLSelectorsCache methodsFor: 'actions'!
  1130. observeSystem
  1131. SystemAnnouncer current
  1132. on: MethodAdded
  1133. send: #onMethodAdded:
  1134. to: self;
  1135. on: MethodRemoved
  1136. send: #onMethodRemoved:
  1137. to: self
  1138. ! !
  1139. !HLSelectorsCache methodsFor: 'factory'!
  1140. newCacheFor: aClass
  1141. ^ HLClassCache
  1142. on: aClass
  1143. selectorsCache: self
  1144. ! !
  1145. !HLSelectorsCache methodsFor: 'initialization'!
  1146. initialize
  1147. super initialize.
  1148. self observeSystem
  1149. ! !
  1150. !HLSelectorsCache methodsFor: 'private'!
  1151. invalidateCacheFor: aMethod
  1152. (self cacheFor: aMethod methodClass)
  1153. invalidateSelector: aMethod selector
  1154. ! !
  1155. !HLSelectorsCache methodsFor: 'reactions'!
  1156. onMethodAdded: anAnnouncement
  1157. self invalidateCacheFor: anAnnouncement method
  1158. !
  1159. onMethodRemoved: anAnnouncement
  1160. self invalidateCacheFor: anAnnouncement method
  1161. ! !
  1162. !HLSelectorsCache methodsFor: 'testing'!
  1163. isOverridden: aMethod
  1164. ^ (self cacheFor: aMethod methodClass)
  1165. isOverridden: aMethod
  1166. !
  1167. isOverride: aMethod
  1168. ^ (self cacheFor: aMethod methodClass)
  1169. isOverride: aMethod
  1170. ! !
  1171. HLSelectorsCache class instanceVariableNames: 'current'!
  1172. !HLSelectorsCache class methodsFor: 'accessing'!
  1173. current
  1174. ^ current ifNil: [ current := super new ]
  1175. !
  1176. flush
  1177. current := nil
  1178. ! !
  1179. !HLSelectorsCache class methodsFor: 'instance creation'!
  1180. new
  1181. self shouldNotImplement
  1182. ! !