-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1572 lines (1064 loc) · 50.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2006-06-09 Lennart Staflin <[email protected]>
* Version 0.7
2006-06-08 Lennart Staflin <[email protected]>
* clorb-util.lisp (object-create-request): use static-error-handler
* clorb-request.lisp (client-request): use lazy synchronization
(client-request): added slot status-notify-callback
(status-notify): new generic function, and method for client-request
(*send-hook*): new hook
(request-funcall): corba:funcall will now use input-func that
returns result
(dii-input-func): return values
* clorb-orb.lisp (bg-run): handle case of missing adapter
* clorb-mt.lisp (synchronized-lazy): new class
2006-05-19 Lennart Staflin <[email protected]>
* clorb-io.lisp (io-descriptor-connected-p): spelling
* clorb-srv.lisp (poa-connection-handler): use new :server-p arg
* clorb-conn.lisp (make-associated-connection): added &key server-p
* clorb-io.lisp: removed *io-descriptions*, io-fix-broken,
class io-system-multiprocess and related methods
(io-system): added slot io-descriptions
(io-system-reset io-system): does the kill processes and close
streams stuff.
(io-system-add-descriptor): new
(io-system-delete-descriptor): new
(io-descriptor-destroy): added &optional soft - to check that no
writer is using the descriptor
(io-desciptor-connected-p): new
(io-broken-descriptor): added &optional activity to close the
socket if possible
2006-05-18 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp (socket-close): new
* clorb-srv.lisp (connection-receive-request): check
shutdown-status, and ingnore request if connection is shuting down
* clorb-request.lisp (request-no-write): new
* clorb-io.lisp (io-descriptor-destroy): use socket-close
(%io-descriptor-close): new
(io-descriptor-close): new
(io-descriptor-set-write): if descriptor broken generate a :no-write event
(io-broken-descriptor): send no event
(io-write-broken-descriptor): new
(io-read-broken-descriptor): new
(io-poll-desc): use io-write-broken-descriptor or io-read-broken-descriptor
(io-desc-write): generate :write-ready event even if error
(io-mt-write): generate :write-ready event even if error
* clorb-iiop.lisp (server-close-connection-msg): return buffer
(connection-message-error): don't destroy descriptor
* clorb-conn.lisp (Connection): new slots write-request write-count
(connection-destroy): only close descriptor
(connection-shutdown): synchronization
(%add-client-request): new
(connection-send-buffer): take optional request
(connection-no-write): new
(process-event): new event :no-write
2006-05-16 Lennart Staflin <[email protected]>
* pns-server.lisp (setup-pns): use new set-boot-object
* clorb-srv.lisp (BOOT-OBJECT-MANAGER): added boot-objects slot
and removed global var.
(create-default-poa): new fun
(set-boot-object): new gf; method for BOOT-OBJECT-MANAGER
root-adapter clorb-orb
(root-adapter): new class, to be referenced from orb class
(create-root-adapter): new fun
(root-poa-of): new fun
(adapter-register-poa, adapter-unregister-poa): new poa registry
in root-adapter object.
(poa-by-id): lookup poa in root-adapter
(default-dispatch-request): new fun
(dispatch-request): moved here, use pluggable function in
root-adapter
(queued-dispatch): new fun
(bg-dispatcher): new fun
(start-dispatcher-process): new fun
(setup-server): setup new root-adapter
(connection-receive-request): new fun
(poa-request-handler): factored out connection-receive-request
* clorb-poa.lisp (next-poaid): new. moved some globals to slots in
root-adapter.
(register-poa, unregister-poa): dispatch to root-adapter
(poa-locate): added root-adapter as parameter
* clorb-pkgdcl.lisp ("NET.CDDR.CLORB"): export set-boot-object
* clorb-orb.lisp (clorb-orb): rename slot adaptor to adapter
(bg-run): call start-dispatcher-process
* test-client-request.lisp ("Client Request"): new accesor name
* support-test.lisp (test-object): new accesor name
* clorb-typecode-1.lisp (unmarshal-function-cache): handle symbol
and corece it to typecode
* clorb-request.lisp (request-start-request): added buffer as
return value
(request-send): use marshal-request-message
(request-locate-reply): added synchronization
* clorb-object.lisp (CORBA:PROXY): added synchronized
(CORBA:PROXY): renamed accessor %object-connection
(raw-profiles): added synchronization
(%object-profiles): new uncsync method
(object-profiles): now with synchronization
(effective-profile): new
(get-object-connection): refactored and added synchronization
* clorb-iiop.lisp (profile-giop-version): new
(profile-giop-key): new
(marshal-locate-request): new
(marshal-request-message): new
(connection-get-buffer): new
(connection-pool): new class
(%get-iiop-connection-holder): renamed (internal)
(get-connection-from-pool): new
(*iiop-connections*): now an instance of connection-pool
(get-iiop-connection): use get-connection-from-pool
* clorb-conn.lisp (connection-send-request): moved
(connection-error): call request-reply-exception
* clorb-iiop.lisp (get-response-reply): call connection-receive-reply
(get-response-locate-reply): call connection-receive-locate-reply
* clorb-conn.lisp (connection-receive-reply): new
(connection-receive-locate-reply): new
2006-05-13 Lennart Staflin <[email protected]>
* support-test.lisp (connection-write-ready test-connection):
again from %connection-write-ready
* clorb-util.lisp (op:resolve): new
* clorb-request.lisp (request-wait-response): removed
with-synchronization
* clorb-mt.lisp (synch-wait-on-condition): added with-synchronization
* clorb-conn.lisp (connection-send-buffer): call
orb-condition-wait outside with-synchronization
(connection-write-ready): back to be the only function no
%connection-write-ready.
2006-05-12 Lennart Staflin <[email protected]>
* clorb-iiop.lisp (setup-outgoing-connection): careful
* clorb-conn.lisp (Connection): add synchronized
(Connection): added activity and shutdown-status slots
(connection-destroy): careful
(connection-shutdown): new
(%connection-write-ready): new unsychronized method
(connection-send-buffer): added synchronization
(connection-add-client-request): added synchronization
(connection-remove-client-request): added synchronization
(find-waiting-client-request): added synchronization
(connection-remove-server-request): added synchronization
(gc-connections): garb connections
(auto-gc-read-handler): new func
(connection-error): added synchronization
(connection-close): added synchronization
(connection-write-ready): added synchronization
(orb-condition-wait): new
* clorb-files.lisp (*base-files*): new file clorb-mt
* clorb.asd (:clorb): new file clorb-mt
* clorb-sysdep.lisp (listener-close): renamed
(socket-shutdown): new
* clorb-servant.lisp (server-request-systemexception-reply): call
new connection-shutdown
* clorb-request.lisp (client-request): add synchronized
(request-reply): added synchronization
(request-reply-exception): new func
(request-wait-response): added synchronization
* clorb-orb.lisp (clorb-orb): add synchronized
(bg-run): new func
* clorb-object.lisp (print-object corba:proxy): print status of
connection as bound or broken-conn
* clorb-macros.lisp (when-let): new macro
* clorb-io.lisp (print-object): method for io-descriptor
(io-reset): more careful with io-descriptor-*-process they
may be other stuff.
(io-descriptor-shutdown): new
(*io-mt-read-queue-garb*): used to initialize :max-handler in
execution-queue for io-system-mt-blocking-write read-queue.
(io-mt-read): keep reading if io-queue-event processing
initialized a new read.
(io-ready-for-read io-system-mt-blocking-write): if there is an
existing read process signal it to continue reading.
(io-system-mt-non-blocking-write): new class
(io-mt-write): write queue handler
(io-ready-for-write io-system-mt-non-blocking-write): enqueue desc
* clorb-mt.lisp: new file with the system independent
multi-threading and synchronization stuff. Moved and cleaned upp
some things from clorb-sysdep. The execution-queue and
shared-queue moved.
(synchronized): mixin for classes that need synchronization,
both locking and waiting, notifying.
2006-05-10 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp (with-synchronization): new macro
(shared-queue): new class
* clorb-orb.lisp (enqueue-work): fix spelling
* clorb-io.lisp (io-system-get-event): take optional non-blocking
argument
(io-descriptor): added lock slot
(io-system-get-event): method for io-system calls
io-system-driver if blocking
(io-create-descriptor): take keyword args, add sequence number
to io descriptors
(initialize-instance io-system-mt-base): set event-queue to a
shared-queue
* clorb-conn.lisp (process-event): new func. factored from orb-work
2006-05-09 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp: removed unix-select to clorb-openmcl
* clorb.asd (asdfsystem :clorb): new file clorb-openmcl
conditional on feature :openmcl
* clorb-files.lisp (*base-files*): new file clorb-openmcl
conditional on feature :openmcl
* clorb-openmcl.lisp (unix-select): moved to new file
* clorb-srv.lisp: renaming accessors for read-buffer
and write-buffer to read-buffer-of write-buffer-of.
* clorb-iiop.lisp: renaming accessors for read-buffer
and write-buffer to read-buffer-of write-buffer-of.
(connection-send-request): reorder connection-add-client-request
and connection-send-buffer
* clorb-io.lisp (io-system-blocking-write): new mixin class
(io-ready-for-write): method for io-system-blocking-write
(io-system-select-blocking-write): use io-system-blocking-write
(io-desc-write): option to not generate event
(io-system-mt-blocking-write): use io-system-blocking-write
* clorb-conn.lisp (Connection): renaming accessors for read-buffer
and write-buffer to read-buffer-of write-buffer-of.
(connection-send-buffer): handle connection-write-ready if
io-descriptor-set-write returns true.
* clorb-io.lisp (io-system-queue-event): new gf
(io-system-event-waiting-p): new gf
(io-system-get-event): new gf
(io-queue-event): dispatch to io-system-queue-event
(io-system): moved the event queue to a slot on io-system
(io-system-reset): new gf - allow io-system classes to do
additional reset actions
(io-reset): call io-system-reset
(io-system-mt-base): new base class - provides a lock an slot for
listener process.
(io-system-queue-event): synchronized method for io-system-mt-base
(io-system-get-event): synchronized method for io-system-mt-base
(io-system-reset): method for io-system-mt-base to kill listener
process
(io-start-bg-listen): start listener process if not already started
(io-system-multiprocess): subclass io-system-mt-base
(io-system-mt-blocking-write): subclass io-system-mt-base
(io-event-waiting-p): dispatch to io-system-event-waiting-p
(io-get-event): dispatch to io-system-get-event
* clorb-files.lisp (*base-files*): moved clorb-queue to base files
* clorb-queue.lisp (queue-empty-p): new func
2006-05-08 Lennart Staflin <[email protected]>
* clorb-util.lisp (gc-connections): new func
* clorb-sysdep.lisp (read-octets): +Digitool wait for input before
read
(current-process): +openmcl
(start-process): +openmcl
(end-process): +openmcl
(process-running-p): +openmcl
(process-wait): +openmcl
(make-lock): new func
(execution-queue): new class
* clorb-srv.lisp (poa-connection-handler): set server-p for
connection
* clorb-io.lisp (*io-system-default-class*): new var
(*io-listener*): renamed
(io-system-select-blocking-write): new io-system class
(io-poll-select): parameter no-write to ignore writing descriptors
(io-ready-for-write): method for io-system-select-blocking-write
that does a direct write
(io-system-mt-blocking-write): new io-system class
(io-mt-read): function used in read queue
(io-ready-for-read): method for io-system-mt-blocking-write, queue
descriptor
(io-ready-for-write): method for io-system-mt-blocking-write that
does a direct write
(io-init): new function to be called from ORB initialization
* clorb-conn.lisp (Connection): new slot sever-p
* clorb-value.lisp (all-feature-values): use accessor instead of
slot-value
* clorb-marshal.lisp: more safety if clorb::more-safe is on *features*
2006-05-07 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp: openmcl support for select. Similar to
SBCL/CMUCL support.
(unix-select): OpenMCL implementation.
2006-05-06 Lennart Staflin <[email protected]>
* clorb-idl.lisp (corba:idl): allow nil file and generate code
from given repository.
* clorb-target.lisp (package-prefix): method for base IRObject
(target-code-contained): deref any
(target-code): use map to allow non-list sequences in
op:supported_interfaces op:abstract_base_values etc.
2006-04-26 Lennart Staflin <[email protected]>
* clorb-value.lisp (corba:any-typecode, corba:any-value): methods
for CORBA:ValueBase.
* test-value.lisp ("Value/any"): new test case for value as any
2006-04-20 Lennart Staflin <[email protected]>
* clorb-struct.lisp (compute-marshal-function): use
tc-feature-symbols and tc-member-types. Local macro for
marshalling n member struct. Special lambdas for 1-6 member
structs.
* ec-test.lisp: import clorb:obj
* clorb-pkgdcl.lisp ("NET.CDDR.CLORB"): exporting OBJ
* clorb-util.lisp (obj): New convenice function.
2006-04-13 Lennart Staflin <[email protected]>
* Makefile (clean-fasl): recreate the fasl dir
* support-test.lisp (test-connection): new slot
response-func-called to be set when response-func is called.
(connection-write-ready): set response-func-called
(validate test-connection): check response-func-called
* idlcomp/package.lisp: new file
* clorb-pkgdcl.lisp: remove "NET.CDDR.CLORB.IDLCOMP" package
* clorb-files.lisp (*idlcomp*): new package file
2006-04-12 Lennart Staflin <[email protected]>
* examples/vtest/vtest-server.lisp (is_same): implement
* examples/vtest/vtest.idl: added is_same operation
* idl/corba-misc.idl: added StringValue and WStringValue
* clorb-pkgdcl.lisp ("OMG.ORG/CORBA"): added "STRINGVALUE" "WSTRINGVALUE"
* clorb-misc.lisp (OMG.ORG/CORBA:STRINGVALUE)
(OMG.ORG/CORBA:WSTRINGVALUE): added
* clorb-target.lisp (target-code): corba:valueboxdef - newer
generate the :type
* clorb-typecode-1.lisp (set-ifr-info): set skel-table property to nil
* clorb-value.lisp (value-typecode): new slots: keyword-symbols
all-keyword-symbols
(truncatable-value-p): new generic function
(*exact-type-value-marshal-opt*): fixed spelling
(marshal-value): use truncatable-value-p, to better handle boxed
values.
(tc-keyword-symbols): new
(all-keyword-symbols): new
(unmarshal-value-1): use all-keyword-symbols and
all-member-types to better handle boxed values.
(shared-initialize): method for value-box to accept
:create-for-unmarshal key, allowing value-box instances to be
made by normal value unmarshalling.
(all-member-types, all-feature-symbols, all-keyword-symbols):
methods for value_box-typecode.
(define-value-box): always define class. Define object-id method.
(compute-marshal-function, compute-unmarshal-function): method
for value_box-typecode like the value-typecode
* test-value.lisp ("Value/boxed value"): also test marshaling with
type ValueBase. Change boxing of strings.
2006-04-08 Lennart Staflin <[email protected]>
* clorb-util.lisp (op:to_name): new method.
* support-test.lisp (test-system-exception-message): new func.
* test-client-request.lisp ("_non_existent"): new test case.
* clorb-request.lisp (_non_existent): trap CORBA:OBJECT_NOT_EXIST
and convert to a true result.
2006-04-06 Lennart Staflin <[email protected]>
* pns-server.lisp (next_one): bug fix in binding type, coerce to
list if this method is used.
(*null-binding*): holds a dummy binding returned by next_one when
no more bindings.
2006-04-05 Lennart Staflin <[email protected]>
* test-client-request.lisp: better testing for handling of
TRANSIENT.
* clorb-sysdep.lisp (*clisp-buffered-streams*): experimental
(open-active-socket, accept-connection-on-socket): use
*clisp-buffered-streams* to test if buffered streams would work in
clisp (no currently it seems).
* clorb-pi-impl.lisp: removing the orb-initializer class, dosen't
make sense. Clients will subclass the
PortableInterceptor:ORBInitializer class.
2006-03-16 Lennart Staflin <[email protected]>
* clorb-request.lisp (request-reply): decode system exceptions,
here it will be done once.
(should-retry): return status, or nil
(request-poll): system exceptions already decoded. return status
not request.
* clorb-conn.lisp (connection-close): just checking
2006-03-15 Lennart Staflin <[email protected]>
* clorb-request.lisp (should-retry): New function: retries a
request if suitable TRANSIENT exception.
(request-poll): decode system execptions, handle error status
and do retry via should-retry.
(request-get-response): No longer decodes system exeptions or
handle error status.
* clorb-idl.lisp (corba:idl): Bind *defining-repository* while
evaluating generated code.
* clorb-typecode-1.lisp:
(*defining-repository*): set to a repository object while
evaluating IDL files.
(add-defining-repository): Called to add link to repository object
to symbols for IDL types.
(defining-repository): reader for defining repository for IDL type
symbol.
(set-ifr-info): call add-defining-repository
2006-03-07 Lennart Staflin <[email protected]>
* clorb-ifr.lisp: fix ordering of (defmethod moveto :before ..)
* clorb-files.lisp (*binary-folder*): include _thread for threaded
sbcl as the fasl is incompatible
2006-03-06 Lennart Staflin <[email protected]>
* clorb-util.lisp (op:id, op:type): new methods for Accessing
Interface Repository information fot IDL-types.
* clorb-object.lisp (Module): cleanup
* clorb-orb.lisp, clorb-pkgdcl.lisp:
added franz compatible narrowing: op:_narrow on the orb object.
2006-01-29 Lennart Staflin <[email protected]>
* clorb-iop.lisp, clorb-pi-base.lisp, clorb-pkgdcl.lisp, idl/orb.idl, idl/pi.idl:
Remove the IOP_N module and package and add TaggedComponentSeq to IOP.
Ref: Issue 3935: IOP_N
* clorb-idlparser.lisp (<simple_type_spec>): resolve alias types
before checking restrictions
* clorb-exceptions.lisp, clorb-struct.lisp, clorb-typecode-1.lisp, clorb-typecode-2.lisp:
remove keywords slot from base typecode and add it where needed
(struct, enum, exception).
2006-01-29 Lennart Staflin <[email protected]>
* clorb-iop.lisp, clorb-pi-base.lisp, clorb-pkgdcl.lisp, idl/orb.idl, idl/pi.idl:
Remove the IOP_N module and package and add TaggedComponentSeq to IOP.
Ref: Issue 3935: IOP_N
* clorb-idlparser.lisp (<simple_type_spec>): resolve alias types
before checking restrictions
* clorb-exceptions.lisp, clorb-struct.lisp, clorb-typecode-1.lisp, clorb-typecode-2.lisp:
remove keywords slot from base typecode and add it where needed
(struct, enum, exception).
2006-01-29 Lennart Staflin <[email protected]>
* clorb-idlparser.lisp (<simple_type_spec>): resolve alias types
before checking restrictions
2006-01-18 Lennart Staflin <[email protected]>
* clorb-macros2.lisp, clorb-object.lisp, clorb-supp.lisp, clorb-value.lisp, test-union.lisp:
Some LW CORBA compatibility: (op:narrow class-symbol proxy) - for
narrowing. Type code constants for all named IDL types. Named with a
_tc_ prefix as _tc_type_name. These symbols are not yet exported, but
should be in the future.
2006-01-12 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp, devel.lisp: REPL friendliness for SBCL.
* clorb-io.lisp:
io-system-driver io-system-multiprocess, don't wait if polling
2006-01-12 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp, devel.lisp: REPL friendliness for SBCL.
* clorb-io.lisp:
io-system-driver io-system-multiprocess, don't wait if polling
2005-12-20 Lennart Staflin <[email protected]>
* clorb-buffer.lisp, clorb-macros2.lisp: Cleanup
* clorb-marshal.lisp: Use string->octets in marshal-osequence.
* clorb-sysdep.lisp: octets <-> characters from Dmitri Hrapof
2005-12-19 Lennart Staflin <[email protected]>
* devel.lisp: remove acl special
2005-12-10 Lennart Staflin <[email protected]>
* clorb-macros.lisp, clorb-macros2.lisp, clorb-object.lisp, clorb-target.lisp, clorb-value.lisp, gen-package-decl.lisp:
Patch from Dmitri Hrapof: remove obsolete clisp read-time
conditionals.
* clorb-iiop.lisp: cleanup
2005-12-10 Lennart Staflin <[email protected]>
* clorb-macros.lisp, clorb-macros2.lisp, clorb-object.lisp, clorb-target.lisp, clorb-value.lisp, gen-package-decl.lisp:
Patch from Dmitri Hrapof: remove obsolete clisp read-time
conditionals.
* clorb-iiop.lisp: cleanup
2005-11-20 Lennart Staflin <[email protected]>
* clorb-idlcpp.lisp (parse-numeric-character): spelling
* redpas/lexer.lisp (alt-error, failed-match):
make error parent of the conditions
* clorb-sysdep.lisp (cpp-command-string): add -w -undef to cpp call
2005-11-20 Lennart Staflin <[email protected]>
* clorb-idlcpp.lisp (parse-numeric-character): spelling
* redpas/lexer.lisp (alt-error, failed-match): make error parent
of the conditions
* clorb-sysdep.lisp (cpp-command-string): add -w -undef to cpp call
2005-11-10 Lennart Staflin <[email protected]>
* test-srv.lisp, test-typecode.lisp: cleanup
* clorb-target.lisp, test-target.lisp:
Fix generated type of string and contained
* clorb-unmarshal.lisp: New handling of profiles (in IOR)
* test-idlcomp.lisp: more comment testing
* clorb-request.lisp, clorb-servant.lisp:
refactor to support interceptors
* clorb-pkgdcl.lisp: added symbol in CORBA
* clorb-pi-impl.lisp: separate request info classes
* clorb-ifr-info.lisp: ifr-kind will also look at the typecode.
more experimental stuff
* pns-server.lisp:
Don't store IOR for local contexts. Allows keeping old database when
chaning IOR/host/port.
* clorb-iiop.lisp, clorb-object.lisp, clorb-orb.lisp:
New handling of profiles (in IOR)
* clorb-iop.lisp, clorb-exceptions.lisp: cleanup
2005-11-08 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp: no buffering for CLISP
* clorb-idllexer.lisp: cleanup
* clorb-any.lisp: print-object method for any
2005-05-05 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp (select-listener): ignore if select-direct-input
2005-05-05 Lennart Staflin <[email protected]>
* Version 0.6
2005-05-04 Lennart Staflin <[email protected]>
* clorb-sysdep.lisp (select-listener): ignore if select-direct-input
* clorb-io.lisp (io-poll-select): use select-listener
* clorb-sysdep.lisp (select-listener): new func
Also cmu19 like cmu18
2005-05-03 Lennart Staflin <[email protected]>
* clorb-iiop.lisp (profile-connection): medtod for vector (multi
profile) to avoid error.
2005-04-05 Lennart Staflin <[email protected]>
* test-idllexer.lisp ("IDL Lexer"): new fixed point literals
* test-idlcomp.lisp ("idlcomp"): fixed point constant and fixed
point constant arithmetic
* clorb-idlparser.lisp (<const_dcl>): accept "const fixed" with
fixed literal made by make-idl-fixed and friends.
(<const_type>): new list of allowed types
(add, sub): handle fixed point arithmetic
(<number_literal>): added fixed point
* clorb-idllexer.lisp (idl-fixed-p): new func
(idl-fixed-values): new func
(make-idl-fixed): new func
(parse-fixed): return fixed repr made make make-idl-fixed
2005-03-25 Lennart Staflin <[email protected]>
* test-typecode.lisp ("Typecodes"): added testcases for checking
parameters to typecode creation functions
* clorb-orb.lisp (check-tc-id, check-tc-name)
(check-tc-member-names, check-tc-content-type): new functions
for checking parameters to typecode creation functions
2005-03-23 Lennart Staflin <[email protected]>
* examples/hello/idl.lisp: avoid logical pathnames
* clorb-sysdep.lisp (accept-connection-on-socket): fix bug when
called non blocking on sbcl
* clorb-request.lisp (client-request): added 'args' slot
(request-start-request): simplified interface
(do-static-call): added args parameter
(request-send): new request-start-request interface
(request-poll): new func
(request-wait-response): call request-poll
(request-get-response): move forward handling to request-poll
(compute-static-call, compute-static-set): use args parameter to
do-static-call
(poll_response): call request-poll
* clorb-iiop.lisp (locate): new request-start-request interface
2005-03-11 Lennart Staflin <[email protected]>
* clorb-idlparser.lisp (<literal>): only <number_literal> for all
the numeric literals
(<identifier>): handle _ escaped identifiers
* clorb-idllexer.lisp (hex-char-p, hex-char, hex-escape)
(oct-char, oct-escape, escaped-char, string-literal-1): new functions
(string-literal): parse escaped characters and adjacent strings
(char-literal): parse excaped character
(decimal-char-p, parse-fixed): new funcs
(number-token): parse octal, hex and fixed. make all floats
double-float
2005-02-28 Lennart Staflin <[email protected]>
* clorb-idlparser.lisp (<identifier>): better error reporting,
allow leading underscore and remove it from result.
* test-idlcomp.lisp ("idlcomp"): new test "escaping identifiers"
2005-02-25 Lennart Staflin <[email protected]>
* clorb-poa.lisp (PortableServer:POA): new slot executing-requests
(deletef): new macro
(poa-invoke): track executing requests in executing-requests slot
2005-02-10 Lennart Staflin <[email protected]>
* clorb-ifr.lisp (describe-contained): new method for constant-def
2005-02-03 Lennart Staflin <[email protected]>
* clorb-value.lisp (value_box-typecode): sharing alias-typecode
gives wrong result for compute-marshal-function.
* clorb-macros2.lisp (define-interface): added defined_in version
keyword arguments. And use set-ifr-info.
2005-02-01 Lennart Staflin <[email protected]>
* clorb-pkgdcl.lisp ("OMG.ORG/IOP"): new exported symbols due to
constants added to the package
2005-01-31 Lennart Staflin <[email protected]>
* clorb-iop.lisp: added some ComponentID constants
* clorb-typecode-1.lisp (set-ifr-description, ifr-description):
change name of property from ifr-desc to ifr-description
2005-01-03 Lennart Staflin <[email protected]>
* test-poa.lisp (define-test "Identity mapping"): new test
* clorb-poa.lisp (reference_to_id): fix use of obsolete function
2004-12-27 Lennart Staflin <[email protected]>
* clorb-files.lisp (*server-files*): new file clorb-queue
2004-12-20 Lennart Staflin <[email protected]>
* clorb-srv.lisp (poa-request-handler): use
connection-add-server-request
(send-response): use connection-remove-server-request
* clorb-ifr.lisp (op:destroy): defined for IRObject, Contained,
Container, Repository, Alias-def and Primitive-def.
(op:describe_contents): defined for container
* clorb-conn.lisp (connection-add-server-request): new func
(connection-remove-server-request): new func
2004-12-05 Lennart Staflin <[email protected]>
* clorb-marshal.lisp (marshal-add-encapsulation): restore buffer
start pos before marshalling the length, otherwise align might
croak
2004-11-26 Lennart Staflin <[email protected]>
* clorb-idl.lisp (corba:idl): added new keyword parameter
REPOSITORY, allows caller to populate existing repository.
2004-09-17 Lennart Staflin <[email protected]>
* clorb-poa.lisp: use new object-map class for Active Object Map
in POA. Updated all uses.
* clorb-files.lisp (*server-files*): new file: clorb-aom
2004-09-16 Lennart Staflin <[email protected]>
* clorb-objkey.lisp (to-object-id): new method for general sequence
* test-poa.lisp: new test cases
* clorb-srv.lisp (poa-cancelrequest-handler): set :canceled state
on requests
* clorb-poa.lisp (wait-for-completion): new place holder GF
(PORTABLESERVER:POAMANAGER): new slot, managed-poas, tracks the
POAs managed by the POAManager
(in-invocation-context): new func
(poamanager-new-state): also handle wait-for-completion and
etheralize-objects
(add-poa): new GF
(remove-poa): new GF
(start-etheralize): new func
* support-test.lisp (make-test-connection): new func
(setup-test-out): use new func
(setup-test-in): new func
(test-write-request): new func
* clorb-iiop.lisp: cleaning up some define-struct
2004-06-09 Lennart Staflin <[email protected]>
* luna/package.lisp: new exports
* support-test.lisp: (ensure-exception): moved to luna/testsuite.lisp
* luna/testsuite.lisp (ensure-values, ensure-exception): new macros
* test-poa.lisp ("POA Test"): fix
* test-orb.lisp ("Test ORB Pseudo object"): new orb-work interface
* test-client-request.lisp ("Client Request"): new orb-work interface
* devel.lisp (*the-orb*): init orb with port on CMUCL
* clorb-typecode-2.lisp (marshal-function-cache): create a
cache cell from a typecode.
(%jit-marshal): use marshal-function-cache
* clorb-typecode-1.lisp (old-with-cache-slot): renamed with-cache-slot
* clorb-target.lisp (target-code-contained): cleanup
(target-code): dispatch on container using GF
target-code-contained
(target-code-contained): method for servant operation, raises
CORBA:NO_IMPLEMENT.
* clorb-sysdep.lisp (passive-socket-port): shouldn't be called
with a null socket.
(socket-stream-closed-p): allow a null stream in some cases.
(cpp-command-string): moved here, added handling of preprocessor
defines.
* clorb-supp.lisp (*the-orb*): moved
* clorb-srv.lisp (poa-request-handler): track server-requests
from connection (being processed).
(send-response): track server-requests
(poa-cancelrequest-handler): preliminary implementation of cancel
request, don't send response for canceled requests.
(poa-locaterequest-handler): use send-locate-reply
(send-reply): new func
(send-locate-reply): new func
* clorb-servant.lisp (create-server-request): include orb
(server-request-respond): check for internal _locate request.
* clorb-request.lisp (request-start-request): take handler
function as parameter
(*call-hook*): new variable
(do-static-call): after request sent, call *call-hook* if set,
else normal response handling
(request-send): new request-start-request interface
(dii-output-func): use jit-marshal
* clorb-poa.lisp (poa-invoke): refactoring
* clorb-pkgdcl.lisp ("OMG.ORG/CORBA"): updated
* clorb-orb.lisp (clorb-orb): added work-queue slot
(enqueu-work): new work queue interface
(work_pending): new interface to io layer
(perform_work): new orb-work interface
(run): new orb-work interface
* clorb-options.lisp (*clorb-pathname-defaults*): need a read
time eval for the *compile-file-pathname* reference.
* clorb-objkey.lisp: cleanup
* clorb-macros.lisp (with-cache-slot): moved and simplified
* clorb-io.lisp (io-event-waiting-p, io-get-event): new event
queue interface.
* clorb-iiop.lisp (locate): use request-start-request
* clorb-ifr-export.lisp (local-translator, remote-translator):
use with-cache-slot macro.
* clorb-idlparser.lisp (load-repository): support for defines
(*default-idl-compiler*): default compiler defines preprocessor
symbol _CLORB.
* clorb-idllexer.lisp (using-idllex): support for defines
* clorb-idlcpp.lisp (*warn-unknown-pragma*): new flag, if true
warn about unknown pragmas from cpp.
(parse-cpp-line): use *warn-unknown-pragma* and recognize but
ignore GCC pragma.
(using-cpp-stream): support for defines
* clorb-idl.lisp (IDL-COMPILER): support for defines
(*default-exclude*): added modules IOP, GIOP and IIOP
* clorb-files.lisp (*base-files*): added clorb-misc file.
* clorb-conn.lisp (Connection): added server-request slot.
(orb-work): added work queue in the ORB object. Use new io-driver
interface.
(orb-wait): use new orb-work interface.
* clorb-buffer.lisp (the-orb): moved.
2004-02-10 Lennart Staflin <[email protected]>
* Version 0.5 Released
2003-10-23 Lennart Staflin <[email protected]>
* Version 0.4 Released
2003-10-15 Lennart Staflin <[email protected]>
* clorb-ifr.lisp (describe-contained): produce a
CORBA:InterfaceDescription not a full description.
(check-unique-name): new func.
(setf op:base_interfaces): use check-unique-name
(create_attribute): use check-unique-name
(create_operation): use check-unique-name
2003-10-08 Lennart Staflin <[email protected]>
* support-test.lisp (ensure-exception): added
* idef-read.lisp:
don't create the same interface multiple times, even if it is
multiple times in the idef
* clorb-target.lisp (target-type): ValueBase primitive
* clorb-orb.lisp (OMG.ORG/CORBA:VALUEMODIFIER): new type
(simple-value-members): factor of create_value_tc
* clorb-opdef.lisp: removed unused functions
* clorb-object.lisp (CORBA::ValueBase): new class
(CORBA::AbstractBase): new class
(_is_equivalent, _is_nil, _hash, _is_a): defined on class t. To
handle local objects.
2003-10-07 Lennart Staflin <[email protected]>
* clorb-macros.lisp (define-operation): added documentation key
parameter.
* clorb-typecode.lisp: Added constants for ValueModifier and
TC_ValueBase
* clorb-ifr.lisp: Implemented ValueDef, AbstraceInterfaceDef,
LocalInterfaceDef and NativeDef.
1999-11-30 Lennart Staflin <[email protected]>
* clorb-orb.lisp: Added support for -ORBPort init argument to
ORB_init.
* clorb-iiop.lisp (unmarshal-giop-header): cleanup error message
* clorb-io.lisp (io-driver): added cludge to work-around the
buffering in sbcl streams.