File size: 14,701 Bytes
6229e10 |
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
#pragma once
#include <sstream>
#include "../enum/gm.h"
#include "rsj.h"
// START OF NAMESPACE
namespace util_protobuf {
std::string convert_to_snake_case(const std::string &x) {
std::string o;
for (int i = 0; i < (int)x.length(); i++) {
if ((isalpha(x.at(i))) && (x.at(i) == toupper(x.at(i)))) {
o.push_back('_');
o.push_back(tolower(x.at(i)));
}
else if (x.at(i) == ' ') {
o.push_back('_');
}
else {
o.push_back(x.at(i));
}
}
return o;
}
template <typename T>
void validate_protobuf_fields_inner(const T &x, RSJresource &raw_json) {
const google::protobuf::Reflection* reflection = x.GetReflection();
const google::protobuf::Descriptor* descriptor = x.GetDescriptor();
std::map<std::string,std::string> key_map;
std::map<std::string,std::string> key_map_rev;
for (auto &kv : raw_json.as_object()) {
auto c = convert_to_snake_case(kv.first);
key_map[c] = kv.first;
key_map_rev[kv.first] = c;
}
for (auto &kv : raw_json.as_object()) {
if (descriptor->FindFieldByName(key_map_rev[kv.first]) == NULL) {
std::ostringstream buffer;
buffer << "PROTOBUF ERROR : " << "invalid field name = " << kv.first << " (" << key_map_rev[kv.first] << ")" << std::endl;
throw std::invalid_argument(buffer.str());
}
}
for (int i=0; i<descriptor->field_count(); i++) {
const google::protobuf::FieldDescriptor *fd = descriptor->field(i);
bool is_repeated = fd->is_repeated();
int field_count = is_repeated ? reflection->FieldSize(x, fd) : 1;
if ((is_repeated) && (reflection->FieldSize(x, fd) != (int)raw_json[key_map[fd->name()]].as_array().size())) {
std::ostringstream buffer;
buffer << "PROTOBUF ERROR : " << "invalid repeated field value :: " << fd->name() << " = " << raw_json[key_map[fd->name()]].as<std::string>() << std::endl;
throw std::invalid_argument(buffer.str());
}
for (int index=0; index<field_count; index++) {
if ((!is_repeated) && (!reflection->HasField(x, fd)) && (raw_json[key_map[fd->name()]].exists())) {
std::ostringstream buffer;
buffer << "PROTOBUF ERROR : " << "invalid field value :: " << fd->name() << " = " << raw_json[key_map[fd->name()]].as<std::string>() << std::endl;
throw std::invalid_argument(buffer.str());
}
if (fd->type() == google::protobuf::FieldDescriptor::Type::TYPE_MESSAGE) {
if (is_repeated) {
validate_protobuf_fields_inner(reflection->GetRepeatedMessage(x,fd,index), raw_json[key_map[fd->name()]][index]);
}
else {
validate_protobuf_fields_inner(reflection->GetMessage(x,fd), raw_json[key_map[fd->name()]]);
}
}
}
}
}
template <typename T>
void validate_protobuf_fields(const T *x, std::string &s) {
RSJresource raw_json(s);
validate_protobuf_fields_inner(*x, raw_json);
}
template <typename T>
void validate_protobuf_inner(const T &x, bool ignore_internal) {
const google::protobuf::Reflection* reflection = x.GetReflection();
const google::protobuf::Descriptor* descriptor = x.GetDescriptor();
for (int i=0; i<descriptor->field_count(); i++) {
const google::protobuf::FieldDescriptor *fd = descriptor->field(i);
const google::protobuf::FieldOptions opt = fd->options();
google::protobuf::FieldDescriptor::Type ft = fd->type();
if ((fd->name().rfind("internal_", 0)) || (!ignore_internal)) {
bool is_repeated = fd->is_repeated();
int field_count = 1;
if (is_repeated) {
field_count = reflection->FieldSize(x, fd);
}
for (int index=0; index<field_count; index++) {
if (ft == google::protobuf::FieldDescriptor::Type::TYPE_FLOAT) {
float minval = opt.GetExtension(midi::fminval);
float maxval = opt.GetExtension(midi::fmaxval);
if (minval == 0 && maxval == 0) {
// do nothing if not set
}
else {
float value;
if (is_repeated) {
value = reflection->GetRepeatedFloat(x,fd,index);
}
else {
value = reflection->GetFloat(x,fd);
}
if ((value < minval) || (value > maxval)) {
std::ostringstream buffer;
buffer << "PROTOBUF ERROR : " << fd->name() << " not on range [" << minval << "," << maxval << ").";
throw std::invalid_argument(buffer.str());
}
}
}
else if (ft == google::protobuf::FieldDescriptor::Type::TYPE_INT32) {
int minval = opt.GetExtension(midi::minval);
int maxval = opt.GetExtension(midi::maxval);
if (minval == 0 && maxval == 0) {
// do nothing if not set
}
else {
int value;
if (is_repeated) {
value = reflection->GetRepeatedInt32(x,fd,index);
}
else {
value = reflection->GetInt32(x,fd);
}
if ((value < minval) || (value > maxval)) {
std::ostringstream buffer;
buffer << "PROTOBUF ERROR : " << fd->name() << " not on range [" << minval << "," << maxval << ").";
throw std::invalid_argument(buffer.str());
}
}
}
else if (ft == google::protobuf::FieldDescriptor::Type::TYPE_MESSAGE) {
if (is_repeated) {
validate_protobuf_inner(
reflection->GetRepeatedMessage(x,fd,index), ignore_internal);
}
else {
validate_protobuf_inner(
reflection->GetMessage(x,fd), ignore_internal);
}
}
}
}
}
}
// this function is validating the range of each variable
// if the field has a min and max defined
template <typename T>
void validate_protobuf_field_ranges(T *x, bool ignore_internal=true) {
validate_protobuf_inner(*x, ignore_internal);
}
bool operator< (const midi::Event &a, const midi::Event &b) {
if (a.time() != b.time()) {
return a.time() < b.time();
}
if (std::min(a.velocity(),1) != std::min(b.velocity(),1)) {
return std::min(a.velocity(),1) < std::min(b.velocity(),1);
}
return a.pitch() < b.pitch();
}
void sort_piece_events(midi::Piece *p) {
// find the re-indexing of the events using argsort
std::vector<int> idx = arange(p->events_size());
std::sort(idx.begin(), idx.end(),
[&p](size_t i, size_t j) {return p->events(i) < p->events(j);});
// make a map from old-index to new-index
std::map<int,int> index_map;
int count = 0;
for (const auto &i : idx) {
index_map.insert(std::make_pair(i,count));
count++;
}
// replace the events in piece->events
midi::Piece orig(*p);
p->clear_events();
for (const auto &i : idx) {
midi::Event *e = p->add_events();
e->CopyFrom(orig.events(i));
}
// replace indices in piece->tracks
for (int track_num=0; track_num<p->tracks_size(); track_num++) {
midi::Track *t = p->mutable_tracks(track_num);
for (int bar_num=0; bar_num<t->bars_size(); bar_num++) {
midi::Bar *b = t->mutable_bars(bar_num);
b->clear_events();
std::vector<int> bar_events;
for (const auto &e : orig.tracks(track_num).bars(bar_num).events()) {
bar_events.push_back( index_map[e] );
}
std::sort(bar_events.begin(), bar_events.end());
for (const auto &e : bar_events) {
b->add_events( e );
}
}
}
}
// 1. check that each event is within the bar
void validate_events(midi::Piece *p) {
for (const auto &track : p->tracks()) {
for (const auto &bar : track.bars()) {
int barlength = bar.internal_beat_length() * p->resolution();
for (const auto &index : bar.events()) {
if ((index < 0) || (index >= p->events_size())) {
throw std::invalid_argument("EVENT INDEX IN BAR IS OUT OF RANGE!");
}
int time = p->events(index).time();
bool is_onset = (p->events(index).velocity()>0);
if ((time < 0) || ((time >= barlength) && (is_onset)) || ((time > barlength) && (!is_onset))) {
std::string event_type = "ONSET";
if (!is_onset) {
event_type = "OFFSET";
}
std::ostringstream buffer;
buffer << "NOTE " << event_type << " TIME (" << time << ") IS BEYOND EXTENTS OF BAR (" << barlength << ")";
throw std::invalid_argument(buffer.str());
}
}
}
}
}
void check_track_lengths(midi::Piece *x) {
int num_tracks = x->tracks_size();
if (num_tracks > 0) {
int num_bars = x->tracks(0).bars_size();
for (int track_num=1; track_num<num_tracks; track_num++) {
if (num_bars != x->tracks(track_num).bars_size()) {
throw std::invalid_argument("NUMBER OF BARS DIFFERS BETWEEN TRACKS!");
}
}
}
}
void check_time_sigs(midi::Piece *x) {
int track_num = 0;
std::vector<int> numerators;
std::vector<int> denominators;
for (const auto &track : x->tracks()) {
int bar_num = 0;
for (const auto &bar : track.bars()) {
if (track_num == 0) {
numerators.push_back( bar.ts_numerator() );
denominators.push_back( bar.ts_denominator() );
}
else {
if ((numerators[bar_num] != bar.ts_numerator()) || (denominators[bar_num] != bar.ts_denominator())) {
throw std::invalid_argument(
"TIME SIGNATURES FOR EACH BAR MUST BE THE SAME ACROSS ALL TRACKS.");
}
}
bar_num++;
}
track_num++;
}
}
void set_beat_lengths(midi::Piece *x) {
for (int track_num=0; track_num<x->tracks_size(); track_num++) {
midi::Track *t = x->mutable_tracks(track_num);
for (int bar_num=0; bar_num<t->bars_size(); bar_num++) {
midi::Bar *b = t->mutable_bars(bar_num);
b->set_internal_beat_length(
(double)b->ts_numerator() / b->ts_denominator() * 4);
}
}
}
void validate_piece(midi::Piece *x) {
if (!x) {
throw std::invalid_argument("PIECE IS NULL. CANNOT VALIDATE!");
}
// check that piece has resolution
if (x->resolution() == 0) {
throw std::invalid_argument("PIECE RESOLUTION CAN NOT BE 0");
}
// validate range of fields
validate_protobuf_field_ranges(x);
// set the beat length using the time signature information
set_beat_lengths(x);
// to be kind we sort events
sort_piece_events(x);
// check that there are the same number of bars in each track
check_track_lengths(x);
// make sure time signatures are the same in each bar
check_time_sigs(x);
// check events are valid
// event_index should reference valid event
// event times should be within each bar
validate_events(x);
}
// update has notes information
void prepare_piece(midi::Piece *x) {
for (int track_num=0; track_num<x->tracks_size(); track_num++) {
midi::Track *track = x->mutable_tracks(track_num);
for (int bar_num=0; bar_num<track->bars_size(); bar_num++) {
}
}
}
template <typename T>
void check_range(T value, T minv, T maxv, const char *field) {
if ((value < minv) || (value >= maxv)) {
std::ostringstream buffer;
buffer << field << " not on range [" << minv << "," << maxv << ").";
throw std::invalid_argument(buffer.str());
}
}
template <typename T>
void check_all_same(std::set<T> &values, const char *field) {
if ((int)values.size() != 1) {
std::ostringstream buffer;
buffer << field << " values must all be the same. {";
for (const auto &val : values) {
buffer << val << ",";
}
buffer << "}";
throw std::invalid_argument(buffer.str());
}
}
template <typename T>
void check_all_different(std::set<T> &values, int n, const char *field) {
if ((int)values.size() != n) {
std::ostringstream buffer;
buffer << field << " values must all be different.";
throw std::invalid_argument(buffer.str());
}
}
template <typename T>
void check_in_domain(T value, std::set<T> domain, const char *field) {
if (domain.find( value ) == domain.end()) {
std::ostringstream buffer;
buffer << field << " not in domain.";
throw std::invalid_argument(buffer.str());
}
}
int count_selected_bars(const midi::StatusTrack &track) {
int count = 0;
for (const auto &selected : track.selected_bars()) {
count += (int)selected;
}
return count;
}
enum STATUS_TRACK_TYPE {
CONDITION,
RESAMPLE,
INFILL
};
STATUS_TRACK_TYPE infer_track_type(const midi::StatusTrack &track) {
int num_bars = track.selected_bars_size();
int bar_count = count_selected_bars(track);
if (bar_count == 0) {
return CONDITION;
}
else if (bar_count != num_bars) {
return INFILL;
}
return RESAMPLE;
}
void validate_param(midi::HyperParam *param) {
validate_protobuf_field_ranges(param);
}
void validate_status(midi::Status *status, midi::Piece *piece, midi::HyperParam *param) {
if ((!status) || (!piece)) {
throw std::invalid_argument("PIECE OR STATUS IS NULL. CANNOT VALIDATE!");
}
if (status->tracks_size() == 0) {
throw std::invalid_argument("STATUS IS EMPTY");
}
// validate range of fields
validate_protobuf_field_ranges(status);
int track_num = 0;
for (const auto &track : status->tracks()) {
if (track.selected_bars_size() == 0) {
throw std::invalid_argument("NO SELECTED BARS");
}
if (track.selected_bars_size() < param->model_dim()) {
throw std::invalid_argument("SELECTED BARS MUST BE ATLEAST MODEL_DIM");
}
// if track is conditioning it must be within range
STATUS_TRACK_TYPE tt = infer_track_type(track);
if ((tt == CONDITION) || (tt == INFILL)) {
check_range(track.track_id(), 0, piece->tracks_size(), "track_id");
}
// check that if resample all the bars are selected
if (track.autoregressive() == 1) {
for (const auto &bar : track.selected_bars()) {
if (!bar) {
throw std::invalid_argument("WHEN RESAMPLE IS ENABLED ALL BARS MUST BE SELECTED!");
}
}
}
// check that if ignore the mode is condition
if ((track.ignore()) && ((tt == INFILL) || (tt == RESAMPLE))) {
throw std::invalid_argument("CANNOT IGNORE TRACK WITH SELECTED BARS.");
}
track_num++;
}
// check track lengths and track_ids
std::set<int> track_lengths;
std::set<int> track_ids;
for (const auto &track : status->tracks()) {
track_lengths.insert( track.selected_bars_size() );
track_ids.insert( track.track_id() );
}
check_all_same(track_lengths, "sample_bars (length)");
check_all_different(track_ids, status->tracks_size(), "track_id");
}
void validate_inputs(midi::Piece *piece, midi::Status *status, midi::HyperParam *param) {
validate_piece(piece);
validate_status(status, piece, param);
validate_param(param);
}
}
// END OF NAMESPACE
|