In my app I have stuff like tasks, resources and locks. Tasks can depend on resources, other tasks currently running or finished and locks over resources. Tasks can also create resources. Is there some open source or commercial library, that can help with modeling this?
|
|
Take a look at NGenerics - http://code.google.com/p/ngenerics/. It has a great graph library and implements Tarjan’s strongly connected components algorithm for detecting cycles in a graph. It should have everything you need to model this in code. |
|||
|
|
|
You could do that with the tool NDepend. Disclaimer: I am one of the developers of the tool It provides code dependency graph and code dependency structure matrix. NDepend also provides the ability to create Code Rules over LINQ Queries (CQLinq). Dependency code rules can be written, they can look like:
Such rule can be checked in Visual Studio thanks to the NDepend addin, or in Reports created at Build Process/CI time. Notice that with these features, NDepend won't help you create a good design. But it will help you express and formalize the design you elaborate + it'll continuously check for you that with code evolution, the fixed design doesn't get rooted. |
||||
|
|