aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.PMR/Diagnostics/StartEventsNotificationResponse.cs
blob: ba374f89edc4b9572296713e0d2170b95516c011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: StartEventsNotificationResponse.proto
#pragma warning disable 1591, 0612, 3021
#region Designer generated code

using pb = global::Google.Protobuf;
using pbc = global::Google.Protobuf.Collections;
using pbr = global::Google.Protobuf.Reflection;
using scg = global::System.Collections.Generic;
namespace Tango.PMR.Diagnostics {

  /// <summary>Holder for reflection information generated from StartEventsNotificationResponse.proto</summary>
  public static partial class StartEventsNotificationResponseReflection {

    #region Descriptor
    /// <summary>File descriptor for StartEventsNotificationResponse.proto</summary>
    public static pbr::FileDescriptor Descriptor {
      get { return descriptor; }
    }
    private static pbr::FileDescriptor descriptor;

    static StartEventsNotificationResponseReflection() {
      byte[] descriptorData = global::System.Convert.FromBase64String(
          string.Concat(
            "CiVTdGFydEV2ZW50c05vdGlmaWNhdGlvblJlc3BvbnNlLnByb3RvEhVUYW5n",
            "by5QTVIuRGlhZ25vc3RpY3MaC0V2ZW50LnByb3RvIk8KH1N0YXJ0RXZlbnRz",
            "Tm90aWZpY2F0aW9uUmVzcG9uc2USLAoGRXZlbnRzGAEgAygLMhwuVGFuZ28u",
            "UE1SLkRpYWdub3N0aWNzLkV2ZW50QiEKH2NvbS50d2luZS50YW5nby5wbXIu",
            "ZGlhZ25vc3RpY3NiBnByb3RvMw=="));
      descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
          new pbr::FileDescriptor[] { global::Tango.PMR.Diagnostics.EventReflection.Descriptor, },
          new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
            new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Diagnostics.StartEventsNotificationResponse), global::Tango.PMR.Diagnostics.StartEventsNotificationResponse.Parser, new[]{ "Events" }, null, null, null)
          }));
    }
    #endregion

  }
  #region Messages
  public sealed partial class StartEventsNotificationResponse : pb::IMessage<StartEventsNotificationResponse> {
    private static readonly pb::MessageParser<StartEventsNotificationResponse> _parser = new pb::MessageParser<StartEventsNotificationResponse>(() => new StartEventsNotificationResponse());
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public static pb::MessageParser<StartEventsNotificationResponse> Parser { get { return _parser; } }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public static pbr::MessageDescriptor Descriptor {
      get { return global::Tango.PMR.Diagnostics.StartEventsNotificationResponseReflection.Descriptor.MessageTypes[0]; }
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    pbr::MessageDescriptor pb::IMessage.Descriptor {
      get { return Descriptor; }
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public StartEventsNotificationResponse() {
      OnConstruction();
    }

    partial void OnConstruction();

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public StartEventsNotificationResponse(StartEventsNotificationResponse other) : this() {
      events_ = other.events_.Clone();
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public StartEventsNotificationResponse Clone() {
      return new StartEventsNotificationResponse(this);
    }

    /// <summary>Field number for the "Events" field.</summary>
    public const int EventsFieldNumber = 1;
    private static readonly pb::FieldCodec<global::Tango.PMR.Diagnostics.Event> _repeated_events_codec
        = pb::FieldCodec.ForMessage(10, global::Tango.PMR.Diagnostics.Event.Parser);
    private readonly pbc::RepeatedField<global::Tango.PMR.Diagnostics.Event> events_ = new pbc::RepeatedField<global::Tango.PMR.Diagnostics.Event>();
    /// <summary>
    ///Hardware Errors &amp; Warnings
    /// </summary>
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public pbc::RepeatedField<global::Tango.PMR.Diagnostics.Event> Events {
      get { return events_; }
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public override bool Equals(object other) {
      return Equals(other as StartEventsNotificationResponse);
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public bool Equals(StartEventsNotificationResponse other) {
      if (ReferenceEquals(other, null)) {
        return false;
      }
      if (ReferenceEquals(other, this)) {
        return true;
      }
      if(!events_.Equals(other.events_)) return false;
      return true;
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public override int GetHashCode() {
      int hash = 1;
      hash ^= events_.GetHashCode();
      return hash;
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public override string ToString() {
      return pb::JsonFormatter.ToDiagnosticString(this);
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public void WriteTo(pb::CodedOutputStream output) {
      events_.WriteTo(output, _repeated_events_codec);
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public int CalculateSize() {
      int size = 0;
      size += events_.CalculateSize(_repeated_events_codec);
      return size;
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public void MergeFrom(StartEventsNotificationResponse other) {
      if (other == null) {
        return;
      }
      events_.Add(other.events_);
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public void MergeFrom(pb::CodedInputStream input) {
      uint tag;
      while ((tag = input.ReadTag()) != 0) {
        switch(tag) {
          default:
            input.SkipLastField();
            break;
          case 10: {
            events_.AddEntriesFrom(input, _repeated_events_codec);
            break;
          }
        }
      }
    }

  }

  #endregion

}

#endregion Designer generated code
ss="cp">#if !defined(_MSC_VER) || _MSC_VER >= 1900 const int ProgressResponse::kProgressFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 ProgressResponse::ProgressResponse() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_ProgressResponse_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:Tango.PMR.Stubs.ProgressResponse) } ProgressResponse::ProgressResponse(const ProgressResponse& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); progress_ = from.progress_; // @@protoc_insertion_point(copy_constructor:Tango.PMR.Stubs.ProgressResponse) } void ProgressResponse::SharedCtor() { progress_ = 0; _cached_size_ = 0; } ProgressResponse::~ProgressResponse() { // @@protoc_insertion_point(destructor:Tango.PMR.Stubs.ProgressResponse) SharedDtor(); } void ProgressResponse::SharedDtor() { } void ProgressResponse::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ProgressResponse::descriptor() { protobuf_ProgressResponse_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_ProgressResponse_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } const ProgressResponse& ProgressResponse::default_instance() { protobuf_ProgressResponse_2eproto::InitDefaults(); return *internal_default_instance(); } ProgressResponse* ProgressResponse::New(::google::protobuf::Arena* arena) const { ProgressResponse* n = new ProgressResponse; if (arena != NULL) { arena->Own(n); } return n; } void ProgressResponse::Clear() { // @@protoc_insertion_point(message_clear_start:Tango.PMR.Stubs.ProgressResponse) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; progress_ = 0; _internal_metadata_.Clear(); } bool ProgressResponse::MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) { #define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure ::google::protobuf::uint32 tag; // @@protoc_insertion_point(parse_start:Tango.PMR.Stubs.ProgressResponse) for (;;) { ::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u); tag = p.first; if (!p.second) goto handle_unusual; switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) { // double Progress = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(9u /* 9 & 0xFF */)) { DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< double, ::google::protobuf::internal::WireFormatLite::TYPE_DOUBLE>( input, &progress_))); } else { goto handle_unusual; } break; } default: { handle_unusual: if (tag == 0) { goto success; } DO_(::google::protobuf::internal::WireFormat::SkipField( input, tag, _internal_metadata_.mutable_unknown_fields())); break; } } } success: // @@protoc_insertion_point(parse_success:Tango.PMR.Stubs.ProgressResponse) return true; failure: // @@protoc_insertion_point(parse_failure:Tango.PMR.Stubs.ProgressResponse) return false; #undef DO_ } void ProgressResponse::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:Tango.PMR.Stubs.ProgressResponse) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // double Progress = 1; if (this->progress() != 0) { ::google::protobuf::internal::WireFormatLite::WriteDouble(1, this->progress(), output); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), output); } // @@protoc_insertion_point(serialize_end:Tango.PMR.Stubs.ProgressResponse) } ::google::protobuf::uint8* ProgressResponse::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:Tango.PMR.Stubs.ProgressResponse) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // double Progress = 1; if (this->progress() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteDoubleToArray(1, this->progress(), target); } if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance()), target); } // @@protoc_insertion_point(serialize_to_array_end:Tango.PMR.Stubs.ProgressResponse) return target; } size_t ProgressResponse::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:Tango.PMR.Stubs.ProgressResponse) size_t total_size = 0; if ((_internal_metadata_.have_unknown_fields() && ::google::protobuf::internal::GetProto3PreserveUnknownsDefault())) { total_size += ::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize( (::google::protobuf::internal::GetProto3PreserveUnknownsDefault() ? _internal_metadata_.unknown_fields() : _internal_metadata_.default_instance())); } // double Progress = 1; if (this->progress() != 0) { total_size += 1 + 8; } int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = cached_size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); return total_size; } void ProgressResponse::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:Tango.PMR.Stubs.ProgressResponse) GOOGLE_DCHECK_NE(&from, this); const ProgressResponse* source = ::google::protobuf::internal::DynamicCastToGenerated<const ProgressResponse>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:Tango.PMR.Stubs.ProgressResponse) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:Tango.PMR.Stubs.ProgressResponse) MergeFrom(*source); } } void ProgressResponse::MergeFrom(const ProgressResponse& from) { // @@protoc_insertion_point(class_specific_merge_from_start:Tango.PMR.Stubs.ProgressResponse) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.progress() != 0) { set_progress(from.progress()); } } void ProgressResponse::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:Tango.PMR.Stubs.ProgressResponse) if (&from == this) return; Clear(); MergeFrom(from); } void ProgressResponse::CopyFrom(const ProgressResponse& from) { // @@protoc_insertion_point(class_specific_copy_from_start:Tango.PMR.Stubs.ProgressResponse) if (&from == this) return; Clear(); MergeFrom(from); } bool ProgressResponse::IsInitialized() const { return true; } void ProgressResponse::Swap(ProgressResponse* other) { if (other == this) return; InternalSwap(other); } void ProgressResponse::InternalSwap(ProgressResponse* other) { using std::swap; swap(progress_, other->progress_); _internal_metadata_.Swap(&other->_internal_metadata_); swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata ProgressResponse::GetMetadata() const { protobuf_ProgressResponse_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_ProgressResponse_2eproto::file_level_metadata[kIndexInFileMessages]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // ProgressResponse // double Progress = 1; void ProgressResponse::clear_progress() { progress_ = 0; } double ProgressResponse::progress() const { // @@protoc_insertion_point(field_get:Tango.PMR.Stubs.ProgressResponse.Progress) return progress_; } void ProgressResponse::set_progress(double value) { progress_ = value; // @@protoc_insertion_point(field_set:Tango.PMR.Stubs.ProgressResponse.Progress) } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // @@protoc_insertion_point(namespace_scope) } // namespace Stubs } // namespace PMR } // namespace Tango // @@protoc_insertion_point(global_scope)