aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.PMR/Integration/OverrideDataBaseResponse.cs
blob: 38f253bcdd11ca2f3d9ba331e46b74a0d025361b (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
157
158
159
160
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: OverrideDataBaseResponse.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.Integration {

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

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

    static OverrideDataBaseResponseReflection() {
      byte[] descriptorData = global::System.Convert.FromBase64String(
          string.Concat(
            "Ch5PdmVycmlkZURhdGFCYXNlUmVzcG9uc2UucHJvdG8SFVRhbmdvLlBNUi5J",
            "bnRlZ3JhdGlvbiIuChhPdmVycmlkZURhdGFCYXNlUmVzcG9uc2USEgoKU3Vj",
            "Y2Vzc2Z1bBgBIAEoCEIhCh9jb20udHdpbmUudGFuZ28ucG1yLmludGVncmF0",
            "aW9uYgZwcm90bzM="));
      descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
          new pbr::FileDescriptor[] { },
          new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
            new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.Integration.OverrideDataBaseResponse), global::Tango.PMR.Integration.OverrideDataBaseResponse.Parser, new[]{ "Successful" }, null, null, null)
          }));
    }
    #endregion

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

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

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

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

    partial void OnConstruction();

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public OverrideDataBaseResponse(OverrideDataBaseResponse other) : this() {
      successful_ = other.successful_;
    }

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

    /// <summary>Field number for the "Successful" field.</summary>
    public const int SuccessfulFieldNumber = 1;
    private bool successful_;
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public bool Successful {
      get { return successful_; }
      set {
        successful_ = value;
      }
    }

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

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

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public override int GetHashCode() {
      int hash = 1;
      if (Successful != false) hash ^= Successful.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) {
      if (Successful != false) {
        output.WriteRawTag(8);
        output.WriteBool(Successful);
      }
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public int CalculateSize() {
      int size = 0;
      if (Successful != false) {
        size += 1 + 1;
      }
      return size;
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public void MergeFrom(OverrideDataBaseResponse other) {
      if (other == null) {
        return;
      }
      if (other.Successful != false) {
        Successful = other.Successful;
      }
    }

    [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
    public void MergeFrom(pb::CodedInputStream input) {
      uint tag;
      while ((tag = input.ReadTag()) != 0) {
        switch(tag) {
          default:
            input.SkipLastField();
            break;
          case 8: {
            Successful = input.ReadBool();
            break;
          }
        }
      }
    }

  }

  #endregion

}

#endregion Designer generated code
="n">DescriptorPool::InternalAddGeneratedFile( descriptor, 181); ::google::protobuf::MessageFactory::InternalRegisterGeneratedFile( "ResolveEventRequest.proto", &protobuf_RegisterTypes); ::Tango::PMR::Diagnostics::protobuf_EventType_2eproto::AddDescriptors(); } } // anonymous namespace void AddDescriptors() { static GOOGLE_PROTOBUF_DECLARE_ONCE(once); ::google::protobuf::GoogleOnceInit(&once, &AddDescriptorsImpl); } // Force AddDescriptors() to be called at dynamic initialization time. struct StaticDescriptorInitializer { StaticDescriptorInitializer() { AddDescriptors(); } } static_descriptor_initializer; } // namespace protobuf_ResolveEventRequest_2eproto // =================================================================== #if !defined(_MSC_VER) || _MSC_VER >= 1900 const int ResolveEventRequest::kTypeFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 ResolveEventRequest::ResolveEventRequest() : ::google::protobuf::Message(), _internal_metadata_(NULL) { if (GOOGLE_PREDICT_TRUE(this != internal_default_instance())) { protobuf_ResolveEventRequest_2eproto::InitDefaults(); } SharedCtor(); // @@protoc_insertion_point(constructor:Tango.PMR.Diagnostics.ResolveEventRequest) } ResolveEventRequest::ResolveEventRequest(const ResolveEventRequest& from) : ::google::protobuf::Message(), _internal_metadata_(NULL), _cached_size_(0) { _internal_metadata_.MergeFrom(from._internal_metadata_); type_ = from.type_; // @@protoc_insertion_point(copy_constructor:Tango.PMR.Diagnostics.ResolveEventRequest) } void ResolveEventRequest::SharedCtor() { type_ = 0; _cached_size_ = 0; } ResolveEventRequest::~ResolveEventRequest() { // @@protoc_insertion_point(destructor:Tango.PMR.Diagnostics.ResolveEventRequest) SharedDtor(); } void ResolveEventRequest::SharedDtor() { } void ResolveEventRequest::SetCachedSize(int size) const { GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN(); _cached_size_ = size; GOOGLE_SAFE_CONCURRENT_WRITES_END(); } const ::google::protobuf::Descriptor* ResolveEventRequest::descriptor() { protobuf_ResolveEventRequest_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_ResolveEventRequest_2eproto::file_level_metadata[kIndexInFileMessages].descriptor; } const ResolveEventRequest& ResolveEventRequest::default_instance() { protobuf_ResolveEventRequest_2eproto::InitDefaults(); return *internal_default_instance(); } ResolveEventRequest* ResolveEventRequest::New(::google::protobuf::Arena* arena) const { ResolveEventRequest* n = new ResolveEventRequest; if (arena != NULL) { arena->Own(n); } return n; } void ResolveEventRequest::Clear() { // @@protoc_insertion_point(message_clear_start:Tango.PMR.Diagnostics.ResolveEventRequest) ::google::protobuf::uint32 cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; type_ = 0; _internal_metadata_.Clear(); } bool ResolveEventRequest::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.Diagnostics.ResolveEventRequest) 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)) { // .Tango.PMR.Diagnostics.EventType Type = 1; case 1: { if (static_cast< ::google::protobuf::uint8>(tag) == static_cast< ::google::protobuf::uint8>(8u /* 8 & 0xFF */)) { int value; DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< int, ::google::protobuf::internal::WireFormatLite::TYPE_ENUM>( input, &value))); set_type(static_cast< ::Tango::PMR::Diagnostics::EventType >(value)); } 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.Diagnostics.ResolveEventRequest) return true; failure: // @@protoc_insertion_point(parse_failure:Tango.PMR.Diagnostics.ResolveEventRequest) return false; #undef DO_ } void ResolveEventRequest::SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const { // @@protoc_insertion_point(serialize_start:Tango.PMR.Diagnostics.ResolveEventRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .Tango.PMR.Diagnostics.EventType Type = 1; if (this->type() != 0) { ::google::protobuf::internal::WireFormatLite::WriteEnum( 1, this->type(), 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.Diagnostics.ResolveEventRequest) } ::google::protobuf::uint8* ResolveEventRequest::InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const { (void)deterministic; // Unused // @@protoc_insertion_point(serialize_to_array_start:Tango.PMR.Diagnostics.ResolveEventRequest) ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; // .Tango.PMR.Diagnostics.EventType Type = 1; if (this->type() != 0) { target = ::google::protobuf::internal::WireFormatLite::WriteEnumToArray( 1, this->type(), 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.Diagnostics.ResolveEventRequest) return target; } size_t ResolveEventRequest::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:Tango.PMR.Diagnostics.ResolveEventRequest) 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())); } // .Tango.PMR.Diagnostics.EventType Type = 1; if (this->type() != 0) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::EnumSize(this->type()); } 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 ResolveEventRequest::MergeFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_merge_from_start:Tango.PMR.Diagnostics.ResolveEventRequest) GOOGLE_DCHECK_NE(&from, this); const ResolveEventRequest* source = ::google::protobuf::internal::DynamicCastToGenerated<const ResolveEventRequest>( &from); if (source == NULL) { // @@protoc_insertion_point(generalized_merge_from_cast_fail:Tango.PMR.Diagnostics.ResolveEventRequest) ::google::protobuf::internal::ReflectionOps::Merge(from, this); } else { // @@protoc_insertion_point(generalized_merge_from_cast_success:Tango.PMR.Diagnostics.ResolveEventRequest) MergeFrom(*source); } } void ResolveEventRequest::MergeFrom(const ResolveEventRequest& from) { // @@protoc_insertion_point(class_specific_merge_from_start:Tango.PMR.Diagnostics.ResolveEventRequest) GOOGLE_DCHECK_NE(&from, this); _internal_metadata_.MergeFrom(from._internal_metadata_); ::google::protobuf::uint32 cached_has_bits = 0; (void) cached_has_bits; if (from.type() != 0) { set_type(from.type()); } } void ResolveEventRequest::CopyFrom(const ::google::protobuf::Message& from) { // @@protoc_insertion_point(generalized_copy_from_start:Tango.PMR.Diagnostics.ResolveEventRequest) if (&from == this) return; Clear(); MergeFrom(from); } void ResolveEventRequest::CopyFrom(const ResolveEventRequest& from) { // @@protoc_insertion_point(class_specific_copy_from_start:Tango.PMR.Diagnostics.ResolveEventRequest) if (&from == this) return; Clear(); MergeFrom(from); } bool ResolveEventRequest::IsInitialized() const { return true; } void ResolveEventRequest::Swap(ResolveEventRequest* other) { if (other == this) return; InternalSwap(other); } void ResolveEventRequest::InternalSwap(ResolveEventRequest* other) { using std::swap; swap(type_, other->type_); _internal_metadata_.Swap(&other->_internal_metadata_); swap(_cached_size_, other->_cached_size_); } ::google::protobuf::Metadata ResolveEventRequest::GetMetadata() const { protobuf_ResolveEventRequest_2eproto::protobuf_AssignDescriptorsOnce(); return protobuf_ResolveEventRequest_2eproto::file_level_metadata[kIndexInFileMessages]; } #if PROTOBUF_INLINE_NOT_IN_HEADERS // ResolveEventRequest // .Tango.PMR.Diagnostics.EventType Type = 1; void ResolveEventRequest::clear_type() { type_ = 0; } ::Tango::PMR::Diagnostics::EventType ResolveEventRequest::type() const { // @@protoc_insertion_point(field_get:Tango.PMR.Diagnostics.ResolveEventRequest.Type) return static_cast< ::Tango::PMR::Diagnostics::EventType >(type_); } void ResolveEventRequest::set_type(::Tango::PMR::Diagnostics::EventType value) { type_ = value; // @@protoc_insertion_point(field_set:Tango.PMR.Diagnostics.ResolveEventRequest.Type) } #endif // PROTOBUF_INLINE_NOT_IN_HEADERS // @@protoc_insertion_point(namespace_scope) } // namespace Diagnostics } // namespace PMR } // namespace Tango // @@protoc_insertion_point(global_scope)