smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-all/iliad-stable/Core/Elements/ILElement.st

178 lines
4.4 KiB
Smalltalk
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"======================================================================
|
| Iliad.ILElement class definition
|
======================================================================"
"======================================================================
|
| Copyright (c) 2008-2010
| Nicolas Petton <petton.nicolas@gmail.com>,
| Sébastien Audier <sebastien.audier@gmail.com>
|
|
| This file is part of the Iliad framework.
|
| Permission is hereby granted, free of charge, to any person obtaining
| a copy of this software and associated documentation files (the
| 'Software'), to deal in the Software without restriction, including
| without limitation the rights to use, copy, modify, merge, publish,
| distribute, sublicense, and/or sell copies of the Software, and to
| permit persons to whom the Software is furnished to do so, subject to
| the following conditions:
|
| The above copyright notice and this permission notice shall be
| included in all copies or substantial portions of the Software.
|
| THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
| EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
| MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
| IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
| CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
| TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
| SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
======================================================================"
ILComposite subclass: ILElement [
| attributes |
<category: 'Iliad-Core-Elements'>
<comment: 'I am the abstract root class of the composite element hierarchy.
I know how to print myself in HTML format with the #printHtmlOn: method'>
= anObject [
<category: 'comparing'>
^super = anObject and: [
self attributes = anObject attributes]
]
hash [
<category: 'comparing'>
^super hash bitXor: self attributes hash
]
attributes [
<category: 'accessing'>
^attributes ifNil: [attributes := Grease.GRSmallDictionary new]
]
attributeAt: akey [
<category: 'accessing'>
^self attributes at: akey ifAbsent: [nil]
]
attributeAt: akey ifAbsent: aBlock [
<category: 'accessing'>
^self attributes at: akey ifAbsent: aBlock
]
attributeAt: akey ifAbsentPut: aBlock [
<category: 'accessing'>
^self attributes at: akey ifAbsentPut: aBlock
]
attributeAt: aKey put: aValue [
<category: 'accessing'>
^self attributes at: aKey put: aValue
]
contentType [
<category: 'accessing'>
self subclassResponsibility
]
tag [
<category: 'accessing'>
^nil
]
printJsonOn: aStream [
<category: 'printing'>
| str |
str := WriteStream on: String new.
self printHtmlOn: str.
str contents printJsonOn: aStream
]
printHtmlOn: aStream [
<category: 'printing'>
self beforePrintHtml.
self printOpenTagOn: aStream.
self childrenDo: [:each |
each printHtmlOn: aStream].
self printCloseTagOn: aStream.
self afterPrintHtml
]
afterPrintHtml [
<category: 'printing'>
]
beforePrintHtml [
<category: 'printing'>
]
printAttribute: anAttribute on: aStream [
<category: 'printing'>
aStream
nextPut: Character space;
nextPutAll: anAttribute key;
nextPutAll: '="'.
anAttribute value printEncodedOn: aStream.
aStream nextPut: $"
]
printCloseTagOn: aStream [
<category: 'printing'>
self tag ifNotNil: [aStream nextPutAll: '</' , self tag , '>']
]
printOpenTagOn: aStream [
<category: 'printing'>
self tag ifNotNil: [
aStream nextPutAll: '<' , self tag.
self attributes associationsDo: [:each |
each value ifNotNil: [
self printAttribute: each on: aStream]].
aStream nextPutAll: '>']
]
build: aBuildable [
<category: 'building'>
aBuildable buildOn: self
]
text: aString [
<category: 'adding-conveniance'>
^self add: (ILTextElement new
contents: aString;
yourself)
]
xml [
<category: 'adding-conveniance'>
^self add: ILXmlElement new
]
attributeError: key [
<category: 'error handling'>
ILAttributeError signal: key
]
doesNotUnderstandAttribute: aString [
<category: 'error handling'>
^(AttributeNotUnderstood element: self attribute: aString) signal
]
respondOn: aResponse [
<category: 'converting'>
self printHtmlOn: aResponse.
aResponse contentType: self contentType
]
]