Merge pull request #195 from kitematic/pulling-dependent-layers

Show 'waiting for another image' when blocked on pulling dependent layers
This commit is contained in:
Jeffrey Morgan 2015-02-22 23:39:24 -05:00
commit a6d75823d2
3 changed files with 45 additions and 20 deletions

View File

@ -19,7 +19,8 @@ var ContainerHome = React.createClass({
getInitialState: function () {
return {
ports: {},
defaultPort: null
defaultPort: null,
progress: 0
};
},
handleResize: function () {
@ -53,12 +54,14 @@ var ContainerHome = React.createClass({
defaultPort: _.find(_.keys(ports), function (port) {
return webPorts.indexOf(port) !== -1;
}),
progress: ContainerStore.progress(this.getParams().name)
progress: ContainerStore.progress(this.getParams().name),
blocked: ContainerStore.blocked(this.getParams().name)
});
},
updateProgress: function (name) {
if (name === this.getParams().name) {
this.setState({
blocked: ContainerStore.blocked(name),
progress: ContainerStore.progress(name)
});
}
@ -73,6 +76,13 @@ var ContainerHome = React.createClass({
<Radial progress={Math.min(Math.round(this.state.progress * 100), 99)} thick={true} gray={true}/>
</div>
);
} else if (this.state.blocked) {
body = (
<div className="details-progress">
<h2>Waiting For Another Image to Download</h2>
<Radial spin="true" progress="90" thick={true} transparent={true}/>
</div>
);
} else {
body = (
<div className="details-progress">

View File

@ -17,7 +17,9 @@ var ContainerListItem = React.createClass({
var $action = $(this.getDOMNode()).find('.action');
$action.hide();
},
handleDeleteContainer: function () {
handleDeleteContainer: function (e) {
e.preventDefault();
e.stopPropagation();
dialog.showMessageBox({
message: 'Are you sure you want to delete this container?',
buttons: ['Delete', 'Cancel']
@ -27,8 +29,7 @@ var ContainerListItem = React.createClass({
from: 'list',
type: 'existing'
});
ContainerStore.remove(this.props.container.Name, function (err) {
console.error(err);
ContainerStore.remove(this.props.container.Name, () => {
var containers = ContainerStore.sorted();
if (containers.length === 1) {
$(document.body).find('.new-container-item').parent().fadeIn();
@ -36,7 +37,6 @@ var ContainerListItem = React.createClass({
});
}
}.bind(this));
return false;
},
render: function () {
var self = this;

View File

@ -12,18 +12,19 @@ var _placeholders = {};
var _containers = {};
var _progress = {};
var _muted = {};
var _blocked = {};
var ContainerStore = assign(Object.create(EventEmitter.prototype), {
CLIENT_CONTAINER_EVENT: 'client_container_event',
SERVER_CONTAINER_EVENT: 'server_container_event',
SERVER_PROGRESS_EVENT: 'server_progress_event',
_pullImage: function (repository, tag, callback, progressCallback) {
registry.layers(repository, tag, function (err, layerSizes) {
_pullImage: function (repository, tag, callback, progressCallback, blockedCallback) {
registry.layers(repository, tag, (err, layerSizes) => {
// TODO: Support v2 registry API
// TODO: clean this up- It's messy to work with pulls from both the v1 and v2 registry APIs
// Use the per-layer pull progress % to update the total progress.
docker.client().listImages({all: 1}, function(err, images) {
docker.client().listImages({all: 1}, (err, images) => {
images = images || [];
var existingIds = new Set(images.map(function (image) {
return image.Id.slice(0, 12);
@ -33,7 +34,7 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
});
var totalBytes = layersToDownload.map(function (s) { return s.size; }).reduce(function (pv, sv) { return pv + sv; }, 0);
docker.client().pull(repository + ':' + tag, function (err, stream) {
docker.client().pull(repository + ':' + tag, (err, stream) => {
stream.setEncoding('utf8');
var layerProgress = layersToDownload.reduce(function (r, layer) {
@ -45,10 +46,15 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
return r;
}, {});
stream.on('data', function (str) {
stream.on('data', str => {
var data = JSON.parse(str);
console.log(data);
if (data.status === 'Pulling dependent layers') {
blockedCallback();
return;
}
if (data.status === 'Already exists') {
layerProgress[data.id] = 1;
} else if (data.status === 'Downloading') {
@ -151,13 +157,15 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
// Recover any pulls that were happening
var self = this;
downloading.forEach(function (container) {
_progress[container.Name] = 99;
docker.client().pull(container.Config.Image, function (err, stream) {
delete _placeholders[container.Name];
localStorage.setItem('store.placeholders', JSON.stringify(_placeholders));
stream.setEncoding('utf8');
stream.on('data', function () {});
stream.on('end', function () {
delete _placeholders[container.Name];
localStorage.setItem('store.placeholders', JSON.stringify(_placeholders));
self._createContainer(container.Name, {Image: container.Config.Image}, function () {
self.emit(self.SERVER_PROGRESS_EVENT, container.Name);
self.emit(self.CLIENT_CONTAINER_EVENT, container.Name);
});
});
@ -210,6 +218,7 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
callback();
}
var placeholderData = JSON.parse(localStorage.getItem('store.placeholders'));
console.log(placeholderData);
if (placeholderData) {
_placeholders = _.omit(placeholderData, _.keys(_containers));
localStorage.setItem('store.placeholders', JSON.stringify(_placeholders));
@ -259,7 +268,6 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
},
create: function (repository, tag, callback) {
tag = tag || 'latest';
var self = this;
var imageName = repository + ':' + tag;
var containerName = this._generateName(repository);
@ -274,22 +282,26 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
}
};
localStorage.setItem('store.placeholders', JSON.stringify(_placeholders));
self.emit(self.CLIENT_CONTAINER_EVENT, containerName, 'create');
this.emit(this.CLIENT_CONTAINER_EVENT, containerName, 'create');
_muted[containerName] = true;
_progress[containerName] = 0;
self._pullImage(repository, tag, function () {
this._pullImage(repository, tag, () => {
metrics.track('Container Finished Creating');
delete _placeholders[containerName];
localStorage.setItem('store.placeholders', JSON.stringify(_placeholders));
self._createContainer(containerName, {Image: imageName}, function () {
_blocked[containerName] = false;
this._createContainer(containerName, {Image: imageName}, () => {
delete _progress[containerName];
_muted[containerName] = false;
self.emit(self.CLIENT_CONTAINER_EVENT, containerName);
this.emit(this.CLIENT_CONTAINER_EVENT, containerName);
});
}, function (progress) {
}, progress => {
_progress[containerName] = progress;
self.emit(self.SERVER_PROGRESS_EVENT, containerName);
this.emit(this.SERVER_PROGRESS_EVENT, containerName);
}, () => {
_blocked[containerName] = true;
this.emit(this.SERVER_PROGRESS_EVENT, containerName);
});
callback(null, containerName);
},
@ -393,6 +405,9 @@ var ContainerStore = assign(Object.create(EventEmitter.prototype), {
progress: function (name) {
return _progress[name];
},
blocked: function (name) {
return !!_blocked[name];
}
});
module.exports = ContainerStore;