Mercurial > hg > piper-cpp
comparison json/VampJson.h @ 58:c38e12d4bbdd
Merge from branch outputid-string-in-featureset
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 19 Sep 2016 14:48:43 +0100 |
parents | 7aec704705c7 |
children | 77833938f0f8 |
comparison
equal
deleted
inserted
replaced
48:ce6cb3308bd7 | 58:c38e12d4bbdd |
---|---|
45 | 45 |
46 #include <vamp-hostsdk/Plugin.h> | 46 #include <vamp-hostsdk/Plugin.h> |
47 #include <vamp-hostsdk/PluginLoader.h> | 47 #include <vamp-hostsdk/PluginLoader.h> |
48 | 48 |
49 #include "bits/PluginHandleMapper.h" | 49 #include "bits/PluginHandleMapper.h" |
50 #include "bits/PluginOutputIdMapper.h" | |
50 #include "bits/RequestResponseType.h" | 51 #include "bits/RequestResponseType.h" |
51 | 52 |
52 namespace vampipe { | 53 namespace vampipe { |
53 | 54 |
54 /** | 55 /** |
390 return f; | 391 return f; |
391 } | 392 } |
392 | 393 |
393 static json11::Json | 394 static json11::Json |
394 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs, | 395 fromFeatureSet(const Vamp::Plugin::FeatureSet &fs, |
396 const PluginOutputIdMapper &omapper, | |
395 BufferSerialisation serialisation) { | 397 BufferSerialisation serialisation) { |
396 | 398 |
397 json11::Json::object jo; | 399 json11::Json::object jo; |
398 for (const auto &fsi : fs) { | 400 for (const auto &fsi : fs) { |
399 std::vector<json11::Json> fj; | 401 std::vector<json11::Json> fj; |
400 for (const Vamp::Plugin::Feature &f: fsi.second) { | 402 for (const Vamp::Plugin::Feature &f: fsi.second) { |
401 fj.push_back(fromFeature(f, serialisation)); | 403 fj.push_back(fromFeature(f, serialisation)); |
402 } | 404 } |
403 std::stringstream sstr; | 405 jo[omapper.indexToId(fsi.first)] = fj; |
404 sstr << fsi.first; | |
405 std::string n = sstr.str(); | |
406 jo[n] = fj; | |
407 } | 406 } |
408 return json11::Json(jo); | 407 return json11::Json(jo); |
409 } | 408 } |
410 | 409 |
411 static Vamp::Plugin::FeatureList | 410 static Vamp::Plugin::FeatureList |
421 } | 420 } |
422 return fl; | 421 return fl; |
423 } | 422 } |
424 | 423 |
425 static Vamp::Plugin::FeatureSet | 424 static Vamp::Plugin::FeatureSet |
426 toFeatureSet(json11::Json j, BufferSerialisation &serialisation) { | 425 toFeatureSet(json11::Json j, |
426 const PluginOutputIdMapper &omapper, | |
427 BufferSerialisation &serialisation) { | |
427 | 428 |
428 Vamp::Plugin::FeatureSet fs; | 429 Vamp::Plugin::FeatureSet fs; |
429 if (!j.is_object()) { | 430 if (!j.is_object()) { |
430 throw Failure("object expected for feature set"); | 431 throw Failure("object expected for feature set"); |
431 } | 432 } |
432 for (auto &entry : j.object_items()) { | 433 for (auto &entry : j.object_items()) { |
433 std::string nstr = entry.first; | 434 int n = omapper.idToIndex(entry.first); |
434 size_t count = 0; | 435 if (fs.find(n) != fs.end()) { |
435 int n = stoi(nstr, &count); | 436 throw Failure("duplicate numerical index for output"); |
436 if (n < 0 || fs.find(n) != fs.end() || count < nstr.size()) { | |
437 throw Failure("invalid or duplicate numerical index for output"); | |
438 } | 437 } |
439 fs[n] = toFeatureList(entry.second, serialisation); | 438 fs[n] = toFeatureList(entry.second, serialisation); |
440 } | 439 } |
441 return fs; | 440 return fs; |
442 } | 441 } |
742 return req; | 741 return req; |
743 } | 742 } |
744 | 743 |
745 static json11::Json | 744 static json11::Json |
746 fromLoadResponse(const Vamp::HostExt::LoadResponse &resp, | 745 fromLoadResponse(const Vamp::HostExt::LoadResponse &resp, |
747 const PluginHandleMapper &mapper) { | 746 const PluginHandleMapper &pmapper) { |
748 | 747 |
749 json11::Json::object jo; | 748 json11::Json::object jo; |
750 jo["pluginHandle"] = double(mapper.pluginToHandle(resp.plugin)); | 749 jo["pluginHandle"] = double(pmapper.pluginToHandle(resp.plugin)); |
751 jo["staticData"] = fromPluginStaticData(resp.staticData); | 750 jo["staticData"] = fromPluginStaticData(resp.staticData); |
752 jo["defaultConfiguration"] = | 751 jo["defaultConfiguration"] = |
753 fromPluginConfiguration(resp.defaultConfiguration); | 752 fromPluginConfiguration(resp.defaultConfiguration); |
754 return json11::Json(jo); | 753 return json11::Json(jo); |
755 } | 754 } |
756 | 755 |
757 static Vamp::HostExt::LoadResponse | 756 static Vamp::HostExt::LoadResponse |
758 toLoadResponse(json11::Json j, | 757 toLoadResponse(json11::Json j, |
759 const PluginHandleMapper &mapper) { | 758 const PluginHandleMapper &pmapper) { |
760 | 759 |
761 std::string err; | 760 std::string err; |
762 | 761 |
763 if (!j.has_shape({ | 762 if (!j.has_shape({ |
764 { "pluginHandle", json11::Json::NUMBER }, | 763 { "pluginHandle", json11::Json::NUMBER }, |
766 { "defaultConfiguration", json11::Json::OBJECT } }, err)) { | 765 { "defaultConfiguration", json11::Json::OBJECT } }, err)) { |
767 throw Failure("malformed load response: " + err); | 766 throw Failure("malformed load response: " + err); |
768 } | 767 } |
769 | 768 |
770 Vamp::HostExt::LoadResponse resp; | 769 Vamp::HostExt::LoadResponse resp; |
771 resp.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value()); | 770 resp.plugin = pmapper.handleToPlugin(j["pluginHandle"].int_value()); |
772 resp.staticData = toPluginStaticData(j["staticData"]); | 771 resp.staticData = toPluginStaticData(j["staticData"]); |
773 resp.defaultConfiguration = toPluginConfiguration(j["defaultConfiguration"]); | 772 resp.defaultConfiguration = toPluginConfiguration(j["defaultConfiguration"]); |
774 return resp; | 773 return resp; |
775 } | 774 } |
776 | 775 |
777 static json11::Json | 776 static json11::Json |
778 fromConfigurationRequest(const Vamp::HostExt::ConfigurationRequest &cr, | 777 fromConfigurationRequest(const Vamp::HostExt::ConfigurationRequest &cr, |
779 const PluginHandleMapper &mapper) { | 778 const PluginHandleMapper &pmapper) { |
780 | 779 |
781 json11::Json::object jo; | 780 json11::Json::object jo; |
782 | 781 |
783 jo["pluginHandle"] = mapper.pluginToHandle(cr.plugin); | 782 jo["pluginHandle"] = pmapper.pluginToHandle(cr.plugin); |
784 jo["configuration"] = fromPluginConfiguration(cr.configuration); | 783 jo["configuration"] = fromPluginConfiguration(cr.configuration); |
785 | 784 |
786 return json11::Json(jo); | 785 return json11::Json(jo); |
787 } | 786 } |
788 | 787 |
789 static Vamp::HostExt::ConfigurationRequest | 788 static Vamp::HostExt::ConfigurationRequest |
790 toConfigurationRequest(json11::Json j, | 789 toConfigurationRequest(json11::Json j, |
791 const PluginHandleMapper &mapper) { | 790 const PluginHandleMapper &pmapper) { |
792 | 791 |
793 std::string err; | 792 std::string err; |
794 | 793 |
795 if (!j.has_shape({ | 794 if (!j.has_shape({ |
796 { "pluginHandle", json11::Json::NUMBER }, | 795 { "pluginHandle", json11::Json::NUMBER }, |
797 { "configuration", json11::Json::OBJECT } }, err)) { | 796 { "configuration", json11::Json::OBJECT } }, err)) { |
798 throw Failure("malformed configuration request: " + err); | 797 throw Failure("malformed configuration request: " + err); |
799 } | 798 } |
800 | 799 |
801 Vamp::HostExt::ConfigurationRequest cr; | 800 Vamp::HostExt::ConfigurationRequest cr; |
802 cr.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value()); | 801 cr.plugin = pmapper.handleToPlugin(j["pluginHandle"].int_value()); |
803 cr.configuration = toPluginConfiguration(j["configuration"]); | 802 cr.configuration = toPluginConfiguration(j["configuration"]); |
804 return cr; | 803 return cr; |
805 } | 804 } |
806 | 805 |
807 static json11::Json | 806 static json11::Json |
808 fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr) { | 807 fromConfigurationResponse(const Vamp::HostExt::ConfigurationResponse &cr, |
809 | 808 const PluginHandleMapper &pmapper) { |
810 json11::Json::object jo; | 809 |
810 json11::Json::object jo; | |
811 | |
812 jo["pluginHandle"] = pmapper.pluginToHandle(cr.plugin); | |
811 | 813 |
812 json11::Json::array outs; | 814 json11::Json::array outs; |
813 for (auto &d: cr.outputs) { | 815 for (auto &d: cr.outputs) { |
814 outs.push_back(fromOutputDescriptor(d)); | 816 outs.push_back(fromOutputDescriptor(d)); |
815 } | 817 } |
817 | 819 |
818 return json11::Json(jo); | 820 return json11::Json(jo); |
819 } | 821 } |
820 | 822 |
821 static Vamp::HostExt::ConfigurationResponse | 823 static Vamp::HostExt::ConfigurationResponse |
822 toConfigurationResponse(json11::Json j) { | 824 toConfigurationResponse(json11::Json j, |
825 const PluginHandleMapper &pmapper) { | |
823 | 826 |
824 Vamp::HostExt::ConfigurationResponse cr; | 827 Vamp::HostExt::ConfigurationResponse cr; |
825 | 828 |
829 cr.plugin = pmapper.handleToPlugin(j["pluginHandle"].int_value()); | |
830 | |
826 if (!j["outputList"].is_array()) { | 831 if (!j["outputList"].is_array()) { |
827 throw Failure("array expected for output list"); | 832 throw Failure("array expected for output list"); |
828 } | 833 } |
829 | 834 |
830 for (const auto &o: j["outputList"].array_items()) { | 835 for (const auto &o: j["outputList"].array_items()) { |
834 return cr; | 839 return cr; |
835 } | 840 } |
836 | 841 |
837 static json11::Json | 842 static json11::Json |
838 fromProcessRequest(const Vamp::HostExt::ProcessRequest &r, | 843 fromProcessRequest(const Vamp::HostExt::ProcessRequest &r, |
839 const PluginHandleMapper &mapper, | 844 const PluginHandleMapper &pmapper, |
840 BufferSerialisation serialisation) { | 845 BufferSerialisation serialisation) { |
841 | 846 |
842 json11::Json::object jo; | 847 json11::Json::object jo; |
843 jo["pluginHandle"] = mapper.pluginToHandle(r.plugin); | 848 jo["pluginHandle"] = pmapper.pluginToHandle(r.plugin); |
844 | 849 |
845 json11::Json::object io; | 850 json11::Json::object io; |
846 io["timestamp"] = fromRealTime(r.timestamp); | 851 io["timestamp"] = fromRealTime(r.timestamp); |
847 | 852 |
848 json11::Json::array chans; | 853 json11::Json::array chans; |
863 return json11::Json(jo); | 868 return json11::Json(jo); |
864 } | 869 } |
865 | 870 |
866 static Vamp::HostExt::ProcessRequest | 871 static Vamp::HostExt::ProcessRequest |
867 toProcessRequest(json11::Json j, | 872 toProcessRequest(json11::Json j, |
868 const PluginHandleMapper &mapper, | 873 const PluginHandleMapper &pmapper, |
869 BufferSerialisation &serialisation) { | 874 BufferSerialisation &serialisation) { |
870 | 875 |
871 std::string err; | 876 std::string err; |
872 | 877 |
873 if (!j.has_shape({ | 878 if (!j.has_shape({ |
883 { "inputBuffers", json11::Json::ARRAY } }, err)) { | 888 { "inputBuffers", json11::Json::ARRAY } }, err)) { |
884 throw Failure("malformed process request: " + err); | 889 throw Failure("malformed process request: " + err); |
885 } | 890 } |
886 | 891 |
887 Vamp::HostExt::ProcessRequest r; | 892 Vamp::HostExt::ProcessRequest r; |
888 r.plugin = mapper.handleToPlugin(j["pluginHandle"].int_value()); | 893 r.plugin = pmapper.handleToPlugin(j["pluginHandle"].int_value()); |
889 | 894 |
890 r.timestamp = toRealTime(input["timestamp"]); | 895 r.timestamp = toRealTime(input["timestamp"]); |
891 | 896 |
892 for (auto a: input["inputBuffers"].array_items()) { | 897 for (auto a: input["inputBuffers"].array_items()) { |
893 | 898 |
920 return json11::Json(jo); | 925 return json11::Json(jo); |
921 } | 926 } |
922 | 927 |
923 static json11::Json | 928 static json11::Json |
924 fromVampResponse_List(std::string errorText, | 929 fromVampResponse_List(std::string errorText, |
925 const std::vector<Vamp::HostExt::PluginStaticData> &d) { | 930 const Vamp::HostExt::ListResponse &resp) { |
926 | 931 |
927 json11::Json::object jo; | 932 json11::Json::object jo; |
928 jo["type"] = "list"; | 933 jo["type"] = "list"; |
929 jo["success"] = (errorText == ""); | 934 jo["success"] = (errorText == ""); |
930 jo["errorText"] = errorText; | 935 jo["errorText"] = errorText; |
931 | 936 |
932 json11::Json::array arr; | 937 json11::Json::array arr; |
933 for (const auto &a: d) { | 938 for (const auto &a: resp.pluginData) { |
934 arr.push_back(fromPluginStaticData(a)); | 939 arr.push_back(fromPluginStaticData(a)); |
935 } | 940 } |
936 json11::Json::object po; | 941 json11::Json::object po; |
937 po["plugins"] = arr; | 942 po["plugins"] = arr; |
938 | 943 |
949 return json11::Json(jo); | 954 return json11::Json(jo); |
950 } | 955 } |
951 | 956 |
952 static json11::Json | 957 static json11::Json |
953 fromVampResponse_Load(const Vamp::HostExt::LoadResponse &resp, | 958 fromVampResponse_Load(const Vamp::HostExt::LoadResponse &resp, |
954 const PluginHandleMapper &mapper) { | 959 const PluginHandleMapper &pmapper) { |
955 | 960 |
956 json11::Json::object jo; | 961 json11::Json::object jo; |
957 jo["type"] = "load"; | 962 jo["type"] = "load"; |
958 jo["success"] = (resp.plugin != 0); | 963 jo["success"] = (resp.plugin != 0); |
959 jo["errorText"] = ""; | 964 jo["errorText"] = ""; |
960 jo["content"] = fromLoadResponse(resp, mapper); | 965 jo["content"] = fromLoadResponse(resp, pmapper); |
961 return json11::Json(jo); | 966 return json11::Json(jo); |
962 } | 967 } |
963 | 968 |
964 static json11::Json | 969 static json11::Json |
965 fromVampRequest_Configure(const Vamp::HostExt::ConfigurationRequest &req, | 970 fromVampRequest_Configure(const Vamp::HostExt::ConfigurationRequest &req, |
966 const PluginHandleMapper &mapper) { | 971 const PluginHandleMapper &pmapper) { |
967 | 972 |
968 json11::Json::object jo; | 973 json11::Json::object jo; |
969 jo["type"] = "configure"; | 974 jo["type"] = "configure"; |
970 jo["content"] = fromConfigurationRequest(req, mapper); | 975 jo["content"] = fromConfigurationRequest(req, pmapper); |
971 return json11::Json(jo); | 976 return json11::Json(jo); |
972 } | 977 } |
973 | 978 |
974 static json11::Json | 979 static json11::Json |
975 fromVampResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp) { | 980 fromVampResponse_Configure(const Vamp::HostExt::ConfigurationResponse &resp, |
981 const PluginHandleMapper &pmapper) { | |
976 | 982 |
977 json11::Json::object jo; | 983 json11::Json::object jo; |
978 jo["type"] = "configure"; | 984 jo["type"] = "configure"; |
979 jo["success"] = (!resp.outputs.empty()); | 985 jo["success"] = (!resp.outputs.empty()); |
980 jo["errorText"] = ""; | 986 jo["errorText"] = ""; |
981 jo["content"] = fromConfigurationResponse(resp); | 987 jo["content"] = fromConfigurationResponse(resp, pmapper); |
982 return json11::Json(jo); | 988 return json11::Json(jo); |
983 } | 989 } |
984 | 990 |
985 static json11::Json | 991 static json11::Json |
986 fromVampRequest_Process(const Vamp::HostExt::ProcessRequest &req, | 992 fromVampRequest_Process(const Vamp::HostExt::ProcessRequest &req, |
987 const PluginHandleMapper &mapper, | 993 const PluginHandleMapper &pmapper, |
988 BufferSerialisation serialisation) { | 994 BufferSerialisation serialisation) { |
989 | 995 |
990 json11::Json::object jo; | 996 json11::Json::object jo; |
991 jo["type"] = "process"; | 997 jo["type"] = "process"; |
992 jo["content"] = fromProcessRequest(req, mapper, serialisation); | 998 jo["content"] = fromProcessRequest(req, pmapper, serialisation); |
993 return json11::Json(jo); | 999 return json11::Json(jo); |
994 } | 1000 } |
995 | 1001 |
996 static json11::Json | 1002 static json11::Json |
997 fromVampResponse_Process(const Vamp::HostExt::ProcessResponse &resp, | 1003 fromVampResponse_Process(const Vamp::HostExt::ProcessResponse &resp, |
1004 const PluginHandleMapper &pmapper, | |
998 BufferSerialisation serialisation) { | 1005 BufferSerialisation serialisation) { |
999 | 1006 |
1000 json11::Json::object jo; | 1007 json11::Json::object jo; |
1001 jo["type"] = "process"; | 1008 jo["type"] = "process"; |
1002 jo["success"] = true; | 1009 jo["success"] = true; |
1003 jo["errorText"] = ""; | 1010 jo["errorText"] = ""; |
1004 jo["content"] = fromFeatureSet(resp.features, serialisation); | 1011 json11::Json::object po; |
1005 return json11::Json(jo); | 1012 po["pluginHandle"] = pmapper.pluginToHandle(resp.plugin); |
1006 } | 1013 po["features"] = fromFeatureSet(resp.features, |
1007 | 1014 *pmapper.pluginToOutputIdMapper(resp.plugin), |
1008 static json11::Json | 1015 serialisation); |
1009 fromVampRequest_Finish(Vamp::Plugin *p, | 1016 jo["content"] = po; |
1010 const PluginHandleMapper &mapper) { | 1017 return json11::Json(jo); |
1018 } | |
1019 | |
1020 static json11::Json | |
1021 fromVampRequest_Finish(const Vamp::HostExt::FinishRequest &req, | |
1022 const PluginHandleMapper &pmapper) { | |
1011 | 1023 |
1012 json11::Json::object jo; | 1024 json11::Json::object jo; |
1013 jo["type"] = "finish"; | 1025 jo["type"] = "finish"; |
1014 json11::Json::object fo; | 1026 json11::Json::object fo; |
1015 fo["pluginHandle"] = mapper.pluginToHandle(p); | 1027 fo["pluginHandle"] = pmapper.pluginToHandle(req.plugin); |
1016 jo["content"] = fo; | 1028 jo["content"] = fo; |
1017 return json11::Json(jo); | 1029 return json11::Json(jo); |
1018 } | 1030 } |
1019 | 1031 |
1020 static json11::Json | 1032 static json11::Json |
1021 fromVampResponse_Finish(const Vamp::HostExt::ProcessResponse &resp, | 1033 fromVampResponse_Finish(const Vamp::HostExt::ProcessResponse &resp, |
1034 const PluginHandleMapper &pmapper, | |
1022 BufferSerialisation serialisation) { | 1035 BufferSerialisation serialisation) { |
1023 | 1036 |
1024 json11::Json::object jo; | 1037 json11::Json::object jo; |
1025 jo["type"] = "finish"; | 1038 jo["type"] = "finish"; |
1026 jo["success"] = true; | 1039 jo["success"] = true; |
1027 jo["errorText"] = ""; | 1040 jo["errorText"] = ""; |
1028 jo["content"] = fromFeatureSet(resp.features, serialisation); | 1041 json11::Json::object po; |
1029 return json11::Json(jo); | 1042 po["pluginHandle"] = pmapper.pluginToHandle(resp.plugin); |
1030 } | 1043 po["features"] = fromFeatureSet(resp.features, |
1031 | 1044 *pmapper.pluginToOutputIdMapper(resp.plugin), |
1032 static json11::Json | 1045 serialisation); |
1033 fromException(const std::exception &e, RRType responseType) { | 1046 jo["content"] = po; |
1047 return json11::Json(jo); | |
1048 } | |
1049 | |
1050 static json11::Json | |
1051 fromError(std::string errorText, RRType responseType) { | |
1034 | 1052 |
1035 json11::Json::object jo; | 1053 json11::Json::object jo; |
1036 std::string type; | 1054 std::string type; |
1037 | 1055 |
1038 if (responseType == RRType::List) type = "list"; | 1056 if (responseType == RRType::List) type = "list"; |
1042 else if (responseType == RRType::Finish) type = "finish"; | 1060 else if (responseType == RRType::Finish) type = "finish"; |
1043 else type = "invalid"; | 1061 else type = "invalid"; |
1044 | 1062 |
1045 jo["type"] = type; | 1063 jo["type"] = type; |
1046 jo["success"] = false; | 1064 jo["success"] = false; |
1047 jo["errorText"] = std::string("exception caught: ") + | 1065 jo["errorText"] = std::string("error in ") + type + " request: " + errorText; |
1048 type + " request: " + e.what(); | 1066 return json11::Json(jo); |
1049 return json11::Json(jo); | 1067 } |
1068 | |
1069 static json11::Json | |
1070 fromException(const std::exception &e, RRType responseType) { | |
1071 | |
1072 return fromError(e.what(), responseType); | |
1050 } | 1073 } |
1051 | 1074 |
1052 private: // go private briefly for a couple of helper functions | 1075 private: // go private briefly for a couple of helper functions |
1053 | 1076 |
1054 static void | 1077 static void |
1094 toVampRequest_List(json11::Json j) { | 1117 toVampRequest_List(json11::Json j) { |
1095 | 1118 |
1096 checkTypeField(j, "list"); | 1119 checkTypeField(j, "list"); |
1097 } | 1120 } |
1098 | 1121 |
1099 static std::vector<Vamp::HostExt::PluginStaticData> | 1122 static Vamp::HostExt::ListResponse |
1100 toVampResponse_List(json11::Json j) { | 1123 toVampResponse_List(json11::Json j) { |
1101 | 1124 |
1102 std::vector<Vamp::HostExt::PluginStaticData> arr; | 1125 Vamp::HostExt::ListResponse resp; |
1103 if (successful(j)) { | 1126 if (successful(j)) { |
1104 for (const auto &a: j["content"]["plugins"].array_items()) { | 1127 for (const auto &a: j["content"]["plugins"].array_items()) { |
1105 arr.push_back(toPluginStaticData(a)); | 1128 resp.pluginData.push_back(toPluginStaticData(a)); |
1106 } | 1129 } |
1107 } | 1130 } |
1108 return arr; | 1131 return resp; |
1109 } | 1132 } |
1110 | 1133 |
1111 static Vamp::HostExt::LoadRequest | 1134 static Vamp::HostExt::LoadRequest |
1112 toVampRequest_Load(json11::Json j) { | 1135 toVampRequest_Load(json11::Json j) { |
1113 | 1136 |
1114 checkTypeField(j, "load"); | 1137 checkTypeField(j, "load"); |
1115 return toLoadRequest(j["content"]); | 1138 return toLoadRequest(j["content"]); |
1116 } | 1139 } |
1117 | 1140 |
1118 static Vamp::HostExt::LoadResponse | 1141 static Vamp::HostExt::LoadResponse |
1119 toVampResponse_Load(json11::Json j, const PluginHandleMapper &mapper) { | 1142 toVampResponse_Load(json11::Json j, const PluginHandleMapper &pmapper) { |
1120 | 1143 |
1121 Vamp::HostExt::LoadResponse resp; | 1144 Vamp::HostExt::LoadResponse resp; |
1122 if (successful(j)) { | 1145 if (successful(j)) { |
1123 resp = toLoadResponse(j["content"], mapper); | 1146 resp = toLoadResponse(j["content"], pmapper); |
1124 } | 1147 } |
1125 return resp; | 1148 return resp; |
1126 } | 1149 } |
1127 | 1150 |
1128 static Vamp::HostExt::ConfigurationRequest | 1151 static Vamp::HostExt::ConfigurationRequest |
1129 toVampRequest_Configure(json11::Json j, const PluginHandleMapper &mapper) { | 1152 toVampRequest_Configure(json11::Json j, const PluginHandleMapper &pmapper) { |
1130 | 1153 |
1131 checkTypeField(j, "configure"); | 1154 checkTypeField(j, "configure"); |
1132 return toConfigurationRequest(j["content"], mapper); | 1155 return toConfigurationRequest(j["content"], pmapper); |
1133 } | 1156 } |
1134 | 1157 |
1135 static Vamp::HostExt::ConfigurationResponse | 1158 static Vamp::HostExt::ConfigurationResponse |
1136 toVampResponse_Configure(json11::Json j) { | 1159 toVampResponse_Configure(json11::Json j, const PluginHandleMapper &pmapper) { |
1137 | 1160 |
1138 Vamp::HostExt::ConfigurationResponse resp; | 1161 Vamp::HostExt::ConfigurationResponse resp; |
1139 if (successful(j)) { | 1162 if (successful(j)) { |
1140 resp = toConfigurationResponse(j["content"]); | 1163 resp = toConfigurationResponse(j["content"], pmapper); |
1141 } | 1164 } |
1142 return resp; | 1165 return resp; |
1143 } | 1166 } |
1144 | 1167 |
1145 static Vamp::HostExt::ProcessRequest | 1168 static Vamp::HostExt::ProcessRequest |
1146 toVampRequest_Process(json11::Json j, const PluginHandleMapper &mapper, | 1169 toVampRequest_Process(json11::Json j, const PluginHandleMapper &pmapper, |
1147 BufferSerialisation &serialisation) { | 1170 BufferSerialisation &serialisation) { |
1148 | 1171 |
1149 checkTypeField(j, "process"); | 1172 checkTypeField(j, "process"); |
1150 return toProcessRequest(j["content"], mapper, serialisation); | 1173 return toProcessRequest(j["content"], pmapper, serialisation); |
1151 } | 1174 } |
1152 | 1175 |
1153 static Vamp::HostExt::ProcessResponse | 1176 static Vamp::HostExt::ProcessResponse |
1154 toVampResponse_Process(json11::Json j, BufferSerialisation &serialisation) { | 1177 toVampResponse_Process(json11::Json j, |
1178 const PluginHandleMapper &pmapper, | |
1179 BufferSerialisation &serialisation) { | |
1155 | 1180 |
1156 Vamp::HostExt::ProcessResponse resp; | 1181 Vamp::HostExt::ProcessResponse resp; |
1157 if (successful(j)) { | 1182 if (successful(j)) { |
1158 resp.features = toFeatureSet(j["content"], serialisation); | 1183 auto jc = j["content"]; |
1184 auto h = jc["pluginHandle"].int_value(); | |
1185 resp.plugin = pmapper.handleToPlugin(h); | |
1186 resp.features = toFeatureSet(jc["features"], | |
1187 *pmapper.handleToOutputIdMapper(h), | |
1188 serialisation); | |
1159 } | 1189 } |
1160 return resp; | 1190 return resp; |
1161 } | 1191 } |
1162 | 1192 |
1163 static Vamp::Plugin * | 1193 static Vamp::HostExt::FinishRequest |
1164 toVampRequest_Finish(json11::Json j, const PluginHandleMapper &mapper) { | 1194 toVampRequest_Finish(json11::Json j, const PluginHandleMapper &pmapper) { |
1165 | 1195 |
1166 checkTypeField(j, "finish"); | 1196 checkTypeField(j, "finish"); |
1167 return mapper.handleToPlugin(j["content"]["pluginHandle"].int_value()); | 1197 Vamp::HostExt::FinishRequest req; |
1198 req.plugin = pmapper.handleToPlugin | |
1199 (j["content"]["pluginHandle"].int_value()); | |
1200 return req; | |
1168 } | 1201 } |
1169 | 1202 |
1170 static Vamp::HostExt::ProcessResponse | 1203 static Vamp::HostExt::ProcessResponse |
1171 toVampResponse_Finish(json11::Json j, BufferSerialisation &serialisation) { | 1204 toVampResponse_Finish(json11::Json j, |
1205 const PluginHandleMapper &pmapper, | |
1206 BufferSerialisation &serialisation) { | |
1172 | 1207 |
1173 Vamp::HostExt::ProcessResponse resp; | 1208 Vamp::HostExt::ProcessResponse resp; |
1174 if (successful(j)) { | 1209 if (successful(j)) { |
1175 resp.features = toFeatureSet(j["content"], serialisation); | 1210 auto jc = j["content"]; |
1211 auto h = jc["pluginHandle"].int_value(); | |
1212 resp.plugin = pmapper.handleToPlugin(h); | |
1213 resp.features = toFeatureSet(jc["features"], | |
1214 *pmapper.handleToOutputIdMapper(h), | |
1215 serialisation); | |
1176 } | 1216 } |
1177 return resp; | 1217 return resp; |
1178 } | 1218 } |
1179 }; | 1219 }; |
1180 | 1220 |