blob: e7daa2c45f96082cf826e95a8c741fb3926cc7b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/FileTransfer/FileWriteBytestream.h>
#include <cassert>
#include <boost/filesystem/fstream.hpp>
#include <boost/numeric/conversion/cast.hpp>
namespace Swift {
FileWriteBytestream::FileWriteBytestream(const boost::filesystem::path& file) : file(file), stream(nullptr) {
}
FileWriteBytestream::~FileWriteBytestream() {
if (stream) {
stream->close();
delete stream;
stream = nullptr;
}
}
bool FileWriteBytestream::write(const std::vector<unsigned char>& data) {
if (data.empty()) {
return true;
}
if (!stream) {
stream = new boost::filesystem::ofstream(file, std::ios_base::out|std::ios_base::binary);
}
if (stream->good()) {
stream->write(reinterpret_cast<const char*>(&data[0]), boost::numeric_cast<std::streamsize>(data.size()));
if (stream->good()) {
onWrite(data);
return true;
}
}
return false;
}
void FileWriteBytestream::close() {
if (stream) {
stream->close();
delete stream;
stream = nullptr;
}
}
}
|