#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2015 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #endregion using System; using System.Buffers; using System.IO; using System.Security; namespace Google.Protobuf { /// /// A general message parser, typically used by reflection-based code as all the methods /// return simple . /// public class MessageParser { private readonly Func factory; private protected bool DiscardUnknownFields { get; } internal ExtensionRegistry Extensions { get; } internal MessageParser(Func factory, bool discardUnknownFields, ExtensionRegistry extensions) { this.factory = factory; DiscardUnknownFields = discardUnknownFields; Extensions = extensions; } /// /// Creates a template instance ready for population. /// /// An empty message. internal IMessage CreateTemplate() { return factory(); } /// /// Parses a message from a byte array. /// /// The byte array containing the message. Must not be null. /// The newly parsed message. public IMessage ParseFrom(byte[] data) { IMessage message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from a byte array slice. /// /// The byte array containing the message. Must not be null. /// The offset of the slice to parse. /// The length of the slice to parse. /// The newly parsed message. public IMessage ParseFrom(byte[] data, int offset, int length) { IMessage message = factory(); message.MergeFrom(data, offset, length, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given byte string. /// /// The data to parse. /// The parsed message. public IMessage ParseFrom(ByteString data) { IMessage message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given stream. /// /// The stream to parse. /// The parsed message. public IMessage ParseFrom(Stream input) { IMessage message = factory(); message.MergeFrom(input, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given sequence. /// /// The data to parse. /// The parsed message. [SecuritySafeCritical] public IMessage ParseFrom(ReadOnlySequence data) { IMessage message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given span. /// /// The data to parse. /// The parsed message. [SecuritySafeCritical] public IMessage ParseFrom(ReadOnlySpan data) { IMessage message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a length-delimited message from the given stream. /// /// /// The stream is expected to contain a length and then the data. Only the amount of data /// specified by the length will be consumed. /// /// The stream to parse. /// The parsed message. public IMessage ParseDelimitedFrom(Stream input) { IMessage message = factory(); message.MergeDelimitedFrom(input, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given coded input stream. /// /// The stream to parse. /// The parsed message. public IMessage ParseFrom(CodedInputStream input) { IMessage message = factory(); MergeFrom(message, input); return message; } /// /// Parses a message from the given JSON. /// /// This method always uses the default JSON parser; it is not affected by . /// To ignore unknown fields when parsing JSON, create a using a /// with set to true and call directly. /// /// The JSON to parse. /// The parsed message. /// The JSON does not comply with RFC 7159 /// The JSON does not represent a Protocol Buffers message correctly public IMessage ParseJson(string json) { IMessage message = factory(); JsonParser.Default.Merge(message, json); return message; } // TODO: When we're using a C# 7.1 compiler, make this private protected. internal void MergeFrom(IMessage message, CodedInputStream codedInput) { bool originalDiscard = codedInput.DiscardUnknownFields; ExtensionRegistry originalRegistry = codedInput.ExtensionRegistry; try { codedInput.DiscardUnknownFields = DiscardUnknownFields; codedInput.ExtensionRegistry = Extensions; message.MergeFrom(codedInput); } finally { codedInput.DiscardUnknownFields = originalDiscard; codedInput.ExtensionRegistry = originalRegistry; } } /// /// Creates a new message parser which optionally discards unknown fields when parsing. /// /// Note that this does not affect the behavior of /// at all. To ignore unknown fields when parsing JSON, create a using a /// with set to true and call directly. /// Whether or not to discard unknown fields when parsing. /// A newly configured message parser. public MessageParser WithDiscardUnknownFields(bool discardUnknownFields) => new MessageParser(factory, discardUnknownFields, Extensions); /// /// Creates a new message parser which registers extensions from the specified registry upon creating the message instance /// /// The extensions to register /// A newly configured message parser. public MessageParser WithExtensionRegistry(ExtensionRegistry registry) => new MessageParser(factory, DiscardUnknownFields, registry); } /// /// A parser for a specific message type. /// /// ///

/// This delegates most behavior to the /// implementation within the original type, but /// provides convenient overloads to parse from a variety of sources. ///

///

/// Most applications will never need to create their own instances of this type; /// instead, use the static Parser property of a generated message type to obtain a /// parser for that type. ///

///
/// The type of message to be parsed. public sealed class MessageParser : MessageParser where T : IMessage { // Implementation note: all the methods here *could* just delegate up to the base class and cast the result. // The current implementation avoids a virtual method call and a cast, which *may* be significant in some cases. // Benchmarking work is required to measure the significance - but it's only a few lines of code in any case. // The API wouldn't change anyway - just the implementation - so this work can be deferred. private readonly Func factory; /// /// Creates a new parser. /// /// /// The factory method is effectively an optimization over using a generic constraint /// to require a parameterless constructor: delegates are significantly faster to execute. /// /// Function to invoke when a new, empty message is required. public MessageParser(Func factory) : this(factory, false, null) { } internal MessageParser(Func factory, bool discardUnknownFields, ExtensionRegistry extensions) : base(() => factory(), discardUnknownFields, extensions) { this.factory = factory; } /// /// Creates a template instance ready for population. /// /// An empty message. internal new T CreateTemplate() { return factory(); } /// /// Parses a message from a byte array. /// /// The byte array containing the message. Must not be null. /// The newly parsed message. public new T ParseFrom(byte[] data) { T message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from a byte array slice. /// /// The byte array containing the message. Must not be null. /// The offset of the slice to parse. /// The length of the slice to parse. /// The newly parsed message. public new T ParseFrom(byte[] data, int offset, int length) { T message = factory(); message.MergeFrom(data, offset, length, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given byte string. /// /// The data to parse. /// The parsed message. public new T ParseFrom(ByteString data) { T message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given stream. /// /// The stream to parse. /// The parsed message. public new T ParseFrom(Stream input) { T message = factory(); message.MergeFrom(input, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given sequence. /// /// The data to parse. /// The parsed message. [SecuritySafeCritical] public new T ParseFrom(ReadOnlySequence data) { T message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given span. /// /// The data to parse. /// The parsed message. [SecuritySafeCritical] public new T ParseFrom(ReadOnlySpan data) { T message = factory(); message.MergeFrom(data, DiscardUnknownFields, Extensions); return message; } /// /// Parses a length-delimited message from the given stream. /// /// /// The stream is expected to contain a length and then the data. Only the amount of data /// specified by the length will be consumed. /// /// The stream to parse. /// The parsed message. public new T ParseDelimitedFrom(Stream input) { T message = factory(); message.MergeDelimitedFrom(input, DiscardUnknownFields, Extensions); return message; } /// /// Parses a message from the given coded input stream. /// /// The stream to parse. /// The parsed message. public new T ParseFrom(CodedInputStream input) { T message = factory(); MergeFrom(message, input); return message; } /// /// Parses a message from the given JSON. /// /// The JSON to parse. /// The parsed message. /// The JSON does not comply with RFC 7159 /// The JSON does not represent a Protocol Buffers message correctly public new T ParseJson(string json) { T message = factory(); JsonParser.Default.Merge(message, json); return message; } /// /// Creates a new message parser which optionally discards unknown fields when parsing. /// /// Whether or not to discard unknown fields when parsing. /// A newly configured message parser. public new MessageParser WithDiscardUnknownFields(bool discardUnknownFields) => new MessageParser(factory, discardUnknownFields, Extensions); /// /// Creates a new message parser which registers extensions from the specified registry upon creating the message instance /// /// The extensions to register /// A newly configured message parser. public new MessageParser WithExtensionRegistry(ExtensionRegistry registry) => new MessageParser(factory, DiscardUnknownFields, registry); } }