Why Sponsor Oils? | blog | oilshell.org
The table in Measuring Progress with Tests shows these stats:
After writing that post, I spent a few days grinding away at the spec tests. I made a fresh run, and the bottom row is:
Implementing features in a test-driven manner was such a smooth process that I felt I could work on something else. I like to "de-risk" projects by tackling the hard parts early.
In particular, it's important to make global architectural changes before there's too much code. For example, translating shell to Oil led me to use the Lossless Syntax Tree representation. If I hadn't made that change two months ago, it would have broken the features I just implemented.
So what is now the riskiest part of the project?
I've mostly designed the Oil language, but I haven't implemented it, so that could be a risk. But I have implemented and tested OSH, so I view it as a matter of work and not risk. The Oil language design has already been influential in the Ion shell, part of Redox OS, which is some amount of validation.
I think the biggest risk is breaking the dependency on the Python interpreter. It affects all the code, and I haven't had a clear idea on how to do it.
main()
. A full second isn't
unheard of. Shell programming is about lightweight processes, and that
includes the shell itself.In retrospect, I see that the OSH code has markers of two half-formed plans to break the Python dependency.
There are C++-isms in the parser, like out parameters, and return codes rather than exceptions. I thought this would make possible an automated translation from Python to C++, in the style of bootstrapping Go by translating C to Go.
Another plan involved using the OHeap serialization format to bridge Python and C++. Last month, I stated a goal of using it to write a vertical slice of the shell runtime in C++.
Essentially, I was putting off the parser port and concentrating on the runtime port, which left more unknowns in the future.
Although vague, either of these plans could have worked with enough effort. But over the last two weeks, I experimented with a more general solution. I believe it will not only work, but cost less to implement and even benefit end users.
Tomorrow I will describe what this solution is.