lzhangzz 73cf3b5feb
[Fix] Optimize preprocess & fix pontential use-after-free (#229)
* hold async data and wait only at the end of the pipeline

* fix use-after-free bugs

* fix wording

* bypass trivial cases for Pad to avoid ppl.cv's bug

* fix pad

* fix lint

* cleanup

* fix DefaultFormatBundle

* fix all cpu preprocess impl

* suppress log

* fix dynamic library build & add comments for SyncOnScopeExit
2022-03-28 17:29:22 +08:00

64 lines
1.9 KiB
C++

// Copyright (c) OpenMMLab. All rights reserved.
#include "compose.h"
#include "archive/json_archive.h"
#include "archive/value_archive.h"
#include "core/utils/formatter.h"
namespace mmdeploy {
Compose::Compose(const Value& args, int version) : Transform(args) {
assert(args.contains("context"));
Value context;
context = args["context"];
context["stream"].get_to(stream_);
for (auto cfg : args["transforms"]) {
cfg["context"] = context;
auto type = cfg.value("type", std::string{});
MMDEPLOY_DEBUG("creating transform: {} with cfg: {}", type, mmdeploy::to_json(cfg).dump(2));
auto creator = Registry<Transform>::Get().GetCreator(type, version);
if (!creator) {
MMDEPLOY_ERROR("unable to find creator: {}", type);
throw std::invalid_argument("unable to find creator");
}
auto transform = creator->Create(cfg);
if (!transform) {
MMDEPLOY_ERROR("failed to create transform: {}", type);
throw std::invalid_argument("failed to create transform");
}
transforms_.push_back(std::move(transform));
}
}
Result<Value> Compose::Process(const Value& input) {
Value output = input;
Value::Array intermediates;
for (auto& transform : transforms_) {
OUTCOME_TRY(auto t, transform->Process(output));
if (auto it = t.find("__data__"); it != t.end()) {
std::move(it->begin(), it->end(), std::back_inserter(intermediates));
it->array().clear();
}
output = std::move(t);
}
OUTCOME_TRY(stream_.Wait());
return std::move(output);
}
class ComposeCreator : public Creator<Transform> {
public:
const char* GetName() const override { return "Compose"; }
int GetVersion() const override { return version_; }
ReturnType Create(const Value& args) override {
return std::make_unique<Compose>(args, version_);
}
private:
int version_{1};
};
REGISTER_MODULE(Transform, ComposeCreator);
} // namespace mmdeploy