Activity for ORBit-Ada

  • Oliver Kellogg Oliver Kellogg committed [573fd9] on Code

    CORBA/IDLtree.pm : Synchronize with version 2.06.

  • Oliver Kellogg Oliver Kellogg committed [e724a5] on Code

    CORBA/IDL2Ada.pm : In sub `e` remove unintended leftover from debugging.

  • Oliver Kellogg Oliver Kellogg committed [10cfde] on Code

    CORBA/IDLtree/Comment_Directives.pm

  • Oliver Kellogg Oliver Kellogg committed [a537ca] on Code

    CORBA/IDL2Ada.pm version 2025-04-08

  • Oliver Kellogg Oliver Kellogg committed [1c1dad] on Code

    CORBA/IDL2Ada.pm

  • Oliver Kellogg Oliver Kellogg committed [320316] on Code

    CORBA/IDLtree.pm (parse_annotation_app) : fix error from commit cced735

  • Oliver Kellogg Oliver Kellogg committed [cced73] on Code

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [cd80ff] on Code

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [978658] on Code

    CORBA/IDLtree : Synchronize with release 2.05

  • Oliver Kellogg Oliver Kellogg committed [25f765] on Code

    Harmonize FATFIFI text representation of arrays with Ada2022:

  • Oliver Kellogg Oliver Kellogg committed [d23413] on Code

    CORBA/IDL2Ada.pm version 2024-03-15:

  • Oliver Kellogg Oliver Kellogg committed [5842d1] on Code

    orbit-ada-include/fatfifi-io.adb : Declare local Text `constant` where possible.

  • Oliver Kellogg Oliver Kellogg committed [7d0c4c]

    CORBA/IDLtree.pm : In sub get_numeric use Carp::cluck for warning about undefined symbol.

  • Oliver Kellogg Oliver Kellogg committed [3798f7]

    CORBA/IDL2Ada.pm followup to commit 91472e8:

  • Oliver Kellogg Oliver Kellogg committed [ad2574]

    tests/cosnaming/Makefile

  • Oliver Kellogg Oliver Kellogg committed [91472e]

    CORBA/IDL2Ada.pm

  • Oliver Kellogg Oliver Kellogg committed [5fa0dd]

    idl2ada.pl

  • Oliver Kellogg Oliver Kellogg committed [5dc41b]

    CORBA/IDLtree.pm

  • Daniel S Henry Daniel S Henry posted a comment on discussion Help

    FYI, we are still considering your ORBIT-ADA, we did run into a few snags, but i was getting there, My Customer is currently evaluating where they want to go, i am working on other projects while we wait for the government to decide, if they want to move forward or drop this project. thnx for your help, i know i was a bit scatter brained at first, but it was starting to work. i did get several dialog boxes up, and that's how far we wanted to get at that point. danielh On 4/29/20 7:23 PM, Oliver Kellogg...

  • Oliver Kellogg Oliver Kellogg posted a comment on discussion Help

    [...] all i had to do was change all define calls to presume a procedure and get the IOR from the variable RETURNS, moving forward.... crosss your fingers Have you been able to move forward - or have there been more problems?

  • Oliver Kellogg Oliver Kellogg committed [2ebedf]

    idl2ada.pl

  • Daniel S Henry Daniel S Henry posted a comment on discussion Help

    ok, i figured it out, OrbRiver treats all defines as functions, and returns the RETURNS via the function call, orbit-ada treats all defines as procedures and returns the RETURNS via an out varialbe called RETURNS, all i had to do was change all define calls to presume a procedure and get the IOR from the variable RETURNS, moving forward.... crosss your fingers

  • Oliver Kellogg Oliver Kellogg modified a comment on discussion Help

    Hmm that's strange. I the same commit attempted a test case for the problem, see tests/tao_param_test/param_test-impl.adb : procedure test_object (Self : access Object; obj : out CORBA.Object.Ref'Class; Returns : out CORBA.Object.Ref'Class) is Nil_Ref : CORBA.Object.Ref'Class := CORBA.Object.Null_Ref; begin Debug ("Param_Test.Impl.test_object is called"); obj := Nil_Ref; Returns := Nil_Ref; end test_object; Could you send a stripped down reproducer that I can integrate into the test suite?

  • Oliver Kellogg Oliver Kellogg posted a comment on discussion Help

    Hmm that's strange. I the same commit attempted a test case for the problem, see tests/tao_param_test/param_test-impl.adb : procedure test_object (Self : access Object; obj : out CORBA.Object.Ref'Class; Returns : out CORBA.Object.Ref'Class) is Nil_Ref : CORBA.Object.Ref'Class := CORBA.Object.Null_Ref; begin Debug ("Param_Test.Impl.test_object is called"); obj := Nil_Ref; Returns := Nil_Ref; end test_object; Could you send a stripped down reproducer that I can integrate into the test suite?

  • Daniel S Henry Daniel S Henry posted a comment on discussion Help

    so first off, i don't think it can be a constant, because it's an out value 2nd, it still whines about being a package or procedure name, 3rd, i trie both a direct reference and a variable in the procedure and a private in the spec, all three same result smu_pull_down.adb:398:40: expected private type "Ref" defined at corba-object.ads:6 smu_pull_down.adb:398:40: found package or procedure name dsp_display_list.adb:1113:42: expected private type "Ref" defined at corba-object.ads:6 dsp_display_list.adb:1113:42:...

  • Oliver Kellogg Oliver Kellogg posted a comment on discussion Help

    Oh, I see. Could you try again with https://sourceforge.net/p/orbitada/gnack/ci/855660e5a01884861ed830b9d3c698ffa5b8f8c6/ ?

  • Oliver Kellogg Oliver Kellogg committed [855660]

    orbit-ada-include/corba-object.ads

  • Daniel S Henry Daniel S Henry posted a comment on discussion Help

    smu_pull_down.adb:393:40: expected private type "Ref" defined at corba-object.ads:6 smu_pull_down.adb:393:40: found package or procedure name dsp_display_list.adb:1107:42: expected private type "Ref" defined at corba-object.ads:6 dsp_display_list.adb:1107:42: found package or procedure name

  • Oliver Kellogg Oliver Kellogg posted a comment on discussion Help

    Could you try out https://sourceforge.net/p/orbitada/gnack/ci/1d4a13accf1edd68e0fe5e0f1c48ef657341dec8/ ? note that i created a private NIL_REF, but the compile still doesn't like it. Hmm, that's strange. What is the compiler error message?

  • Oliver Kellogg Oliver Kellogg committed [1d4a13]

    orbit-ada-include/corba-object.{ads,adb}

  • Daniel S Henry Daniel S Henry posted a comment on discussion Help

    yep, that fixed it, thnx much, while i have your attention, i had one more question 1. i keep getting the error expected private type "Ref" defined at corba-object.ads:6 found package or procedure name. 2. the last variable in the Call is called RETURNS. (mycorba.PULL_DOWN.define_PULL_DOWN(self,text,enabled,item_num,font_rec,RETUNS) 3. in the OLD ORBRiver code we had a DEFAULT NULL_REF that we put here. 4. we don't need this value, but i can't get it to compile 5. what do i put in the RETURNS variable?...

  • Daniel S Henry Daniel S Henry posted a comment on discussion Help

    yep, that fixed it, thnx much, while i have your attention, i had one more question 1. i keep getting the error expected private type "Ref" defined at corba-object.ads:6 found package or procedure name. 2. the last variable in the Call is called RETURNS. (mycorba.PULL_DOWN.define_PULL_DOWN(self,text,enabled,item_num,font_rec,RETUNS) 3. in the OLD ORBRiver code we had a DEFAULT NULL_REF that we put here. 4. we don't need this value, but i can't get it to compile 5. what do i put in the RETURNS variable?...

  • Oliver Kellogg Oliver Kellogg committed [0542d1]

    CORBA/IDL2Ada.pm

  • Oliver Kellogg Oliver Kellogg committed [dc3b9f]

    CORBA/IDLtree.pm : Sync with public version 2.03

  • Oliver Kellogg Oliver Kellogg committed [5ac150]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [494eca]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [db7191]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [9a99d8]

    CORBA/IDLtree/Comment_Directives.pm followup to IDLtree.pm v1.6 change,

  • Oliver Kellogg Oliver Kellogg committed [7b3166]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [13fa8d]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [5713d5]

    CORBA/IDL2Ada.pm

  • Oliver Kellogg Oliver Kellogg committed [6a1568]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [21357b]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [3dd020]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [feae9c]

    idl2ada.pl

  • Oliver Kellogg Oliver Kellogg committed [6c0226]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [db57a3]

    CORBA/IDL2Ada.pm

  • Oliver Kellogg Oliver Kellogg committed [b788bf]

    tests/fatfifi/tst.idl

  • Oliver Kellogg Oliver Kellogg committed [132873]

    CORBA/IDLtree.pm

  • Oliver Kellogg Oliver Kellogg committed [8b2bf4]

    Initial commit - corresponds to gnack-1.1c

  • Oliver Kellogg Oliver Kellogg committed [c77265]

    Initial revision

  • Oliver Kellogg Oliver Kellogg committed [9480b8]

    Add generic function G_Seq_allocbuf.

  • Oliver Kellogg Oliver Kellogg committed [4a60b9]

    CORBA::IDLtree adds a file scope which we need to avoid

  • Oliver Kellogg Oliver Kellogg committed [5a88fd]

    r119771

  • Oliver Kellogg Oliver Kellogg committed [950003]

    CORBA::IDLtree::Elem - Information about elementary types

  • Oliver Kellogg Oliver Kellogg committed [4e1bf7]

    Adapt to ORBit2.

  • Oliver Kellogg Oliver Kellogg committed [3897b5]

    Utilities for processing directives embedded in IDL comments

  • Oliver Kellogg Oliver Kellogg committed [76c058]

    Adjust libs to ORBit2.

  • Oliver Kellogg Oliver Kellogg committed [6d1302]

    Add GMGPL, sync with wavefront.

  • Oliver Kellogg Oliver Kellogg committed [c10184]

    r116920

  • Oliver Kellogg Oliver Kellogg committed [e99e5e]

    Formatted Ada Text File I/o From Idl

  • Oliver Kellogg Oliver Kellogg committed [c86c99]

    sync with internal wavefront.

  • Oliver Kellogg Oliver Kellogg committed [a163c3]

    Add functions small_alloc and small_allocbuf.

  • Oliver Kellogg Oliver Kellogg committed [e30e0d]

    Finally, a proper Makefile :)

  • Oliver Kellogg Oliver Kellogg committed [9ebd34]

    r120389

  • Oliver Kellogg Oliver Kellogg committed [a9933c]

    Use CORBA.C_Types.G_Seq_allocbuf.

  • Oliver Kellogg Oliver Kellogg committed [1a00f3]

    Comment out functions that are not yet available in ORBit2-2.12.0.

  • Oliver Kellogg Oliver Kellogg committed [b36e2b]

    start using CORB::IDLtree::Comment_Directives

  • Oliver Kellogg Oliver Kellogg committed [10a702]

    PortableServer.POA.Activate_Object_With_Id doesn't seem to work with ORBit2,

  • Oliver Kellogg Oliver Kellogg committed [be74fd]

    Adjust to ORBit2.

  • Oliver Kellogg Oliver Kellogg committed [e94f43]

    %keywords: Add CORBA 3.0 keywords.

  • Oliver Kellogg Oliver Kellogg committed [d991d4]

    Set the directive object in CORBA::IDL2Ada.

  • Oliver Kellogg Oliver Kellogg committed [4ce46b]

    First step towards ORBit2.

  • Oliver Kellogg Oliver Kellogg committed [4927a6]

    sync with internal wavefront.

  • Oliver Kellogg Oliver Kellogg committed [b4b632]

    r46955

  • Oliver Kellogg Oliver Kellogg committed [729bcc]

    Remove unused packages.

  • Oliver Kellogg Oliver Kellogg committed [132ffe]

    Use new package ORBit and new function CORBA.C_Types.G_Seq_allocbuf.

  • Oliver Kellogg Oliver Kellogg committed [e7fcec]

    sub prefix: Fix condition for avoiding file scope.

  • Oliver Kellogg Oliver Kellogg committed [7740a7]

    ugh, finally make it usable

  • Oliver Kellogg Oliver Kellogg committed [c89c28]

    at last, a Makefile

  • Oliver Kellogg Oliver Kellogg committed [fec041]

    fix placement of rules

  • Oliver Kellogg Oliver Kellogg committed [5cb532]

    Change $gen_tc_any to true by default. ORBit2 requires the typecodes

  • Oliver Kellogg Oliver Kellogg committed [118ec4]

    adapt handling of sequences to ORBit2

  • Oliver Kellogg Oliver Kellogg committed [3bd9e9]

    sub helper_prefix: I don't remember what this "avoid file scope" jazz was

  • Oliver Kellogg Oliver Kellogg committed [5f8998]

    sync with svn r204004

  • Oliver Kellogg Oliver Kellogg committed [f2850d]

    add info about ORBIIOPIPv4=1

  • Oliver Kellogg Oliver Kellogg committed [a6c49a]

    fix GEN_C_HDRS

  • Oliver Kellogg Oliver Kellogg committed [3fca1c]

    Makefile obsoletes {c,s}link

  • Oliver Kellogg Oliver Kellogg committed [914734]

    don't need typecodes here

  • Oliver Kellogg Oliver Kellogg committed [4c6989]

    fix typos

  • Oliver Kellogg Oliver Kellogg committed [6ff079]

    adapt handling of exceptions to ORBit2

  • Oliver Kellogg Oliver Kellogg committed [bcc0f9]

    lose a few words about ORBIT2_DEBUG

  • Oliver Kellogg Oliver Kellogg committed [18c62b]

    add Makefile

  • Oliver Kellogg Oliver Kellogg committed [30718c]

    idl2ada.pl switch -T suppresses typecode generation. By default, typecodes are generated.

  • Oliver Kellogg Oliver Kellogg committed [a7cdc4]

    Supply -T at idl2ada. Depend on code generator files.

  • Oliver Kellogg Oliver Kellogg committed [ef1c13]

    at last, a Makefile

  • Oliver Kellogg Oliver Kellogg committed [8a1481]

    update

  • Oliver Kellogg Oliver Kellogg committed [9c9077]

    finally, a Makefile

  • Oliver Kellogg Oliver Kellogg committed [969c25]

    enable debugging the generated C code

  • Oliver Kellogg Oliver Kellogg committed [e4bee5]

    generate proxy only, clean up rules

1 >
MongoDB Logo MongoDB