コード例 #1
0
        public override void Emit(ScalarEventInfo eventInfo)
        {
            eventInfo.IsPlainImplicit = true;
            eventInfo.Style           = ScalarStyle.Plain;

            if (eventInfo.SourceValue == null)
            {
                eventInfo.Tag           = "tag:yaml.org,2002:null";
                eventInfo.RenderedValue = "";
                return;
            }

            var typeCode = Type.GetTypeCode(eventInfo.SourceType);

            switch (typeCode)
            {
            case TypeCode.Boolean:
                eventInfo.Tag           = "tag:yaml.org,2002:bool";
                eventInfo.RenderedValue = YamlFormatter.FormatBoolean(eventInfo.SourceValue);
                break;

            case TypeCode.Byte:
            case TypeCode.Int16:
            case TypeCode.Int32:
            case TypeCode.Int64:
            case TypeCode.SByte:
            case TypeCode.UInt16:
            case TypeCode.UInt32:
            case TypeCode.UInt64:
                eventInfo.Tag           = "tag:yaml.org,2002:int";
                eventInfo.RenderedValue = YamlFormatter.FormatNumber(eventInfo.SourceValue);
                break;

            case TypeCode.Single:
            case TypeCode.Double:
            case TypeCode.Decimal:
                eventInfo.Tag           = "tag:yaml.org,2002:float";
                eventInfo.RenderedValue = YamlFormatter.FormatNumber(eventInfo.SourceValue);
                break;

            case TypeCode.String:
            case TypeCode.Char:
                eventInfo.Tag           = "tag:yaml.org,2002:str";
                eventInfo.RenderedValue = eventInfo.SourceValue.ToString();
                eventInfo.Style         = ScalarStyle.Any;
                break;

            case TypeCode.DateTime:
                eventInfo.Tag           = "tag:yaml.org,2002:timestamp";
                eventInfo.RenderedValue = YamlFormatter.FormatDateTime(eventInfo.SourceValue);
                break;

            default:
                throw new NotSupportedException(string.Format(CultureInfo.InvariantCulture, "TypeCode.{0} is not supported.", typeCode));
            }

            base.Emit(eventInfo);
        }
コード例 #2
0
ファイル: JsonEventEmitter.cs プロジェクト: roji/YamlDotNet
        public override void Emit(ScalarEventInfo eventInfo)
        {
            eventInfo.IsPlainImplicit = true;
            eventInfo.Style           = ScalarStyle.Plain;

            var typeCode = eventInfo.SourceValue != null
                                ? Type.GetTypeCode(eventInfo.SourceType)
                                : TypeCode.Empty;

            switch (typeCode)
            {
            case TypeCode.Boolean:
                eventInfo.RenderedValue = YamlFormatter.FormatBoolean(eventInfo.SourceValue);
                break;

            case TypeCode.Byte:
            case TypeCode.Int16:
            case TypeCode.Int32:
            case TypeCode.Int64:
            case TypeCode.SByte:
            case TypeCode.UInt16:
            case TypeCode.UInt32:
            case TypeCode.UInt64:
            case TypeCode.Single:
            case TypeCode.Double:
            case TypeCode.Decimal:
                eventInfo.RenderedValue = YamlFormatter.FormatNumber(eventInfo.SourceValue);
                break;

            case TypeCode.String:
            case TypeCode.Char:
                eventInfo.RenderedValue = eventInfo.SourceValue.ToString();
                eventInfo.Style         = ScalarStyle.DoubleQuoted;
                break;

            case TypeCode.DateTime:
                eventInfo.RenderedValue = YamlFormatter.FormatDateTime(eventInfo.SourceValue);
                break;

            case TypeCode.Empty:
                eventInfo.RenderedValue = "null";
                break;

            default:
                if (eventInfo.SourceType == typeof(TimeSpan))
                {
                    eventInfo.RenderedValue = YamlFormatter.FormatTimeSpan(eventInfo.SourceValue);
                    break;
                }

                throw new NotSupportedException(string.Format(CultureInfo.InvariantCulture, "TypeCode.{0} is not supported.", typeCode));
            }

            base.Emit(eventInfo);
        }
コード例 #3
0
 public virtual void Emit(ScalarEventInfo eventInfo)
 {
     nextEmitter.Emit(eventInfo);
 }
コード例 #4
0
 void IEventEmitter.Emit(ScalarEventInfo eventInfo)
 {
     emitter.Emit(new Scalar(eventInfo.Anchor, eventInfo.Tag, eventInfo.RenderedValue, eventInfo.Style, eventInfo.IsPlainImplicit, eventInfo.IsQuotedImplicit));
 }