使用gjs,如何制作异步http请求以块的形式下载文件?

时间:2013-02-11 06:27:17

标签: javascript gtk gjs

我开始使用我的第一个javascript GTK应用程序,我想下载一个文件并使用Gtk.ProgressBar跟踪它的进度。我能找到的关于http请求的唯一文档是这里的一些示例代码:

http://developer.gnome.org/gnome-devel-demos/unstable/weatherGeonames.js.html.en

这里有一些令人困惑的汤参考:

http://www.roojs.org/seed/gir-1.2-gtk-3.0/gjs/Soup.SessionAsync.html

从我可以收集的内容中,我可以做到这样的事情:

const Soup = imports.gi.Soup;

var _httpSession = new Soup.SessionAsync();
Soup.Session.prototype.add_feature.call(_httpSession, new Soup.ProxyResolverDefault());

var request = Soup.Message.new('GET', url);
_httpSession.queue_message(request, function(_httpSession, message) {
  print('download is done');
}

下载完成时似乎只有一个回调,我找不到任何方法为任何数据事件设置回调函数。我怎么能这样做?

这在node.js中非常简单:

var req = http.request(url, function(res){
  console.log('download starting');
  res.on('data', function(chunk) {
    console.log('got a chunk of '+chunk.length+' bytes');
  }); 
});
req.end();

1 个答案:

答案 0 :(得分:6)

感谢javascript-list@gnome.org的帮助,我已经明白了。事实证明,Soup.Message包含可以绑定的事件,包括一个名为got_chunk的事件和一个名为got_headers的事件。

const Soup = imports.gi.Soup;
const Lang = imports.lang;

var _httpSession = new Soup.SessionAsync();
Soup.Session.prototype.add_feature.call(_httpSession, new Soup.ProxyResolverDefault());

// variables for the progress bar
var total_size;
var bytes_so_far = 0;

// create an http message
var request = Soup.Message.new('GET', url);

// got_headers event
request.connect('got_headers', Lang.bind(this, function(message){
  total_size = message.response_headers.get_content_length()
}));

// got_chunk event
request.connect('got_chunk', Lang.bind(this, function(message, chunk){
  bytes_so_far += chunk.length;

  if(total_size) {
    let fraction = bytes_so_far / total_size;
    let percent = Math.floor(fraction * 100);
    print("Download "+percent+"% done ("+bytes_so_far+" / "+total_size+" bytes)");
  }
}));

// queue the http request
_httpSession.queue_message(request, function(_httpSession, message) {
  print('Download is done');
});