Skip to content
/ dvar Public

Dependency variables with lazy evaluation, atomic updates, observers and cycle handling.

License

Notifications You must be signed in to change notification settings

dyarosla/dvar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DVar

Dependency variables with lazy evaluation, atomic updates, observers and cycle handling.

To Use

DVar is a variable whose value can be defined in terms of other variables.

To use it, import the following into your file:

import dvar.DVar;
import dvar.DVarMacro.dep as dep;

Then create DVars and relationships like so:

var a:DVar<Int> = new DVar(1);
a.get(); // 1

var b:DVar<Int> = new DVar(2);
b.get(); // 2

b.def(dep( function(){ return a.get() + 3; } )); // assign b to a + 3
b.get(); // 4

Features

Lazy Evaluation

DVars are lazily evaluated.

for(i in 0...1000){
	a.set(i);
}

// Changes to b have not been propogated
// When we call b.get(), we will unroll its dependencies.
b.get(); // 1003

Register Observers to Changes

We can track changes to DVars with an observer function.

b.register(
	function(data){
		trace("old:"+data.old+" -> new:"+data.change);
	});

a.set(10);

// Observer not called yet, as b is lazily evaluated

b.get(); // observer called, tracing old:1003 -> new:13

Force Non-Lazy Evaluation

Sometimes we want to track changes to a value at any point at which the value could have changed. This requires us to forego lazy-evaluation for those values.

Luckily, DVars can be forced to be non-lazy. Simply set

b.setForce(true);

Note: this will also force dependencies of b to also update non-lazily so that b is up to date.

Used in conjunction with a register call, we can see b's non-laziness in action:

for(i in 0...1000){
	a.set(i); // will propogate to update b's value every time a is set,
			  // and will call any observers on b
}

Atomic Updates

DVars propogate in a topologically sorted order. IE, if we have any form of diamond in our dependency graph, and a value changes, every dependent value will only be updated once, in the correct order.

Below, we create a dependency graph like this

     a
   /   \
  b     c
   \   /
     d
a.set(1);
b.def(dep(function(){ return a.get() + 1; } ));
c.def(dep(function(){ return a.get() + 2; } ));
d.def(dep(function(){ return b.get() + c.get(); } ));

d.get(); // a <- 1, b <- 2, c <- 3, d <- 5

Cycle Handling

DVars will detect cycles. Cycles are ambiguous in nature and have no well-defined order. Thus, DVars will not propogate value changes within a cycle.

a.set(1);
a.get(); // 1

a.def(dep(function(){ return b.get() + 1; } ));
b.def(dep(function(){ return a.get() + 1; } ));

// A has a cyclical definition.
a.get(); // 1 (no value propogation occurs to modify a)
a.get(); // 1 (still)

b.set(2);
a.get(); // 3 (as a is no longer cyclically defined)

Running the Tests

To run the tests, cd into test and compile using:

haxe Test.hxml

Then run tests using:

out/cpp/main/Main-debug

About

Dependency variables with lazy evaluation, atomic updates, observers and cycle handling.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages