Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
codewithmichael committed Jul 6, 2016
0 parents commit 00e93a8
Show file tree
Hide file tree
Showing 6 changed files with 512 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016 Michael Spencer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
185 changes: 185 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,185 @@
# Dependency Sorter

A weighted dependency sorter, based on a depth-first topological sort.

In other words, it sorts a list of interdependent items based on which ones
depend on which other ones.

An optional weight may be applied to list items to make them float up or down in
the list, relative to the weights of other items, without breaking the
dependency chain.

See the [`weightProperty`](#weightproperty) documentation for more information
on object weights.

**Works With:**
* Node (CommonJS)
* RequireJS (AMD)
* *...or right in your browser*

***Example - Dynamically Load Script Libraries With Dependencies (Browser)***
```html
<script src="dependency-sorter.min.js"></script>
<script>
var libs = [
// Listed in alphabetical order
{ id: "backbone", depends: ["jquery", "underscore"], src: "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.3.3/backbone-min.js" },
{ id: "jquery", src: "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js" },
{ id: "marionette", depends: "backbone", src: "https://cdnjs.cloudflare.com/ajax/libs/backbone.marionette/2.5.6/backbone.marionette.min.js" },
{ id: "underscore", src: "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js" }
];
new DependencySorter().sort(libs).forEach(function(lib) {
var script = document.createElement('script');
script.setAttribute("data-name", lib.id);
script.src = lib.src;
script.async = false;
document.head.appendChild(script);
});
</script>

<!-- The following script tags will be generated in <head> (in order)
<script data-name="underscore" src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script data-name="jquery" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script data-name="backbone" src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.3.3/backbone-min.js"></script>
<script data-name="marionette" src="https://cdnjs.cloudflare.com/ajax/libs/backbone.marionette/2.5.6/backbone.marionette.min.js"></script>
-->
```

***Example - Arrange a Queue of People (Node)***
```js
"use strict";
var DependencySorter = require('dependency-sorter');

var peopleSorter, people, sortedPeople;

peopleSorter = new DependencySorter({ idProperty: "name" });

people = [
{ name: "Jim", comment: "Just put me anywhere." },
{ name: "Donna", comment: "Ooo, me First!", weight: -100 },
{ name: "Billie", comment: "Earlyish is good.", weight: -5 },
{ name: "Chris", comment: "I'd prefer to be last.", weight: Infinity },
{ name: "Jerk", comment: "Put me after the guy who wants to be last!", depends: ["Chris"], weight: 100 },
{ name: "Sherry", comment: "I go where Donna goes.", depends: "Donna", weight: -Infinity },
{ name: "Dillon", comment: "I'd rather be somewhere near the end.", weight: 10 },
{ name: "Tom", comment: "The sooner the better, but ladies first.", depends: ["Donna", "Sherry"], weight: -10 }
];

sortedPeople = peopleSorter.sort(people);

// Log the queue
sortedPeople.forEach(function(person) {
console.log(person.name + ': ' + person.comment);
});

/*-=[ Output ]=-*
Donna: Ooo, me First!
Sherry: I go where Donna goes.
Tom: The sooner the better, but ladies first.
Billie: Earlyish is good.
Jim: Just put me anywhere.
Dillon: I'd rather be somewhere near the end.
Chris: I'd prefer to be last.
Jerk: Put me after the guy who wants to be last!
*/
```

## Options

The `DependencySorter` takes an *optional* `Object` parameter containing
information about your data for the built-in serializer. The following
option properties are supported: `idProperty`, `dependsProperty`,
`weightProperty`, `defaultWeight`

### `defaultWeight`

**Default:** `0`

```js
var sorter = new DependencySorter({ defaultWeight: -1 });
```

The `defaultWeight` property sets the `weight` value for sorted items without a
defined weight.

See the [`weightProperty`](#weightproperty) documentation for more information
on using weights.

### `dependsProperty`

**Default:** `"depends"`

```js
var sorter = new DependencySorter({ dependsProperty: "deps" }),
list = [
{ id: "first" },
{ id: "second", deps: "first" }
];
```

The `dependsProperty` property sets the property name used in your list to
define the set of dependencies.

Your list object's `depends` property can be an `Array`, but does not have to be
in case of a single dependency.

### `idProperty`

**Default:** `"id"`

```js
var sorter = new DependencySorter({ idProperty: "name" }),
list = [
{ name: "first" },
{ name: "second", depends: "first" }
];
```

The `idProperty` property sets the property name used in your list to define the
list element's unique identifier.

The `id` value is compared against dependencies from the `depends` list.

If no `id` can be found, the object itself is used as the identifier. This is
not usually desirable, but has it's place, such as generating dependencies from
unknown object types.

### `weightProperty`

**Default:** `"weight"`

```js
var FLOAT_UP = -1,
sorter = new DependencySorter({ weightProperty: "float" }),
list = [
{ name: "first", float: FLOAT_UP },
{ name: "second" },
{ name: "third", depends: "second" }
];
```

The `weightProperty` property sets the property name used in your list to define
the list element's weight relative to other items.

A *negative* `weight` value will cause at item to float toward the beginning of
the list, while a *positive* `weight` will cause it to float toward the end.

A larger value in either direction from `0` will cause an item to shift past
items of smaller values it encounters, but will not allow the item to move so
far as to break the dependency chain.

A value of zero (`0`) acts as a neutral `weight`, in which the item avoids
shifting in either direction after the topological sort has completed unless
a weighted item wishes to shift past it.

As dependency restrictions are respected, it is therefore possible for an item
of smaller weight to shift pass an item of larger weight if the item of larger
weight is blocked by a dependency boundary. In other words, weights are only
considered up to the range of their dependency boundaries.

Note that items have a maximum weight of `Infinity` or `-Infinity` in their
respective directions.

## License

MIT License
31 changes: 31 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "dependency-sorter",
"description": "Weighted dependency sorter, based on a depth-first topological sort",
"main": "dependency-sorter.js",
"authors": [
"Michael Spencer <[email protected]>"
],
"license": "MIT",
"keywords": [
"dependency",
"sort",
"topological",
"weight",
"weighted",
"dependencies",
"depends"
],
"homepage": "https://github.com/codewithmichael/dependency-sorter",
"moduleType": [
"amd",
"node",
"globals"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
Loading

0 comments on commit 00e93a8

Please sign in to comment.