source: trunk/FACT++/dim/README_v19.txt@ 14390

Last change on this file since 14390 was 14286, checked in by tbretz, 13 years ago
Updated to v19r37
File size: 30.6 KB
Line 
1
2 DIM version 19.37 Release Notes
3
4Notes 1 and 2 for Unix Users only
5NOTE 1: In order to "make" DIM two environment variables should be set:
6 OS = one of {HP-UX, AIX, OSF1, Solaris, SunOS, LynxOS, Linux, Darwin}
7 DIMDIR = the path name of DIM's top level directory
8 The user should then go to DIM's top level directory and do:
9 > source .setup
10 > gmake all
11 Or, if there is no support for C++ on the machine:
12 > gmake CPP=no all
13
14NOTE 2: The Name Server (Dns), DID, servers and clients (if running in
15 background) should be started whith the output redirected to a
16 logfile ex:
17 Dns </dev/null >& dns.log &
18
19NOTE 3: The Version Number service provided by servers is now set to 1937.
20
2127/06/2012
22Changes for version 19.37:
23 - DIM DNS crashed for servers with a task name bigger than 80 characters - Fixed.
24
25
2622/06/2012
27Changes for version 19.36:
28 - The internal "DIS_DNS/KILL_SERVERS" command can now be used to pass a user defined exit_code to
29 the servers. The servers will get this exit_code in their exit_handler.
30 Although the exit_code passed to the "DIS_DNS/KILL_SERVERS" command is an integer, only the lower
31 16 bits can be used, i.e. only these bits are passed to the servers.
32
33
3424/05/2012
35Changes for version 19.35:
36 - Fixed the DimInfo() default constructor, now if the default constructor is called, it doesn't cause the
37 destructor to crash anymore.
38 - Made available to DimInfo, DimStampedInfo, DimUpdatedInfo and DimCurrentInfo the method:
39 - void subscribe(char *name, void *nolink, int nolinksize, int time, DimInfoHandler *handler)
40 Like this the default constructor can be called and then this method called later to subscribe
41 whenever needed.
42 - The behaviour of a giving a null pointer and size 0 as "no link" parameters was not completely
43 defined. The user could get back either a null pointer or an "invalid" pointer in the callbacks.
44 This is now well-defined:
45 - If null pointer and size 0 is used at subscribe, the user will get null pointer and size 0 in the callback.
46 - If a negative size is passed at subscribe the callback is not called at all.
47
48
4903/05/2012
50Changes for version 19.34:
51 - Changed back to dna_write_nowait() the message that the server sends to the client when removing
52 a service. This was causing clients not to reconnect ever again when the server removed services.
53 (because the client would get the info much before the DNS, so it would keep trying to reconnect
54 and failing even though the service or even the server didn't exist anymore, without asking the DNS)
55 - Changed the client in order to avoid the behaviour above, i.e. if sending the service request fails it
56 asks the DNS again.
57
58
5923/04/2012
60Changes for version 19.33:
61 - A bug was introduced in v19r30. When trying to retry immediately, a dtq_start_timer(0)
62 was used (like for dna_write). This is not possible because the callback is not protected
63 by a DIM lock. Fixed. (in v19r32)
64 - Small tidy up in dic.c and protecting the move_to_xxx functions.
65 - When a server received an unsubscribe from the last subscribed service of a client it was closing the
66 connection to the client, this is not good because there could be commands being sent. In any case
67 it should be up to the client to close the connection - Fixed.
68 - dim_send_command now accepts a "-i" argument to send integer data (default is string)
69
70
7130/03/2012
72Changes for version 19.31:
73 - changed dna_write to dna_write_nowait for servers when removing a service and for clients
74 when releasing and subscribing to a service. Dna_write cannot be used for the same connection
75 as dna_write_nowait as it will mingle the packets.
76 - Removed more compiler warnings.
77
78
7914/03/2012
80Changes for version 19.30:
81 - Sometimes when trying to open a connection to a server the client could backoff for too
82 long (10 seconds), now it will retry immediately and then at increasing intervals.
83 - dim_stop() would sometimes not properly stop all threads if a new connection was received
84 in the mean time.
85 - The DimServerDns destructor could crash, fixed.
86 - Removed some compiler warnings about variables set but not used.
87 - Two new functions available:
88 - dim_set_listen_backlog(int size)
89 - int dim_get_listen_backlog()
90 - The DNS will set the listen_backlog to 1024 at startup, but the OS will truncate it to
91 a maximum limit (available in /proc/sys/net/core/somaxconn, linux default=128),
92 while for servers the constant SOMAXCONN is used.
93
94
9506/02/2012
96Changes for version 19.28:
97 - Added more log messages when a "Write Timeout" occurs to know where it originated.
98 - A server could sometimes not release the connection in case of a "Write Timeout", and
99 then keep on timing out for each message on this connection - fixed.
100
101
10219/01/2012
103Changes for version 19.27:
104 - Updated the DIM Makefiles for MacOSX (Darwin)
105 - Added New possibilities to change DIM timeouts:
106 - 2 New Environment variables:
107 - DIM_WRITE_TMOUT (default: 5)
108 - DIM_KEEPALIVE_TMOUT (default: 15)
109 - Same functionality as the functions:
110 - dim_set_write_timeout(int secs)
111 - int dim_get_write_timeout()
112 - dim_set_keepalive_timeout(int secs) //new
113 - int dim_get_keepalive_timeout() //new
114 - The functions have precedence over the environment variables.
115 - The server per client exit_handler functionality
116 (provided by dis_add_client_exit_handler()/dis_set_client_exit_handler())
117 wan not always working correctly (in case of write timeouts) - fixed.
118 - Changed the reporting of "Write Tiemout":
119 - Used to report only:
120 - "ERROR: Write Timeout, disconnecting from..."
121 - Now reports:
122 - "WARNING: Write Timeout, writing to ..."
123 - If it disconnects: "ERROR: Write Timeout, disconnecting from ..."
124 - If it reconnects later: "INFO: Re-connected to ..."
125
126
12714/09/2011
128Changes for version 19.26:
129 - In the notes for version 19.08 there is the following:
130 - Since version v18r4 where dim_wait() was modified, dim_wait could hang in windows if
131 the wake_up event was triggered before dim_wait was called. Could affect smi++. Fixed.
132 - Amasingly enough this seems also to be the case for Linux, dim_wait could hang until there
133 was some new DIM activity, normally some timer firing... Fixed.
134 - The Linux DID now accepts an extra parameter: -dns=<dns_node_name>
135
13601/09/2011
137Changes for version 19.25:
138 - When a Client was releasing a service "at the same time" as the server was deleting the service,
139 The Connection could be released by mistake - fixed.
140 - The SERVICE_LIST service could be updated with an empty string if there were two consecutive
141 dis_start_serving() - fixed.
142
143
14408/08/2011
145Changes for version 19.24:
146 - The funtion DimInfo::getFormat() never return the correct format of a service, if the first time
147 it was called, the service was not available, i.e. when called inside a "no_link" callback - Fixed.
148 - Deleting the last service of a server or stopping a server could generate "Invalid Service Id"
149 messages from the service that updates DID - Fixed.
150
151
15215/07/2011
153Changes for version 19.23:
154 - The new functions:
155 int DimClient::inCallback()
156 int DimServer::inCallback()
157 Can be used to find out if the function is being called in the context of a DIM callback
158 handler (they return 1 if yes, 0 if no).
159 - There was no way to "remove" an errorHandler or exitHandler in C++.
160 Now the following functions accept 0 as parameter:
161 DimClient::addErrorHandler(0)
162 DimServer::addErrorHandler(0)
163 DimServer::addExitHandler(0)
164 DimServer::addClientExitHandler(0)
165 In order to remove them.
166 - The Windows Visual Studio Manifest file distributed since version v19r19 was wrong, so the latest
167 DIM versions did not work on Windows machines without Visual Studio 8 installed - Fixed.
168
169
17021/06/2011
171Changes for version 19.22:
172 - DIM servers would hang when tring to exit due to "Services already declared", if the user
173 exitHandler() didn't directly call exit (instead tried to exit later in the main program).
174 Fixed.
175 - Servers accept now also 'B' or 'V' as format, they are both equivalent to 'C'.
176 - In Linux when a server printed "Write timeout, disconecting from XXX", it didn't always
177 disconnect properly, so the client would not always reconnect afterwards. Fixed.
178
179
18031/05/2011
181Changes for version 19.21:
182 - Fixed a bug in DimRpcInfo: the timer for the timeout was started too late and sometimes the
183 RPC data was received in the meantime, so the timer was never stopped.
184
185
18604/05/2011
187Changes for version 19.20:
188 - Fixed a bug added in v19r18: The <server_name>/SERVICE_LIST was no longer reporting correctly
189 the disappearence of services (by a "-<service_name>" ). Fixed.
190
191
19227/04/2011
193Changes for version 19.19:
194 - Fixed a very very old (horrible) bug in dis.c and dns.c: there was a hardwired malloc(8),
195 which was only ok for 32 bit machines. It's amazing this didn't bring more trouble...
196
197
19807/04/2011
199Changes for version 19.18:
200 - The standard server service <server_name>/SERVICE_LIST had problems reporting the correct
201 information when used by several clients in paralel - fixed.
202
203
20411/03/2011
205Changes for version 19.17:
206 - The TCPIP "listen" backlog for a server was increased for all servers (including the DNS)
207 from 16 to the constant SOMAXCONN (128 on Linux at the moment, 200 on Windows ?)
208 - After a "fork" the DIM initialization sequence guided by semaphores was not correctly
209 handled, this made the forked children hang and not respond to DIM anymore - fixed.
210
211
21223/02/2011
213Changes for version 19.16:
214 - DimServer::stop() did not correctly clear the ServerName - fixed.
215 - The Linux DID now prints the DNS it is connected to in the title bar.
216
217
21820/12/2010
219Changes for version 19.15:
220 - Still fixing dis_stop_serving():
221 - The DNS sometimes gets a remove service message from a server, after the server has
222 closed the connection, this was not handled properly - fixed.
223 - Fixed yet another detail (variable not cleared) in the thread handling at dis_stop_serving().
224 - dtq.c now clears all timer_queues at dis_stop_serving()
225 - Added some protections in case of closed connections.
226
227
22810/12/2010
229Changes for version 19.14:
230 - Still fixing dis_stop_serving():
231 - Adedd pthread_join in linux to wait for threads to die
232 - the following dis_start_serving() would not reconnect to the DNS if the DNS connection
233 was pending (i.e. the DNS was stopped or restarted)
234
235
23606/12/2010
237Changes for version 19.13:
238 - Fixed a few compiler warnings in dis.c
239 - Added #ifndef PXI around some Windows setPriority calls
240 - dis_stop_serving() did not completely clean-up DIM so that another dis_start_serving()
241 could be done properly after for example a "fork()". Fixed.
242
243
24420/09/2010
245Changes for version 19.12:
246 - Fixed a bug added when removing warnings in v19r10 (dis.c and dns.c).
247
248
24907/06/2010
250Changes for version 19.11:
251 - Added some protections in update_service() in order to try to solve a DIP issue.
252 (related to very frequent updates of the same service in different threads)
253 - Added the possibility of defining timeouts for:
254 - DimBrowser::getServices
255 - DimBrowser::getServers
256 - DimBrowser::getServerServices
257 - DimBrowser::getServerClients
258 - Added the possibility of retrieving the time a command arrived:
259 - int dis_get_timestamp(int service_id, int *secs, int *millisecs) in C
260 - int DimCommand::getTimestamp() and int DimCommand::getTimestampMillisecs() in C++
261 - Added a "const" keyword to the "char *format" parameter in the constructors of
262 - DimService and DimCommand
263 - Added a call DimCommand::hasNext(), can be used when commands are queued.
264 - Fixed a memory leak when using DimService::setData and then dynamically deleting the
265 DimService
266
267
26817/02/2010
269Changes for version 19.10:
270 - Fixed a bug in the DNS related to the latest change (browsing for a single service name)
271 The DNS could crash when killing a server.
272 - Removed some compilation warnings
273
274
27504/01/2010
276Changes for version 19.09:
277 - Created two new functions: dis_set_debug_on() and dis_set_debug_off(), these
278 enable or disable printing a message per service update
279 - Tried to protect against:
280 - a service being deleted from the server while it is being updated
281 - a client unsubscribing from a service while it is being updated.
282 - Optimized the DNS when browsing for a service search pattern without wildcards
283 (i.e. browsing for a single service name)
284
285
28613/11/2009
287Changes for version 19.08:
288 - Since version v18r4 where dim_wait() was modified, dim_wait could hang in windows if
289 the wake_up event was triggered before dim_wait was called. Could affect smi++.
290 Fixed.
291 - Fixed a compilation bug in dis.c that affected some platforms.
292
293
29430/10/2009
295Changes for version 19.07:
296 - Some more bugs related to being able to publish to more that one DNS fixed.
297
298
29928/10/2009
300Changes for version 19.06:
301 - When opening DNS connections, when the DNS is not there, from a process that is at the
302 same time a client and a server only one pending connection was used now two separate
303 ones are created.
304 - Tried to fix a few more problems related to dis_stop_serving...
305
306
30726/10/2009
308Changes for version 19.05:
309 - dis_stop_serving had stopped working in version 19.4. So all servers that undeclared
310 all services and then tried to re-declare new ones would fail (corrupted server name).
311 Affected in particular the DimBridge
312
313
31427/08/2009
315Changes for version 19.04:
316 - Added the following functions:
317 Server part:
318 C - dis_get_n_clients(int service_id)
319 C++ - int DimService::getNClients()
320 Client part (C++ only):
321 DimClient::setNoDataCopy()
322 This will prevent any data copy in the client and the user should make
323 sure that the data received from DIM is not used outside the callback
324 in order to benefir from this feature.
325 - Fixed the Java DIM Jar file, it was wrong in the previous version.
326
327
32831/07/2009
329Changes for version 19.03:
330 - Removed some more compilation warnings.
331 - Fixed a bug in the DNS. The mechanism for retrieving the "SERVER_LIST" when
332 some server names were longer that 35 characters was very slow.
333
334
33506/07/2009
336Changes for version 19.02:
337 - Fixed a bug in the server part handling of RPCs, it created a memory leak.
338 It was using a separate thread to handle timeouts and there is no safe way to
339 kill a thread from outside. Fixed.
340 - the function dim_stop_thread() is now obsolete.
341 - Added the possibility to change the send and receive buffer sizes:
342 - int dim_set_write_buffer_size(int size)
343 - int dim_get_write_buffer_size()
344 - int dim_set_read_buffer_size(int size)
345 - int dim_get_read_buffer_size()
346 The default (and minimum) is 16384 bytes.
347 These calls should be done before any other DIM calls.
348 - Fixed a bug in the Java DimBrowser class (the format was not returned correctly)
349
35004/05/2009
351Changes for version 19.01:
352 - A server can now publish to more than one DNS.
353 To use an extra DNS:
354 - in "C":
355 long dnsid;
356 char extra_dns[128];
357 ...
358 dim_get_env_var("EXTRA_DNS_NODE", extra_dns, sizeof(extra_dns));
359 dnsid = dis_add_dns(extra_dns,0);
360 sprintf(name1,"NewService%d",i);
361 dis_add_service_dns(dnsid, name1, "I", &NewData, sizeof(NewData),
362 (void *)0, 0 );
363 dis_start_serving_dns(dnsid, "xx_new");
364
365 - in C++:
366 DimServerDns *newDns;
367 char *extraDns = 0;
368 DimService *new_servint;
369 ...
370 extraDns = DimUtil::getEnvVar("EXTRA_DNS_NODE");
371 if(extraDns)
372 newDns = new DimServerDns(extraDns, 0, "new_TEST");
373 ...
374 if(extraDns)
375 new_servint = new DimService(newDns, "new_TEST/INTVAL",ival);
376
377 - Removed all warnings from DIM sources so that it can be compiled with -Wall -Wextra on Linux
378 - Changed the makefiles so that the default on Linux is now 64 bits.
379 - The flag 32BITS=yes can be added in order to generate 32 bit code
380
381
38226/02/2009
383Changes for version 18.05:
384 - Made the callback for "DIS_DNS/SERVER_LIST" uninterruptible, so that two clients subscribing
385 would not get mixed up answers.
386 - The same for "<server>/SERVICE_LIST"
387 - Tryied to fix a DNS crash, introduced in v18r4 by releasing the connection when "informing clients".
388 - removed some "//" comments in "C"
389
390
39120/02/2009
392Changes for version 18.04:
393 - Changed the dim_wait() mechanism, so that it works for several threads in parallel:
394 - On Linux it was based on POSIX semaphores now it is based on POSIX "condition
395 variables"
396 - On Windows it was based on "Auto Reset Events" now it uses "Manual Resel "Events"
397 - The DNS should now correctly update the "DIS_DNS/SERVER_LIST" service. It used to report
398 a new server, even when the services already existed and the server was killed by the DNS.
399 (And never report it killed). It also didn't report correctly when a server went out of "ERROR"
400 (this is reported as a "+" as for a new server).
401
402
40305/02/2009
404Changes for version 18.03:
405 - The list of registered services in a server could get corrupted in some rare cases
406 making the server crash - fixed.
407 - If the DNS couldn't talk to a client it could sometimes hang - fixed.
408 - Java client modifications:
409 - DimUpdatedInfo was not working correctly - fixed in dim_jni.c.
410 - Implemented DimRpcInfo
411 - Changed the DimBroser class to use DimRpcInfo.
412 - Added a jdim.jar file in the jdim/classes directory of the DIM distribution
413
414
41515/01/2009
416Changes for version 18.02:
417 - Added the following functions:
418 - C++ Client
419 - int DimClient.getServerPid()
420 - Java Client
421 - int DimClient.getServerPid()
422 - String[] DimBrowser.getServers()
423 - String DimBrowser.getServerNode(String server)
424 - int DimBrowser.getServerPid(String server)
425
426
42709/01/2009
428Changes for version 18.01:
429 - Added in the distribution the Visual Studio 8 dlls and manifest. Otherwise
430 it would not work on most PCs.
431
432
43303/12/2008
434Changes for version 18.00:
435 - The Windows execulables and libraries are now built using Visual Studio 8
436 - Some changes added by GSI mainly in the Java Native Interface
437
438
43906/11/2008
440Changes for version 17.12:
441 - Client functionality:
442 - Added a new function dic_stop(), to close anything related to DIM
443 for a client
444 - Added the function dic_get_server_pid(). Similar to dic_get_server().
445 Can be executed in a callback to retrieve the pid of the current server
446 - DimBrowser Class:
447 - DimBrowser::getServices() used to create and destroy the DimRpc connection
448 to the Dns every time it was called. This was heavy if called in a loop.
449 Now the connection is maintained until the DimBrowser itself is destroyed.
450 - A new method DimBrowser::getNextServer(char *&server, char *&node, int *pid)
451 has been created. similar to the previous one but returns also the server pid.
452 - DNS
453 - The DNS was still doing some blocking write calls to servers or clients.
454 Now all write calls have a timeout and can not block forever.
455 - Linux DID
456 - The "Subscribe" button was subscribing to services with update rate of 10 seconds.
457 This was misleading, the users could think the server was calling update_service
458 when it wasn't.
459 Now there are two Subscribe buttons ("on change" or "Update rate of 10 seconds").
460 - DimDridge
461 - Accepts an extra flag "-copy" which provokes an internal copy of the data.
462
463
46408/09/2008
465Changes for version 17.11:
466 - Some DIM Processes, servers or clients could enter a loop taking 100 % CPU
467 time in some rare occasions, fixed.
468 - Added some protections when removing services in the DimBridge.
469
470
47130/08/2008
472Changes for version 17.10:
473 - Some DIM Processes, servers or clients would not reconnect when the DNS was
474 restarted. Fixed two cause:
475 - Some processes in Linux were stuck reading from the DNS socket
476 - Some others "forgot" to set a timer under very special conditions
477 - Changed some of the DNS debug messages to be more explicit.
478
479
48021/07/2008
481Changes for version 17.09:
482 - DIM error messages were not being flushed when the output was redirected
483 to a logfile, fixed.
484
485
48618/07/2008
487Changes for version 17.08:
488 - Sometimes a server or a client could do a read on a sockect that had just
489 been closed which left them hanging forever - fixed.
490
491
49201/07/2008
493Changes for version 17.07:
494 - The DimTimer was sometimes not started when the constructor was called
495 with a time argument.
496 - Clients could not connect to more than 1024 servers - fixed.
497 (if the machine allows more than 1024 connections)
498
499
50030/06/2008
501Changes for version 17.06:
502 - Corrected the makefile for Darwin, now the number of accepted connections is
503 increased to 8192 only for Linux.
504 - Fixed a bug in the DimTimer, it used to accept to be re-started, but then crashed
505 at destruction time if not stopped the same number of times. Now it can not be
506 re-started.
507 - The Dns used to ask servers to re-register at regular intervals when they were not
508 sending their watchdog messages (i.e. they were in "ERROR", red in DID). Now the
509 DNS only asks once (unless they answer). This could cause the DNS to hang if
510 servers were in ERROR for a long time.
511 - The Dns now accepts a command line parameter: -d to print debug messages.
512 - The clients were not handling properly the case when they could contact the DNS
513 but then they could not contact the server that the DNS gave them (either because
514 of a firewall or because the server run on an inaccessible network). In this case
515 the clients would timeout trying to contact the server for each service and kept
516 asking the DNS the server coordinates over and over again. Now the clients keep
517 a list on unreacheable servers, so they don't try to contact the server for each
518 service and only ask the DNS again with an increasing interval that goes from 10
519 seconds to 2 minutes maximum.
520 - The server now issues an error message if the format string is too long.
521 - Linux DID
522 - Removed the command "Kill ALL Servers", it was too dangerous
523 - Now the list of nodes in "View Servers by Node" is in alphabetical order and
524 in lowercase.
525
526
52730/04/2008
528Changes for version 17.05:
529 - In Linux in some cases a SIGPIPE was generated. Normally the DIM library sets
530 the behaviour of SIGPIPE to ignored, but if another library or main program
531 changes the SIGPIPE behaviour, then the application could exit when the SIGPIPE
532 was generated. Fixed - on Linux now the function send with flag MSG_NOSIGNAL
533 is used in oder to avoid generating SIGPIPE.
534
535
536
5374/04/2008
538Changes for version 17.04:
539 - Sometimes processes (servers or clients) would hang when the DNS was restarted.
540 This was due to a strange (Windows?) feature, by which a connect could succeed
541 after a connection was closed (and reported) on the other side. Fixed.
542
543
544
54527/03/2008
546Changes for version 17.03:
547 - Can now make DID for 64 bits by making DIM using:
548 gmake X64=yes all
549 - Increased the size of the Hash tables for the servers and the DNS.
550
551
552
55320/02/2008
554Changes for version 17.02:
555 - Fixed the Java DimTimer - stop() didn't work
556 Required changing dim_jni.c as well as the java part
557 - Fixed DIM for Darwin - had stopped working
558
559
560
56120/01/2008
562Changes for version 17.01:
563 - The Java API now works on 64 bit machines, Thanks to Joern Adamczewski.
564 Please use:
565 gmake JDIM=yes all
566 - Linux executables are now compiled/linked on slc4 (32 bits).
567 - Big changes in the DimRpcs both client and server part. Tere were bugs
568 related to the handling of timeouts.
569 Unfortunatelly all applications using RPCs need to be re-linked.
570
571
572
573-----------------------------------------------------------------------------------------
574Previous version history:
575
57607/12/2007
577Changes for version 16.14:
578 - Now by default All DIM processes are ready to accept up to 8192 connections, both
579 in Linux and Windows. Although in Linux for this to be effective the machine system
580 limits must allow more than 1024 descriptors/open files per process.
581 - Fixed a little memory leak in tokenstring.cxx
582 - And a little compilation bug for some platforms in tcpip.c
583
584
58515/05/2007
586Changes for version 16.13:
587 - If DIM_HOST_NODE is defined when starting up a server, a DIM client will now try
588 two network interfaces in order to talk to that server and only give up if they both
589 fail. First it will try the ip name or ip address specified by the server using
590 DIM_HOST_NODE, if that fails it will try the ip address of the default interface
591 retrieved by the server using gethostname (and gethostbyname).
592 The changes basically affect the case in which the DIM_HOST_NODE given to the servers
593 is specified as IP address instad of an IP name. Otherwise this mechanism was already
594 working.
595
596
5973/05/2007
598Changes for version 16.12:
599 - The Java version did not exit properly when main() terminated - fixed.
600
601
60225/04/2007
603Changes for version 16.11:
604 - On Linux the timeout to detect a lost connections (unplugged ethernet cable
605 or machine reboot) was too long, around 15 minutes - Fixed.
606 On Linux the KEEPALIVE feature is now used instead of a regular socket write,
607 all other platforms should work as before.
608
609
61021/02/2007
611Changes for version 16.10:
612 - Found a bug in dis_stop_serving: one socket connection was not closed - fixed.
613 - Implemented a new environment variable for the DNS: DIM_DNS_ACCEPTED_NODES
614 Can receive a list on nodes or domains separated by commas.
615 If the DNS receives a connection from a node not in this list, it will
616 reject it and kill the server or client requesting it.
617 - Fixed some C++ warnings.
618
619
62019/01/2007
621Changes for version 16.9:
622 - The modifications done in version 16.8 have introduced a bug:
623 - DIM servers would not behave properly (exit) when receiving a kill command
624 from the DNS (for duplicated services, not allowed host names or manual "kill")
625 This is now fixed.
626
627
62830/10/2006
629Changes for version 16.8:
630 - Modified dis_stop_serving() and DimServer::stop() to completely stop DIM:
631 - Stop also the DIM threads.
632 - Release all allocated memory
633 - Allow a different port number when re-starting.
634
635
63611/07/2006
637Changes for version 16.7:
638 - Prepared for increasing the number of open connections per process
639 (On Linux still requires changing some parameters and recompiling the Dns)
640 - Fixed one error and several warnings for gcc 4.
641
642
64311/05/2006
644Changes for version 16.6:
645 - Sometimes a server or client would crash while exiting if the DNS was not running.
646 Fixed.
647 - Fixed the reporting of some ERROR messages on Windows (used to report error "0")
648 - Allowed dim_send_command to receive instead of -dns <node_name>
649 -dns <node_name>[:<port_number>]
650
651
65201/05/2006
653Changes for version 16.5:
654 - Big Spring Cleanup. Removed most warnings. Can now be compiled on
655 Windows with Warning Level 3 and on Linux with -Wall
656 (still not working for -ansi -pedantic...)
657 - When trying to access a server in a different network (i.e. not reacheable)
658 a client (for example DID) would take very very long to timeout - fixed.
659 - Added two new sets of functions that allow setting the DIM_DNS_NODE separately
660 for a server and a client in the same process:
661 - int dis_set_dns_node(char *node)
662 - int dis_get_dns_node(char *node)
663 - int dis_set_dns_port(int port)
664 - int dis_get_dns_port()
665
666 - int dic_set_dns_node(char *node)
667 - int dic_get_dns_node(char *node)
668 - int dic_set_dns_port(int port)
669 - int dic_get_dns_port()
670 These routines should be used instead of the equivalent ones starting with "dim_"
671 since these set the same DIM_DNS_NODE/port for both Server and client parts of a
672 process.
673 - Adapted the C++ equivalents (DimClient::setDnsNode, etc. and DimServer::setDnsNode,
674 etc.) to use the new routines, so they are now independent.
675 Adapted also the Java equivalents.
676 - Fixed DimBridge to use the new routines.
677 - Fixed a bug in DID that made it crash sometimes at startup (and also when the DNS
678 restarted)!
679 - Found some very interesting features of DIM:
680 - In a node with two ethernet interfaces (so connected to two networks):
681 - The DNS will answer to servers and client on both networks, only its server
682 part - DIS_DNS (the one that answers to DID and DimBrowser requests) would
683 in principle answer only to one of the networks (in principle the default
684 interface* but can be changed by setting the environment variable "DIM_HOST_NODE").
685 - But, in fact, if the DNS or any server is started with the environment variable
686 DIM_HOST_NODE set to the interface that is not the default* one. Than both the
687 DNS (including the server part) and the DIM servers will be accessible from both
688 networks. For example DID will work fine on both networks.
689 * The command "hostname" will return the name of the default network interface.
690
691 Note: As a result of inserting new functions the DIM shared library entry points have
692 changed, so all DIM Servers/Clients should be relinked (in particular in Linux).
693
694
69520/04/2006
696Changes for version 16.4:
697 - Optimized the DNS for providing the list or running servers dynamically
698 by subscribing to the service "DIS_DNS/SERVER_LIST"
699
700
70107/04/2006
702Changes for version 16.3:
703 - Upgraded to work on LynxOS Version 4.
704 - Updated makefile for INTEL platform
705 - Updated some ifdefs based on the existence of __Lynx__
706
707
70810/03/2006
709Changes for version 16.2:
710 - Increased the listen queue. To avoid "Connection Refused" messages from servers
711 or from the DNS.
712
713
71428/02/2006
715Changes for version 16.1:
716 - Fixed the NO_THREADS option for LINUX, it had stopped working.
717 - DimInfo::getData() could return an invalid pointer if called before connecting
718 to the server (or discovering the server did not exist). Fixed
719 (it now returns 0 in this case).
720
721
72209/11/2005
723Changes for version 16.0:
724 - Consolidated the new timer handling mechanism, should be much more precise.
725 - Fixed the RPC handling. Used to be based on timming assumptions.
726 Now uses a safe protocol to make sure the server is connected before sending
727 an RPC request.
728 - Included in the distribution some performance measurements and a benchmark
729 server and client. Sources in src/benchmark executables in /bin for windows
730 and /linux for linux.
731 Usage:
732 benchServer <message_size_in_bytes> <number_of_services>
733 benchClient
734 benchClient will run for a while and print the measurement results.
735
736Please check the Manual for more information at:
737 http://www.cern.ch/dim
Note: See TracBrowser for help on using the repository browser.