I'm having a hard time parsing Midi Packets. At times its 3 bytes then it can be 155 bytes on one stream. How can I iterate through the massive packet and just get what I need? Say for "b0" its only 3 bytes of 12 a byte packet, I just want to split "b0" and its following bytes: [b02c2c] then the others [b02c2d] or [f0....] in the same packet...

Heres what I've been working on and is giving me a headache..

NSString *StringFromPacket(const MIDIPacket *packet,id self)
{

NSMutableString * result = [[NSMutableString alloc] init];

for (int i = 0; i < packet->length; i++) {


    NSString *s = [NSString stringWithFormat:@"%02x",packet->data[i]];

 for (NSString *line in [s componentsSeparatedByString:@"b0"]) {
    //This appends to string but b0 disappears and only get the following 2 bytes
    //Along with the others like f0,a0,90. I would like to filter without losing b0
[result appendFormat:line];

 }
}

[self controlEvent:result];
}


-(void)controlEvent:(NSString *)line{

if (line == @"b02c2c"){
//Do Something
}
link|improve this question

I'm confused by your question and code -- can you show a few MIDI packets and what manipulations you want to make on them? – sarnold Jan 2 at 1:24
4  
Do not use string-matching for parsing binary data. Make sure you fully understand the MIDI data format before using it. – Till Jan 2 at 1:25
I would basically receive a packet like this: 18 bytes: [b0,0c,0e,b0,2c,05,b0,0c,0f,b0,2c,02,b0,0c,0d,b0,2c,02] How can I separate them into 3 bytes then send to a method? – Cocell Jan 2 at 2:40
Not all MIDI messages are 3 bytes long! You should really look into the protocol more in depth. – Brad Jan 2 at 16:55
feedback

1 Answer

This method:

[s componentsSeparatedByString:@"b0"]

will give you the substrings separated by "b0" but will remove the "b0". For example, if you had the string "a,b,c,d" and called [s componentsSeparatedByString:@","], you'd get the array {"a", "b", "c", "d" } with no commas. So you can add them back in if you want by doing:

result = [NSString stringWithFormat:"%@b0%@", result, line];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.