guest.pb.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: app/service/openplatform/ticket-item/api/grpc/v1/guest.proto
  3. package v1
  4. import proto "github.com/gogo/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "github.com/gogo/protobuf/gogoproto"
  8. import context "golang.org/x/net/context"
  9. import grpc "google.golang.org/grpc"
  10. import io "io"
  11. // Reference imports to suppress errors if they are not otherwise used.
  12. var _ = proto.Marshal
  13. var _ = fmt.Errorf
  14. var _ = math.Inf
  15. // The request message containing the guest info to update/insert
  16. type GuestInfoRequest struct {
  17. ID uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id" validate:"min=0"`
  18. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name" validate:"max=32"`
  19. GuestImg string `protobuf:"bytes,3,opt,name=guest_img,json=guestImg,proto3" json:"guest_img" validate:"min=0"`
  20. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description" validate:"max=128"`
  21. GuestID int64 `protobuf:"varint,5,opt,name=guest_id,json=guestId,proto3" json:"guest_id"`
  22. }
  23. func (m *GuestInfoRequest) Reset() { *m = GuestInfoRequest{} }
  24. func (m *GuestInfoRequest) String() string { return proto.CompactTextString(m) }
  25. func (*GuestInfoRequest) ProtoMessage() {}
  26. func (*GuestInfoRequest) Descriptor() ([]byte, []int) { return fileDescriptorGuest, []int{0} }
  27. // The request message containing the required info to change guest's status
  28. type GuestStatusRequest struct {
  29. ID int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id" validate:"required,min=1"`
  30. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status" validate:"max=1"`
  31. }
  32. func (m *GuestStatusRequest) Reset() { *m = GuestStatusRequest{} }
  33. func (m *GuestStatusRequest) String() string { return proto.CompactTextString(m) }
  34. func (*GuestStatusRequest) ProtoMessage() {}
  35. func (*GuestStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptorGuest, []int{1} }
  36. // The general response message contaning the result after updating/inserting the guest info
  37. type GuestInfoReply struct {
  38. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success"`
  39. }
  40. func (m *GuestInfoReply) Reset() { *m = GuestInfoReply{} }
  41. func (m *GuestInfoReply) String() string { return proto.CompactTextString(m) }
  42. func (*GuestInfoReply) ProtoMessage() {}
  43. func (*GuestInfoReply) Descriptor() ([]byte, []int) { return fileDescriptorGuest, []int{2} }
  44. func init() {
  45. proto.RegisterType((*GuestInfoRequest)(nil), "ticket.service.item.v1.GuestInfoRequest")
  46. proto.RegisterType((*GuestStatusRequest)(nil), "ticket.service.item.v1.GuestStatusRequest")
  47. proto.RegisterType((*GuestInfoReply)(nil), "ticket.service.item.v1.GuestInfoReply")
  48. }
  49. // Reference imports to suppress errors if they are not otherwise used.
  50. var _ context.Context
  51. var _ grpc.ClientConn
  52. // This is a compile-time assertion to ensure that this generated file
  53. // is compatible with the grpc package it is being compiled against.
  54. const _ = grpc.SupportPackageIsVersion4
  55. // Client API for Guest service
  56. type GuestClient interface {
  57. GuestInfo(ctx context.Context, in *GuestInfoRequest, opts ...grpc.CallOption) (*GuestInfoReply, error)
  58. GuestStatus(ctx context.Context, in *GuestStatusRequest, opts ...grpc.CallOption) (*GuestInfoReply, error)
  59. }
  60. type guestClient struct {
  61. cc *grpc.ClientConn
  62. }
  63. func NewGuestClient(cc *grpc.ClientConn) GuestClient {
  64. return &guestClient{cc}
  65. }
  66. func (c *guestClient) GuestInfo(ctx context.Context, in *GuestInfoRequest, opts ...grpc.CallOption) (*GuestInfoReply, error) {
  67. out := new(GuestInfoReply)
  68. err := grpc.Invoke(ctx, "/ticket.service.item.v1.Guest/GuestInfo", in, out, c.cc, opts...)
  69. if err != nil {
  70. return nil, err
  71. }
  72. return out, nil
  73. }
  74. func (c *guestClient) GuestStatus(ctx context.Context, in *GuestStatusRequest, opts ...grpc.CallOption) (*GuestInfoReply, error) {
  75. out := new(GuestInfoReply)
  76. err := grpc.Invoke(ctx, "/ticket.service.item.v1.Guest/GuestStatus", in, out, c.cc, opts...)
  77. if err != nil {
  78. return nil, err
  79. }
  80. return out, nil
  81. }
  82. // Server API for Guest service
  83. type GuestServer interface {
  84. GuestInfo(context.Context, *GuestInfoRequest) (*GuestInfoReply, error)
  85. GuestStatus(context.Context, *GuestStatusRequest) (*GuestInfoReply, error)
  86. }
  87. func RegisterGuestServer(s *grpc.Server, srv GuestServer) {
  88. s.RegisterService(&_Guest_serviceDesc, srv)
  89. }
  90. func _Guest_GuestInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  91. in := new(GuestInfoRequest)
  92. if err := dec(in); err != nil {
  93. return nil, err
  94. }
  95. if interceptor == nil {
  96. return srv.(GuestServer).GuestInfo(ctx, in)
  97. }
  98. info := &grpc.UnaryServerInfo{
  99. Server: srv,
  100. FullMethod: "/ticket.service.item.v1.Guest/GuestInfo",
  101. }
  102. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  103. return srv.(GuestServer).GuestInfo(ctx, req.(*GuestInfoRequest))
  104. }
  105. return interceptor(ctx, in, info, handler)
  106. }
  107. func _Guest_GuestStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  108. in := new(GuestStatusRequest)
  109. if err := dec(in); err != nil {
  110. return nil, err
  111. }
  112. if interceptor == nil {
  113. return srv.(GuestServer).GuestStatus(ctx, in)
  114. }
  115. info := &grpc.UnaryServerInfo{
  116. Server: srv,
  117. FullMethod: "/ticket.service.item.v1.Guest/GuestStatus",
  118. }
  119. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  120. return srv.(GuestServer).GuestStatus(ctx, req.(*GuestStatusRequest))
  121. }
  122. return interceptor(ctx, in, info, handler)
  123. }
  124. var _Guest_serviceDesc = grpc.ServiceDesc{
  125. ServiceName: "ticket.service.item.v1.Guest",
  126. HandlerType: (*GuestServer)(nil),
  127. Methods: []grpc.MethodDesc{
  128. {
  129. MethodName: "GuestInfo",
  130. Handler: _Guest_GuestInfo_Handler,
  131. },
  132. {
  133. MethodName: "GuestStatus",
  134. Handler: _Guest_GuestStatus_Handler,
  135. },
  136. },
  137. Streams: []grpc.StreamDesc{},
  138. Metadata: "app/service/openplatform/ticket-item/api/grpc/v1/guest.proto",
  139. }
  140. func (m *GuestInfoRequest) Marshal() (dAtA []byte, err error) {
  141. size := m.Size()
  142. dAtA = make([]byte, size)
  143. n, err := m.MarshalTo(dAtA)
  144. if err != nil {
  145. return nil, err
  146. }
  147. return dAtA[:n], nil
  148. }
  149. func (m *GuestInfoRequest) MarshalTo(dAtA []byte) (int, error) {
  150. var i int
  151. _ = i
  152. var l int
  153. _ = l
  154. if m.ID != 0 {
  155. dAtA[i] = 0x8
  156. i++
  157. i = encodeVarintGuest(dAtA, i, uint64(m.ID))
  158. }
  159. if len(m.Name) > 0 {
  160. dAtA[i] = 0x12
  161. i++
  162. i = encodeVarintGuest(dAtA, i, uint64(len(m.Name)))
  163. i += copy(dAtA[i:], m.Name)
  164. }
  165. if len(m.GuestImg) > 0 {
  166. dAtA[i] = 0x1a
  167. i++
  168. i = encodeVarintGuest(dAtA, i, uint64(len(m.GuestImg)))
  169. i += copy(dAtA[i:], m.GuestImg)
  170. }
  171. if len(m.Description) > 0 {
  172. dAtA[i] = 0x22
  173. i++
  174. i = encodeVarintGuest(dAtA, i, uint64(len(m.Description)))
  175. i += copy(dAtA[i:], m.Description)
  176. }
  177. if m.GuestID != 0 {
  178. dAtA[i] = 0x28
  179. i++
  180. i = encodeVarintGuest(dAtA, i, uint64(m.GuestID))
  181. }
  182. return i, nil
  183. }
  184. func (m *GuestStatusRequest) Marshal() (dAtA []byte, err error) {
  185. size := m.Size()
  186. dAtA = make([]byte, size)
  187. n, err := m.MarshalTo(dAtA)
  188. if err != nil {
  189. return nil, err
  190. }
  191. return dAtA[:n], nil
  192. }
  193. func (m *GuestStatusRequest) MarshalTo(dAtA []byte) (int, error) {
  194. var i int
  195. _ = i
  196. var l int
  197. _ = l
  198. if m.ID != 0 {
  199. dAtA[i] = 0x8
  200. i++
  201. i = encodeVarintGuest(dAtA, i, uint64(m.ID))
  202. }
  203. if m.Status != 0 {
  204. dAtA[i] = 0x10
  205. i++
  206. i = encodeVarintGuest(dAtA, i, uint64(m.Status))
  207. }
  208. return i, nil
  209. }
  210. func (m *GuestInfoReply) Marshal() (dAtA []byte, err error) {
  211. size := m.Size()
  212. dAtA = make([]byte, size)
  213. n, err := m.MarshalTo(dAtA)
  214. if err != nil {
  215. return nil, err
  216. }
  217. return dAtA[:n], nil
  218. }
  219. func (m *GuestInfoReply) MarshalTo(dAtA []byte) (int, error) {
  220. var i int
  221. _ = i
  222. var l int
  223. _ = l
  224. if m.Success {
  225. dAtA[i] = 0x8
  226. i++
  227. if m.Success {
  228. dAtA[i] = 1
  229. } else {
  230. dAtA[i] = 0
  231. }
  232. i++
  233. }
  234. return i, nil
  235. }
  236. func encodeVarintGuest(dAtA []byte, offset int, v uint64) int {
  237. for v >= 1<<7 {
  238. dAtA[offset] = uint8(v&0x7f | 0x80)
  239. v >>= 7
  240. offset++
  241. }
  242. dAtA[offset] = uint8(v)
  243. return offset + 1
  244. }
  245. func (m *GuestInfoRequest) Size() (n int) {
  246. var l int
  247. _ = l
  248. if m.ID != 0 {
  249. n += 1 + sovGuest(uint64(m.ID))
  250. }
  251. l = len(m.Name)
  252. if l > 0 {
  253. n += 1 + l + sovGuest(uint64(l))
  254. }
  255. l = len(m.GuestImg)
  256. if l > 0 {
  257. n += 1 + l + sovGuest(uint64(l))
  258. }
  259. l = len(m.Description)
  260. if l > 0 {
  261. n += 1 + l + sovGuest(uint64(l))
  262. }
  263. if m.GuestID != 0 {
  264. n += 1 + sovGuest(uint64(m.GuestID))
  265. }
  266. return n
  267. }
  268. func (m *GuestStatusRequest) Size() (n int) {
  269. var l int
  270. _ = l
  271. if m.ID != 0 {
  272. n += 1 + sovGuest(uint64(m.ID))
  273. }
  274. if m.Status != 0 {
  275. n += 1 + sovGuest(uint64(m.Status))
  276. }
  277. return n
  278. }
  279. func (m *GuestInfoReply) Size() (n int) {
  280. var l int
  281. _ = l
  282. if m.Success {
  283. n += 2
  284. }
  285. return n
  286. }
  287. func sovGuest(x uint64) (n int) {
  288. for {
  289. n++
  290. x >>= 7
  291. if x == 0 {
  292. break
  293. }
  294. }
  295. return n
  296. }
  297. func sozGuest(x uint64) (n int) {
  298. return sovGuest(uint64((x << 1) ^ uint64((int64(x) >> 63))))
  299. }
  300. func (m *GuestInfoRequest) Unmarshal(dAtA []byte) error {
  301. l := len(dAtA)
  302. iNdEx := 0
  303. for iNdEx < l {
  304. preIndex := iNdEx
  305. var wire uint64
  306. for shift := uint(0); ; shift += 7 {
  307. if shift >= 64 {
  308. return ErrIntOverflowGuest
  309. }
  310. if iNdEx >= l {
  311. return io.ErrUnexpectedEOF
  312. }
  313. b := dAtA[iNdEx]
  314. iNdEx++
  315. wire |= (uint64(b) & 0x7F) << shift
  316. if b < 0x80 {
  317. break
  318. }
  319. }
  320. fieldNum := int32(wire >> 3)
  321. wireType := int(wire & 0x7)
  322. if wireType == 4 {
  323. return fmt.Errorf("proto: GuestInfoRequest: wiretype end group for non-group")
  324. }
  325. if fieldNum <= 0 {
  326. return fmt.Errorf("proto: GuestInfoRequest: illegal tag %d (wire type %d)", fieldNum, wire)
  327. }
  328. switch fieldNum {
  329. case 1:
  330. if wireType != 0 {
  331. return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
  332. }
  333. m.ID = 0
  334. for shift := uint(0); ; shift += 7 {
  335. if shift >= 64 {
  336. return ErrIntOverflowGuest
  337. }
  338. if iNdEx >= l {
  339. return io.ErrUnexpectedEOF
  340. }
  341. b := dAtA[iNdEx]
  342. iNdEx++
  343. m.ID |= (uint32(b) & 0x7F) << shift
  344. if b < 0x80 {
  345. break
  346. }
  347. }
  348. case 2:
  349. if wireType != 2 {
  350. return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
  351. }
  352. var stringLen uint64
  353. for shift := uint(0); ; shift += 7 {
  354. if shift >= 64 {
  355. return ErrIntOverflowGuest
  356. }
  357. if iNdEx >= l {
  358. return io.ErrUnexpectedEOF
  359. }
  360. b := dAtA[iNdEx]
  361. iNdEx++
  362. stringLen |= (uint64(b) & 0x7F) << shift
  363. if b < 0x80 {
  364. break
  365. }
  366. }
  367. intStringLen := int(stringLen)
  368. if intStringLen < 0 {
  369. return ErrInvalidLengthGuest
  370. }
  371. postIndex := iNdEx + intStringLen
  372. if postIndex > l {
  373. return io.ErrUnexpectedEOF
  374. }
  375. m.Name = string(dAtA[iNdEx:postIndex])
  376. iNdEx = postIndex
  377. case 3:
  378. if wireType != 2 {
  379. return fmt.Errorf("proto: wrong wireType = %d for field GuestImg", wireType)
  380. }
  381. var stringLen uint64
  382. for shift := uint(0); ; shift += 7 {
  383. if shift >= 64 {
  384. return ErrIntOverflowGuest
  385. }
  386. if iNdEx >= l {
  387. return io.ErrUnexpectedEOF
  388. }
  389. b := dAtA[iNdEx]
  390. iNdEx++
  391. stringLen |= (uint64(b) & 0x7F) << shift
  392. if b < 0x80 {
  393. break
  394. }
  395. }
  396. intStringLen := int(stringLen)
  397. if intStringLen < 0 {
  398. return ErrInvalidLengthGuest
  399. }
  400. postIndex := iNdEx + intStringLen
  401. if postIndex > l {
  402. return io.ErrUnexpectedEOF
  403. }
  404. m.GuestImg = string(dAtA[iNdEx:postIndex])
  405. iNdEx = postIndex
  406. case 4:
  407. if wireType != 2 {
  408. return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType)
  409. }
  410. var stringLen uint64
  411. for shift := uint(0); ; shift += 7 {
  412. if shift >= 64 {
  413. return ErrIntOverflowGuest
  414. }
  415. if iNdEx >= l {
  416. return io.ErrUnexpectedEOF
  417. }
  418. b := dAtA[iNdEx]
  419. iNdEx++
  420. stringLen |= (uint64(b) & 0x7F) << shift
  421. if b < 0x80 {
  422. break
  423. }
  424. }
  425. intStringLen := int(stringLen)
  426. if intStringLen < 0 {
  427. return ErrInvalidLengthGuest
  428. }
  429. postIndex := iNdEx + intStringLen
  430. if postIndex > l {
  431. return io.ErrUnexpectedEOF
  432. }
  433. m.Description = string(dAtA[iNdEx:postIndex])
  434. iNdEx = postIndex
  435. case 5:
  436. if wireType != 0 {
  437. return fmt.Errorf("proto: wrong wireType = %d for field GuestID", wireType)
  438. }
  439. m.GuestID = 0
  440. for shift := uint(0); ; shift += 7 {
  441. if shift >= 64 {
  442. return ErrIntOverflowGuest
  443. }
  444. if iNdEx >= l {
  445. return io.ErrUnexpectedEOF
  446. }
  447. b := dAtA[iNdEx]
  448. iNdEx++
  449. m.GuestID |= (int64(b) & 0x7F) << shift
  450. if b < 0x80 {
  451. break
  452. }
  453. }
  454. default:
  455. iNdEx = preIndex
  456. skippy, err := skipGuest(dAtA[iNdEx:])
  457. if err != nil {
  458. return err
  459. }
  460. if skippy < 0 {
  461. return ErrInvalidLengthGuest
  462. }
  463. if (iNdEx + skippy) > l {
  464. return io.ErrUnexpectedEOF
  465. }
  466. iNdEx += skippy
  467. }
  468. }
  469. if iNdEx > l {
  470. return io.ErrUnexpectedEOF
  471. }
  472. return nil
  473. }
  474. func (m *GuestStatusRequest) Unmarshal(dAtA []byte) error {
  475. l := len(dAtA)
  476. iNdEx := 0
  477. for iNdEx < l {
  478. preIndex := iNdEx
  479. var wire uint64
  480. for shift := uint(0); ; shift += 7 {
  481. if shift >= 64 {
  482. return ErrIntOverflowGuest
  483. }
  484. if iNdEx >= l {
  485. return io.ErrUnexpectedEOF
  486. }
  487. b := dAtA[iNdEx]
  488. iNdEx++
  489. wire |= (uint64(b) & 0x7F) << shift
  490. if b < 0x80 {
  491. break
  492. }
  493. }
  494. fieldNum := int32(wire >> 3)
  495. wireType := int(wire & 0x7)
  496. if wireType == 4 {
  497. return fmt.Errorf("proto: GuestStatusRequest: wiretype end group for non-group")
  498. }
  499. if fieldNum <= 0 {
  500. return fmt.Errorf("proto: GuestStatusRequest: illegal tag %d (wire type %d)", fieldNum, wire)
  501. }
  502. switch fieldNum {
  503. case 1:
  504. if wireType != 0 {
  505. return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
  506. }
  507. m.ID = 0
  508. for shift := uint(0); ; shift += 7 {
  509. if shift >= 64 {
  510. return ErrIntOverflowGuest
  511. }
  512. if iNdEx >= l {
  513. return io.ErrUnexpectedEOF
  514. }
  515. b := dAtA[iNdEx]
  516. iNdEx++
  517. m.ID |= (int64(b) & 0x7F) << shift
  518. if b < 0x80 {
  519. break
  520. }
  521. }
  522. case 2:
  523. if wireType != 0 {
  524. return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType)
  525. }
  526. m.Status = 0
  527. for shift := uint(0); ; shift += 7 {
  528. if shift >= 64 {
  529. return ErrIntOverflowGuest
  530. }
  531. if iNdEx >= l {
  532. return io.ErrUnexpectedEOF
  533. }
  534. b := dAtA[iNdEx]
  535. iNdEx++
  536. m.Status |= (int32(b) & 0x7F) << shift
  537. if b < 0x80 {
  538. break
  539. }
  540. }
  541. default:
  542. iNdEx = preIndex
  543. skippy, err := skipGuest(dAtA[iNdEx:])
  544. if err != nil {
  545. return err
  546. }
  547. if skippy < 0 {
  548. return ErrInvalidLengthGuest
  549. }
  550. if (iNdEx + skippy) > l {
  551. return io.ErrUnexpectedEOF
  552. }
  553. iNdEx += skippy
  554. }
  555. }
  556. if iNdEx > l {
  557. return io.ErrUnexpectedEOF
  558. }
  559. return nil
  560. }
  561. func (m *GuestInfoReply) Unmarshal(dAtA []byte) error {
  562. l := len(dAtA)
  563. iNdEx := 0
  564. for iNdEx < l {
  565. preIndex := iNdEx
  566. var wire uint64
  567. for shift := uint(0); ; shift += 7 {
  568. if shift >= 64 {
  569. return ErrIntOverflowGuest
  570. }
  571. if iNdEx >= l {
  572. return io.ErrUnexpectedEOF
  573. }
  574. b := dAtA[iNdEx]
  575. iNdEx++
  576. wire |= (uint64(b) & 0x7F) << shift
  577. if b < 0x80 {
  578. break
  579. }
  580. }
  581. fieldNum := int32(wire >> 3)
  582. wireType := int(wire & 0x7)
  583. if wireType == 4 {
  584. return fmt.Errorf("proto: GuestInfoReply: wiretype end group for non-group")
  585. }
  586. if fieldNum <= 0 {
  587. return fmt.Errorf("proto: GuestInfoReply: illegal tag %d (wire type %d)", fieldNum, wire)
  588. }
  589. switch fieldNum {
  590. case 1:
  591. if wireType != 0 {
  592. return fmt.Errorf("proto: wrong wireType = %d for field Success", wireType)
  593. }
  594. var v int
  595. for shift := uint(0); ; shift += 7 {
  596. if shift >= 64 {
  597. return ErrIntOverflowGuest
  598. }
  599. if iNdEx >= l {
  600. return io.ErrUnexpectedEOF
  601. }
  602. b := dAtA[iNdEx]
  603. iNdEx++
  604. v |= (int(b) & 0x7F) << shift
  605. if b < 0x80 {
  606. break
  607. }
  608. }
  609. m.Success = bool(v != 0)
  610. default:
  611. iNdEx = preIndex
  612. skippy, err := skipGuest(dAtA[iNdEx:])
  613. if err != nil {
  614. return err
  615. }
  616. if skippy < 0 {
  617. return ErrInvalidLengthGuest
  618. }
  619. if (iNdEx + skippy) > l {
  620. return io.ErrUnexpectedEOF
  621. }
  622. iNdEx += skippy
  623. }
  624. }
  625. if iNdEx > l {
  626. return io.ErrUnexpectedEOF
  627. }
  628. return nil
  629. }
  630. func skipGuest(dAtA []byte) (n int, err error) {
  631. l := len(dAtA)
  632. iNdEx := 0
  633. for iNdEx < l {
  634. var wire uint64
  635. for shift := uint(0); ; shift += 7 {
  636. if shift >= 64 {
  637. return 0, ErrIntOverflowGuest
  638. }
  639. if iNdEx >= l {
  640. return 0, io.ErrUnexpectedEOF
  641. }
  642. b := dAtA[iNdEx]
  643. iNdEx++
  644. wire |= (uint64(b) & 0x7F) << shift
  645. if b < 0x80 {
  646. break
  647. }
  648. }
  649. wireType := int(wire & 0x7)
  650. switch wireType {
  651. case 0:
  652. for shift := uint(0); ; shift += 7 {
  653. if shift >= 64 {
  654. return 0, ErrIntOverflowGuest
  655. }
  656. if iNdEx >= l {
  657. return 0, io.ErrUnexpectedEOF
  658. }
  659. iNdEx++
  660. if dAtA[iNdEx-1] < 0x80 {
  661. break
  662. }
  663. }
  664. return iNdEx, nil
  665. case 1:
  666. iNdEx += 8
  667. return iNdEx, nil
  668. case 2:
  669. var length int
  670. for shift := uint(0); ; shift += 7 {
  671. if shift >= 64 {
  672. return 0, ErrIntOverflowGuest
  673. }
  674. if iNdEx >= l {
  675. return 0, io.ErrUnexpectedEOF
  676. }
  677. b := dAtA[iNdEx]
  678. iNdEx++
  679. length |= (int(b) & 0x7F) << shift
  680. if b < 0x80 {
  681. break
  682. }
  683. }
  684. iNdEx += length
  685. if length < 0 {
  686. return 0, ErrInvalidLengthGuest
  687. }
  688. return iNdEx, nil
  689. case 3:
  690. for {
  691. var innerWire uint64
  692. var start int = iNdEx
  693. for shift := uint(0); ; shift += 7 {
  694. if shift >= 64 {
  695. return 0, ErrIntOverflowGuest
  696. }
  697. if iNdEx >= l {
  698. return 0, io.ErrUnexpectedEOF
  699. }
  700. b := dAtA[iNdEx]
  701. iNdEx++
  702. innerWire |= (uint64(b) & 0x7F) << shift
  703. if b < 0x80 {
  704. break
  705. }
  706. }
  707. innerWireType := int(innerWire & 0x7)
  708. if innerWireType == 4 {
  709. break
  710. }
  711. next, err := skipGuest(dAtA[start:])
  712. if err != nil {
  713. return 0, err
  714. }
  715. iNdEx = start + next
  716. }
  717. return iNdEx, nil
  718. case 4:
  719. return iNdEx, nil
  720. case 5:
  721. iNdEx += 4
  722. return iNdEx, nil
  723. default:
  724. return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
  725. }
  726. }
  727. panic("unreachable")
  728. }
  729. var (
  730. ErrInvalidLengthGuest = fmt.Errorf("proto: negative length found during unmarshaling")
  731. ErrIntOverflowGuest = fmt.Errorf("proto: integer overflow")
  732. )
  733. func init() {
  734. proto.RegisterFile("app/service/openplatform/ticket-item/api/grpc/v1/guest.proto", fileDescriptorGuest)
  735. }
  736. var fileDescriptorGuest = []byte{
  737. // 491 bytes of a gzipped FileDescriptorProto
  738. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xcd, 0x6e, 0xd3, 0x40,
  739. 0x10, 0x8e, 0x9d, 0xa6, 0x49, 0x36, 0x02, 0x95, 0x3d, 0x80, 0xa9, 0x84, 0x37, 0x58, 0x2a, 0x0a,
  740. 0x88, 0x7a, 0xeb, 0x54, 0xe2, 0x4f, 0x94, 0x83, 0x85, 0x54, 0xe5, 0x6a, 0x6e, 0x5c, 0x2a, 0xc7,
  741. 0xde, 0x98, 0x15, 0x71, 0x76, 0x6b, 0xaf, 0x2d, 0xfa, 0x04, 0xbc, 0x10, 0x0f, 0xd1, 0x0b, 0x52,
  742. 0x9f, 0x60, 0x45, 0x7d, 0xf4, 0x31, 0x4f, 0x80, 0xbc, 0x4e, 0x52, 0x37, 0xaa, 0xaa, 0xde, 0x76,
  743. 0x66, 0xbe, 0xf9, 0x66, 0xbe, 0x6f, 0x07, 0x7c, 0xf6, 0x39, 0xc7, 0x29, 0x49, 0x72, 0x1a, 0x10,
  744. 0xcc, 0x38, 0x59, 0xf0, 0xb9, 0x2f, 0x66, 0x2c, 0x89, 0xb1, 0xa0, 0xc1, 0x4f, 0x22, 0x0e, 0xa9,
  745. 0x20, 0x31, 0xf6, 0x39, 0xc5, 0x51, 0xc2, 0x03, 0x9c, 0x3b, 0x38, 0xca, 0x48, 0x2a, 0x6c, 0x9e,
  746. 0x30, 0xc1, 0xe0, 0xd3, 0x1a, 0x64, 0xaf, 0x08, 0xec, 0x0a, 0x6c, 0xe7, 0xce, 0xfe, 0x61, 0x44,
  747. 0xc5, 0x8f, 0x6c, 0x6a, 0x07, 0x2c, 0xc6, 0x11, 0x8b, 0x18, 0x56, 0xf0, 0x69, 0x36, 0x53, 0x91,
  748. 0x0a, 0xd4, 0xab, 0xa6, 0xb1, 0xfe, 0xe8, 0x60, 0xef, 0xb4, 0xa2, 0x9d, 0x2c, 0x66, 0xcc, 0x23,
  749. 0xe7, 0xd5, 0x13, 0x1e, 0x01, 0x9d, 0x86, 0x86, 0x36, 0xd4, 0x46, 0x8f, 0xdc, 0x61, 0x21, 0x91,
  750. 0x3e, 0xf9, 0x5a, 0x4a, 0xa4, 0xd3, 0x70, 0x29, 0xd1, 0x5e, 0xee, 0xcf, 0x69, 0xe8, 0x0b, 0xf2,
  751. 0xc9, 0x8a, 0xe9, 0xe2, 0xe4, 0xc8, 0xf2, 0x74, 0x1a, 0x42, 0x07, 0xec, 0x2c, 0xfc, 0x98, 0x18,
  752. 0xfa, 0x50, 0x1b, 0xf5, 0xdd, 0x17, 0xa5, 0x44, 0x2a, 0x5e, 0x4a, 0xf4, 0xa4, 0x81, 0xf7, 0x7f,
  753. 0x9d, 0x1c, 0x8f, 0x2d, 0x4f, 0x95, 0xe0, 0x17, 0xd0, 0x57, 0x7a, 0xce, 0x68, 0x1c, 0x19, 0x6d,
  754. 0xd5, 0xf7, 0xb2, 0x94, 0xe8, 0x26, 0x79, 0xe7, 0xb0, 0x9e, 0x2a, 0x4f, 0xe2, 0x08, 0x9e, 0x82,
  755. 0x41, 0x48, 0xd2, 0x20, 0xa1, 0x5c, 0x50, 0xb6, 0x30, 0x76, 0x14, 0xc3, 0x41, 0x29, 0x51, 0x33,
  756. 0xbd, 0x94, 0x08, 0xde, 0x5e, 0xc0, 0x19, 0x7f, 0xb0, 0xbc, 0x26, 0x04, 0x8e, 0x41, 0x6f, 0x35,
  757. 0x33, 0x34, 0x3a, 0x43, 0x6d, 0xd4, 0x76, 0x9f, 0x15, 0x12, 0x75, 0x6b, 0x57, 0x2a, 0xe1, 0x9b,
  758. 0xb2, 0xd7, 0xad, 0xa7, 0x87, 0xd6, 0x6f, 0x0d, 0x40, 0x05, 0xf8, 0x26, 0x7c, 0x91, 0xa5, 0x6b,
  759. 0xe3, 0x3e, 0x6e, 0x8c, 0x6b, 0xbb, 0xaf, 0xb7, 0x8c, 0x7b, 0x7e, 0xb3, 0x47, 0x42, 0xce, 0x33,
  760. 0x9a, 0x90, 0xf0, 0x6d, 0x25, 0xca, 0xa9, 0x1d, 0x7c, 0x07, 0x76, 0x53, 0xc5, 0xa5, 0x3c, 0xec,
  761. 0xb8, 0x66, 0x29, 0xd1, 0x2a, 0xb3, 0x65, 0x44, 0x25, 0xc2, 0xf2, 0x56, 0x35, 0xeb, 0x3d, 0x78,
  762. 0xdc, 0xf8, 0x3f, 0x3e, 0xbf, 0x80, 0x07, 0xa0, 0x9b, 0x66, 0x41, 0x40, 0xd2, 0x54, 0x6d, 0xd2,
  763. 0x73, 0x07, 0xa5, 0x44, 0xeb, 0x94, 0xb7, 0x7e, 0x8c, 0xff, 0x6a, 0xa0, 0xa3, 0x3a, 0xe1, 0x19,
  764. 0xe8, 0x6f, 0x28, 0xe0, 0xc8, 0xbe, 0xfb, 0xb0, 0xec, 0xed, 0x2b, 0xd9, 0x7f, 0xf5, 0x00, 0x24,
  765. 0x9f, 0x5f, 0x58, 0x2d, 0x18, 0x80, 0x41, 0xc3, 0x2c, 0xf8, 0xe6, 0xde, 0xc6, 0x5b, 0x8e, 0x3e,
  766. 0x7c, 0x88, 0x6b, 0x5c, 0x5e, 0x9b, 0xad, 0xab, 0x6b, 0xb3, 0x75, 0x59, 0x98, 0xda, 0x55, 0x61,
  767. 0x6a, 0xff, 0x0a, 0x53, 0xfb, 0xae, 0xe7, 0xce, 0x74, 0x57, 0x9d, 0xfa, 0xf1, 0xff, 0x00, 0x00,
  768. 0x00, 0xff, 0xff, 0x44, 0x78, 0x81, 0x56, 0x71, 0x03, 0x00, 0x00,
  769. }