ResourcePack.st
author Claus Gittinger <cg@exept.de>
Wed, 20 Nov 2002 10:56:43 +0100
changeset 3769 4b0f188d7f5c
parent 3762 968432b99c48
child 3807 ddb031431ff6
permissions -rw-r--r--
ifNotNil eliminated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
claus
parents: 2
diff changeset
     1
"
claus
parents: 2
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
     3
	      All Rights Reserved
5
claus
parents: 2
diff changeset
     4
claus
parents: 2
diff changeset
     5
 This software is furnished under a license and may be used
claus
parents: 2
diff changeset
     6
 only in accordance with the terms of that license and with the
claus
parents: 2
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
claus
parents: 2
diff changeset
     8
 be provided or otherwise made available to, or used by, any
claus
parents: 2
diff changeset
     9
 other person.  No title to or ownership of the software is
claus
parents: 2
diff changeset
    10
 hereby transferred.
claus
parents: 2
diff changeset
    11
"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    12
3263
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3184
diff changeset
    13
"{ Package: 'stx:libview' }"
bd92a12c9316 category changes
Claus Gittinger <cg@exept.de>
parents: 3184
diff changeset
    14
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    15
Dictionary subclass:#ResourcePack
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
    16
	instanceVariableNames:'superPack packsClassName fileReadFailed'
308
54fa63d274fa also allow "/ for comment lines
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
    17
	classVariableNames:'Packs'
54fa63d274fa also allow "/ for comment lines
Claus Gittinger <cg@exept.de>
parents: 292
diff changeset
    18
	poolDictionaries:''
3484
d21aad9e7db9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3422
diff changeset
    19
	category:'Interface-Internationalization'
0
48194c26a46c Initial revision
claus
parents:
diff changeset
    20
!
48194c26a46c Initial revision
claus
parents:
diff changeset
    21
1173
86a212598655 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
    22
!ResourcePack class methodsFor:'documentation'!
46
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    23
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    24
copyright
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    25
"
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    26
 COPYRIGHT (c) 1993 by Claus Gittinger
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
    27
	      All Rights Reserved
5
claus
parents: 2
diff changeset
    28
46
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    29
 This software is furnished under a license and may be used
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    30
 only in accordance with the terms of that license and with the
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    32
 be provided or otherwise made available to, or used by, any
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    33
 other person.  No title to or ownership of the software is
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    34
 hereby transferred.
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    35
"
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    36
!
5
claus
parents: 2
diff changeset
    37
46
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    38
documentation
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
    39
"
1942
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    40
    This class supports easy customization of smalltalk code (i.e. internationalization
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    41
    and viewStyle adaption).
145
claus
parents: 144
diff changeset
    42
    ResourcePacks are class specific, meaning that every subclass of View
1942
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    43
    and ApplicationModel has an instance of ResourcePack (instVar called 'resources') 
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    44
    which is created when the first instance of the view/app is created,
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    45
    and cached in a class-instVar (so the file is only read once).
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
    46
50
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    47
    The resourcePack consists of a mapping from strings to values, which are
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    48
    then used in labels, buttons, menus etc.
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    49
    The resourcePack initializes itself from a file found in 'resources/<className>.rs',
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    50
    where 'className' is built by the usual abbreviation mechanism (see abbrev-files).
1942
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    51
50
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    52
    Conditional mappings are possible, by including lines as:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    53
	#if <expression>
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    54
	#endif
50
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    55
    in the resourcefile. Example:
2faa1f522096 *** empty log message ***
claus
parents: 46
diff changeset
    56
    file 'foo.rs':
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    57
	#if Language == #de
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    58
	'abort' 'Abbruch'
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    59
	#endif
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    60
	#if Language == #fr
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    61
	'abort' 'canceller'
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    62
	#endif
145
claus
parents: 144
diff changeset
    63
claus
parents: 144
diff changeset
    64
    the corresponding resource-strings are accessed (from methods within the class)
claus
parents: 144
diff changeset
    65
    using:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    66
	resources string:'abort'
