Beispiel #1
0
        protected override void finish()
        {
            if (!(keyGenerator.have_value))
            {
                throw new Exception("The `MusicCommandKind' field is missing.");
            }
            if (!(getCommandResultJSONKey().Equals("MusicCommand")))
            {
                throw new Exception("The key field has a value other than `MusicCommand'.");
            }
            MusicCommandJSON result = createForKey(keyGenerator.value, unknownFieldGenerator.index);

            Debug.Assert(result != null);
            finish(result);
            int extra_count = unknownFieldGenerator.field_names.Count;

            Debug.Assert(extra_count == unknownFieldGenerator.field_values.Count);
            for (int extra_num = 0; extra_num < extra_count; ++extra_num)
            {
                result.extraMusicCommandAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            if (!allow_incomplete)
            {
                string missing_field_error = result.missing_field_error(allow_unpolished);
                if (missing_field_error != null)
                {
                    error(missing_field_error);
                }
            }
            handle_result(result);
        }
Beispiel #2
0
 protected void finish(MusicCommandJSON result)
 {
     if (fieldGeneratorAutoPlayPreviewResult.have_value)
     {
         result.setAutoPlayPreviewResult(fieldGeneratorAutoPlayPreviewResult.value);
         fieldGeneratorAutoPlayPreviewResult.have_value = false;
     }
     if (fieldGeneratorAutoPlayResult.have_value)
     {
         result.setAutoPlayResult(fieldGeneratorAutoPlayResult.value);
         fieldGeneratorAutoPlayResult.have_value = false;
     }
     if (fieldGeneratorAutoPlayFailedResult.have_value)
     {
         result.setAutoPlayFailedResult(fieldGeneratorAutoPlayFailedResult.value);
         fieldGeneratorAutoPlayFailedResult.have_value = false;
     }
     if (fieldGeneratorAutoPlayVideoResult.have_value)
     {
         result.setAutoPlayVideoResult(fieldGeneratorAutoPlayVideoResult.value);
         fieldGeneratorAutoPlayVideoResult.have_value = false;
     }
     if (fieldGeneratorShowVideoResult.have_value)
     {
         result.setShowVideoResult(fieldGeneratorShowVideoResult.value);
         fieldGeneratorShowVideoResult.have_value = false;
     }
     if (fieldGeneratorAutoPlayGenericResult.have_value)
     {
         result.setAutoPlayGenericResult(fieldGeneratorAutoPlayGenericResult.value);
         fieldGeneratorAutoPlayGenericResult.have_value = false;
     }
     if (fieldGeneratorNativeData.have_value)
     {
         result.setNativeData(fieldGeneratorNativeData.value);
         fieldGeneratorNativeData.have_value = false;
     }
     else if ((!(result.hasNativeData())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"NativeData\" field was missing.");
     }
     base.finish(result);
 }
 protected override void handle_result(MusicCommandJSON new_result)
 {
     handle_result((MusicSearchCommandJSON )new_result);
 }
Beispiel #4
0
 protected override void handle_result(MusicCommandJSON result)
 {
     top.value.Add(result);
 }
Beispiel #5
0
        protected override void handle_result(MusicCommandJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Beispiel #6
0
 protected abstract void handle_result(MusicCommandJSON new_result);