Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I must have been drunk when I did the previous version. I'd like to convince you...
[simgrid.git] / ChangeLog
1 SimGrid (3.0.1) unstable; urgency=low
2
3   XBT:
4   * Unfortunately, I had missed 5 misnamed functions:
5       xbt_fifo_item_t xbt_fifo_newitem(void);
6       void xbt_fifo_freeitem(xbt_fifo_item_t);
7       xbt_fifo_item_t xbt_fifo_getFirstItem(xbt_fifo_t l);
8       xbt_fifo_item_t xbt_fifo_getNextItem(xbt_fifo_item_t i);
9       xbt_fifo_item_t xbt_fifo_getPrevItem(xbt_fifo_item_t i);
10     They're now deprecated. Please use their new versions:
11       xbt_fifo_item_t xbt_fifo_new_item(void);
12       void xbt_fifo_free_item(xbt_fifo_item_t);
13       xbt_fifo_item_t xbt_fifo_get_first_item(xbt_fifo_t l);
14       xbt_fifo_item_t xbt_fifo_get_next_item(xbt_fifo_item_t i);
15       xbt_fifo_item_t xbt_fifo_get_prev_item(xbt_fifo_item_t i);
16     [AL]
17   * Bugfix: really disconnect fifo items which are remove_item()ed [AL]
18   * Documentation: xbt_log module unmercifully reworked [MQ]
19   * Bugfix: there was a problem with the ending of contexts with 
20     the pthread backend. It caused some weird deadlock or behavior
21     depending on the pthread implementation. [AL]
22   
23   MSG:
24   * Add additionnal checkings on channel values in communication [AL]
25   * New: MSG_task_get_source to see on which host a task was generated [HC]
26
27   GRAS new functionnalities: [MQ]
28   * enhance the parsing macro to allow the size of multidimentional objects
29     to be given thru annotations.
30
31   GRAS performance improvements: [MQ]
32   [DataDesc]
33   * Reduce the amount of cbps creation/destruction by making it static to 
34     datadesc_send/recv() and using a (newly created) cbps_reset (based on 
35     dynar_reset ())
36   [Virtu]
37   * Change libdata to a set so that we can search for stuff by ID (and thus 
38     reduce the insane amount of dict lookups)     
39   
40   [Transport]
41   * Actually implement gras_datadesc_copy() so that we don't have to mimick
42     RL communication on top of SG since it's so uneffective. 
43     It may also be used for inter-thread communication in RL, one day. 
44   * Use gras_datadesc_copy() to exchange messages on top of SG 
45     Allows to:
46     - improve message exchange performance on top of SG
47     - deprecate transport_plugin_sg.c:gras_trp_sg_chunk_send() & recv()
48   * Don't exchange on the network the size of the used part of buffer,
49     instead, specify the possible buffer size to read(). 
50     Advantages:
51      - reduces the amount of read/write calls (one pair per exchange)
52      - reduces the amount of exchanged data (the size)
53      - allows to retrieve all arrived data on receiver side, if we don't need
54        it right now (subsequent read will peek the buffer)
55      - allows the receiver to proceed with the begining of the stream before
56        everything is arrived
57      - make it possible to build an iov transport (using readv/writev)
58     Extra difficulty: 
59      - take care of the data with non-stable storage (like stacked data),
60        and bufferize them.
61   * If possible, TCP send uses vector I/O (when writev() is here) 
62      - Don't use it for receive since we send data sizes and data on the
63        same stream, so we wouldn't be able to chain large amount of chunks
64        before having to flush the stuff to read the size.
65   * Rework the transport plugin mecanism to simplify it and reduce the
66     amount of pointer dereferencement when searching for the right function 
67     to use. 
68
69   * I guess that now, we do almost as few system calls as possible while
70     doing as few data copy as possible.
71
72     To improve it further, we could try to send all the sizes first and then
73     all the data (to use iov on receiving size), but it's only a partial
74     solution: when you have 2 dimensional data, the sizes of the second
75     dimension is data of the first dimension, so you need 3 streams.
76
77     I'm not sure the potential performance gains justify the coding burden.
78
79
80  --
81
82 SimGrid (3.00) stable; urgency=low
83   
84  SURF:
85   * New! Give the possibility to hijack the surf parser and thus bypass 
86     MSG_create_environment and MSG_launch_application. Have a look at
87     examples/msg/msg_test_surfxml_bypassed.c to see how it can be done.
88         
89  -- Arnaud Legrand <simgrid-devel@lists.gforge.inria.fr>  Sat, 20 Aug 2005 23:25:25 -0700
90
91 SimGrid (2.96) unstable; urgency=low
92
93   AKA SimGrid 3 rc 2.
94   
95   XBT:
96   * New! Exception handling with setjmp or such (code from OSSP ex) [MQ]
97     This deprecates the xbt_error_t mecanisms. 
98     It modifies (simplifies) all XBT and GRAS API.
99     MSG API keeps unchanged (exceptions raised by XBT are catched from 
100      within MSG and masked with existing error handling facilities)
101
102   SURF:
103   * New! Add a FATPIPE model. [AL]
104   * New! Add a parallel task model. [AL]
105   * New! Add automatically a loopback interface (in the default
106     network model) if none was precised.
107
108   MSG
109   * Bugfix: MSG_process_resume now works with the current running process. 
110     [AL]
111   * New! Add MSG_parallel_task_create and MSG_parallel_task_execute. [AL]
112   * Modification of MSG_task_get_compute_duration. Once a task has been
113     processed, the value returned by this function is now equal to 0. [AL]
114   * New! Add double MSG_task_get_remaining_computation(m_task_t task) and
115     MSG_error_t MSG_task_cancel(m_task_t task). Add a state
116     (MSG_TASK_CANCELLED) to MSG_error_t corresponding to the cancelation
117     of a m_task. For now, MSG_task_cancel only works with computation
118     tasks. [AL]
119   * New! Add double MSG_get_host_speed(m_host_t h) that returns the speed
120     of the processor (in Mflop/s) regardless of the current load on the
121     machine. [AL]
122   * API Change: use proper naming convention for MSG_getClock and 
123     MSG_process_isSuspended: MSG_get_clock and MSG_process_is_suspended.
124     [AL]
125   * New! Add void MSG_task_set_priority(m_task_t task, double priority). 
126     This function changes the priority of a computation task. This priority
127     doesn't affect the transfer rate. A priority of 2 will make a task 
128     receive two times more cpu power than the other ones. This function 
129     has been added to suit the needs of Nguyen The Loc and hasn't been that
130     much tested yet. So if it fails, please report it and send me your code. 
131     [AL]
132   * API Change: removed all functions and types that were marked "deprecated" 
133     since many months. Renamed MSG_global_init_args to MSG_global_init.
134
135  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Mon,  8 Aug 2005 17:58:47 -0700
136
137 SimGrid (2.95) unstable; urgency=low
138
139   XBT
140   * Steal some nice code to GNU pth to fix context detection and usage [AL]
141   * Cleanup in the xbt_config API; add configuration callbacks. [MQ]
142   * Cleanup in the initialization API: the unused "defaultlog" is dead. [MQ]
143
144   SURF
145   * Bugfix: Allow absolute paths for platform description files [MQ]
146   * Bugfix: do free the variables after use. Leads to drastic performance 
147     improvement [AL] 
148   * Implement max_duration (ie, timeouts) on resources [AL]
149
150   MSG
151   * Implement MSG_config to configure MSG at runtime. xbt_cfg test on a real
152     case ;) [MQ]
153   * Implement MSG_channel_select_from() to help GRAS now that SURF provide
154     the needed support (timeouts) [AL]
155
156   GRAS (new features)
157   * Implement measurement sockets. You can now get the bandwidth between two
158     hosts thanks to AMOK (see below). [MQ]
159   * gras_datadesc_dynar() builds a dynar type descriptor, allowing to send
160     dynar over the network (yeah) [MQ]
161   * Real (even if simplistic) implementation of gras_os_myname() on RL [MQ]
162   * simple/static token-ring example. [Alexandre Colucci and MQ]
163   * Use MSG_channel_select_from() and remove the *slow* hack we had to put
164     in place before [MQ]
165   
166   GRAS (bug fixes)
167   * Differentiate the types "char[22]" and "unsigned char[22]" in automatic
168     type parsing. "short" and "long" modifiers were also ignored; other
169     modifier (such as reference level) are still ignored. [MQ] 
170   * Embeed the buffer size within the buffer itself on SG. [MQ]
171     That way, send() are atomic and cannot get intermixed anymore (at least
172     the ones which are less than 100k; bigger messages still have the issue)
173   * Array size pushed by the field, not by the field type (or each
174     and every long int will push stuff to the cbps) [MQ]
175   * use select() to sleep since it allows to portably sleep less than one
176     second. [MQ]
177
178   GRAS (minor cleanups)
179   * <project>.Makefile.local (generated from gras_stub_generator) |MQ]:
180     - Do clean .o files
181     - Compile with -g
182   * Type Callbacks now receive the gras_datadesc_type_t they work on as argument.
183   * type category 'ignored' killed as it was never used and were difficult
184     to transmit.
185   * whether a type can cycle or not is now a flag, leaving room for more
186     flags (as "ignored", if we feel the need one day ;)
187   * Rename raw sockets to measurement sockets since "raw" has another
188     meaning in networking community. 
189   
190   AMOK 
191   * Advanced Metacomputing Overlay Kit introduction. It is based over GRAS
192     and offers features not belonging to GRAS but that most applications
193     need. One day, it may be a set of plugins loadable at runtime.
194   * New module: bandwidth 
195     bandwidth measurement between arbitrary nodes running this module. [MQ]
196
197  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Thu, 30 Jun 2005 16:29:20 -0700
198
199 SimGrid (2.94) unstable; urgency=low
200
201   The first beta release of SimGrid 3 !
202
203   >>>Arnaud<<<
204   (documentation)
205   * Update the main page and the FAQ. Adding references to gforge.
206
207   (gras)
208   * Add a gras_os_getpid function.
209
210   (msg)
211   * Add MSG_task_get_compute_duration() and MSG_task_get_data_size()
212   * Extend the logs so that they also print PID, hostname, date, ... if
213     available.
214   * Convert the MSG example to the use of xbt_logs instead of PRINT_MESSAGE,
215     and kill the old version which were in testsuite/
216   * Rewrite tools/MSG_visualization/colorize.pl for using with logs instead
217     of PRINT_MESSAGE
218
219   (xbt)
220   * Add xbt_os_time(). As the rest of xbt/portability, this is not public
221     for users. Instead, each programming environment (GRAS, MSG,...) use it
222     when needed to provide such a feature to users.
223     Don't shortcut the mecanism or you will also shortcut the virtualization
224     you need on the simulator.
225
226   >>>Martin<<<
227   (infrastructure)
228   * Cleanups in configury with regard to compile optimization/warning flags.
229     Also add -fno-loop-optimize to any powerpc since it's the optimization
230     killing gcc (< 3.4.0).
231   * Doxygen cleanups: move MSG examples, kill the second Doxygen phase
232     needed by MSG examples complications
233   * Borrow configury beautifications from PHP
234
235   (xbt)
236   * Bugfix: XBT_LOG_NEW_DEFAULT_CATEGORY now compiles without compiler
237     warning (thanks loris for stumbling into this one).
238   * Bugfix: stop loading private headers (gras_config.h) from the public
239     ones (xbt/swag.h).
240
241   (gras)
242   * Change SIMGRID_INSTALL_PATH to GRAS_ROOT in Makefiles generated for user.
243   * Rename gras_get_my_fqdn to gras_os_myname and implement it in the simulator
244     RL would imply a DNS resolver, which is *hard* to do in a portable way
245     (and therefore delayed).
246   * Implement a real timer mecanism and use it in timing macros. This allows
247     to avoid rounding errors and get a 0.000005 sec precision in timing
248     macros. While I was at it, various cleanups:
249      - allow to declare more than one timed section per file (fix a stupid bug)
250      - move some private declaration to the right place
251      - merge conditional execution and timing macros into emulation module
252      - document the module
253      - make sure the module cleanups its mess on gras_exit
254   * Documentation improvements:
255      - (new) how to compile applications using GRAS
256      - (new) emulation support (timing macros)
257
258  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>  Fri, 13 May 2005 10:49:31 +0200
259
260 SimGrid (2.93) unstable; urgency=low
261
262   Alpha 4 on the path to SimGrid 3 (aka the "neuf-trois" version)
263
264   [Arnaud]
265    - Use Paje properly where used. Still to be sanitized properly.
266    - Portability fix: Add an implementation of the contexts using pthread
267
268   [Martin]
269   (misc)
270    - Add xbt_procname(): returns the name of the current process.
271      Use it to show the current process's name in all logging.
272   (infrastructure)
273    - fix detection of older flex version and the reaction, since we do
274      depend on modern ones (we use lex_destroy)
275    - Better separation of SG and RL in the libs: remove all simulation code
276      from libgras. As a result, this lib is now only 200k when stripped.
277      Some of the xbt modules may also be duplicated (two sets and such) and
278      should be cleaned/killed before SG3.
279    - Insist on using xlC on AIX because of weird problems involving gcc there.
280    - Cleanup the make remote stuff. This is now done by scripts
281      tools/graspe-{master,slave} (GRAS Platform Expender). This is still
282      mainly for our private use, but we're working on changing them to user
283      tools, too.
284   (gras)
285    - Bugfix: flush the socket on close only if there is some *output*.
286    - Bugfix: flush idempotent when there's nothing to send (don't send size=0)
287   (msg)
288    - Add MSG_task_get_name. The task names are mainly for debugging purpose,
289      but anyway.
290
291  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Fri,  4 Mar 2005 14:32:37 -0800
292
293 SimGrid (2.92) unstable; urgency=low
294
295   Alpha 3 on the path to SimGrid 3
296   
297   [Arnaud]
298   (gras)
299    - New! First try of benchmarking macros.
300    - New! First try so that gras_stub_generator generate deployment and
301      remote compilation helpers.
302   (msg)
303    - Bugfix: Initialization fix in msg_test.
304
305   [Martin]
306   (surf)
307    - Bugfix: applied patch to lexer so that it doesn't need a huge heap.
308   (xbt)
309    - Bugfix: let dicts work with NULL content (_foreach didn't) and cleanups
310   (gras)
311    - API Change: gras_os_sleep to take the amount of seconds as a double.
312      Accepting an int was error prone since it was the only location where
313      seconds were coded as such. It leaded to damn rounding errors.
314    - Bugfix: Hard to belive that timers ever worked before this.
315
316  -- SimGrid team <simgrid2-users@listes.ens-lyon.fr>  Wed, 23 Feb 2005 22:09:21 +0100
317
318 SimGrid (2.91) unstable; urgency=low
319
320   Alpha 2 on the path to SimGrid 3
321   
322   [Arnaud]
323   (surf)
324    - Bug fix in the lmm_solver.
325   (msg)
326    - New! Interface to Paje (see http://www-id.imag.fr/Logiciels/paje/) 
327      through the function MSG_paje_output.
328    - New! Introducing two new functions MSG_process_kill() and MSG_process_killall().
329    - It is possible to bound the rate of a communication in MSG with 
330      MSG_task_put_bounded() (was already in the previous version but I had forgotten 
331      to write it in the changelog).
332    - Bug fix to let GRAS run on top of MSG until we move it directly on top
333      of the SURF.
334     
335   [Martin]
336   (infrastructure)
337    - Various cleanups to the autotools stuff
338    - Begin to move Gras examples to examples/gras/
339    - Let make distcheck work again (yeah!)
340   (documentation)
341    - documentation overhauled using doxygen. 
342      gtk-doc-tools is dead in SimGrid now.
343    - Automatically extract all existing logging categories, and add the list
344      to the documentation (long standing one, to say the less)
345   (gras)
346    - Cleanup the known architecture table. Reorder the entries to group what
347      should be, and use a more consistent naming scheme.
348      (some of the test dataset are still to be regenerated)
349    - New! Allow library to register globals on each process just as userdata
350      does. 
351       This is implemented using a xbt_dict and not a xbt_set, so we loose the
352        lookup time (for now).
353       Use it in msg and trp.
354       This cleans a lot the internals and helps enforcing privacy of the
355        headers between the gras components.
356    - New! Add a timer mechanism, not unlike cron(8) and at(1). 
357    - Bugfix: gras_os_time was delirious in RL.
358    - Bugfix: gras_trp_select/RL don't run into the wall when asked to select
359      onto 0 sockets.
360    - Reenable GRAS now that it works.
361
362  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 14 Feb 2005 14:02:13 -0800
363
364 SimGrid (2.90) unstable; urgency=low
365
366   Alpha 1 on the path to SimGrid 3
367
368   * It is a long time since the last release of SimGrid. I'm sorry about
369     that but as I had told you, I was rewriting a lot of things. I apologize 
370     to those who had been reporting bugs to me and that I had not answered. 
371     If your bug is still in the new version, please tell me. Here is a 
372     summary of the main changes.
373
374   * REVOLUTION 1: The SimGrid project has merged with the GRAS project
375     lead by Martin Quinson. As a consequence SimGrid gains a lot in
376     portability, speed, and a lot more but you'll figure it out later. 
377     SimGrid now comprises 3 different projects : MSG, GRAS and SMPI. 
378     I wanted to release the new MSG as soon as possible and I have 
379     broken GRAS, which is the reason why, for now, only MSG is fully 
380     functional. A laconic description of these projects is available 
381     in the documentation.
382   
383   * REVOLUTION 2: I have removed SG and I am now using a new simulation
384     kernel optimized for our needs (called SURF but only the developers
385     should use it). Hence, MSG is now roughly 30 times faster and I think
386     that by rewriting a little bit MSG, I could event speed it up a little
387     bit more. Beside the gain in speed, it is also much easier to encode a
388     new platform model with SURF than it was with SG. More to come...
389   
390   * REVOLUTION 3: I have tried to change a little as possible the API of
391     MSG but a few things really had to disappear. The main differences
392     with the previous version are :
393        1) no more m_links_t and the corresponding functions. Platforms are
394          directly read from a XML description and cannot be hard-coded
395          anymore. The same format is used for application deployment
396          description. The new format is described in the documentation. 
397          Have a look in tools/platform_generation. There is a tiny script 
398          that converts from the old platform format to the new one. Concerning
399          the application deployment format, parsing the old one is tricky.  
400          I think most of you should however be able to convert your files.  If 
401          it is really an issue, I can write a C code that does the conversion. 
402          Let me know.
403        2) the toolbox tbx does not exist anymore. We now have a library
404           with much more data-structures but without the hash-tables (we have 
405           dictionaries that are much faster).
406
407  -- Arnaud Legrand <Arnaud.Legrand@imag.fr>  Mon, 31 Jan 2005 10:45:53 -0800
408
409 *****************************************************************************
410 * Follows the old GRAS changelog. It does not follow the same syntax, but I *
411 * don't feel like converting the oldies. (Mt)                                *
412 *****************************************************************************
413
414 2005-01-31 Arnaud
415   Version 2.90: "the long awaited one"
416   - Finished rewriting and debugging MSG. Rewrote the documentation.
417   - disable GRAS for now since it needs to be ported to the newest SG
418
419 2004-12-16 Martin
420   - Finish the port to windows (using mingw32 for cross-compile)
421
422 2004-11-28 Arnaud
423   - Main loop and datastructures of SURF. A cpu resource object is
424     functional. Surf can thus be used to create cpu's with variable
425     performance on which you can execute some actions.
426         
427 2004-11-15 Martin Quinson
428   - Port to ARM. Simply added the alignment and size descriptions. Should
429     work, but the ARM machines are so slow that I didn't had the opportunity
430     to 'make check' over there yet.
431
432 2004-11-15 Arnaud Legrand
433   - Trace manager now written. It uses a heap structure and is therefore
434     expected to be efficient. It may however be speeded up (particularly
435     when many events occur at the same date) by using red and black
436     trees. One day maybe... 
437   - Max-min linear system solver written. It uses a sparse matrix
438     structure taking advantage of its expected use. Most operations are
439     O(1) and free/calloc are called as few as possible. The computation of
440     the minimum could however be improved by using a red and black tree
441     (again ! ;).
442
443 2004-11-03 Arnaud Legrand
444   - Rename every gras_* function that was in xbt/ to its xbt_
445     counterpart.
446   - Add a heap and a doubly-linked list to xbt
447   - Added a dichotomy to the dictionaries. make check works as well before
448     so I assume that the patch is correct. I do not know however if things
449     run effectively faster than before now. :)
450
451   Inclusion of the SimGrid tree in the GRAS one. The archive is renamed to
452   SimGrid, and the version number is bumped to 2.x
453
454 2004-10-29 Martin Quinson
455   - Introduction of the remote errors. 
456     They are the result of a RMI/RPC on the remote machine.
457     ErrCodes being scalar values, you can't get the host on which those
458     errors did happen. Extending the error mechanism as in Gnome is possible.
459     No idea yet whether it is a good idea.
460     
461 2004-10-28 Martin Quinson
462   - Interface revolution: the Starred Structure Eradication.
463     I used to do typedef struct {} toto_t; and then handle *toto_t.
464     Arnaud (and Oli) didn't like it, and I surrendered. Now, you have:
465       - ???_t is a valid type (builded with typedef)
466       - s_toto_t is a structure (access to fields with .)
467       - s_toto   is a structure needing 'struct' keyword to be used
468       - e_toto_t is an enum
469       -   toto_t is an 'object' (struct*)
470     Exemple:
471       typedef struct s_toto {} s_toto_t, *toto_t;
472       typedef enum {} e_toto_t;
473     Moreover, only toto_t (and e_toto_t) are public. The rest (mainly
474      s_toto_t) is private.
475     
476   - While I was at it, all gras_<obj>_free() functions want a gras_<obj>_t*
477     so that it can set the variable to NULL. It was so for dicts and sets,
478     it changed for dynars.
479     
480   - Fix a bunch of memleaks in dict_remove
481   - Fix a bug in sg/server_socket opening: it failed all the time.
482
483 2004-10-07 Martin Quinson
484   - Speed up dynar lookup operation a bit.
485   
486     gras_dynar_get is dead. 
487     
488     Now, you can choose between gras_dynar_get_cpy (the old gras_dynar_get
489     but should be avoided for efficiency reasons) and gras_dynar_get_ptr
490     (which gives you the address of the stored data).
491     
492     gras_dynar_get_as is an helpful macro which allows you to retrieve a
493     copy of the data using an affectation to do the job and not a memcpy.
494     
495     int toto = gras_dynar_get_as(dyn,0,int); rewrites itself to
496     int toto = *(int*)gras_dynar_get_ptr(dyn,0);
497     
498     It does not really speedup the dynar test because they are
499     setting elements all the time (and look them seldom). But the dict does
500     far more lookup than setting.
501
502     So, this brings the dict_crash test from ~33s to ~25s (200000 elms).
503
504 2004-10-05 Martin Quinson
505   - Allow to (en/dis)able the cycle detection at run time.
506   
507     Whether we should check for cycle or not is now a property of each
508     datatype. When you think there may be some cycle, use datadesc_cycle_set.
509     datadesc_cycle_unset allow to remove this property when previously set.
510     
511     Note that the cycle detection is off by default since it impacts the 
512     performance. Watch the data you feed GRAS with ;)
513     
514     This property is hereditary. Any element embedded in a structure having it
515     set have it set for the time of this data exchange.
516     
517     You should set it both on sender and receiver side. If you don't set it on
518     sender side, it will enter an endless loop. If you forget on receiver
519     side, the cycles won't be recreated after communication.
520     
521   - Header reorganization.
522     Kill gras_private.h, each submodule must load the headers it needs.
523
524 2004-10-04 Martin Quinson
525   - Interface revolution: do not try to survive to malloc failure.
526   
527     Now, gras_malloc and friends call gras_abort() on failure.
528     As a conclusion, malloc_error is not a valid error anymore, and all
529       functions for which it was the only gras_error_t return value are
530       changed. They now return void, or there result directly. 
531     This simplify the API a lot.
532
533 2004-09-29 Martin Quinson
534   - Re-enable raw sockets.
535     Created by gras_socket_{client,server}_ext;
536     Used with gras_raw_{send,recv}
537     No select possible.
538     
539     It should allow to kill the last bits of gras first version soon.
540   
541     This is not completely satisfactory yet (duplicate code with
542      chunk_{send,recv}; a bit out of the plugin mechanism), but it should
543      work. 
544
545   - Simplify transport plugin (internal) interface by not passing any
546     argument to _server and _client, but embedding them in the socket
547     struct directly. 
548
549 2004-09-28 Martin Quinson
550   - Finish the port to AIX.
551     autoconf was my problem (segfault within the malloc replacement
552     function. No idea why)
553         
554 2004-09-16 Martin Quinson
555   - Fix some size_t madness on 64bit architectures.
556   
557 2004-09-08 Martin Quinson
558   - Reduce the number of system headers loaded, overload some more system
559     calls (such as malloc to cast the result of the system one, and work
560     properly on AIX)
561   - Fix and reintroduce the config support
562
563 2004-09-07 Martin Quinson
564   - Source code reorganization to allow Arnaud to surf all over there.
565   - Allow to document the logging categories.
566   - Remove all uppercase from logging categories and useless cleanup in names.
567
568 2004-08-18 Martin Quinson
569   Version 0.6.2 (protocol not changed; API changed)
570   - Interface cleanup: gras_msgtype_by_name returns the type (instead of a
571      gras_error_t), and NULL when not found. Functions expecting a msgtype
572      as argument (msg_wait; msg_send) deal with NULL argument by providing a
573      hopefully usefull message.
574   - Portability to prehistoric sparcs again
575
576 2004-08-17 Martin Quinson
577   Version 0.6.1 (protocol not changed; ABI not changed)
578   - prealloc some buffers to speed things up
579
580 2004-08-11 Martin Quinson
581   Version 0.6 (protocol not changed; ABI expended)
582   - The parsing macro can deal with the references, provided that you add
583     the relevant annotations (using GRAS_ANNOTE(size,field_name))
584
585 2004-08-09 Martin Quinson
586   Version 0.5 (protocol not changed; ABI changed)
587   - Allow to off turn the cycle detection code in data exchange at
588     compilation time. It should be at run time, but I'm short of time (and
589     the config stuff is still broken). That way, we keep dict out of the
590     critical path, which is good because the performance is poor:
591      - search not dichotomial yet
592      - dynar give no way to access their content and memcpy everytime
593   - In composed data description (struct, ref and so on), stop foolness of
594     keeping the subtype's ID, but store the type itself. This keeps sets out
595     of the critical path, which is good since they rely on dynar and
596     dictionnaries. The only loose of that is that we cannot detect the
597     redeclaration of a structure/union with another content (but I'm not sure 
598     the code detected well this error before anyway). We still can detect
599     the redefinition discrepancy for the other types.
600   - Use a whole bunch of optimisation flags (plus -fno-strict-aliasing since
601     it breaks the code because of type-punning used all over the place).
602     This breaks on all non-gcc architectures (for now).
603     
604   All those changes (plus the buffer of last time) allow me to gain 2 order
605   of magnitude on cruel tests consisting of 800000 array of integers on two
606   level of a hierarchical structure (200 secondes -> 4 secondes)
607   
608   API change:
609     - the selector of reference must now return the type it points to, not
610       the ID of this type.
611
612 2004-08-06 Martin Quinson
613   Version 0.4 (protocol changed; ABI not changed)
614   - Allow to pass --gras-log argument to processes in simulation mode. Really.
615   - New debugging level: trace (under debug) to see effect of GRAS_IN/OUT
616   - Implement a buffer transport, and use it by default (it relies on tcp in
617      real life and on sg in simulation).
618     That's a bit hackish since I had a new field to the structure to store
619      its data without interfering with the subtype ones. Inheritance
620      is tricky in C. And that's a kind of reverse inheritance with one class
621      derivating two classes. Or maybe a game with java interfaces. Anyway,
622      that's damn hard in C (at least).
623     Moreover, I got tired while trying to ensure plugin separation and
624      genericity in SG mode. MSG wants me to do weird things, so let's go for
625      cruel hacks (temporarily of course ;).
626      See comment in transport_private.h:71
627   - do not include all the _interface headers in private but in the files
628     which really need them (to cut the compilation time when they are
629     modified) 
630
631 2004-07-26 Martin Quinson
632   Version 0.3 (protocol not changed; ABI changed)
633   - Major overhault of the datadesc interface to simplify it:
634     - shorted the function names:
635       s/gras_datadesc_declare_struct/gras_datadesc_struct/ and so on
636     - add a trivial way to push/pop integers into the cbps without malloc.
637       This allows to make really generic sub_type description, which simply
638         pop their size of the stack.
639     - add a function gras_datadesc_ref_pop_arr() which does what users want
640       most of the time: Declare a dynamic array (which pops its size of the
641       stack) and declare a reference to it. Poor name, but anyway.
642     - kill the post-send callback, add a post-receive one
643     
644 2004-07-23 Martin Quinson
645   Version 0.2 (protocol changed; ABI changed)
646   - add some testing for cpbs in the test cases, and fix some more bugs.
647     This invalidate again the little64 data file, since I cannot regenerate
648     it myself.
649   - remove an awfull optimization in the logging stuff, allowing me to:
650     - understand it again
651     - learn gcc how to check that the argument match the provided format
652     - fix all errors revealed by gcc after that
653   - internal keys of dict are not \0 terminated. Deal with it properly in
654     loggings instead of segfaulting when the user want to see the logs :-/
655
656 2004-07-22 Martin Quinson
657   - Fix some stupid bug preventing cbps (callback postit) from working
658
659 2004-07-21 Martin Quinson
660   - Some documentation cleanups
661   - remove the useless last argument of msgtype_declare
662   - rename the Virtu functions to fit into the 'os' namespace
663   - move headers src/include -> src/include/gras/ and stop fooling with 
664     gras -> . symbolic link
665   - make distcheck is now successful
666
667 2004-07-19 Martin Quinson
668   Version 0.1.1
669   - Build shared library also
670   - Install html doc to the right location
671   - stop removing maintainer files in make clean
672   - build tests only on make check
673   
674 2004-07-13 Martin Quinson
675   version 0.1
676   - No major issue in previous version => change versionning schema
677   - Re-enable little64 convertion test now that Abdou kindly regenerated the
678     corresponding dataset.
679   
680 2004-07-11 Martin Quinson
681   version 0.0.4
682   - Get it working with any kind of structure (we can compute the padding
683     bytes remotely for all the architectures I have access to)
684   - Implement the structure parsing macro (still not quite robust/complete)
685   - Improvement to the remote testing toysuite
686   
687 2004-07-10 Martin Quinson
688  [autoconf mechanism]
689   - get ride of a bunch of deprecated macros
690   - actually run the test for two-compliment, not only compile it :-/
691   - test whether the structures get packed (and bail out if yes. Damn.
692     Alignment is a serious matter)
693   - test whether the structures get compacted (but respecting the alignment
694     constraints of each types)
695   - test whether the array fields of structures can straddle alignment boundaries
696  [base]
697   - Damnit, double are bigger than float (typo in creation of 'double' datadesc)
698     (took me 2 hours to find that bug, looking at the wrong place)
699   - Add gras_datadesc_declare_{union,struct}_close(). They must be used
700     before sending/receiving and are used to compute the offsets of fields
701   - Given that padding size depend even on compiler options, keep track of
702     alignment and aligned_size only for the current architecture. Not a big
703     deal since we send structure fields one after the other (seems
704     reasonable).    
705   - Add the datastructure used for IEEE paper by the PBIO guys to the test
706     program, let it work on linux/gcc/little32. portability todo.
707
708 2004-07-08 Martin Quinson
709   - import and improve remote compilation support from FAST
710   - make sure make check works on half a dozen of machines out there
711
712 2004-07-07 Martin Quinson
713  Let's say it's version 0.0.3 ;)
714   - Implement conversions (yuhu!)
715   - Let it work on solaris (beside conversion, of course)
716   - Stupid me, using rand() to generate the conversion datatests in not wise.
717
718 2004-07-06 Martin Quinson
719   - Let make dist work, since I'm gonna need it to compile on remote hosts
720   - Let Tests/datadesc_usage write the architecture on which the file was
721     generated as first byte.
722   - Add PowerPC (being also IRIX64), SPARC (also power4) and ALPHA
723     architecture descriptions. 
724   - Add datadesc_usage.{i386,ppc,sparc} files being the result of execution
725     on those architectures.
726   - Optimization: send/recv array of scalar in one shoot
727
728 2004-07-05 Martin Quinson
729   - YEAH! GRAS/SG and GRAS/RL are both able to run the ping example !
730   
731   - Plug a whole bunch of memleaks
732   - each process now have to call gras_{init,exit}. One day, their log
733     settings will be separated
734   - Continue the code factorisation between SG, RL and common in Transport.
735
736 2004-07-04 Martin Quinson
737  [Transport]
738   - Redistribution between SG and RL. 
739     We wanna have to accept in SG, so move accepted related parts of RL in
740     the common part. (more precisely, the dynar of all known sockets is no
741     more a static in transport.c, but part of the process_data)
742  [Core/module.c] 
743  [gras_stub_generator]
744   - Bug fix: Do call gras_process_init from gras_init (wasnt called in RL).
745
746 2004-07-03 Martin Quinson
747   - Create a new log channel tbx containing dict, set, log, dynar (to shut
748     them all up in one shot)
749  [DataDesc]
750   - Fix the ugly case of reference to dynamic array.
751   - New (semi-public) function gras_datadesc_size to allow the messaging
752     layer to malloc the needed space for the buffer.
753  [Transport]
754   - gras_socket_close now expect the socket to close (and not its address to
755     put NULL in it after it). This is because the socket passed to handlers
756     is one of their argument (=> not writable).
757  [Messaging]
758   - propagate the interface cleanup from last week in datadesc, ie remove a
759     superfluous level of indirection. User pass adress of variable
760     containing data (both when sending and receiving), and not of a variable
761     being a pointer to the data. Let's say that I like it better ;)
762       The price for that is constructs like "int msg=*(int*)payload" in
763     handlers, but it's a fine price, IMHO.
764  [examples/ping]
765   - Let it work in RL (yuhu)
766
767 2004-06-21 Martin Quinson
768  [Transport]
769    - porting SG plugin and SG select to new standards (works almost).
770    - plug memleaks and fix bugs around.
771    
772  [DataDesc] 
773    - cleanup the prototype of data recv and force users to specify when they 
774      want to handle references to objects. Test case working even for cycles.
775    - plug memleaks. Valgrind is perfectly ok with this.
776
777 2004-06-12 Martin Quinson
778  [Transport] 
779    - cleanup the separation between plugin and main code in plugin creation 
780
781 2004-06-11 Martin Quinson
782  [Transport]
783    - Reput hook for raw sockets, needed for BW experiments
784    - kill a few lines of dead code
785  [Data description] Interface cleanup
786    - gras_datadesc_by_name returns the searched type or NULL.
787      That way, no variable is needed to use a type desc once, which makes
788       the code clearer.
789    - gras_datadesc_declare_[struct|union]_append_name is removed. The last
790       two parameters were strings (field name, type name), leading to
791       common errors.
792  [Dicos] Interface cleanup
793    - gras_dico_retrieve -> gras_dico_get ; gras_dico_insert -> gras_dico_set 
794      This is consistant with the dynar API.
795
796 2004-04-21 Martin Quinson
797  [Messaging]
798    - Porting to new standards.
799  [Data description]
800    - interface cleanup. 
801      There is no bag anymore, no need to take extra provision to mask the
802        pointers behind "ID". 
803      Better splitup of functions between files create/exchange/convert.
804        This is still a bit artificial since convert and receive are so
805        interleaved, but anyway.
806  [Virtu(process)]
807    - add a queued message list to procdata (the ones not matching criteria
808      in msg_wait)
809    - factorize some more code between SG and RL wrt procdata
810  [Tests]
811    - use gras_exit in example to track memleaks
812    - get rid of gs_example now that GS is properly integrated into gras
813    - update run_test to integrate the lastest tests (datadesc)
814  [Logging]
815    - rename WARNINGn macros to WARNn since it prooved error-prone
816      
817 2004-04-19 Martin Quinson
818  [Data description]
819    - register init/exit functions within gras module mechanism   
820    - send/receive function. 
821    Convertion is not implemented, but short-cutted if not needed.
822    struct/array elements are sent one by one (instead of block-wise), but
823      nobody really cares (yet). Get a prototype before optimizing.
824    - tests (using a file socket) for DD send/receive on:
825      - base types: int, float
826      - array: fixed size, string (ie ref to dynamic string)
827      - structure: homogeneous, heterogeneous
828      - chained list, graph with cycle
829    Believe it or not, valgrind is not too unhappy with the results. The
830     cycle happily segfaults, but the others are ok. And I'm sick of pointers
831     for now.
832  [Transport]
833    [File plugin] 
834      - Bugfix when using a filename explicitely (instead of '-')
835
836 2004-04-09 Martin Quinson
837  [Transport plugins]
838    - factorize more code between RL and SG in socket creation
839    - Complete the implementation and tests of:
840      o TCP
841      o file (only in RL, and mainly for debugging)
842      
843      I lost 3 days to design a portable address resolver, and then decided
844        that the prototype mainly have to run on my box.
845      Addressing portability too early may be like optimizing too early :-/
846  [Tests]
847    - use gras_init in the Tests instead of the crappy parse_log_opt 
848      (the latter function is removed)
849  [Conditional execution]
850    - New functions: gras_if_RL/gras_if_SG (basic support for this)
851  [Code reorganisation]
852   - Get rid of libgrasutils.a since it makes more trouble than it solves.
853     Build examples against the RL library, since there is no way to disable
854     its creation for now.