From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a0c:ef06:: with SMTP id t6mr8361764qvr.10.1568127689678; Tue, 10 Sep 2019 08:01:29 -0700 (PDT) X-Received: by 2002:a9d:6757:: with SMTP id w23mr17013156otm.329.1568127689363; Tue, 10 Sep 2019 08:01:29 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!o24no5333309qtl.0!news-out.google.com!c11ni858qtp.0!nntp.google.com!o24no5333298qtl.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 10 Sep 2019 08:01:29 -0700 (PDT) In-Reply-To: <4a0d83a5-3a12-4456-8f3c-abae885b5ba9@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a02:c7d:3c35:b000:325a:3aff:fe0f:37a5; posting-account=L2-UcQkAAAAfd_BqbeNHs3XeM0jTXloS NNTP-Posting-Host: 2a02:c7d:3c35:b000:325a:3aff:fe0f:37a5 References: <4a0d83a5-3a12-4456-8f3c-abae885b5ba9@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <5c1920b0-ca9b-4d88-9f2a-97ab47f66389@googlegroups.com> Subject: Re: AWS (Amazon Web Services) Libraries for Ada From: Lucretia Injection-Date: Tue, 10 Sep 2019 15:01:29 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:57122 Date: 2019-09-10T08:01:29-07:00 List-Id: On Tuesday, 10 September 2019 13:37:04 UTC+1, jsin...@gmail.com wrote: =20 > I'm working on a project where I will be using AWS services (S3, SQS, and= SNS to start) and I was wondering if anyone knows about a ADA library for = these services.=20 I would seriously doubt there is one. =20 > I've looked around and don't see one --- would my best bet be to build a = binding to the C++ AWS apis? If they have C rather than C++ API's, use that, it'll be a ton easier. If t= hey don't, it's not going to be pleasant, see https://github.com/Lucretia/t= est_binding for an example of how to do it by hand. GCC and G++ have switches to create bindings, but these bindings once gener= ated need to be wrapped in an Ada layer to do things properly, such as dest= ructors, i.e. they don't get generated and don't work. When we (charlie5 on= #Ada) last looked, the app would crash in certain circumstances.