2
2
layout : default
3
3
---
4
4
5
- h1. Final Chapter: Ruby's future
5
+ Final Chapter: Ruby's future
6
+ ----------------------------
6
7
7
- h2. Issues to be addressed
8
+ Issues to be addressed
9
+ ======================
8
10
9
11
` ruby ` isn't 'completely finished' software. It's still being developed,
10
12
there are still a lot of issues. Firstly, we want to try removing
@@ -14,7 +16,7 @@ The order of the topics is mostly in the same order as the chapters of
14
16
this book.
15
17
16
18
17
- h3. Performance of GC
19
+ ### Performance of GC
18
20
19
21
The performance of the current GC might be
20
22
"not notably bad, but not notably good".
@@ -41,7 +43,7 @@ However, if such application will actually be created in the future,
41
43
there might be the necessity to consider Incremental GC.
42
44
43
45
44
- h3. Implementation of parser
46
+ ### Implementation of parser
45
47
46
48
As we saw in Part 2, the implementation of ` ruby ` parser has already utilized
47
49
` yacc ` 's ability to almost its limit, thus I can't think it can endure further
@@ -51,7 +53,7 @@ and it's sad if we could not express another demanded grammar because of the
51
53
limitation of ` yacc ` .
52
54
53
55
54
- h3. Reuse of parser
56
+ ### Reuse of parser
55
57
56
58
Ruby's parser is very complex. In particular, dealing with around ` lex_state `
57
59
seriously is very hard. Due to this, embedding a Ruby program or creating a
@@ -84,22 +86,22 @@ while parsing.
84
86
85
87
86
88
87
- h3. Hiding Code
89
+ ### Hiding Code
88
90
89
91
With current ` ruby ` , it does not work without the source code of the program to
90
92
run. Thus, people who don't want others to read their source code might have
91
93
trouble.
92
94
93
95
94
- h3. Interpretor Object
96
+ ### Interpretor Object
95
97
96
98
Currently each process cannot have multiple ` ruby ` interpretors,
97
99
this was discussed in Chapter 13.
98
100
If having multiple interpretors is practically possible, it seems better,
99
101
but is it possible to implement such thing?
100
102
101
103
102
- h3. The structure of evaluator
104
+ ### The structure of evaluator
103
105
104
106
Current ` eval.c ` is, above all, too complex.
105
107
Embedding Ruby's stack frames to machine stack could occasionally become the
@@ -110,7 +112,7 @@ aggressively can easily cause slowing down because `setjmp()` set aside all
110
112
things in registers.
111
113
112
114
113
- h3. The performance of evaluator
115
+ ### The performance of evaluator
114
116
115
117
` ruby ` is already enough fast for ordinary use.
116
118
But aside from it, regarding a language processor,
@@ -120,7 +122,7 @@ what can we do?
120
122
In such case, the first thing we have to do is profiling.
121
123
So I profiled.
122
124
123
- <pre class="emlist">
125
+ ``` TODO-lang
124
126
% cumulative self self total
125
127
time seconds seconds calls ms/call ms/call name
126
128
20.25 1.64 1.64 2638359 0.00 0.00 rb_eval
@@ -132,7 +134,7 @@ So I profiled.
132
134
5.19 5.27 0.42 388066 0.00 0.00 st_foreach
133
135
3.46 5.55 0.28 8605866 0.00 0.00 rb_gc_mark
134
136
2.22 5.73 0.18 3819588 0.00 0.00 call_cfunc
135
- </pre>
137
+ ```
136
138
137
139
This is a profile when running some application but
138
140
this is approximately the profile of a general Ruby program.
@@ -152,7 +154,7 @@ In other words, without changing the way of thinking fundamentally,
152
154
there's no room to improve.
153
155
154
156
155
- h3. The implementation of thread
157
+ ### The implementation of thread
156
158
157
159
This was also discussed in Chapter 19. There are really a lot of issues about
158
160
the implementation of the current ruby's thread. Particularly, it cannot mix
@@ -164,13 +166,14 @@ cannot continue to use eternally, isn't it?
164
166
165
167
166
168
167
- h2. `ruby` 2
169
+ ` ruby ` 2
170
+ ========
168
171
169
172
Subsequently, on the other hand, I'll introduce the trend of the original ` ruby ` ,
170
173
how it is trying to counter these issues.
171
174
172
175
173
- h3. Rite
176
+ ### Rite
174
177
175
178
At the present time, ruby's edge is 1.6.7 as the stable version and 1.7.3 as the
176
179
development version, but perhaps the next stable version 1.8 will come out in
@@ -195,7 +198,7 @@ entirely just a "plan". If you expect so much, it's possible it will turn out
195
198
disappointments. Therefore, for now, let's just expect slightly.
196
199
197
200
198
- h3. The language to write
201
+ ### The language to write
199
202
200
203
Firstly, the language to use. Definitely it will be C. Mr. Matsumoto said to
201
204
` ruby-talk ` , which is the English mailing list for Ruby,
@@ -210,7 +213,7 @@ so not to increase extra efforts around this is necessary.
210
213
However, chances are good that it will be ANSI C next time.
211
214
212
215
213
- h3. GC
216
+ ### GC
214
217
215
218
Regarding the implementation of GC,
216
219
the good start point would be
@@ -223,7 +226,7 @@ perpetually, but anyway it will proceed for the direction to which we can expect
223
226
somewhat improvement on speed.
224
227
225
228
226
- h3. Parser
229
+ ### Parser
227
230
228
231
Regarding the specification, it's very likely that the nested method calls
229
232
without parentheses will be forbidden. As we've seen, ` command_call ` has a great
@@ -237,7 +240,7 @@ possible to implement such complex thing by hand? Such anxiety might left.
237
240
Whichever way we choose, the path must be thorny.
238
241
239
242
240
- h3. Evaluator
243
+ ### Evaluator
241
244
242
245
The evaluator will be completely recreated.
243
246
Its aims are mainly to improve speed and to simplify the implementation.
@@ -285,7 +288,7 @@ For another example, Python is a bytecode interpretor.
285
288
286
289
287
290
288
- h3. Thread
291
+ ### Thread
289
292
290
293
Regarding thread, the thing is native thread support.
291
294
The environment around thread has been significantly improved,
@@ -308,7 +311,7 @@ and it is rarely actually used. Therefore there might be no problem.
308
311
309
312
310
313
311
- h3. M17N
314
+ ### M17N
312
315
313
316
In addition, I'd like to mention a few things about class libraries.
314
317
This is about multi-lingualization (M17N for short).
@@ -325,7 +328,7 @@ it will be absorbed at some point in the middle of 1.9.
325
328
326
329
327
330
328
- h3. IO
331
+ ### IO
329
332
330
333
331
334
The ` IO ` class in current Ruby is a simple wrapper of ` stdio ` ,
@@ -342,7 +345,8 @@ Therefore, it seems Rite will have its own `stdio`.
342
345
343
346
344
347
345
- h2. Ruby Hacking Guide
348
+ Ruby Hacking Guide
349
+ ==================
346
350
347
351
348
352
So far, we've always acted as observers who look at ` ruby ` from outside.
@@ -353,7 +357,7 @@ I'll introduce the suggestions and activities for `ruby` from community,
353
357
as a farewell gift for Ruby Hackers both at present and in the future.
354
358
355
359
356
- h3. Generational GC
360
+ ### Generational GC
357
361
358
362
First, as also mentioned in Chapter 5,
359
363
the generational GC made by Mr. Kiyama Masato.
@@ -368,7 +372,7 @@ more than anything else, it was the first large non-official patch.
368
372
369
373
370
374
371
- h3. Oniguruma
375
+ ### Oniguruma
372
376
373
377
The regular expression engine used by current Ruby is a remodeled version of GNU
374
378
regex. That GNU regex was in the first place written for Emacs. And then it was
@@ -386,13 +390,13 @@ absorbed as soon as possible.
386
390
387
391
You can obtain Oniguruma from the ` ruby ` 's CVS repository in the following way.
388
392
389
- <pre class="screen">
393
+ ``` TODO-lang
390
394
% cvs -d :pserver:[email protected] :/src co oniguruma
391
- </pre>
395
+ ```
392
396
393
397
394
398
395
- h3. ripper
399
+ ### ripper
396
400
397
401
Next, ripper is my product. It is an extension library made by remodeling
398
402
` parse.y ` . It is not a change applied to the ` ruby ` 's main body, but I
@@ -411,14 +415,14 @@ if this is accounted, I think it is constructed well.
411
415
It took only three days or so to implement, really just a piece of cake.
412
416
413
417
414
- h3. A parser alternative
418
+ ### A parser alternative
415
419
416
420
This product has not yet appeared in a clear form,
417
421
there's a person who write a Ruby parser in C++ which can be used totally
418
422
independent of ` ruby ` . (` [ruby-talk:50497] ` ).
419
423
420
424
421
- h3. JRuby
425
+ ### JRuby
422
426
423
427
More aggressively, there's an attempt to rewrite entire the interpretor.
424
428
For example, a Ruby written in Java,
@@ -452,7 +456,7 @@ However, the overall impression I got was, it's way better than I imagined.
452
456
453
457
454
458
455
- h3. NETRuby
459
+ ### NETRuby
456
460
457
461
If it can run with Java, it should also with C#.
458
462
Therefore, a Ruby written in C# appeared,
@@ -471,7 +475,7 @@ such things are the problems.
471
475
But ` instance_eval ` is in effect (astounding!).
472
476
473
477
474
- h3. How to join `ruby` development
478
+ ### How to join ` ruby ` development
475
479
476
480
` ruby ` 's developer is really Mr. Matsumoto as an individual,
477
481
regarding the final decision about the direction ` ruby ` will take,
@@ -523,7 +527,7 @@ I'll answer it as much as possible,
523
527
and other people would respond to it, too.
524
528
525
529
526
- h3. Finale
530
+ ### Finale
527
531
528
532
The long journey of this book is going to end now.
529
533
As there was the limitation of the number of pages,
0 commit comments