Giter VIP home page Giter VIP logo

-'s People

Contributors

dayfox5317 avatar

Watchers

 avatar  avatar

-'s Issues

bson序列化结构体

public class StructBsonSerializer : IBsonSerializer where T:struct
{
public Type ValueType =>typeof(T);

    public object Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
    {
   
        var obj = Activator.CreateInstance(ValueType);

        context.Reader.ReadStartDocument();
      //  bsonReader.ReadStartDocument();

        while (context.Reader.ReadBsonType() != BsonType.EndOfDocument)
        {
            var name = context.Reader.ReadName();

            var field = ValueType.GetField(name);
            if (field != null)
            {
                var value = BsonSerializer.Deserialize(context.Reader, field.FieldType);
                field.SetValue(obj, value);
            }

            var prop = ValueType.GetProperty(name);
            if (prop != null)
            {
                var value = BsonSerializer.Deserialize(context.Reader, prop.PropertyType);
                prop.SetValue(obj, value, null);
            }
        }

        context.Reader.ReadEndDocument();

        return obj;
    }

    public void Serialize(BsonSerializationContext context, BsonSerializationArgs args, object value)
    {
        var fields = args.NominalType.GetFields(BindingFlags.Instance | BindingFlags.Public);
        var propsAll = args.NominalType.GetProperties(BindingFlags.Instance | BindingFlags.Public);

        var props = new List<PropertyInfo>();
        foreach (var prop in propsAll)
        {
            if (prop.CanWrite)
            {
                props.Add(prop);
            }
        }
       
        context.Writer.WriteStartDocument();

        foreach (var field in fields)
        {
            if (field.IsDefined(typeof(MongoDB.Bson.Serialization.Attributes.BsonIgnoreAttribute)))
                continue;
            context.Writer.WriteName(field.Name);
            BsonSerializer.Serialize(context.Writer, field.FieldType, field.GetValue(value));
        }
        foreach (var prop in props)
        {
            if (prop.IsDefined(typeof(MongoDB.Bson.Serialization.Attributes.BsonIgnoreAttribute)))
                continue;
            context.Writer.WriteName(prop.Name);
            BsonSerializer.Serialize(context.Writer, prop.PropertyType, prop.GetValue(value));
        }

        context.Writer.WriteEndDocument();
    }
}

注册:
BsonSerializer.RegisterSerializer(typeof(UnityEngine.Color),new StructBsonSerializer<UnityEngine.Color>());

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.