2018-01-12 20:03:09 +00:00
|
|
|
namespace Xmpp {
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public class StanzaWriter {
|
2020-07-21 13:48:42 +00:00
|
|
|
public signal void cancel();
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
private OutputStream output;
|
|
|
|
|
2017-11-22 19:06:50 +00:00
|
|
|
private Queue<SourceFuncWrapper> queue = new Queue<SourceFuncWrapper>();
|
|
|
|
private bool running = false;
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public StanzaWriter.for_stream(OutputStream output) {
|
|
|
|
this.output = output;
|
|
|
|
}
|
|
|
|
|
2017-11-22 19:06:50 +00:00
|
|
|
public async void write_node(StanzaNode node) throws XmlError {
|
|
|
|
yield write_data(node.to_xml().data);
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
|
2020-06-28 13:53:41 +00:00
|
|
|
public async void write_nodes(StanzaNode node1, StanzaNode node2) throws XmlError {
|
|
|
|
var data1 = node1.to_xml().data;
|
|
|
|
var data2 = node2.to_xml().data;
|
|
|
|
|
|
|
|
uint8[] concat = new uint8[data1.length + data2.length];
|
|
|
|
int i = 0;
|
|
|
|
foreach (var datum in data1) {
|
|
|
|
concat[i++] = datum;
|
|
|
|
}
|
|
|
|
foreach (var datum in data2) {
|
|
|
|
concat[i++] = datum;
|
|
|
|
}
|
|
|
|
|
|
|
|
yield write_data(concat);
|
|
|
|
}
|
|
|
|
|
2017-03-02 14:37:32 +00:00
|
|
|
public async void write(string s) throws XmlError {
|
2017-11-22 19:06:50 +00:00
|
|
|
yield write_data(s.data);
|
|
|
|
}
|
|
|
|
|
2020-04-01 14:08:28 +00:00
|
|
|
private async void write_data(owned uint8[] data) throws XmlError {
|
2017-11-22 19:06:50 +00:00
|
|
|
if (running) {
|
|
|
|
queue.push_tail(new SourceFuncWrapper(write_data.callback));
|
|
|
|
yield;
|
|
|
|
}
|
|
|
|
running = true;
|
2017-03-02 14:37:32 +00:00
|
|
|
try {
|
2017-11-22 19:06:50 +00:00
|
|
|
yield output.write_all_async(data, 0, null, null);
|
2019-12-22 18:28:40 +00:00
|
|
|
} catch (GLib.Error e) {
|
2020-07-21 13:48:42 +00:00
|
|
|
cancel();
|
2019-12-22 18:28:40 +00:00
|
|
|
throw new XmlError.IO(@"IOError in GLib: $(e.message)");
|
|
|
|
} finally {
|
2017-11-22 19:06:50 +00:00
|
|
|
SourceFuncWrapper? sfw = queue.pop_head();
|
|
|
|
if (sfw != null) {
|
|
|
|
sfw.sfun();
|
2019-12-22 18:28:40 +00:00
|
|
|
} else {
|
|
|
|
running = false;
|
2017-11-22 19:06:50 +00:00
|
|
|
}
|
2017-03-02 14:37:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-22 19:06:50 +00:00
|
|
|
|
|
|
|
public class SourceFuncWrapper : Object {
|
|
|
|
|
|
|
|
public SourceFunc sfun;
|
|
|
|
|
|
|
|
public SourceFuncWrapper(owned SourceFunc sfun) {
|
|
|
|
this.sfun = (owned)sfun;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-11 20:29:13 +00:00
|
|
|
}
|