Violet is one of those Swift <-> Python interop thingies, except that this time we implement the whole language from scratch. Name comes from Violet Evergarden.
Many unwatched k-drama hours were put into this, so any ⭐ would be appreciated.
If something is not working, you have an interesting idea or maybe just a question, then you can start an issue or discussion. You can also contact us on twitter @itBrokeAgain (optimism, yay!).
- 64 bit - for
BigIntand hash - Platforms
- macOS
- Intel
- 11.6.2 (Big Sur) + Xcode 12.4 (Swift 5.3.2)
- 11.6.2 (Big Sur) + Xcode 13.0 (Swift 5.5)
- Apple
- 12.3.1 (Monterey) + Xcode 13.3.1 (Swift 5.5.3)
- Intel
- Ubuntu
- 21.04 + Swift 5.4.2 - use
make testandmake pytest
- 21.04 + Swift 5.4.2 - use
- Docker
swift:latest(5.6.0) - usemake docker-testandmake docker-pytestswift:5.3.2- usemake docker-test-oldandmake docker-pytest-old
- macOS
The whole Violet was written on 2014 rMBP (lowest spec: 8GB of ram + 128 GB storage), so it is safe to say that there are no other requirements.
We aim for compatibility with Python 3.7 feature set.
We are only interested in the language itself without additional modules. This means that importing anything except for most basic modules (sys, builtins and a few others) is not supported (although you can import other Python files).
See Documentation directory for a list of known unimplemented features. There is no list of unknown unimplemented features though…
-
Garbage collection is a nifty feature. Currently we allocate objects, but the only way to deallocate them is to call
py.destroy()which destroys the whole Python context (and all of the objects that it owns).Btw. please remember to use with statement to manage resources, do not rely on object lifetime (especially for the file descriptors).
-
Tail allocated
tuples. Currently we storetupleelements inside Swift array (elements: [PyObject]). The better idea would be to allocate more space after the tuple and store elements there (this is called flexible array member inC). This saves a pointer indirection and is better for cache, since we can fit a few first elements in the same line astype,__dict__etc. We can also do this for other immutable container types:str- currently native SwiftString. This would force us to implement our ownStringtype - not hard, but takes a lot of time.int- currently our ownBigIntimplementation (which does store values inInt32range inside the pointer).
You can browse all of the module exports - open/public declarations - here (generated by Ariel).
Core modules
- VioletCore — shared module imported by all of the other modules.
- Contains things like
NonEmptyArray,SourceLocation, SipHash,trapandunreachable.
- Contains things like
- BigInt — our implementation of unlimited integers
- While it implements all of the operations expected of
BigInttype, in reality it mostly focuses on performance of small integers — Python has only oneinttype and small numbers are most common. - Under the hood it is a union (via tagged pointer) of
Int32(calledSmi, after V8) and a heap allocation (magnitude + sign representation) with ARC for garbage collection. << That's mouthful 💤 - While the whole Violet tries to be as easy-to-read/accessible as possible, this does not apply to
BigIntmodule. Numbers are hard, and for some reason humanity decided that “division” is a thing.
- While it implements all of the operations expected of
- FileSystem — our version of
Foundation.FileManager.- Code quality varies. Most of the time it was “ehh… I need to implement another IO thing”. Then, later, all of those “ehs…” were put into a single module. In so-called meantime the wild swift-system 🐯 appeared, so maybe it is time to use it?
- Main reason why we do not support other platforms (Windows etc.).
- UnicodeData — apparently we also bundle our own Unicode database, because why not…
- This is kind of important.
Violet
- VioletLexer — transforms Python source code into a stream of tokens.
- VioletParser — transforms a stream of tokens (from
Lexer) into an abstract syntax tree (AST).- Yet Another Recursive Descent Parser with minor hacks for ambiguous grammar.
ASTtype definitions are generated byElsamodule fromElsa definitions/ast.letitgo.
- VioletBytecode — instruction set of our VM.
- 2-bytes per
enum Instruction. There are a few interesting cases, like.formatValue(conversion: StringConversion, hasFormat: Bool)(whereStringConversionis anenumwith 4 possible values), but the compiler is expected to deal with it. - No relative jumps, only absolute (via additional
labelsarray). - Instruction set is generated by
Elsamodule fromElsa definitions/opcodes.letitgo. - Use
CodeObjectBuilderto createCodeObjects(whoa… what a surprise!). - Includes a tiny peephole optimizer, because sometimes the semantics depends on it (for example for short-circuit evaluation).
- 2-bytes per
- VioletCompiler — responsible for transforming
Parser.ASTintoBytecode.CodeObject. - VioletObjects — contains all of the Python objects and modules.
-
Pyrepresents a Python context. Common usage:py.newInt(2)orpy.add(lhs, rhs). -
Contains
int,str,listand 100+ other Python types. -
Python object is represented as a Swift
structwith a singleptr: RawPtrstored property. Theptrpoints to a heap allocated storage with custom layout. Layout is generated by Sourcery usingsourcery: storedPropertyannotations. Read the docs in theDocumentationdirectory!// sourcery: pytype = int public struct PyInt: PyObjectMixin { // sourcery: storedProperty public var value: BigInt { self.valuePtr.pointee } public let ptr: RawPtr }
-
Contains modules required to bootstrap Python:
builtins,sys,_imp,_osand_warnings. -
Does not contain
importlibandimportlib_externalmodules, because those are written in Python. They are a little bit different than CPython versions (we have 80% of the code, but only 20% of the functionality <great-success-meme.gif>). -
PyResult<Wrapped> = Wrapped | PyBaseExceptionis used for error handling.
-
- VioletVM — manipulates Python objects according to the instructions from
Bytecode.CodeObject, so that the output vaguely resembles whatCPythondoes.- Mainly a massive
switchover each possibleInstruction.
- Mainly a massive
- Violet — main executable (duh…).
- PyTests — runs tests written in Python from the
PyTestsdirectory.
Tools/support
- Elsa — tiny DSL for code generation.
- Uses
.letitgofiles fromElsa definitionsdirectory. - Used for
Parser.ASTandBytecode.Instructiontypes.
- Uses
- Rapunzel — pretty printer based on “A prettier printer” by Philip Wadler.
- Used to print
ASTin digestible manner.
- Used to print
There are 2 types of tests in Violet:
-
Swift tests — standard Swift unit tests stored inside the
./Testsdirectory. You can run them by typingmake testin repository root.You may want to disable unit tests for
BigIntandUnicodeDataif you are not touching those modules:BigInt— we went with property based testing with means that we test millions of inputs to check if the general rule holds (for example:a+b=c -> c-a=betc.). This takes time, but pays for itself by finding weird overflows in bit operations (we store “sign + magnitude”, so bit operations are a bit difficult to implement).UnicodeData- In one of our tests we go through all of the Unicode code points and try to access various properties (crash -> fail). There are
0x11_0000values to test, so… it is not fast. - We also have a few thousands of tests generated by Python. Things like: “is the
COMBINING VERTICAL LINE ABOVE (U+030d)alpha-numeric?” (Answer: no, it is not. But you have to watch out becauseHANGUL CHOSEONG THIEUTH (U+1110)is).
- In one of our tests we go through all of the Unicode code points and try to access various properties (crash -> fail). There are
-
Python tests — tests written in Python stored inside the
./PyTestsdirectory. You can run them by typingmake pytestin repository root (there is alsomake pytest-rfor release mode).- Violet - tests written specially for “Violet”.
- RustPython - tests taken from github.com/RustPython.
Those tests are executed when you run
PyTestsmodule.
- 2-space indents and no tabs at all
- 80 characters per line
- Required
selfin methods and computed properties- All of the other method arguments are named, so we will require it for this one.
Self/type namefor static methods is recommended, but not required.- I’m sure that they will depreciate the implicit
selfin the next major Swift version 🤞. All of that source breakage is completely justified.
- No whitespace at the end of the line
- Some editors may remove it as a matter of routine and we don’t want weird git diffs.
- (pet peeve) Try to introduce a named variable for every
ifcondition.- You can use a single logical operator - something like
if !isPrincessorif isDisnepCharacter && isPrincessis allowed. - Do not use
&&and||in the same expression, create a variable for one of them. - If you need parens then it is already too complicated.
- You can use a single logical operator - something like
Anyway, just use SwiftLint and SwiftFormat with provided presets (see .swiftlint.yml and .swiftformat files).
“Violet” is licensed under the MIT License. See LICENSE file for more information.