| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | function Chunk(name) { | 
					
						
							|  |  |  | 	this.id = null; | 
					
						
							|  |  |  | 	this.name = name; | 
					
						
							|  |  |  | 	this.modules = []; | 
					
						
							|  |  |  | 	this.chunks = []; | 
					
						
							|  |  |  | 	this.parents = []; | 
					
						
							|  |  |  | 	this.blocks = []; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | module.exports = Chunk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.addModule = function(module) { | 
					
						
							|  |  |  | 	if(this.modules.indexOf(module) >= 0) return false; | 
					
						
							|  |  |  | 	this.modules.push(module); | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.removeModule = function(module) { | 
					
						
							|  |  |  | 	var idx = this.modules.indexOf(module); | 
					
						
							|  |  |  | 	if(idx >= 0) { | 
					
						
							|  |  |  | 		this.modules.splice(idx, 1); | 
					
						
							|  |  |  | 		module.removeChunk(this); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.addChunk = function(chunk) { | 
					
						
							| 
									
										
										
										
											2013-02-19 18:11:54 +08:00
										 |  |  | 	if(chunk === this) return false; | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 	if(this.chunks.indexOf(chunk) >= 0) return false; | 
					
						
							|  |  |  | 	this.chunks.push(chunk); | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.removeChunk = function(chunk) { | 
					
						
							|  |  |  | 	var idx = this.chunks.indexOf(chunk); | 
					
						
							|  |  |  | 	if(idx >= 0) { | 
					
						
							|  |  |  | 		this.chunks.splice(idx, 1); | 
					
						
							|  |  |  | 		chunk.removeParent(this); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.addParent = function(chunk) { | 
					
						
							| 
									
										
										
										
											2013-02-19 18:11:54 +08:00
										 |  |  | 	if(chunk === this) return false; | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | 	if(this.parents.indexOf(chunk) >= 0) return false; | 
					
						
							|  |  |  | 	this.parents.push(chunk); | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.removeParent = function(chunk) { | 
					
						
							|  |  |  | 	var idx = this.parents.indexOf(chunk); | 
					
						
							|  |  |  | 	if(idx >= 0) { | 
					
						
							|  |  |  | 		this.parents.splice(idx, 1); | 
					
						
							|  |  |  | 		chunk.removeChunk(this); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.addBlock = function(block) { | 
					
						
							|  |  |  | 	if(this.blocks.indexOf(block) >= 0) return false; | 
					
						
							|  |  |  | 	this.blocks.push(block); | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.remove = function(reason) { | 
					
						
							|  |  |  | 	// console.log("remove " + this.toString());
 | 
					
						
							|  |  |  | 	this.modules.slice().forEach(function(m) { | 
					
						
							|  |  |  | 		m.removeChunk(this); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	this.parents.forEach(function(c) { | 
					
						
							|  |  |  | 		var idx = c.chunks.indexOf(this); | 
					
						
							|  |  |  | 		if(idx >= 0) | 
					
						
							|  |  |  | 			c.chunks.splice(idx, 1); | 
					
						
							|  |  |  | 		this.chunks.forEach(function(cc) { | 
					
						
							|  |  |  | 			cc.addParent(c); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	this.chunks.forEach(function(c) { | 
					
						
							|  |  |  | 		var idx = c.parents.indexOf(this); | 
					
						
							|  |  |  | 		if(idx >= 0) | 
					
						
							|  |  |  | 			c.parents.splice(idx, 1); | 
					
						
							|  |  |  | 		this.parents.forEach(function(cc) { | 
					
						
							|  |  |  | 			cc.addChunk(c); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	this.blocks.forEach(function(b) { | 
					
						
							|  |  |  | 		b.chunk = null; | 
					
						
							|  |  |  | 		b.chunkReason = reason; | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.integrate = function(other, reason) { | 
					
						
							|  |  |  | 	// console.log("integrate " + other.toString() + " into " + this.toString());
 | 
					
						
							|  |  |  | 	var otherModules = other.modules.slice(); | 
					
						
							|  |  |  | 	otherModules.forEach(function(m) { | 
					
						
							|  |  |  | 		m.removeChunk(other); | 
					
						
							|  |  |  | 		m.addChunk(this); | 
					
						
							|  |  |  | 		this.addModule(m); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	other.modules.length = 0; | 
					
						
							|  |  |  | 	other.parents.forEach(function(c) { | 
					
						
							|  |  |  | 		var idx = c.chunks.indexOf(other); | 
					
						
							|  |  |  | 		if(idx >= 0) | 
					
						
							|  |  |  | 			c.chunks.splice(idx, 1); | 
					
						
							|  |  |  | 		if(c !== this && this.addParent(c)) | 
					
						
							|  |  |  | 			c.addChunk(this); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	other.parents.length = 0; | 
					
						
							|  |  |  | 	other.chunks.forEach(function(c) { | 
					
						
							|  |  |  | 		var idx = c.parents.indexOf(other); | 
					
						
							|  |  |  | 		if(idx >= 0) | 
					
						
							|  |  |  | 			c.parents.splice(idx, 1); | 
					
						
							|  |  |  | 		if(c !== this && this.addChunk(c)) | 
					
						
							|  |  |  | 			c.addParent(this); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	other.chunks.length = 0; | 
					
						
							|  |  |  | 	other.blocks.forEach(function(b) { | 
					
						
							|  |  |  | 		b.chunk = this; | 
					
						
							|  |  |  | 		b.chunkReason = reason; | 
					
						
							|  |  |  | 		this.addBlock(b); | 
					
						
							|  |  |  | 	}, this); | 
					
						
							|  |  |  | 	other.blocks.length = 0; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.isEmpty = function() { | 
					
						
							|  |  |  | 	return (this.modules.length == 0); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.updateHash = function(hash) { | 
					
						
							|  |  |  | 	hash.update(this.id + ""); | 
					
						
							|  |  |  | 	this.modules.forEach(function(m) { | 
					
						
							|  |  |  | 		m.updateHash(hash); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Chunk.prototype.toString = function() { | 
					
						
							|  |  |  | 	return "Chunk[" + this.modules.join() + "]"; | 
					
						
							|  |  |  | }; |