|
| 1 | +# TODOs |
| 2 | + |
| 3 | +There are TODOs to be implemented in the future. |
| 4 | + |
| 5 | +* If you find an issue which should be added this list, comment in the issue. |
| 6 | +* If you implement the item of the list, send PR. Please remember you run UnitTests. |
| 7 | +* They are ordered "personal" priority based on their effect and cost. |
| 8 | + |
| 9 | +## Should be implemented in next minor versions. |
| 10 | + |
| 11 | +### Documentation and Samples |
| 12 | + |
| 13 | +Issue #94. |
| 14 | + |
| 15 | +* Add wiki and samples about polymorphism. |
| 16 | +* Add architecture document. |
| 17 | + |
| 18 | +### Restructuring |
| 19 | + |
| 20 | +* ContextBased-serializer should be removed. |
| 21 | +* .NET 4 build should be removed in 2016/02. |
| 22 | + |
| 23 | +### Debuggability Improvements |
| 24 | + |
| 25 | +Issue #84. |
| 26 | + |
| 27 | +* Add stream-position in the exception when the stream's `CanSeek` returns `true`. |
| 28 | +* Add trace-enabled serializer and trace-enabled `Unpacker`. |
| 29 | + |
| 30 | +### MessagePackKnownSubTypeAttribute |
| 31 | + |
| 32 | +* This attribute defines "default known subtypes" in the base type itself. |
| 33 | +* It reduces scattered `[MessagePackKnownAttribute]` in places. |
| 34 | + |
| 35 | +### ObjectUnpacker |
| 36 | + |
| 37 | +Issue #90. |
| 38 | + |
| 39 | +* Add `Unpacker.Create(MessagePackObject)`. |
| 40 | + |
| 41 | +### Efficiency |
| 42 | + |
| 43 | +* Make `AssemblyBuilderAccess` to `RunAndSave`. |
| 44 | + |
| 45 | +## Next Major |
| 46 | + |
| 47 | +### Add New Platform Support |
| 48 | + |
| 49 | +Issue #72. |
| 50 | + |
| 51 | +* Unity stripping mode |
| 52 | +* IL2CPP of Unity |
| 53 | +* UWP |
| 54 | +* .NET Native |
| 55 | + |
| 56 | +## Long-term |
| 57 | + |
| 58 | +### Asymmmetric Serializer |
| 59 | + |
| 60 | +#Issue 68. |
| 61 | + |
| 62 | +* Supports asymmetric (serialize-only/deserialize-only) serializer. |
| 63 | +* Add properties like `CanPack` and `CanUnpack`. |
| 64 | + |
| 65 | +### Async API |
| 66 | + |
| 67 | +Issue #67. |
| 68 | + |
| 69 | +* Add async methods to the `Packer` and `Unpacker`, thus add `MessagePackSerializer<T>` and new interface `IAsyncMessagePackSerializer` and `IAsyncMessagePackSingleObjectSerializer`. |
| 70 | + |
| 71 | +## Continuously |
| 72 | + |
| 73 | +### Refactoring |
| 74 | + |
| 75 | +* Core API inlining with T4 is not very effective, so refactoring for maintenancibility is reasonable now. |
| 76 | +* Serializer generator should be refactored continuously. |
0 commit comments