IMessage.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #region Copyright notice and license
  2. // Protocol Buffers - Google's data interchange format
  3. // Copyright 2008 Google Inc. All rights reserved.
  4. // https://developers.google.com/protocol-buffers/
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. // * Neither the name of Google Inc. nor the names of its
  17. // contributors may be used to endorse or promote products derived from
  18. // this software without specific prior written permission.
  19. //
  20. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. #endregion
  32. using System;
  33. using Google.Protobuf.Reflection;
  34. namespace Google.Protobuf
  35. {
  36. // TODO(jonskeet): Do we want a "weak" (non-generic) version of IReflectedMessage?
  37. // TODO(jonskeet): Split these interfaces into separate files when we're happy with them.
  38. /// <summary>
  39. /// Interface for a Protocol Buffers message, supporting
  40. /// basic operations required for serialization.
  41. /// </summary>
  42. public interface IMessage
  43. {
  44. /// <summary>
  45. /// Merges the data from the specified coded input stream with the current message.
  46. /// </summary>
  47. /// <remarks>See the user guide for precise merge semantics.</remarks>
  48. /// <param name="input"></param>
  49. void MergeFrom(CodedInputStream input);
  50. /// <summary>
  51. /// Writes the data to the given coded output stream.
  52. /// </summary>
  53. /// <param name="output">Coded output stream to write the data to. Must not be null.</param>
  54. void WriteTo(CodedOutputStream output);
  55. /// <summary>
  56. /// Calculates the size of this message in Protocol Buffer wire format, in bytes.
  57. /// </summary>
  58. /// <returns>The number of bytes required to write this message
  59. /// to a coded output stream.</returns>
  60. int CalculateSize();
  61. /// <summary>
  62. /// Descriptor for this message. All instances are expected to return the same descriptor,
  63. /// and for generated types this will be an explicitly-implemented member, returning the
  64. /// same value as the static property declared on the type.
  65. /// </summary>
  66. MessageDescriptor Descriptor { get; }
  67. }
  68. /// <summary>
  69. /// Generic interface for a Protocol Buffers message,
  70. /// where the type parameter is expected to be the same type as
  71. /// the implementation class.
  72. /// </summary>
  73. /// <typeparam name="T">The message type.</typeparam>
  74. public interface IMessage<T> : IMessage, IEquatable<T>, IDeepCloneable<T>, IFreezable where T : IMessage<T>
  75. {
  76. /// <summary>
  77. /// Merges the given message into this one.
  78. /// </summary>
  79. /// <remarks>See the user guide for precise merge semantics.</remarks>
  80. /// <param name="message">The message to merge with this one. Must not be null.</param>
  81. void MergeFrom(T message);
  82. }
  83. /// <summary>
  84. /// Generic interface for a deeply cloneable type.
  85. /// <summary>
  86. /// <remarks>
  87. /// All generated messages implement this interface, but so do some non-message types.
  88. /// Additionally, due to the type constraint on <c>T</c> in <see cref="IMessage{T}"/>,
  89. /// it is simpler to keep this as a separate interface.
  90. /// </para>
  91. /// <para>
  92. /// Freezable types which implement this interface should always return a mutable clone,
  93. /// even if the original object is frozen.
  94. /// </para>
  95. /// </remarks>
  96. /// <typeparam name="T">The type itself, returned by the <see cref="Clone"/> method.</typeparam>
  97. public interface IDeepCloneable<T>
  98. {
  99. /// <summary>
  100. /// Creates a deep clone of this object.
  101. /// </summary>
  102. /// <returns>A deep clone of this object.</returns>
  103. T Clone();
  104. }
  105. /// <summary>
  106. /// Provides a mechanism for freezing a message (or repeated field collection)
  107. /// to make it immutable.
  108. /// </summary>
  109. /// <remarks>
  110. /// Implementations are under no obligation to make this thread-safe: if a freezable
  111. /// type instance is shared between threads before being frozen, and one thread then
  112. /// freezes it, it is possible for other threads to make changes during the freezing
  113. /// operation and also to observe stale values for mutated fields. Objects should be
  114. /// frozen before being made available to other threads.
  115. /// </remarks>
  116. public interface IFreezable
  117. {
  118. /// <summary>
  119. /// Freezes this object.
  120. /// </summary>
  121. /// <remarks>
  122. /// If the object is already frozen, this method has no effect.
  123. /// </remarks>
  124. void Freeze();
  125. /// <summary>
  126. /// Returns whether or not this object is frozen (and therefore immutable).
  127. /// </summary>
  128. /// <value><c>true</c> if this object is frozen; <c>false</c> otherwise.</value>
  129. bool IsFrozen { get; }
  130. }
  131. }