2018-03-09 17:49:35 +00:00
|
|
|
const InteropService_Exporter_Base = require("lib/services/InteropService_Exporter_Base");
|
|
|
|
const { basename, filename } = require("lib/path-utils.js");
|
|
|
|
const { shim } = require("lib/shim");
|
2018-02-26 19:25:54 +00:00
|
|
|
|
|
|
|
class InteropService_Exporter_Raw extends InteropService_Exporter_Base {
|
|
|
|
async init(destDir) {
|
|
|
|
this.destDir_ = destDir;
|
2018-03-09 17:49:35 +00:00
|
|
|
this.resourceDir_ = destDir ? destDir + "/resources" : null;
|
2018-02-26 19:25:54 +00:00
|
|
|
|
|
|
|
await shim.fsDriver().mkdir(this.destDir_);
|
|
|
|
await shim.fsDriver().mkdir(this.resourceDir_);
|
|
|
|
}
|
|
|
|
|
|
|
|
async processItem(ItemClass, item) {
|
|
|
|
const serialized = await ItemClass.serialize(item);
|
2018-03-09 17:49:35 +00:00
|
|
|
const filePath = this.destDir_ + "/" + ItemClass.systemPath(item);
|
|
|
|
await shim.fsDriver().writeFile(filePath, serialized, "utf-8");
|
2018-02-26 19:25:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async processResource(resource, filePath) {
|
2018-03-09 17:49:35 +00:00
|
|
|
const destResourcePath = this.resourceDir_ + "/" + basename(filePath);
|
2018-02-26 19:25:54 +00:00
|
|
|
await shim.fsDriver().copy(filePath, destResourcePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
async close() {}
|
|
|
|
}
|
|
|
|
|
2018-03-09 17:49:35 +00:00
|
|
|
module.exports = InteropService_Exporter_Raw;
|