#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2016 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #endregion using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Linq; using Google.Protobuf.Reflection; namespace Google.Protobuf.WellKnownTypes { // Manually-written partial class for the FieldMask well-known type. public partial class FieldMask : ICustomDiagnosticMessage { private const char FIELD_PATH_SEPARATOR = ','; private const char FIELD_SEPARATOR_REGEX = '.'; /// /// Converts a field mask specified by paths to a string. /// /// /// If the value is a normalized duration in the range described in field_mask.proto, /// is ignored. Otherwise, if the parameter is true, /// a JSON object with a warning is returned; if it is false, an is thrown. /// /// Paths in the field mask /// Determines the handling of non-normalized values /// The represented field mask is invalid, and is false. internal static string ToJson(IList paths, bool diagnosticOnly) { var firstInvalid = paths.FirstOrDefault(p => !IsPathValid(p)); if (firstInvalid == null) { var writer = new StringWriter(); #if NET35 var query = paths.Select(JsonFormatter.ToJsonName); JsonFormatter.WriteString(writer, string.Join(",", query.ToArray())); #else JsonFormatter.WriteString(writer, string.Join(",", paths.Select(JsonFormatter.ToJsonName))); #endif return writer.ToString(); } else { if (diagnosticOnly) { var writer = new StringWriter(); writer.Write("{ \"@warning\": \"Invalid FieldMask\", \"paths\": "); JsonFormatter.Default.WriteList(writer, (IList)paths); writer.Write(" }"); return writer.ToString(); } else { throw new InvalidOperationException($"Invalid field mask to be converted to JSON: {firstInvalid}"); } } } /// /// Returns a string representation of this for diagnostic purposes. /// /// /// Normally the returned value will be a JSON string value (including leading and trailing quotes) but /// when the value is non-normalized or out of range, a JSON object representation will be returned /// instead, including a warning. This is to avoid exceptions being thrown when trying to /// diagnose problems - the regular JSON formatter will still throw an exception for non-normalized /// values. /// /// A string representation of this value. public string ToDiagnosticString() { return ToJson(Paths, true); } /// /// Parses from a string to a FieldMask. /// public static FieldMask FromString(string value) { return FromStringEnumerable(new List(value.Split(FIELD_PATH_SEPARATOR))); } /// /// Parses from a string to a FieldMask and validates all field paths. /// /// The type to validate the field paths against. public static FieldMask FromString<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]T>(string value) where T : IMessage { return FromStringEnumerable(new List(value.Split(FIELD_PATH_SEPARATOR))); } /// /// Constructs a FieldMask for a list of field paths in a certain type. /// /// The type to validate the field paths against. public static FieldMask FromStringEnumerable<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]T>(IEnumerable paths) where T : IMessage { var mask = new FieldMask(); foreach (var path in paths) { if (path.Length == 0) { // Ignore empty field paths. continue; } if (typeof(T) != typeof(Empty) && !IsValid(path)) { throw new InvalidProtocolBufferException(path + " is not a valid path for " + typeof(T)); } mask.Paths.Add(path); } return mask; } /// /// Constructs a FieldMask from the passed field numbers. /// /// The type to validate the field paths against. public static FieldMask FromFieldNumbers<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]T>(params int[] fieldNumbers) where T : IMessage { return FromFieldNumbers((IEnumerable)fieldNumbers); } /// /// Constructs a FieldMask from the passed field numbers. /// /// The type to validate the field paths against. public static FieldMask FromFieldNumbers<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]T>(IEnumerable fieldNumbers) where T : IMessage { var descriptor = Activator.CreateInstance().Descriptor; var mask = new FieldMask(); foreach (var fieldNumber in fieldNumbers) { var field = descriptor.FindFieldByNumber(fieldNumber); if (field == null) { throw new ArgumentNullException($"{fieldNumber} is not a valid field number for {descriptor.Name}"); } mask.Paths.Add(field.Name); } return mask; } /// /// Checks whether the given path is valid for a field mask. /// /// true if the path is valid; false otherwise private static bool IsPathValid(string input) { for (int i = 0; i < input.Length; i++) { char c = input[i]; if (c >= 'A' && c <= 'Z') { return false; } if (c == '_' && i < input.Length - 1) { char next = input[i + 1]; if (next < 'a' || next > 'z') { return false; } } } return true; } /// /// Checks whether paths in a given fields mask are valid. /// /// The type to validate the field paths against. public static bool IsValid<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]T>(FieldMask fieldMask) where T : IMessage { var descriptor = Activator.CreateInstance().Descriptor; return IsValid(descriptor, fieldMask); } /// /// Checks whether paths in a given fields mask are valid. /// public static bool IsValid(MessageDescriptor descriptor, FieldMask fieldMask) { foreach (var path in fieldMask.Paths) { if (!IsValid(descriptor, path)) { return false; } } return true; } /// /// Checks whether a given field path is valid. /// /// The type to validate the field paths against. public static bool IsValid<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)]T>(string path) where T : IMessage { var descriptor = Activator.CreateInstance().Descriptor; return IsValid(descriptor, path); } /// /// Checks whether paths in a given fields mask are valid. /// public static bool IsValid(MessageDescriptor descriptor, string path) { var parts = path.Split(FIELD_SEPARATOR_REGEX); if (parts.Length == 0) { return false; } foreach (var name in parts) { var field = descriptor?.FindFieldByName(name); if (field == null) { return false; } if (!field.IsRepeated && field.FieldType == FieldType.Message) { descriptor = field.MessageType; } else { descriptor = null; } } return true; } /// /// Converts this FieldMask to its canonical form. In the canonical form of a /// FieldMask, all field paths are sorted alphabetically and redundant field /// paths are removed. /// public FieldMask Normalize() { return new FieldMaskTree(this).ToFieldMask(); } /// /// Creates a union of two or more FieldMasks. /// public FieldMask Union(params FieldMask[] otherMasks) { var maskTree = new FieldMaskTree(this); foreach (var mask in otherMasks) { maskTree.MergeFromFieldMask(mask); } return maskTree.ToFieldMask(); } /// /// Calculates the intersection of two FieldMasks. /// public FieldMask Intersection(FieldMask additionalMask) { var tree = new FieldMaskTree(this); var result = new FieldMaskTree(); foreach (var path in additionalMask.Paths) { tree.IntersectFieldPath(path, result); } return result.ToFieldMask(); } /// /// Merges fields specified by this FieldMask from one message to another with the /// specified merge options. /// public void Merge(IMessage source, IMessage destination, MergeOptions options) { new FieldMaskTree(this).Merge(source, destination, options); } /// /// Merges fields specified by this FieldMask from one message to another. /// public void Merge(IMessage source, IMessage destination) { Merge(source, destination, new MergeOptions()); } /// /// Options to customize merging behavior. /// public sealed class MergeOptions { /// /// Whether to replace message fields(i.e., discard existing content in /// destination message fields) when merging. /// Default behavior is to merge the source message field into the /// destination message field. /// public bool ReplaceMessageFields { get; set; } = false; /// /// Whether to replace repeated fields (i.e., discard existing content in /// destination repeated fields) when merging. /// Default behavior is to append elements from source repeated field to the /// destination repeated field. /// public bool ReplaceRepeatedFields { get; set; } = false; /// /// Whether to replace primitive (non-repeated and non-message) fields in /// destination message fields with the source primitive fields (i.e., if the /// field is set in the source, the value is copied to the /// destination; if the field is unset in the source, the field is cleared /// from the destination) when merging. /// /// Default behavior is to always set the value of the source primitive /// field to the destination primitive field, and if the source field is /// unset, the default value of the source field is copied to the /// destination. /// public bool ReplacePrimitiveFields { get; set; } = false; } } }