Eugen Wissner
26c3532e28
printToString gets the output string as argument and can be called recursive with the same output string to format ranges. |
||
---|---|---|
arch | ||
source/tanya | ||
.editorconfig | ||
.gitignore | ||
.travis.yml | ||
appveyor.yml | ||
CODE_OF_CONDUCT.md | ||
codecov.yml | ||
CONTRIBUTING.md | ||
dscanner.ini | ||
dub.json | ||
LICENSE | ||
README.md |
Tanya
Tanya is a general purpose library for D programming language.
Its aim is to simplify the manual memory management in D and to provide a guarantee with @nogc attribute that there are no hidden allocations on the Garbage Collector heap. Everything in the library is usable in @nogc code. Tanya provides data structures and utilities to facilitate painless systems programming in D.
Overview
Tanya consists of the following packages and (top-level) modules:
algorithm
: Collection of generic algorithms.async
: Event loop (epoll, kqueue and IOCP).container
: Queue, Array, Singly and doubly linked lists, Buffers, UTF-8 string, Hash set.conv
: This module provides functions for converting between different types.encoding
: This package provides tools to work with text encodings.exception
: Common exceptions and errors.format
: Formatting and conversion functions.math
: Arbitrary precision integer and a set of functions.memory
: Tools for manual memory management (allocators, smart pointers).meta
: Template metaprogramming. This package contains utilities to acquire type information at compile-time, to transform from one type to another. It has also different algorithms for iterating, searching and modifying template arguments.net
: URL-Parsing, network programming.network
: Socket implementation.network
is currently under rework. After finishing the new socket implementation will land in thenet
package andnetwork
will be deprecated.os
: Platform-independent interfaces to operating system functionality.range
: Generic functions and templates for D ranges.test
: Test suite for unittest-blocks.typecons
: Templates that allow to build new types based on the available ones.
Basic usage
Allocators
Memory management is done with allocators. Instead of using new
to create an
instance of a class, an allocator is used:
import tanya.memory;
class A
{
this(int arg)
{
}
}
A a = defaultAllocator.make!A(5);
defaultAllocator.dispose(a);
As you can see, the user is responsible for deallocation, therefore dispose
is called at the end.
If you want to change the defaultAllocator
to something different, you
probably want to do it at the program's beginning. Or you can invoke another
allocator directly. It is important to ensure that the object is destroyed
using the same allocator that was used to allocate it.
What if I get an allocated object from some function? The generic rule is: If
you haven't requested the memory yourself (with make
), you don't need to free
it.
tanya.memory.smartref
contains smart pointers, helpers that can take care of
a proper deallocation in some cases for you.
Exceptions
Since exceptions are normal classes in D, they are allocated and dellocated the same as described above, but:
- The caller is always responsible for destroying a caught exception.
- Exceptions are always allocated and should be always allocated with the
defaultAllocator
.
import tanya.memory;
void functionThatThrows()
{
throw defaultAlocator.make!Exception("An error occurred");
}
try
{
functionThatThrows()
}
catch (Exception e)
{
defaultAllocator.dispose(e);
}
Containers
Arrays are commonly used in programming. D's built-in arrays often rely on the
GC. It is inconvenient to change their size, reserve memory for future use and
so on. Containers can help here. The following example demonstrates how
tanya.container.array.Array
can be used instead of int[]
.
import tanya.container.array;
Array!int arr;
// Reserve memory if I know that my container will contain approximately 15
// elements.
arr.reserve(15);
arr.insertBack(5); // Add one element.
arr.length = 10; // New elements are initialized to 0.
// Iterate over the first five elements.
foreach (el; arr[0 .. 5])
{
}
int i = arr[7]; // Access 8th element.
There are more containers in the tanya.container
package.
Development
Supported compilers
DMD | GCC |
---|---|
2.077.0 | gdc-5 branch |
2.076.1 | |
2.075.1 |
Current status
Following modules are under development:
Feature | Branch | Build status |
---|---|---|
BitArray | bitvector | |
TLS | crypto | |
File IO | io |
Release management
3-week release cycle.
Deprecated features are removed after one release (in approximately 6 weeks after deprecating).
Further characteristics
-
Tanya is a native D library without any external dependencies.
-
Tanya is cross-platform. The development happens on a 64-bit Linux, but it is being tested on Windows and FreeBSD as well.
-
The library isn't thread-safe yet.
Feedback
Any feedback about your experience with tanya would be greatly appreciated. Feel free to contact me.