145
claus
parents: 144
diff changeset
    67
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
    68
    returning the mapped string (i.e. 'Abbruch' if the global Language is set
3422
f00c788fa81f Comment only
Stefan Vogel <sv@exept.de>
parents: 3407
diff changeset
    69
    to #de)..
145
claus
parents: 144
diff changeset
    70
1942
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    71
    If no corresponding entry is found in the resources, the key is returned;
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    72
    alternatively, use:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    73
	resources string:'foo' default:'bar'
1942
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    74
    which returns 'bar', if no resource definition for 'foo' is found.
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    75
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
    76
    Translations can also include arguments, such as:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
    77
	resources string:'really delete %1' with:fileName
145
claus
parents: 144
diff changeset
    78
claus
parents: 144
diff changeset
    79
    This scheme has the advantage, that you can write your programs using your
claus
parents: 144
diff changeset
    80
    native language strings. Later, when new languages are to be supported,
claus
parents: 144
diff changeset
    81
    simply create a resource file for the class and add translations for
claus
parents: 144
diff changeset
    82
    all those strings. (find the keys by looking at users of resource or senders
1942
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    83
    of 'string:*').
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    84
    Notice, that the grammar of different languages may imply a reordering,
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    85
    so the above string becomes the german 'wollen Sie %1 wirklich löschen';
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    86
    so using percent-placeholders is much better than simple concatenations of
1dd0aedfed03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1936
diff changeset
    87
    arguments to the question.
145
claus
parents: 144
diff changeset
    88
claus
parents: 144
diff changeset
    89
    More languages can be added later without any change in the code,
claus
parents: 144
diff changeset
    90
    recompilation or the like. 
claus
parents: 144
diff changeset
    91
    Even by people without access to the source code i.e. which only have the 
claus
parents: 144
diff changeset
    92
    applications binary.
claus
parents: 144
diff changeset
    93
claus
parents: 144
diff changeset
    94
    Also, unsupported languages' strings are simply left unchanged - if you
claus
parents: 144
diff changeset
    95
    write your application in (say) english, and only plan to use it in english,
claus
parents: 144
diff changeset
    96
    no additional work is required (i.e you dont need a resource file then).
claus
parents: 144
diff changeset
    97
    Strings for unknown languages will come in english 
claus
parents: 144
diff changeset
    98
    (which is better than nothing or empty button labels ;-)
claus
parents: 144
diff changeset
    99
claus
parents: 144
diff changeset
   100
    Summary:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   101
	in subclasses of View and ApplicationModel,
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   102
	instead of writing:
145
claus
parents: 144
diff changeset
   103
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   104
		...
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   105
		b := Button label:'press me'
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   106
		...
145
claus
parents: 144
diff changeset
   107
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   108
	always write:
612
8758d0c9933e documentation
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   109
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   110
		...
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   111
		b := Button label:(resources string:'press me')
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   112
		...
145
claus
parents: 144
diff changeset
   113
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   114
	if your class is not a subclass of one of the above, AND you need
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   115
	resource translations, you wont inherit the resources variable
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   116
	(which is automatically initialized).
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   117
	In this case, you have to ask the ResourcePack class explicitely for
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   118
	a corresponding package:
145
claus
parents: 144
diff changeset
   119
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   120
		ResourcePack for:aClassName
145
claus
parents: 144
diff changeset
   121
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   122
	as an example, see how the Date class gets the national names of
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   123
	week & monthnames.
145
claus
parents: 144
diff changeset
   124
612
8758d0c9933e documentation
Claus Gittinger <cg@exept.de>
parents: 462
diff changeset
   125
    [author:]
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   126
	Claus Gittinger
145
claus
parents: 144
diff changeset
   127
"
claus
parents: 144
diff changeset
   128
!
claus
parents: 144
diff changeset
   129
claus
parents: 144
diff changeset
   130
examples
claus
parents: 144
diff changeset
   131
"
claus
parents: 144
diff changeset
   132
    normally, resources are found in files named after their classes sourcefile
claus
parents: 144
diff changeset
   133
    For example, the FileBrowsers resources are found in 'FBrowser.rs'.
claus
parents: 144
diff changeset
   134
    For the examples below, we process resources from a constant string;
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   135
	this is NOT representative.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   136
									[exBegin]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   137
	|stream res|
145
claus
parents: 144
diff changeset
   138
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   139
	stream := ReadStream on:'
145
claus
parents: 144
diff changeset
   140
foo  ''the translation for foo''
3422
f00c788fa81f Comment only
Stefan Vogel <sv@exept.de>
parents: 3407
diff changeset
   141
#if Language == #de
145
claus
parents: 144
diff changeset
   142
bar  ''die deutsche uebersetzung von bar''
claus
parents: 144
diff changeset
   143
baz  ''baz hat den Wert %1''
claus
parents: 144
diff changeset
   144
#endif
3422
f00c788fa81f Comment only
Stefan Vogel <sv@exept.de>
parents: 3407
diff changeset
   145
#if Language == #fr
145
claus
parents: 144
diff changeset
   146
bar  ''bar en francaise''
claus
parents: 144
diff changeset
   147
baz  ''%1, c''''est baz''
claus
parents: 144
diff changeset
   148
#endif
claus
parents: 144
diff changeset
   149
claus
parents: 144
diff changeset
   150
'.
claus
parents: 144
diff changeset
   151
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   152
	res := ResourcePack new readFromResourceStream:stream in:nil.
145
claus
parents: 144
diff changeset
   153
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   154
	Transcript showCR:'baz is translated to: ' , (res string:'baz' with:'1234').
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   155
	Transcript showCR:'bar is translated to: ' , (res string:'bar').
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   156
	Transcript showCR:'foo is translated to: ' , (res string:'foo').
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   157
	Transcript showCR:'fooBar is translated to: ' , (res string:'fooBar').
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   158
									[exEnd]
145
claus
parents: 144
diff changeset
   159
    set the Language to french:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   160
									[exBegin]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   161
	Language := #fr
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   162
									[exEnd]
145
claus
parents: 144
diff changeset
   163
    and repeat the above.
620
c840b7106a64 examples
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   164
    back to english:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   165
									[exBegin]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   166
	Language := #en 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   167
									[exEnd]
620
c840b7106a64 examples
Claus Gittinger <cg@exept.de>
parents: 612
diff changeset
   168
    back to german:
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   169
									[exBegin]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   170
	Language := #de 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   171
									[exEnd]
46
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
   172
"
7b331e9012fd *** empty log message ***
claus
parents: 24
diff changeset
   173
! !
5
claus
parents: 2
diff changeset
   174
1173
86a212598655 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
   175
!ResourcePack class methodsFor:'initialization'!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   176
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   177
flushCachedResourcePacks
24
e810b1be068b *** empty log message ***
claus
parents: 12
diff changeset
   178
    "forget all cached resources - needed after a style change"
e810b1be068b *** empty log message ***
claus
parents: 12
diff changeset
   179
e810b1be068b *** empty log message ***
claus
parents: 12
diff changeset
   180
    Packs := nil.
e810b1be068b *** empty log message ***
claus
parents: 12
diff changeset
   181
    self initialize
e810b1be068b *** empty log message ***
claus
parents: 12
diff changeset
   182
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   183
    "ResourcePack flushCachedResourcePacks"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   184
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   185
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   186
initialize
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   187
    Packs isNil ifTrue:[
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   188
	Packs := WeakArray new:30
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   189
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   190
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   191
    "ResourcePack initialize"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   192
! !
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   193
1173
86a212598655 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
   194
!ResourcePack class methodsFor:'instance creation'!
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   195
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   196
for:aClass
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   197
    "get the full resource definitions for aClass (i.e. with super packs).
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   198
     Also leave the resulting pack in the cache for faster access next time."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   199
3049
d5f2b3f66e37 load resources from package directory, if present
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   200
    |nm pack superPack pkg prj prjDir baseName path|
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   201
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   202
    nm := aClass resourcePackName.
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   203
    pack := self searchCacheFor:nm.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   204
    pack notNil ifTrue:[^ pack].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   205
3049
d5f2b3f66e37 load resources from package directory, if present
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   206
    baseName := (Smalltalk fileNameForClass:nm) , '.rs'.
3046
a8ba36b04c26 search in package directory
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
   207
3049
d5f2b3f66e37 load resources from package directory, if present
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   208
    "/ search in the classes package directory first ...
d5f2b3f66e37 load resources from package directory, if present
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   209
    prjDir := Smalltalk projectDirectoryForClass:aClass.
2970
928387584c9c for non-base system classes (i.e. package not stx:),
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   210
2971
8dd578866ddc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   211
    (prjDir notNil 
8dd578866ddc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   212
    and:[(prjDir := prjDir asFilename) exists
8dd578866ddc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   213
    and:[(prjDir := prjDir construct:'resources') exists
8dd578866ddc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
   214
    and:[(prjDir construct:baseName) exists]]]) ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   215
	pack := self fromFile:baseName directory:prjDir pathName.
2970
928387584c9c for non-base system classes (i.e. package not stx:),
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   216
    ] ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   217
	pack := self fromFile:baseName.
2970
928387584c9c for non-base system classes (i.e. package not stx:),
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   218
    ].
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   219
    aClass == Object ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   220
	pack superPack:(self for:(aClass superclass)).
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   221
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   222
    pack packsClassName:nm.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   223
    self addToCache:pack.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   224
    ^ pack
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   225
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   226
    "
3046
a8ba36b04c26 search in package directory
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
   227
     ResourcePack for:TextView     
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   228
     ResourcePack for:CodeView
3046
a8ba36b04c26 search in package directory
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
   229
     ResourcePack for:Workspace  
3049
d5f2b3f66e37 load resources from package directory, if present
Claus Gittinger <cg@exept.de>
parents: 3047
diff changeset
   230
     ResourcePack for:View      
2970
928387584c9c for non-base system classes (i.e. package not stx:),
Claus Gittinger <cg@exept.de>
parents: 2608
diff changeset
   231
     ResourcePack for:ErrorLogger 
3101
38cc69894380 fix to avoid loosing the directory with #includes
Claus Gittinger <cg@exept.de>
parents: 3097
diff changeset
   232
     ResourcePack for:NewLauncher 
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   233
     Workspace classResources
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   234
    "
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   235
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   236
    "Modified: / 29.1.1998 / 22:42:53 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   237
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   238
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   239
fromFile:aFileName
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   240
    "get the resource definitions from a file in the default directory.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   241
     Uncached low-level entry."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   242
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   243
    ^ self fromFile:aFileName directory:'resources'
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   245
    "
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   246
     ResourcePack fromFile:'SBrowser.rs'
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   247
     ResourcePack fromFile:'FBrowser.rs'
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   248
     ResourcePack fromFile:'Smalltalk.rs'
3678
d180d63dc7ca #fromFile: - accept a Filename
Stefan Vogel <sv@exept.de>
parents: 3567
diff changeset
   249
     ResourcePack fromFile:'Smalltalk.rs' asFilename
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   250
    "
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   251
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   252
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   253
fromFile:aFileName directory:dirName
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   254
    "get the resource definitions from a file in a directory.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   255
     Uncached low-level entry."
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   256
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   257
    |newPack|
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   258
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   259
    newPack := self new.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   260
    newPack readFromFile:aFileName directory:dirName.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   261
    ^ newPack
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   262
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
   263
1173
86a212598655 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
   264
!ResourcePack class methodsFor:'private'!
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   265
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   266
addToCache:aPack
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   267
    |idx|
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   268
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   269
    idx := Packs identityIndexOf:nil.
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   270
    idx == 0 ifTrue:[
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
   271
	idx := Packs identityIndexOf:0
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
   272
    ].
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
   273
    idx == 0 ifTrue:[
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   274
	"
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   275
	 throw away oldest
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   276
	"
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   277
	idx := Packs size.
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   278
	Packs replaceFrom:1 to:idx-1 with:Packs startingAt:2.
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   279
    ].
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   280
    Packs at:idx put:aPack
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   281
!
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   282
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   283
searchCacheFor:aClassname
998
f3d624613a74 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 697
diff changeset
   284
    |sz "{ Class: SmallInteger }" |
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   285
24
e810b1be068b *** empty log message ***
claus
parents: 12
diff changeset
   286
    Packs isNil ifTrue:[
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   287
	self initialize.
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   288
	^ nil
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   289
    ].
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   290
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   291
    sz := Packs size.
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   292
    1 to:sz do:[:idx |
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   293
	|aPack|
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   294
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   295
	aPack := Packs at:idx.
1078
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
   296
	(aPack notNil 
f7b6f15899ab changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
   297
	and:[aPack ~~ 0]) ifTrue:[
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   298
	    aClassname = aPack packsClassName ifTrue:[
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   299
		"
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   300
		 bring to end for LRU
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   301
		"
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   302
		Packs replaceFrom:idx to:sz-1 with:Packs startingAt:idx+1.
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   303
		Packs at:sz put:aPack.
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   304
		^ aPack
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   305
	    ]
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   306
	]
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   307
    ].
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   308
    ^ nil
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   309
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   310
    "
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   311
     ResourcePack searchCacheFor:'TextView' 
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   312
    "
54
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   313
! !
29a6b2f8e042 *** empty log message ***
claus
parents: 50
diff changeset
   314
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   315
!ResourcePack methodsFor:'accessing'!
48194c26a46c Initial revision
claus
parents:
diff changeset
   316
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   317
array:anArray
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   318
    "translate a collection of strings"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   319
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   320
    ^ anArray collect:[:r | self at:r default:r]
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   321
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   322
    "
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   323
     Launcher classResources array:#('file' 'classes') 
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   324
    "
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   325
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   326
    "Modified: / 29.1.1998 / 22:44:22 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   327
!
48194c26a46c Initial revision
claus
parents:
diff changeset
   328
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   329
at:aKey
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   330
    "translate a string"
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   331
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   332
    ^ self at:aKey ifAbsent:aKey
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   333
!
48194c26a46c Initial revision
claus
parents:
diff changeset
   334
48194c26a46c Initial revision
claus
parents:
diff changeset
   335
at:aKey default:default
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   336
    "translate a string"
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   337
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   338
    ^ self at:aKey ifAbsent:default
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   339
!
48194c26a46c Initial revision
claus
parents:
diff changeset
   340
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   341
at:aKey ifAbsent:defaultValue
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   342
    "translate a string"
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   343
3549
8c924bf310ed lower case first <-> upper case first
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   344
    |val alternativeKey|
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   345
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   346
    aKey notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   347
	val := super at:aKey ifAbsent:nil.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   348
	val notNil ifTrue:[^ val].
3549
8c924bf310ed lower case first <-> upper case first
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   349
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   350
	"/ try with case-first swapped...
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   351
	(aKey isString 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   352
	and:[aKey size > 0
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   353
	and:[aKey first isLetter]]) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   354
	    alternativeKey := aKey first isUppercase 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   355
				ifTrue:[aKey asLowercaseFirst]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   356
				ifFalse:[aKey asUppercaseFirst].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   357
	    val := super at:alternativeKey ifAbsent:nil.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   358
	    val notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   359
		aKey first isUppercase 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   360
		    ifTrue:[^val asUppercaseFirst].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   361
		^ val asLowercaseFirst.                
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   362
	    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   363
	].
3549
8c924bf310ed lower case first <-> upper case first
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   364
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   365
	superPack notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   366
	    ^ superPack at:aKey ifAbsent:defaultValue.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   367
	].
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   368
    ].
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   369
    ^ defaultValue value
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   370
3549
8c924bf310ed lower case first <-> upper case first
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   371
    "Modified: / 16.11.2001 / 12:25:33 / cg"
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   372
!
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   373
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   374
name:aKey default:default
2461
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   375
    "translate a string.
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   376
     Obsolete - use #string:default:"
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   377
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   378
    ^ self at:aKey ifAbsent:default
2
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   379
!
b35336ab0de3 *** empty log message ***
claus
parents: 0
diff changeset
   380
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   381
string:s
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   382
    "translate (retrieve) a string - if not present, return s"
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   383
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   384
    ^ self at:s ifAbsent:s
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   385
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   386
    "
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   387
     NewLauncher classResources
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   388
	string:'LICENCEFILE' 
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   389
    "
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   390
!
48194c26a46c Initial revision
claus
parents:
diff changeset
   391
2461
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   392
string:s default:defaultString
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   393
    "translate (retrieve) a string - if not present, return defaultString"
2461
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   394
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   395
    ^ self at:s ifAbsent:defaultString
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   396
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   397
    "
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   398
     NewLauncher classResources
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   399
	string:'fooBar' default:'Hello world'  
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   400
    "
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   401
2461
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   402
!
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   403
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   404
string:s default:defaultString with:arg
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   405
    "translate and expand arg"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   406
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   407
    ^ self string:s default:defaultString withArgs:(Array with:arg)
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   408
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   409
    "
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   410
     NewLauncher classResources
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   411
	string:'%1 fooBar' default:'Hello %1' with:'foo' 
3097
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   412
    "
b2cca70d5d55 examples
Claus Gittinger <cg@exept.de>
parents: 3082
diff changeset
   413
2461
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   414
!
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   415
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   416
string:s default:defaultString with:arg1 with:arg2
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   417
    "translate and expand args"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   418
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   419
    ^ self string:s default:defaultString withArgs:(Array with:arg1 with:arg2)
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   420
!
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   421
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   422
string:s default:defaultString with:arg1 with:arg2 with:arg3
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   423
    "translate and expand args"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   424
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   425
    ^ self string:s default:defaultString withArgs:(Array with:arg1 with:arg2 with:arg3)
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   426
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   427
    "Created: 9.12.1995 / 19:08:50 / cg"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   428
!
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   429
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   430
string:s default:defaultString with:arg1 with:arg2 with:arg3 with:arg4
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   431
    "translate and expand args"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   432
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   433
    ^ self string:s default:defaultString withArgs:(Array with:arg1 with:arg2 with:arg3 with:arg4)
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   434
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   435
    "Created: 9.9.1996 / 18:52:14 / cg"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   436
!
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   437
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   438
string:s default:defaultString withArgs:argArray
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   439
    "translate and expand args"
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   440
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   441
    |template|
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   442
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   443
    template := self at:s ifAbsent:defaultString.
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   444
    ^ template expandPlaceholdersWith:argArray
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   445
!
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   446
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   447
string:s with:arg
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   448
    "translate and expand arg"
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   449
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   450
    ^ self string:s withArgs:(Array with:arg)
48194c26a46c Initial revision
claus
parents:
diff changeset
   451
!
48194c26a46c Initial revision
claus
parents:
diff changeset
   452
48194c26a46c Initial revision
claus
parents:
diff changeset
   453
string:s with:arg1 with:arg2
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   454
    "translate and expand args"
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   455
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   456
    ^ self string:s withArgs:(Array with:arg1 with:arg2)
48194c26a46c Initial revision
claus
parents:
diff changeset
   457
!
48194c26a46c Initial revision
claus
parents:
diff changeset
   458
292
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   459
string:s with:arg1 with:arg2 with:arg3
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   460
    "translate and expand args"
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   461
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   462
    ^ self string:s withArgs:(Array with:arg1 with:arg2 with:arg3)
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   463
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   464
    "Created: 9.12.1995 / 19:08:50 / cg"
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   465
!
62799b2ab9ae new method: string:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
   466
1042
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   467
string:s with:arg1 with:arg2 with:arg3 with:arg4
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   468
    "translate and expand args"
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   469
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   470
    ^ self string:s withArgs:(Array with:arg1 with:arg2 with:arg3 with:arg4)
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   471
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   472
    "Created: 9.9.1996 / 18:52:14 / cg"
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   473
!
ddb262303ccd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 998
diff changeset
   474
3184
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   475
string:s with:arg1 with:arg2 with:arg3 with:arg4 with:arg5
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   476
    "translate and expand args"
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   477
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   478
    ^ self string:s withArgs:(Array with:arg1 with:arg2 with:arg3 with:arg4 with:arg5)
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   479
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   480
!
b8f6c186fff5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3102
diff changeset
   481
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   482
string:s withArgs:argArray
123
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   483
    "translate and expand args"
9f8c7f20fdb2 *** empty log message ***
claus
parents: 118
diff changeset
   484
135
claus
parents: 123
diff changeset
   485
    |template|
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   486
2461
3c212ae910ec added #string:default:with* methods.
Claus Gittinger <cg@exept.de>
parents: 2459
diff changeset
   487
    template := self at:s ifAbsent:s.
135
claus
parents: 123
diff changeset
   488
    ^ template expandPlaceholdersWith:argArray
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   489
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
   490
3317
fbad8f950059 Spelling
Stefan Vogel <sv@exept.de>
parents: 3263
diff changeset
   491
!ResourcePack methodsFor:'accessing-internals'!
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   492
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   493
name:aKey
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   494
    "translate a string"
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   495
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   496
    ^ self at:aKey ifAbsent:aKey
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   497
!
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   498
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   499
packsClassName
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   500
    ^ packsClassName
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   501
!
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   502
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   503
packsClassName:aString
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   504
    packsClassName := aString
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   505
!
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   506
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   507
superPack:anotherResourcePack
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   508
    superPack := anotherResourcePack
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   509
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   510
    "Created: / 29.1.1998 / 22:43:09 / cg"
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   511
! !
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   512
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   513
!ResourcePack methodsFor:'file reading'!
48194c26a46c Initial revision
claus
parents:
diff changeset
   514
684
4c7efce60043 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   515
fileReadFailed
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   516
    "return true, if the pack does not really contain
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   517
     valid translations, since the fileRead failed.
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   518
     However, all inherited translations are still available
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   519
     through the receiver"
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   520
687
d2cf3cd18f65 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 686
diff changeset
   521
    ^ fileReadFailed ~~ false
684
4c7efce60043 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   522
2033
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   523
    "Created: / 14.5.1996 / 10:19:26 / cg"
dad8f0ee02f4 do not merge superPacks data;
Claus Gittinger <cg@exept.de>
parents: 1956
diff changeset
   524
    "Modified: / 29.1.1998 / 22:46:38 / cg"
684
4c7efce60043 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   525
!
4c7efce60043 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   526
1894
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   527
nonexistingFileRead
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   528
    "asked to read definitions for a non-existing file.
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   529
     Here, this is legal and ignored (typically using inherited resources).
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   530
     However, subclasses (such as styleSheet) may flag it as an error."
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   531
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   532
    ^ nil
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   533
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   534
    "Created: 6.9.1997 / 11:38:53 / cg"
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   535
!
9982e96dff75 better behavior if no stylesheet is present.
Claus Gittinger <cg@exept.de>
parents: 1803
diff changeset
   536
2291
eaac1c5f2a61 show fileName if a line has error.
Claus Gittinger <cg@exept.de>
parents: 2153
diff changeset
   537
processLine:aLine encoding:encoding file:fileName
145
claus
parents: 144
diff changeset
   538
    "process a single valid line (i.e. #ifdef & #include has already been processed)"
claus
parents: 144
diff changeset
   539
2314
aa3e318107f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   540
    |lineString name stream l rest macroName value 
aa3e318107f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   541
     conditional hasError|
144
claus
parents: 135
diff changeset
   542
145
claus
parents: 144
diff changeset
   543
    lineString := aLine withoutSeparators.
144
claus
parents: 135
diff changeset
   544
    name := nil.
claus
parents: 135
diff changeset
   545
    (lineString at:1) == $' ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   546
	stream := ReadStream on:lineString.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   547
	stream signalAtEnd:false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   548
	name := String 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   549
		    readFrom:stream 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   550
		    onError:[('ResourcePack [warning]: invalid line <'
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   551
			     ,lineString
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   552
			     ,'> in file:'
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   553
			     , fileName
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   554
			    ) errorPrintCR. nil].
158
claus
parents: 145
diff changeset
   555
"/ OLD: l := stream position
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   556
	l := stream position + 1.
144
claus
parents: 135
diff changeset
   557
claus
parents: 135
diff changeset
   558
"/                          l := lineString indexOf:$' startingAt:2.
claus
parents: 135
diff changeset
   559
"/                          l ~~ 0 ifTrue:[
claus
parents: 135
diff changeset
   560
"/                              name := (lineString copyFrom:2 to:l-1).
claus
parents: 135
diff changeset
   561
"/                              l := l + 1
claus
parents: 135
diff changeset
   562
"/                          ]
claus
parents: 135
diff changeset
   563
    ] ifFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   564
	l := lineString indexOfSeparatorStartingAt:1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   565
	l ~~ 0 ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   566
	    name := lineString copyFrom:1 to:l-1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   567
	]
144
claus
parents: 135
diff changeset
   568
    ].
claus
parents: 135
diff changeset
   569
    name notNil ifTrue:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   570
	hasError := false.
2153
eb2d1caa5dfd added ? construct.
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   571
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   572
	rest := (lineString copyFrom:l) withoutSeparators.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   573
	"
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   574
	 skip <type> if present
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   575
	"
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   576
	(rest startsWith:$<) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   577
	     l := lineString indexOf:$> startingAt:l.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   578
	     rest := (lineString copyFrom:l+1) withoutSeparators.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   579
	].
2153
eb2d1caa5dfd added ? construct.
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   580
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   581
	conditional := false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   582
	(rest startsWith:$?) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   583
	    rest := (rest copyFrom:2) withoutSeparators.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   584
	    conditional := true.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   585
	].
2153
eb2d1caa5dfd added ? construct.
Claus Gittinger <cg@exept.de>
parents: 2111
diff changeset
   586
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   587
	(rest startsWith:$=) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   588
	    rest := rest copyFrom:2.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   589
	    stream := ReadStream on:rest.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   590
	    macroName := stream nextAlphaNumericWord.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   591
	    [stream peek == $.] whileTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   592
		stream next.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   593
		stream peek notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   594
		    macroName := macroName , '.' , (stream nextAlphaNumericWord)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   595
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   596
	    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   597
	    rest := stream upToEnd.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   598
	    value := self at:macroName ifAbsent:nil.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   599
	    (value isNil) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   600
		hasError := true.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   601
		('ResourcePack [warning]: bad (nil-valued) macro: ' , macroName) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   602
		('ResourcePack [warning]: in line: ' , lineString) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   603
		('ResourcePack [warning]: in file: ' , fileName) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   604
	    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   605
	    value isBlock ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   606
		value := value value
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   607
	    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   608
	    value := Compiler evaluate:('self ' , rest)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   609
			      receiver:value
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   610
			      notifying:nil
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   611
			      compile:false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   612
	    (value == #Error) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   613
		hasError := true.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   614
		('ResourcePack [warning]: error in line: "self ' , rest , '"') errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   615
		('ResourcePack [warning]: in file: ' , fileName) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   616
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   617
	] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   618
	    value := Compiler evaluate:rest compile:false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   619
	    (value == #Error) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   620
		hasError := true.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   621
		('ResourcePack [warning]: error in line: "' , rest , '"') errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   622
		('ResourcePack [warning]: in file: ' , fileName) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   623
	    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   624
		encoding notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   625
		    value isString ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   626
			value := value decodeFrom:encoding
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   627
		    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   628
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   629
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   630
	].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   631
	hasError ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   632
	    (conditional not
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   633
	    or:[(self includesKey:name) not]) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   634
		self at:name put:value.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   635
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   636
	]
144
claus
parents: 135
diff changeset
   637
    ]
462
423f8426fefc added #encoding directive (I am lazy)
Claus Gittinger <cg@exept.de>
parents: 444
diff changeset
   638
2291
eaac1c5f2a61 show fileName if a line has error.
Claus Gittinger <cg@exept.de>
parents: 2153
diff changeset
   639
    "Created: / 30.8.1998 / 12:35:37 / cg"
2608
a36fad717685 allow block-values in =xxx
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
   640
    "Modified: / 28.4.1999 / 22:23:14 / cg"
144
claus
parents: 135
diff changeset
   641
!
claus
parents: 135
diff changeset
   642
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   643
readFromFile:fileName directory:dirName
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   644
    "read definitions from a file in a directory"
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   645
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   646
    |inStream ok|
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   647
686
152d8437af35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
   648
    fileReadFailed := false.
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   649
    dirName = 'resources' ifTrue:[
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   650
        inStream := Smalltalk resourceFileStreamFor:fileName
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   651
    ] ifFalse:[
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   652
        inStream := Smalltalk 
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   653
                        systemFileStreamFor:(dirName 
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   654
                                                isNil ifTrue:[fileName]
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   655
                                                ifFalse:[dirName asFilename construct:fileName]).
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   656
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   657
    inStream isNil ifTrue:[
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   658
        "
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   659
         an empty pack
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   660
        "
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   661
        ^ self nonexistingFileRead
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   662
    ].
2996
59278dabe9a6 catch errors when reading #if
Stefan Vogel <sv@exept.de>
parents: 2971
diff changeset
   663
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   664
    ok := self readFromResourceStream:inStream in:dirName.
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   665
    inStream close.
686
152d8437af35 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 685
diff changeset
   666
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   667
    ok ifFalse:[
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   668
        fileReadFailed := true.
684
4c7efce60043 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 620
diff changeset
   669
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   670
        ('ResourcePack [warning]: ''' , inStream pathName , ''' contains error(s) - data may be incomplete.') errorPrintCR.
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   671
    ].
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   672
1173
86a212598655 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
   673
    "Modified: 10.1.1997 / 18:05:17 / cg"
244
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   674
!
83218faf792c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   675
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   676
readFromResourceStream:inStream in:dirName
145
claus
parents: 144
diff changeset
   677
    "read definitions from a stream. THe dirName argument is required to
210
0f942dafc85a gracefully handle errors when reading resource files
Claus Gittinger <cg@exept.de>
parents: 177
diff changeset
   678
     specify where #include files are searched for.
0f942dafc85a gracefully handle errors when reading resource files
Claus Gittinger <cg@exept.de>
parents: 177
diff changeset
   679
     Return true, if the style sheet could be read without errors, false otherwise."
145
claus
parents: 144
diff changeset
   680
3567
f85c170f14e8 allow expression evaluation in styleSheet
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   681
    |lineString l lNo rest value ifLevel skipping first ok encoding pack errorHandler|
462
423f8426fefc added #encoding directive (I am lazy)
Claus Gittinger <cg@exept.de>
parents: 444
diff changeset
   682
423f8426fefc added #encoding directive (I am lazy)
Claus Gittinger <cg@exept.de>
parents: 444
diff changeset
   683
    encoding := nil.
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   684
210
0f942dafc85a gracefully handle errors when reading resource files
Claus Gittinger <cg@exept.de>
parents: 177
diff changeset
   685
    ok := true.
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   686
    ifLevel := 0.
48194c26a46c Initial revision
claus
parents:
diff changeset
   687
    skipping := false.
210
0f942dafc85a gracefully handle errors when reading resource files
Claus Gittinger <cg@exept.de>
parents: 177
diff changeset
   688
    lNo := 0.
3567
f85c170f14e8 allow expression evaluation in styleSheet
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   689
f85c170f14e8 allow expression evaluation in styleSheet
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   690
    errorHandler := [:ex | 
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   691
			|con|
3567
f85c170f14e8 allow expression evaluation in styleSheet
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   692
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   693
			('ResourcePack [warning]: ''' , ex errorString , '''') errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   694
			('ResourcePack [info]: file: ' , inStream pathName printString , ' line: ' , lNo printString , ': ''' , lineString , '''') errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   695
			con := ex suspendedContext.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   696
			('ResourcePack [info]: in: ' , con fullPrintString) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   697
			con := con sender.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   698
			('ResourcePack [info]:   : ' , con fullPrintString) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   699
			con := con sender.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   700
			('ResourcePack [info]:   : ' , con fullPrintString) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   701
			value := nil.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   702
			ok := false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   703
		    ].
3567
f85c170f14e8 allow expression evaluation in styleSheet
Claus Gittinger <cg@exept.de>
parents: 3549
diff changeset
   704
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   705
    [inStream atEnd] whileFalse:[
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   706
	lineString := inStream nextLine. lNo := lNo + 1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   707
	[lineString notNil and:[lineString endsWith:$\]] whileTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   708
	    lineString := lineString copyWithoutLast:1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   709
	    l := inStream nextLine. lNo := lNo + 1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   710
	    l notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   711
		lineString := lineString , l.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   712
	    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   713
	].
177
claus
parents: 158
diff changeset
   714
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   715
	(lineString size > 0) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   716
	    first := lineString at:1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   717
	    "/
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   718
	    "/ for your convenience: treat ; AND "/ as comment-line
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   719
	    "/
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   720
	    ((first == $;) or:[lineString startsWith:'"/']) ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   721
		first == $# ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   722
		    "/ a directive
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   723
		    lineString := (lineString copyFrom:2) withoutSpaces.
72
3e84121988c3 *** empty log message ***
claus
parents: 54
diff changeset
   724
3762
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   725
		    (lineString startsWith:'if') ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   726
			skipping ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   727
			    rest := lineString copyFrom:3.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   728
			    ErrorSignal 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   729
				handle:errorHandler 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   730
				do:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   731
				    value := Compiler evaluate:rest compile:false].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   732
			    (value == #Error) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   733
				('ResourcePack [warning]: error in resource:' , lineString) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   734
			    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   735
			    (value == false) ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   736
				skipping := true
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   737
			    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   738
			].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   739
			ifLevel := ifLevel + 1
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   740
		    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   741
			(lineString startsWith:'endif') ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   742
			    ifLevel := ifLevel - 1.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   743
			    ifLevel == 0 ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   744
				skipping := false
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   745
			    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   746
			] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   747
			    (lineString startsWith:'else') ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   748
				skipping := skipping not
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   749
			    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   750
				skipping ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   751
				    (lineString startsWith:'include') ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   752
					(lineString startsWith:'includeResourcesFor') ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   753
					    "/ include those resources ...
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   754
					    rest := lineString copyFrom:('includeResourcesFor' size + 1).
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   755
					    value := Compiler evaluate:rest compile:false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   756
					    value isBehavior ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   757
						pack := self class for:value.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   758
						pack notNil ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   759
						    self declareAllFrom:pack.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   760
						]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   761
					    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   762
					] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   763
					    rest := lineString copyFrom:('include' size + 1).
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   764
					    value := Compiler evaluate:rest compile:false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   765
					    value isString ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   766
						('ResourcePack [warning]: bad include filename: ' , value printString) errorPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   767
						('ResourcePack [info]: line ' , lNo printString , ': ''' , lineString , '''') infoPrintCR.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   768
					    ] ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   769
						self readFromFile:value directory:dirName
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   770
					    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   771
					]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   772
				    ] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   773
					(lineString startsWith:'encoding') ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   774
					    rest := lineString copyFrom:9.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   775
					    encoding := rest withoutSeparators asSymbol
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   776
					]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   777
				    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   778
				]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   779
			    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   780
			]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   781
		    ].
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   782
		] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   783
		    skipping ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   784
			ErrorSignal 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   785
			    handle:errorHandler 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   786
			    do:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   787
				(lineString at:1) == $!! ifTrue:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   788
				    "/ evaluate the rest
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   789
				    Compiler evaluate:(lineString copyFrom:2)
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   790
						      receiver:nil
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   791
						      notifying:nil
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   792
						      compile:false.
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   793
				] ifFalse:[
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   794
				    "/ process as resource
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   795
				    self 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   796
					processLine:lineString 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   797
					encoding:encoding 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   798
					file:(inStream isFileStream 
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   799
						ifTrue:[inStream pathName]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   800
						ifFalse:['---'])
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   801
				]]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   802
		    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   803
		]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   804
	    ]
968432b99c48 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3701
diff changeset
   805
	]
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   806
    ].
210
0f942dafc85a gracefully handle errors when reading resource files
Claus Gittinger <cg@exept.de>
parents: 177
diff changeset
   807
    ^ ok
177
claus
parents: 158
diff changeset
   808
2291
eaac1c5f2a61 show fileName if a line has error.
Claus Gittinger <cg@exept.de>
parents: 2153
diff changeset
   809
    "Modified: / 31.8.1995 / 02:33:45 / claus"
eaac1c5f2a61 show fileName if a line has error.
Claus Gittinger <cg@exept.de>
parents: 2153
diff changeset
   810
    "Modified: / 30.8.1998 / 12:35:24 / cg"
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   811
! !
48194c26a46c Initial revision
claus
parents:
diff changeset
   812
1173
86a212598655 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1078
diff changeset
   813
!ResourcePack class methodsFor:'documentation'!
251
915de9a65169 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
   814
915de9a65169 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
   815
version
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   816
    ^ '$Header: /cvs/stx/stx/libview/ResourcePack.st,v 1.74 2002-11-20 09:56:43 cg Exp $'
251
915de9a65169 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 244
diff changeset
   817
! !
3769
4b0f188d7f5c ifNotNil eliminated
Claus Gittinger <cg@exept.de>
parents: 3762
diff changeset
   818
0
48194c26a46c Initial revision
claus
parents:
diff changeset
   819
ResourcePack initialize!