From ATS2 to Python

93 views
Skip to first unread message

gmhwxi

unread,
Aug 19, 2014, 4:32:32 AM8/19/14
to ats-lan...@googlegroups.com
FYI.

The code generator from ATS to Python is functioning.

It is usable now. Hopefully, it will become more and more useful.

Here is the directory containing all the code for this project:

https://github.com/githwxi/ATS-Postiats-contrib/tree/master/projects/MEDIUM/ATS-parse-emit/Python

For now, you need ATS2-github to compile the code. I will release a new version of ATS2 very soon
so that ATS2-sourceforge can also be used.

The library for using this code generator needs to be built up from time to time:

https://github.com/githwxi/ATS-Postiats-contrib/tree/master/projects/MEDIUM/ATS-parse-emit/Python/prelude

Anyone interested in volunteering?

Please find various tests here:

https://github.com/githwxi/ATS-Postiats-contrib/tree/master/projects/MEDIUM/ATS-parse-emit/Python/TEST

Please read the Makefile to see how the code generator can be invoked to generate Python code:

https://github.com/githwxi/ATS-Postiats-contrib/tree/master/projects/MEDIUM/ATS-parse-emit/Python/TEST/Makefile

So far, the functional core of ATS2 is supported (including datatypes, pattern matching, higher-order functions, etc.).

Have fun!


Raoul Duke

unread,
Aug 19, 2014, 4:52:18 PM8/19/14
to ats-lang-users
> The library for using this code generator needs to be built up from time to
> time:
>
> https://github.com/githwxi/ATS-Postiats-contrib/tree/master/projects/MEDIUM/ATS-parse-emit/Python/prelude
>
> Anyone interested in volunteering?

i hope you mean, "interested in setting up jenkins so things are automated"? :-)

Brandon Barker

unread,
Aug 19, 2014, 5:17:11 PM8/19/14
to ats-lang-users
Maybe I misunderstood, I thought Hongwei was implying more work needs to be done on bringing python standard library and ATS/prelude functions to the python prelude (since apparently a straight-up port of ATS/prelude won't work due to different semantics between C & python).

Brandon Barker
brandon...@gmail.com



--
You received this message because you are subscribed to the Google Groups "ats-lang-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ats-lang-user...@googlegroups.com.
To post to this group, send email to ats-lan...@googlegroups.com.
Visit this group at http://groups.google.com/group/ats-lang-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ats-lang-users/CAJ7XQb4Lo3YURRUnndMvM-i0VTx49czYb%3D2b0xO8hWPf_CYMJQ%40mail.gmail.com.

Raoul Duke

unread,
Aug 19, 2014, 5:33:49 PM8/19/14
to ats-lang-users
oh! right, then.

Brandon Barker

unread,
Aug 19, 2014, 5:44:27 PM8/19/14
to ats-lang-users
I wonder if it might be worth layering it in a different way to make it easier to port prelude between (mandatory GC) languages:

Build up the basic language interface:
libc (already done)
libpython
libjavascript
etc.


Then, implement prelude on top of this. In some cases it could be done very easily, depending on what is available in libX where X is a language.


Brandon Barker
brandon...@gmail.com


On Tue, Aug 19, 2014 at 1:33 PM, Raoul Duke <rao...@gmail.com> wrote:
oh! right, then.


--
You received this message because you are subscribed to the Google Groups "ats-lang-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ats-lang-user...@googlegroups.com.
To post to this group, send email to ats-lan...@googlegroups.com.
Visit this group at http://groups.google.com/group/ats-lang-users.

gmhwxi

unread,
Aug 19, 2014, 5:45:25 PM8/19/14
to ats-lan...@googlegroups.com
Right.

Say I want the array type. But Python does not have arrays.
One possibility is to implement arrays based on lists in Python.

The kind of ATS2/Python co-programming in my mind is a bit like
this: say a program is like a tree; then the trunk and boughs are implemented
in ATS2 and trigs and leaves are in Python.

Zhiqiang Ren

unread,
Aug 27, 2014, 8:26:40 PM8/27/14
to ats-lan...@googlegroups.com
Where is the file "basics_cats.py"? Thanks.

gmhwxi

unread,
Aug 27, 2014, 9:04:28 PM8/27/14
to ats-lan...@googlegroups.com

https://github.com/githwxi/ATS-Postiats-contrib/blob/master/contrib/libatscc2py/CATS/basics_cats.py

For now, you can copy

https://github.com/githwxi/ATS-Postiats-contrib/blob/master/contrib/libatscc2py

into a local directory and then set your PYTHONPATH properly. Python3 is needed for the generated
python code.

Brandon Barker

unread,
Jan 20, 2015, 4:23:19 AM1/20/15
to ats-lang-users
On Tue, Aug 19, 2014 at 1:45 PM, gmhwxi <gmh...@gmail.com> wrote:
Right.

Say I want the array type. But Python does not have arrays.
One possibility is to implement arrays based on lists in Python.

The kind of ATS2/Python co-programming in my mind is a bit like
this: say a program is like a tree; then the trunk and boughs are implemented
in ATS2 and trigs and leaves are in Python.

How about adding boughs to an exiting tree, to extend the analogy. In other words, implement new library functions for a library that already exists in Python?  I guess this may expose problems with other aspects of the library in the process.
 


On Tuesday, August 19, 2014 1:17:11 PM UTC-4, Brandon Barker wrote:
Maybe I misunderstood, I thought Hongwei was implying more work needs to be done on bringing python standard library and ATS/prelude functions to the python prelude (since apparently a straight-up port of ATS/prelude won't work due to different semantics between C & python).

Brandon Barker
brandon...@gmail.com


On Tue, Aug 19, 2014 at 12:51 PM, Raoul Duke <rao...@gmail.com> wrote:
> The library for using this code generator needs to be built up from time to
> time:
>
> https://github.com/githwxi/ATS-Postiats-contrib/tree/master/projects/MEDIUM/ATS-parse-emit/Python/prelude
>
> Anyone interested in volunteering?

i hope you mean, "interested in setting up jenkins so things are automated"? :-)

--
You received this message because you are subscribed to the Google Groups "ats-lang-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ats-lang-user...@googlegroups.com.
To post to this group, send email to ats-lan...@googlegroups.com.
Visit this group at http://groups.google.com/group/ats-lang-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ats-lang-users/CAJ7XQb4Lo3YURRUnndMvM-i0VTx49czYb%3D2b0xO8hWPf_CYMJQ%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "ats-lang-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ats-lang-user...@googlegroups.com.
To post to this group, send email to ats-lan...@googlegroups.com.
Visit this group at http://groups.google.com/group/ats-lang-users.

Hongwei Xi

unread,
Jan 20, 2015, 3:11:52 PM1/20/15
to ats-lan...@googlegroups.com
Certainly.

For instance, I often add some convenience functions of ML style to a C library:

Reply all
Reply to author
Forward
0 new messages