123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420 |
- // Code generated by protoc-gen-gogo.
- // source: github.com/docker/swarmkit/api/logbroker.proto
- // DO NOT EDIT!
- package api
- import proto "github.com/gogo/protobuf/proto"
- import fmt "fmt"
- import math "math"
- import _ "github.com/gogo/protobuf/gogoproto"
- import google_protobuf "github.com/gogo/protobuf/types"
- import _ "github.com/docker/swarmkit/protobuf/plugin"
- import github_com_docker_swarmkit_api_deepcopy "github.com/docker/swarmkit/api/deepcopy"
- import (
- context "golang.org/x/net/context"
- grpc "google.golang.org/grpc"
- )
- import raftselector "github.com/docker/swarmkit/manager/raftselector"
- import codes "google.golang.org/grpc/codes"
- import metadata "google.golang.org/grpc/metadata"
- import transport "google.golang.org/grpc/transport"
- import rafttime "time"
- import strings "strings"
- import reflect "reflect"
- import io "io"
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
- // LogStream defines the stream from which the log message came.
- type LogStream int32
- const (
- LogStreamUnknown LogStream = 0
- LogStreamStdout LogStream = 1
- LogStreamStderr LogStream = 2
- )
- var LogStream_name = map[int32]string{
- 0: "LOG_STREAM_UNKNOWN",
- 1: "LOG_STREAM_STDOUT",
- 2: "LOG_STREAM_STDERR",
- }
- var LogStream_value = map[string]int32{
- "LOG_STREAM_UNKNOWN": 0,
- "LOG_STREAM_STDOUT": 1,
- "LOG_STREAM_STDERR": 2,
- }
- func (x LogStream) String() string {
- return proto.EnumName(LogStream_name, int32(x))
- }
- func (LogStream) EnumDescriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{0} }
- type LogSubscriptionOptions struct {
- // Streams defines which log streams should be sent from the task source.
- // Empty means send all the messages.
- Streams []LogStream `protobuf:"varint,1,rep,name=streams,enum=docker.swarmkit.v1.LogStream" json:"streams,omitempty"`
- // Follow instructs the publisher to continue sending log messages as they
- // are produced, after satisfying the initial query.
- Follow bool `protobuf:"varint,2,opt,name=follow,proto3" json:"follow,omitempty"`
- // Tail defines how many messages relative to the log stream to send when
- // starting the stream.
- //
- // Positive values will skip that number of messages from the start of the
- // stream before publishing.
- //
- // Negative values will specify messages relative to the end of the stream,
- // offset by one. We can say that the last (-n-1) lines are returned when n
- // < 0. As reference, -1 would mean send no log lines (typically used with
- // follow), -2 would return the last log line, -11 would return the last 10
- // and so on.
- //
- // The default value of zero will return all logs.
- //
- // Note that this is very different from the Docker API.
- Tail int64 `protobuf:"varint,3,opt,name=tail,proto3" json:"tail,omitempty"`
- // Since indicates that only log messages produced after this timestamp
- // should be sent.
- // Note: can't use stdtime because this field is nullable.
- Since *google_protobuf.Timestamp `protobuf:"bytes,4,opt,name=since" json:"since,omitempty"`
- }
- func (m *LogSubscriptionOptions) Reset() { *m = LogSubscriptionOptions{} }
- func (*LogSubscriptionOptions) ProtoMessage() {}
- func (*LogSubscriptionOptions) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{0} }
- // LogSelector will match logs from ANY of the defined parameters.
- //
- // For the best effect, the client should use the least specific parameter
- // possible. For example, if they want to listen to all the tasks of a service,
- // they should use the service id, rather than specifying the individual tasks.
- type LogSelector struct {
- ServiceIDs []string `protobuf:"bytes,1,rep,name=service_ids,json=serviceIds" json:"service_ids,omitempty"`
- NodeIDs []string `protobuf:"bytes,2,rep,name=node_ids,json=nodeIds" json:"node_ids,omitempty"`
- TaskIDs []string `protobuf:"bytes,3,rep,name=task_ids,json=taskIds" json:"task_ids,omitempty"`
- }
- func (m *LogSelector) Reset() { *m = LogSelector{} }
- func (*LogSelector) ProtoMessage() {}
- func (*LogSelector) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{1} }
- // LogContext marks the context from which a log message was generated.
- type LogContext struct {
- ServiceID string `protobuf:"bytes,1,opt,name=service_id,json=serviceId,proto3" json:"service_id,omitempty"`
- NodeID string `protobuf:"bytes,2,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"`
- TaskID string `protobuf:"bytes,3,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
- }
- func (m *LogContext) Reset() { *m = LogContext{} }
- func (*LogContext) ProtoMessage() {}
- func (*LogContext) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{2} }
- // LogAttr is an extra key/value pair that may be have been set by users
- type LogAttr struct {
- Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
- Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
- }
- func (m *LogAttr) Reset() { *m = LogAttr{} }
- func (*LogAttr) ProtoMessage() {}
- func (*LogAttr) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{3} }
- // LogMessage
- type LogMessage struct {
- // Context identifies the source of the log message.
- Context LogContext `protobuf:"bytes,1,opt,name=context" json:"context"`
- // Timestamp is the time at which the message was generated.
- // Note: can't use stdtime because this field is nullable.
- Timestamp *google_protobuf.Timestamp `protobuf:"bytes,2,opt,name=timestamp" json:"timestamp,omitempty"`
- // Stream identifies the stream of the log message, stdout or stderr.
- Stream LogStream `protobuf:"varint,3,opt,name=stream,proto3,enum=docker.swarmkit.v1.LogStream" json:"stream,omitempty"`
- // Data is the raw log message, as generated by the application.
- Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
- // Attrs is a list of key value pairs representing additional log details
- // that may have been returned from the logger
- Attrs []LogAttr `protobuf:"bytes,5,rep,name=attrs" json:"attrs"`
- }
- func (m *LogMessage) Reset() { *m = LogMessage{} }
- func (*LogMessage) ProtoMessage() {}
- func (*LogMessage) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{4} }
- type SubscribeLogsRequest struct {
- // LogSelector describes the logs to which the subscriber is
- Selector *LogSelector `protobuf:"bytes,1,opt,name=selector" json:"selector,omitempty"`
- Options *LogSubscriptionOptions `protobuf:"bytes,2,opt,name=options" json:"options,omitempty"`
- }
- func (m *SubscribeLogsRequest) Reset() { *m = SubscribeLogsRequest{} }
- func (*SubscribeLogsRequest) ProtoMessage() {}
- func (*SubscribeLogsRequest) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{5} }
- type SubscribeLogsMessage struct {
- Messages []LogMessage `protobuf:"bytes,1,rep,name=messages" json:"messages"`
- }
- func (m *SubscribeLogsMessage) Reset() { *m = SubscribeLogsMessage{} }
- func (*SubscribeLogsMessage) ProtoMessage() {}
- func (*SubscribeLogsMessage) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{6} }
- // ListenSubscriptionsRequest is a placeholder to begin listening for
- // subscriptions.
- type ListenSubscriptionsRequest struct {
- }
- func (m *ListenSubscriptionsRequest) Reset() { *m = ListenSubscriptionsRequest{} }
- func (*ListenSubscriptionsRequest) ProtoMessage() {}
- func (*ListenSubscriptionsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptorLogbroker, []int{7}
- }
- // SubscriptionMessage instructs the listener to start publishing messages for
- // the stream or end a subscription.
- //
- // If Options.Follow == false, the worker should end the subscription on its own.
- type SubscriptionMessage struct {
- // ID identifies the subscription.
- ID string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- // Selector defines which sources should be sent for the subscription.
- Selector *LogSelector `protobuf:"bytes,2,opt,name=selector" json:"selector,omitempty"`
- // Options specify how the subscription should be satisfied.
- Options *LogSubscriptionOptions `protobuf:"bytes,3,opt,name=options" json:"options,omitempty"`
- // Close will be true if the node should shutdown the subscription with the
- // provided identifier.
- Close bool `protobuf:"varint,4,opt,name=close,proto3" json:"close,omitempty"`
- }
- func (m *SubscriptionMessage) Reset() { *m = SubscriptionMessage{} }
- func (*SubscriptionMessage) ProtoMessage() {}
- func (*SubscriptionMessage) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{8} }
- type PublishLogsMessage struct {
- // SubscriptionID identifies which subscription the set of messages should
- // be sent to. We can think of this as a "mail box" for the subscription.
- SubscriptionID string `protobuf:"bytes,1,opt,name=subscription_id,json=subscriptionId,proto3" json:"subscription_id,omitempty"`
- // Messages is the log message for publishing.
- Messages []LogMessage `protobuf:"bytes,2,rep,name=messages" json:"messages"`
- // Close is a boolean for whether or not the client has completed its log
- // stream. When close is called, the manager can hang up the subscription.
- // Any further logs from this subscription are an error condition. Any
- // messages included when close is set can be discarded
- Close bool `protobuf:"varint,3,opt,name=close,proto3" json:"close,omitempty"`
- }
- func (m *PublishLogsMessage) Reset() { *m = PublishLogsMessage{} }
- func (*PublishLogsMessage) ProtoMessage() {}
- func (*PublishLogsMessage) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{9} }
- type PublishLogsResponse struct {
- }
- func (m *PublishLogsResponse) Reset() { *m = PublishLogsResponse{} }
- func (*PublishLogsResponse) ProtoMessage() {}
- func (*PublishLogsResponse) Descriptor() ([]byte, []int) { return fileDescriptorLogbroker, []int{10} }
- func init() {
- proto.RegisterType((*LogSubscriptionOptions)(nil), "docker.swarmkit.v1.LogSubscriptionOptions")
- proto.RegisterType((*LogSelector)(nil), "docker.swarmkit.v1.LogSelector")
- proto.RegisterType((*LogContext)(nil), "docker.swarmkit.v1.LogContext")
- proto.RegisterType((*LogAttr)(nil), "docker.swarmkit.v1.LogAttr")
- proto.RegisterType((*LogMessage)(nil), "docker.swarmkit.v1.LogMessage")
- proto.RegisterType((*SubscribeLogsRequest)(nil), "docker.swarmkit.v1.SubscribeLogsRequest")
- proto.RegisterType((*SubscribeLogsMessage)(nil), "docker.swarmkit.v1.SubscribeLogsMessage")
- proto.RegisterType((*ListenSubscriptionsRequest)(nil), "docker.swarmkit.v1.ListenSubscriptionsRequest")
- proto.RegisterType((*SubscriptionMessage)(nil), "docker.swarmkit.v1.SubscriptionMessage")
- proto.RegisterType((*PublishLogsMessage)(nil), "docker.swarmkit.v1.PublishLogsMessage")
- proto.RegisterType((*PublishLogsResponse)(nil), "docker.swarmkit.v1.PublishLogsResponse")
- proto.RegisterEnum("docker.swarmkit.v1.LogStream", LogStream_name, LogStream_value)
- }
- type authenticatedWrapperLogsServer struct {
- local LogsServer
- authorize func(context.Context, []string) error
- }
- func NewAuthenticatedWrapperLogsServer(local LogsServer, authorize func(context.Context, []string) error) LogsServer {
- return &authenticatedWrapperLogsServer{
- local: local,
- authorize: authorize,
- }
- }
- func (p *authenticatedWrapperLogsServer) SubscribeLogs(r *SubscribeLogsRequest, stream Logs_SubscribeLogsServer) error {
- if err := p.authorize(stream.Context(), []string{"swarm-manager"}); err != nil {
- return err
- }
- return p.local.SubscribeLogs(r, stream)
- }
- type authenticatedWrapperLogBrokerServer struct {
- local LogBrokerServer
- authorize func(context.Context, []string) error
- }
- func NewAuthenticatedWrapperLogBrokerServer(local LogBrokerServer, authorize func(context.Context, []string) error) LogBrokerServer {
- return &authenticatedWrapperLogBrokerServer{
- local: local,
- authorize: authorize,
- }
- }
- func (p *authenticatedWrapperLogBrokerServer) ListenSubscriptions(r *ListenSubscriptionsRequest, stream LogBroker_ListenSubscriptionsServer) error {
- if err := p.authorize(stream.Context(), []string{"swarm-worker", "swarm-manager"}); err != nil {
- return err
- }
- return p.local.ListenSubscriptions(r, stream)
- }
- func (p *authenticatedWrapperLogBrokerServer) PublishLogs(stream LogBroker_PublishLogsServer) error {
- if err := p.authorize(stream.Context(), []string{"swarm-worker", "swarm-manager"}); err != nil {
- return err
- }
- return p.local.PublishLogs(stream)
- }
- func (m *LogSubscriptionOptions) Copy() *LogSubscriptionOptions {
- if m == nil {
- return nil
- }
- o := &LogSubscriptionOptions{}
- o.CopyFrom(m)
- return o
- }
- func (m *LogSubscriptionOptions) CopyFrom(src interface{}) {
- o := src.(*LogSubscriptionOptions)
- *m = *o
- if o.Streams != nil {
- m.Streams = make([]LogStream, len(o.Streams))
- copy(m.Streams, o.Streams)
- }
- if o.Since != nil {
- m.Since = &google_protobuf.Timestamp{}
- github_com_docker_swarmkit_api_deepcopy.Copy(m.Since, o.Since)
- }
- }
- func (m *LogSelector) Copy() *LogSelector {
- if m == nil {
- return nil
- }
- o := &LogSelector{}
- o.CopyFrom(m)
- return o
- }
- func (m *LogSelector) CopyFrom(src interface{}) {
- o := src.(*LogSelector)
- *m = *o
- if o.ServiceIDs != nil {
- m.ServiceIDs = make([]string, len(o.ServiceIDs))
- copy(m.ServiceIDs, o.ServiceIDs)
- }
- if o.NodeIDs != nil {
- m.NodeIDs = make([]string, len(o.NodeIDs))
- copy(m.NodeIDs, o.NodeIDs)
- }
- if o.TaskIDs != nil {
- m.TaskIDs = make([]string, len(o.TaskIDs))
- copy(m.TaskIDs, o.TaskIDs)
- }
- }
- func (m *LogContext) Copy() *LogContext {
- if m == nil {
- return nil
- }
- o := &LogContext{}
- o.CopyFrom(m)
- return o
- }
- func (m *LogContext) CopyFrom(src interface{}) {
- o := src.(*LogContext)
- *m = *o
- }
- func (m *LogAttr) Copy() *LogAttr {
- if m == nil {
- return nil
- }
- o := &LogAttr{}
- o.CopyFrom(m)
- return o
- }
- func (m *LogAttr) CopyFrom(src interface{}) {
- o := src.(*LogAttr)
- *m = *o
- }
- func (m *LogMessage) Copy() *LogMessage {
- if m == nil {
- return nil
- }
- o := &LogMessage{}
- o.CopyFrom(m)
- return o
- }
- func (m *LogMessage) CopyFrom(src interface{}) {
- o := src.(*LogMessage)
- *m = *o
- github_com_docker_swarmkit_api_deepcopy.Copy(&m.Context, &o.Context)
- if o.Timestamp != nil {
- m.Timestamp = &google_protobuf.Timestamp{}
- github_com_docker_swarmkit_api_deepcopy.Copy(m.Timestamp, o.Timestamp)
- }
- if o.Data != nil {
- m.Data = make([]byte, len(o.Data))
- copy(m.Data, o.Data)
- }
- if o.Attrs != nil {
- m.Attrs = make([]LogAttr, len(o.Attrs))
- for i := range m.Attrs {
- github_com_docker_swarmkit_api_deepcopy.Copy(&m.Attrs[i], &o.Attrs[i])
- }
- }
- }
- func (m *SubscribeLogsRequest) Copy() *SubscribeLogsRequest {
- if m == nil {
- return nil
- }
- o := &SubscribeLogsRequest{}
- o.CopyFrom(m)
- return o
- }
- func (m *SubscribeLogsRequest) CopyFrom(src interface{}) {
- o := src.(*SubscribeLogsRequest)
- *m = *o
- if o.Selector != nil {
- m.Selector = &LogSelector{}
- github_com_docker_swarmkit_api_deepcopy.Copy(m.Selector, o.Selector)
- }
- if o.Options != nil {
- m.Options = &LogSubscriptionOptions{}
- github_com_docker_swarmkit_api_deepcopy.Copy(m.Options, o.Options)
- }
- }
- func (m *SubscribeLogsMessage) Copy() *SubscribeLogsMessage {
- if m == nil {
- return nil
- }
- o := &SubscribeLogsMessage{}
- o.CopyFrom(m)
- return o
- }
- func (m *SubscribeLogsMessage) CopyFrom(src interface{}) {
- o := src.(*SubscribeLogsMessage)
- *m = *o
- if o.Messages != nil {
- m.Messages = make([]LogMessage, len(o.Messages))
- for i := range m.Messages {
- github_com_docker_swarmkit_api_deepcopy.Copy(&m.Messages[i], &o.Messages[i])
- }
- }
- }
- func (m *ListenSubscriptionsRequest) Copy() *ListenSubscriptionsRequest {
- if m == nil {
- return nil
- }
- o := &ListenSubscriptionsRequest{}
- o.CopyFrom(m)
- return o
- }
- func (m *ListenSubscriptionsRequest) CopyFrom(src interface{}) {}
- func (m *SubscriptionMessage) Copy() *SubscriptionMessage {
- if m == nil {
- return nil
- }
- o := &SubscriptionMessage{}
- o.CopyFrom(m)
- return o
- }
- func (m *SubscriptionMessage) CopyFrom(src interface{}) {
- o := src.(*SubscriptionMessage)
- *m = *o
- if o.Selector != nil {
- m.Selector = &LogSelector{}
- github_com_docker_swarmkit_api_deepcopy.Copy(m.Selector, o.Selector)
- }
- if o.Options != nil {
- m.Options = &LogSubscriptionOptions{}
- github_com_docker_swarmkit_api_deepcopy.Copy(m.Options, o.Options)
- }
- }
- func (m *PublishLogsMessage) Copy() *PublishLogsMessage {
- if m == nil {
- return nil
- }
- o := &PublishLogsMessage{}
- o.CopyFrom(m)
- return o
- }
- func (m *PublishLogsMessage) CopyFrom(src interface{}) {
- o := src.(*PublishLogsMessage)
- *m = *o
- if o.Messages != nil {
- m.Messages = make([]LogMessage, len(o.Messages))
- for i := range m.Messages {
- github_com_docker_swarmkit_api_deepcopy.Copy(&m.Messages[i], &o.Messages[i])
- }
- }
- }
- func (m *PublishLogsResponse) Copy() *PublishLogsResponse {
- if m == nil {
- return nil
- }
- o := &PublishLogsResponse{}
- o.CopyFrom(m)
- return o
- }
- func (m *PublishLogsResponse) CopyFrom(src interface{}) {}
- // Reference imports to suppress errors if they are not otherwise used.
- var _ context.Context
- var _ grpc.ClientConn
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the grpc package it is being compiled against.
- const _ = grpc.SupportPackageIsVersion4
- // Client API for Logs service
- type LogsClient interface {
- // SubscribeLogs starts a subscription with the specified selector and options.
- //
- // The subscription will be distributed to relevant nodes and messages will
- // be collected and sent via the returned stream.
- //
- // The subscription will end with an EOF.
- SubscribeLogs(ctx context.Context, in *SubscribeLogsRequest, opts ...grpc.CallOption) (Logs_SubscribeLogsClient, error)
- }
- type logsClient struct {
- cc *grpc.ClientConn
- }
- func NewLogsClient(cc *grpc.ClientConn) LogsClient {
- return &logsClient{cc}
- }
- func (c *logsClient) SubscribeLogs(ctx context.Context, in *SubscribeLogsRequest, opts ...grpc.CallOption) (Logs_SubscribeLogsClient, error) {
- stream, err := grpc.NewClientStream(ctx, &_Logs_serviceDesc.Streams[0], c.cc, "/docker.swarmkit.v1.Logs/SubscribeLogs", opts...)
- if err != nil {
- return nil, err
- }
- x := &logsSubscribeLogsClient{stream}
- if err := x.ClientStream.SendMsg(in); err != nil {
- return nil, err
- }
- if err := x.ClientStream.CloseSend(); err != nil {
- return nil, err
- }
- return x, nil
- }
- type Logs_SubscribeLogsClient interface {
- Recv() (*SubscribeLogsMessage, error)
- grpc.ClientStream
- }
- type logsSubscribeLogsClient struct {
- grpc.ClientStream
- }
- func (x *logsSubscribeLogsClient) Recv() (*SubscribeLogsMessage, error) {
- m := new(SubscribeLogsMessage)
- if err := x.ClientStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
- }
- // Server API for Logs service
- type LogsServer interface {
- // SubscribeLogs starts a subscription with the specified selector and options.
- //
- // The subscription will be distributed to relevant nodes and messages will
- // be collected and sent via the returned stream.
- //
- // The subscription will end with an EOF.
- SubscribeLogs(*SubscribeLogsRequest, Logs_SubscribeLogsServer) error
- }
- func RegisterLogsServer(s *grpc.Server, srv LogsServer) {
- s.RegisterService(&_Logs_serviceDesc, srv)
- }
- func _Logs_SubscribeLogs_Handler(srv interface{}, stream grpc.ServerStream) error {
- m := new(SubscribeLogsRequest)
- if err := stream.RecvMsg(m); err != nil {
- return err
- }
- return srv.(LogsServer).SubscribeLogs(m, &logsSubscribeLogsServer{stream})
- }
- type Logs_SubscribeLogsServer interface {
- Send(*SubscribeLogsMessage) error
- grpc.ServerStream
- }
- type logsSubscribeLogsServer struct {
- grpc.ServerStream
- }
- func (x *logsSubscribeLogsServer) Send(m *SubscribeLogsMessage) error {
- return x.ServerStream.SendMsg(m)
- }
- var _Logs_serviceDesc = grpc.ServiceDesc{
- ServiceName: "docker.swarmkit.v1.Logs",
- HandlerType: (*LogsServer)(nil),
- Methods: []grpc.MethodDesc{},
- Streams: []grpc.StreamDesc{
- {
- StreamName: "SubscribeLogs",
- Handler: _Logs_SubscribeLogs_Handler,
- ServerStreams: true,
- },
- },
- Metadata: "github.com/docker/swarmkit/api/logbroker.proto",
- }
- // Client API for LogBroker service
- type LogBrokerClient interface {
- // ListenSubscriptions starts a subscription stream for the node. For each
- // message received, the node should attempt to satisfy the subscription.
- //
- // Log messages that match the provided subscription should be sent via
- // PublishLogs.
- ListenSubscriptions(ctx context.Context, in *ListenSubscriptionsRequest, opts ...grpc.CallOption) (LogBroker_ListenSubscriptionsClient, error)
- // PublishLogs receives sets of log messages destined for a single
- // subscription identifier.
- PublishLogs(ctx context.Context, opts ...grpc.CallOption) (LogBroker_PublishLogsClient, error)
- }
- type logBrokerClient struct {
- cc *grpc.ClientConn
- }
- func NewLogBrokerClient(cc *grpc.ClientConn) LogBrokerClient {
- return &logBrokerClient{cc}
- }
- func (c *logBrokerClient) ListenSubscriptions(ctx context.Context, in *ListenSubscriptionsRequest, opts ...grpc.CallOption) (LogBroker_ListenSubscriptionsClient, error) {
- stream, err := grpc.NewClientStream(ctx, &_LogBroker_serviceDesc.Streams[0], c.cc, "/docker.swarmkit.v1.LogBroker/ListenSubscriptions", opts...)
- if err != nil {
- return nil, err
- }
- x := &logBrokerListenSubscriptionsClient{stream}
- if err := x.ClientStream.SendMsg(in); err != nil {
- return nil, err
- }
- if err := x.ClientStream.CloseSend(); err != nil {
- return nil, err
- }
- return x, nil
- }
- type LogBroker_ListenSubscriptionsClient interface {
- Recv() (*SubscriptionMessage, error)
- grpc.ClientStream
- }
- type logBrokerListenSubscriptionsClient struct {
- grpc.ClientStream
- }
- func (x *logBrokerListenSubscriptionsClient) Recv() (*SubscriptionMessage, error) {
- m := new(SubscriptionMessage)
- if err := x.ClientStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
- }
- func (c *logBrokerClient) PublishLogs(ctx context.Context, opts ...grpc.CallOption) (LogBroker_PublishLogsClient, error) {
- stream, err := grpc.NewClientStream(ctx, &_LogBroker_serviceDesc.Streams[1], c.cc, "/docker.swarmkit.v1.LogBroker/PublishLogs", opts...)
- if err != nil {
- return nil, err
- }
- x := &logBrokerPublishLogsClient{stream}
- return x, nil
- }
- type LogBroker_PublishLogsClient interface {
- Send(*PublishLogsMessage) error
- CloseAndRecv() (*PublishLogsResponse, error)
- grpc.ClientStream
- }
- type logBrokerPublishLogsClient struct {
- grpc.ClientStream
- }
- func (x *logBrokerPublishLogsClient) Send(m *PublishLogsMessage) error {
- return x.ClientStream.SendMsg(m)
- }
- func (x *logBrokerPublishLogsClient) CloseAndRecv() (*PublishLogsResponse, error) {
- if err := x.ClientStream.CloseSend(); err != nil {
- return nil, err
- }
- m := new(PublishLogsResponse)
- if err := x.ClientStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
- }
- // Server API for LogBroker service
- type LogBrokerServer interface {
- // ListenSubscriptions starts a subscription stream for the node. For each
- // message received, the node should attempt to satisfy the subscription.
- //
- // Log messages that match the provided subscription should be sent via
- // PublishLogs.
- ListenSubscriptions(*ListenSubscriptionsRequest, LogBroker_ListenSubscriptionsServer) error
- // PublishLogs receives sets of log messages destined for a single
- // subscription identifier.
- PublishLogs(LogBroker_PublishLogsServer) error
- }
- func RegisterLogBrokerServer(s *grpc.Server, srv LogBrokerServer) {
- s.RegisterService(&_LogBroker_serviceDesc, srv)
- }
- func _LogBroker_ListenSubscriptions_Handler(srv interface{}, stream grpc.ServerStream) error {
- m := new(ListenSubscriptionsRequest)
- if err := stream.RecvMsg(m); err != nil {
- return err
- }
- return srv.(LogBrokerServer).ListenSubscriptions(m, &logBrokerListenSubscriptionsServer{stream})
- }
- type LogBroker_ListenSubscriptionsServer interface {
- Send(*SubscriptionMessage) error
- grpc.ServerStream
- }
- type logBrokerListenSubscriptionsServer struct {
- grpc.ServerStream
- }
- func (x *logBrokerListenSubscriptionsServer) Send(m *SubscriptionMessage) error {
- return x.ServerStream.SendMsg(m)
- }
- func _LogBroker_PublishLogs_Handler(srv interface{}, stream grpc.ServerStream) error {
- return srv.(LogBrokerServer).PublishLogs(&logBrokerPublishLogsServer{stream})
- }
- type LogBroker_PublishLogsServer interface {
- SendAndClose(*PublishLogsResponse) error
- Recv() (*PublishLogsMessage, error)
- grpc.ServerStream
- }
- type logBrokerPublishLogsServer struct {
- grpc.ServerStream
- }
- func (x *logBrokerPublishLogsServer) SendAndClose(m *PublishLogsResponse) error {
- return x.ServerStream.SendMsg(m)
- }
- func (x *logBrokerPublishLogsServer) Recv() (*PublishLogsMessage, error) {
- m := new(PublishLogsMessage)
- if err := x.ServerStream.RecvMsg(m); err != nil {
- return nil, err
- }
- return m, nil
- }
- var _LogBroker_serviceDesc = grpc.ServiceDesc{
- ServiceName: "docker.swarmkit.v1.LogBroker",
- HandlerType: (*LogBrokerServer)(nil),
- Methods: []grpc.MethodDesc{},
- Streams: []grpc.StreamDesc{
- {
- StreamName: "ListenSubscriptions",
- Handler: _LogBroker_ListenSubscriptions_Handler,
- ServerStreams: true,
- },
- {
- StreamName: "PublishLogs",
- Handler: _LogBroker_PublishLogs_Handler,
- ClientStreams: true,
- },
- },
- Metadata: "github.com/docker/swarmkit/api/logbroker.proto",
- }
- func (m *LogSubscriptionOptions) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *LogSubscriptionOptions) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.Streams) > 0 {
- for _, num := range m.Streams {
- dAtA[i] = 0x8
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(num))
- }
- }
- if m.Follow {
- dAtA[i] = 0x10
- i++
- if m.Follow {
- dAtA[i] = 1
- } else {
- dAtA[i] = 0
- }
- i++
- }
- if m.Tail != 0 {
- dAtA[i] = 0x18
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Tail))
- }
- if m.Since != nil {
- dAtA[i] = 0x22
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Since.Size()))
- n1, err := m.Since.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n1
- }
- return i, nil
- }
- func (m *LogSelector) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *LogSelector) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.ServiceIDs) > 0 {
- for _, s := range m.ServiceIDs {
- dAtA[i] = 0xa
- i++
- l = len(s)
- for l >= 1<<7 {
- dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
- l >>= 7
- i++
- }
- dAtA[i] = uint8(l)
- i++
- i += copy(dAtA[i:], s)
- }
- }
- if len(m.NodeIDs) > 0 {
- for _, s := range m.NodeIDs {
- dAtA[i] = 0x12
- i++
- l = len(s)
- for l >= 1<<7 {
- dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
- l >>= 7
- i++
- }
- dAtA[i] = uint8(l)
- i++
- i += copy(dAtA[i:], s)
- }
- }
- if len(m.TaskIDs) > 0 {
- for _, s := range m.TaskIDs {
- dAtA[i] = 0x1a
- i++
- l = len(s)
- for l >= 1<<7 {
- dAtA[i] = uint8(uint64(l)&0x7f | 0x80)
- l >>= 7
- i++
- }
- dAtA[i] = uint8(l)
- i++
- i += copy(dAtA[i:], s)
- }
- }
- return i, nil
- }
- func (m *LogContext) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *LogContext) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.ServiceID) > 0 {
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.ServiceID)))
- i += copy(dAtA[i:], m.ServiceID)
- }
- if len(m.NodeID) > 0 {
- dAtA[i] = 0x12
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.NodeID)))
- i += copy(dAtA[i:], m.NodeID)
- }
- if len(m.TaskID) > 0 {
- dAtA[i] = 0x1a
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.TaskID)))
- i += copy(dAtA[i:], m.TaskID)
- }
- return i, nil
- }
- func (m *LogAttr) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *LogAttr) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.Key) > 0 {
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.Key)))
- i += copy(dAtA[i:], m.Key)
- }
- if len(m.Value) > 0 {
- dAtA[i] = 0x12
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.Value)))
- i += copy(dAtA[i:], m.Value)
- }
- return i, nil
- }
- func (m *LogMessage) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *LogMessage) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Context.Size()))
- n2, err := m.Context.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n2
- if m.Timestamp != nil {
- dAtA[i] = 0x12
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Timestamp.Size()))
- n3, err := m.Timestamp.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n3
- }
- if m.Stream != 0 {
- dAtA[i] = 0x18
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Stream))
- }
- if len(m.Data) > 0 {
- dAtA[i] = 0x22
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.Data)))
- i += copy(dAtA[i:], m.Data)
- }
- if len(m.Attrs) > 0 {
- for _, msg := range m.Attrs {
- dAtA[i] = 0x2a
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(msg.Size()))
- n, err := msg.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n
- }
- }
- return i, nil
- }
- func (m *SubscribeLogsRequest) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *SubscribeLogsRequest) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if m.Selector != nil {
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Selector.Size()))
- n4, err := m.Selector.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n4
- }
- if m.Options != nil {
- dAtA[i] = 0x12
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Options.Size()))
- n5, err := m.Options.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n5
- }
- return i, nil
- }
- func (m *SubscribeLogsMessage) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *SubscribeLogsMessage) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.Messages) > 0 {
- for _, msg := range m.Messages {
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(msg.Size()))
- n, err := msg.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n
- }
- }
- return i, nil
- }
- func (m *ListenSubscriptionsRequest) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *ListenSubscriptionsRequest) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- return i, nil
- }
- func (m *SubscriptionMessage) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *SubscriptionMessage) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.ID) > 0 {
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.ID)))
- i += copy(dAtA[i:], m.ID)
- }
- if m.Selector != nil {
- dAtA[i] = 0x12
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Selector.Size()))
- n6, err := m.Selector.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n6
- }
- if m.Options != nil {
- dAtA[i] = 0x1a
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(m.Options.Size()))
- n7, err := m.Options.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n7
- }
- if m.Close {
- dAtA[i] = 0x20
- i++
- if m.Close {
- dAtA[i] = 1
- } else {
- dAtA[i] = 0
- }
- i++
- }
- return i, nil
- }
- func (m *PublishLogsMessage) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *PublishLogsMessage) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- if len(m.SubscriptionID) > 0 {
- dAtA[i] = 0xa
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(len(m.SubscriptionID)))
- i += copy(dAtA[i:], m.SubscriptionID)
- }
- if len(m.Messages) > 0 {
- for _, msg := range m.Messages {
- dAtA[i] = 0x12
- i++
- i = encodeVarintLogbroker(dAtA, i, uint64(msg.Size()))
- n, err := msg.MarshalTo(dAtA[i:])
- if err != nil {
- return 0, err
- }
- i += n
- }
- }
- if m.Close {
- dAtA[i] = 0x18
- i++
- if m.Close {
- dAtA[i] = 1
- } else {
- dAtA[i] = 0
- }
- i++
- }
- return i, nil
- }
- func (m *PublishLogsResponse) Marshal() (dAtA []byte, err error) {
- size := m.Size()
- dAtA = make([]byte, size)
- n, err := m.MarshalTo(dAtA)
- if err != nil {
- return nil, err
- }
- return dAtA[:n], nil
- }
- func (m *PublishLogsResponse) MarshalTo(dAtA []byte) (int, error) {
- var i int
- _ = i
- var l int
- _ = l
- return i, nil
- }
- func encodeFixed64Logbroker(dAtA []byte, offset int, v uint64) int {
- dAtA[offset] = uint8(v)
- dAtA[offset+1] = uint8(v >> 8)
- dAtA[offset+2] = uint8(v >> 16)
- dAtA[offset+3] = uint8(v >> 24)
- dAtA[offset+4] = uint8(v >> 32)
- dAtA[offset+5] = uint8(v >> 40)
- dAtA[offset+6] = uint8(v >> 48)
- dAtA[offset+7] = uint8(v >> 56)
- return offset + 8
- }
- func encodeFixed32Logbroker(dAtA []byte, offset int, v uint32) int {
- dAtA[offset] = uint8(v)
- dAtA[offset+1] = uint8(v >> 8)
- dAtA[offset+2] = uint8(v >> 16)
- dAtA[offset+3] = uint8(v >> 24)
- return offset + 4
- }
- func encodeVarintLogbroker(dAtA []byte, offset int, v uint64) int {
- for v >= 1<<7 {
- dAtA[offset] = uint8(v&0x7f | 0x80)
- v >>= 7
- offset++
- }
- dAtA[offset] = uint8(v)
- return offset + 1
- }
- type raftProxyLogsServer struct {
- local LogsServer
- connSelector raftselector.ConnProvider
- localCtxMods, remoteCtxMods []func(context.Context) (context.Context, error)
- }
- func NewRaftProxyLogsServer(local LogsServer, connSelector raftselector.ConnProvider, localCtxMod, remoteCtxMod func(context.Context) (context.Context, error)) LogsServer {
- redirectChecker := func(ctx context.Context) (context.Context, error) {
- s, ok := transport.StreamFromContext(ctx)
- if !ok {
- return ctx, grpc.Errorf(codes.InvalidArgument, "remote addr is not found in context")
- }
- addr := s.ServerTransport().RemoteAddr().String()
- md, ok := metadata.FromContext(ctx)
- if ok && len(md["redirect"]) != 0 {
- return ctx, grpc.Errorf(codes.ResourceExhausted, "more than one redirect to leader from: %s", md["redirect"])
- }
- if !ok {
- md = metadata.New(map[string]string{})
- }
- md["redirect"] = append(md["redirect"], addr)
- return metadata.NewContext(ctx, md), nil
- }
- remoteMods := []func(context.Context) (context.Context, error){redirectChecker}
- remoteMods = append(remoteMods, remoteCtxMod)
- var localMods []func(context.Context) (context.Context, error)
- if localCtxMod != nil {
- localMods = []func(context.Context) (context.Context, error){localCtxMod}
- }
- return &raftProxyLogsServer{
- local: local,
- connSelector: connSelector,
- localCtxMods: localMods,
- remoteCtxMods: remoteMods,
- }
- }
- func (p *raftProxyLogsServer) runCtxMods(ctx context.Context, ctxMods []func(context.Context) (context.Context, error)) (context.Context, error) {
- var err error
- for _, mod := range ctxMods {
- ctx, err = mod(ctx)
- if err != nil {
- return ctx, err
- }
- }
- return ctx, nil
- }
- func (p *raftProxyLogsServer) pollNewLeaderConn(ctx context.Context) (*grpc.ClientConn, error) {
- ticker := rafttime.NewTicker(500 * rafttime.Millisecond)
- defer ticker.Stop()
- for {
- select {
- case <-ticker.C:
- conn, err := p.connSelector.LeaderConn(ctx)
- if err != nil {
- return nil, err
- }
- client := NewHealthClient(conn)
- resp, err := client.Check(ctx, &HealthCheckRequest{Service: "Raft"})
- if err != nil || resp.Status != HealthCheckResponse_SERVING {
- continue
- }
- return conn, nil
- case <-ctx.Done():
- return nil, ctx.Err()
- }
- }
- }
- type Logs_SubscribeLogsServerWrapper struct {
- Logs_SubscribeLogsServer
- ctx context.Context
- }
- func (s Logs_SubscribeLogsServerWrapper) Context() context.Context {
- return s.ctx
- }
- func (p *raftProxyLogsServer) SubscribeLogs(r *SubscribeLogsRequest, stream Logs_SubscribeLogsServer) error {
- ctx := stream.Context()
- conn, err := p.connSelector.LeaderConn(ctx)
- if err != nil {
- if err == raftselector.ErrIsLeader {
- ctx, err = p.runCtxMods(ctx, p.localCtxMods)
- if err != nil {
- return err
- }
- streamWrapper := Logs_SubscribeLogsServerWrapper{
- Logs_SubscribeLogsServer: stream,
- ctx: ctx,
- }
- return p.local.SubscribeLogs(r, streamWrapper)
- }
- return err
- }
- ctx, err = p.runCtxMods(ctx, p.remoteCtxMods)
- if err != nil {
- return err
- }
- clientStream, err := NewLogsClient(conn).SubscribeLogs(ctx, r)
- if err != nil {
- return err
- }
- for {
- msg, err := clientStream.Recv()
- if err == io.EOF {
- break
- }
- if err != nil {
- return err
- }
- if err := stream.Send(msg); err != nil {
- return err
- }
- }
- return nil
- }
- type raftProxyLogBrokerServer struct {
- local LogBrokerServer
- connSelector raftselector.ConnProvider
- localCtxMods, remoteCtxMods []func(context.Context) (context.Context, error)
- }
- func NewRaftProxyLogBrokerServer(local LogBrokerServer, connSelector raftselector.ConnProvider, localCtxMod, remoteCtxMod func(context.Context) (context.Context, error)) LogBrokerServer {
- redirectChecker := func(ctx context.Context) (context.Context, error) {
- s, ok := transport.StreamFromContext(ctx)
- if !ok {
- return ctx, grpc.Errorf(codes.InvalidArgument, "remote addr is not found in context")
- }
- addr := s.ServerTransport().RemoteAddr().String()
- md, ok := metadata.FromContext(ctx)
- if ok && len(md["redirect"]) != 0 {
- return ctx, grpc.Errorf(codes.ResourceExhausted, "more than one redirect to leader from: %s", md["redirect"])
- }
- if !ok {
- md = metadata.New(map[string]string{})
- }
- md["redirect"] = append(md["redirect"], addr)
- return metadata.NewContext(ctx, md), nil
- }
- remoteMods := []func(context.Context) (context.Context, error){redirectChecker}
- remoteMods = append(remoteMods, remoteCtxMod)
- var localMods []func(context.Context) (context.Context, error)
- if localCtxMod != nil {
- localMods = []func(context.Context) (context.Context, error){localCtxMod}
- }
- return &raftProxyLogBrokerServer{
- local: local,
- connSelector: connSelector,
- localCtxMods: localMods,
- remoteCtxMods: remoteMods,
- }
- }
- func (p *raftProxyLogBrokerServer) runCtxMods(ctx context.Context, ctxMods []func(context.Context) (context.Context, error)) (context.Context, error) {
- var err error
- for _, mod := range ctxMods {
- ctx, err = mod(ctx)
- if err != nil {
- return ctx, err
- }
- }
- return ctx, nil
- }
- func (p *raftProxyLogBrokerServer) pollNewLeaderConn(ctx context.Context) (*grpc.ClientConn, error) {
- ticker := rafttime.NewTicker(500 * rafttime.Millisecond)
- defer ticker.Stop()
- for {
- select {
- case <-ticker.C:
- conn, err := p.connSelector.LeaderConn(ctx)
- if err != nil {
- return nil, err
- }
- client := NewHealthClient(conn)
- resp, err := client.Check(ctx, &HealthCheckRequest{Service: "Raft"})
- if err != nil || resp.Status != HealthCheckResponse_SERVING {
- continue
- }
- return conn, nil
- case <-ctx.Done():
- return nil, ctx.Err()
- }
- }
- }
- type LogBroker_ListenSubscriptionsServerWrapper struct {
- LogBroker_ListenSubscriptionsServer
- ctx context.Context
- }
- func (s LogBroker_ListenSubscriptionsServerWrapper) Context() context.Context {
- return s.ctx
- }
- func (p *raftProxyLogBrokerServer) ListenSubscriptions(r *ListenSubscriptionsRequest, stream LogBroker_ListenSubscriptionsServer) error {
- ctx := stream.Context()
- conn, err := p.connSelector.LeaderConn(ctx)
- if err != nil {
- if err == raftselector.ErrIsLeader {
- ctx, err = p.runCtxMods(ctx, p.localCtxMods)
- if err != nil {
- return err
- }
- streamWrapper := LogBroker_ListenSubscriptionsServerWrapper{
- LogBroker_ListenSubscriptionsServer: stream,
- ctx: ctx,
- }
- return p.local.ListenSubscriptions(r, streamWrapper)
- }
- return err
- }
- ctx, err = p.runCtxMods(ctx, p.remoteCtxMods)
- if err != nil {
- return err
- }
- clientStream, err := NewLogBrokerClient(conn).ListenSubscriptions(ctx, r)
- if err != nil {
- return err
- }
- for {
- msg, err := clientStream.Recv()
- if err == io.EOF {
- break
- }
- if err != nil {
- return err
- }
- if err := stream.Send(msg); err != nil {
- return err
- }
- }
- return nil
- }
- type LogBroker_PublishLogsServerWrapper struct {
- LogBroker_PublishLogsServer
- ctx context.Context
- }
- func (s LogBroker_PublishLogsServerWrapper) Context() context.Context {
- return s.ctx
- }
- func (p *raftProxyLogBrokerServer) PublishLogs(stream LogBroker_PublishLogsServer) error {
- ctx := stream.Context()
- conn, err := p.connSelector.LeaderConn(ctx)
- if err != nil {
- if err == raftselector.ErrIsLeader {
- ctx, err = p.runCtxMods(ctx, p.localCtxMods)
- if err != nil {
- return err
- }
- streamWrapper := LogBroker_PublishLogsServerWrapper{
- LogBroker_PublishLogsServer: stream,
- ctx: ctx,
- }
- return p.local.PublishLogs(streamWrapper)
- }
- return err
- }
- ctx, err = p.runCtxMods(ctx, p.remoteCtxMods)
- if err != nil {
- return err
- }
- clientStream, err := NewLogBrokerClient(conn).PublishLogs(ctx)
- if err != nil {
- return err
- }
- for {
- msg, err := stream.Recv()
- if err == io.EOF {
- break
- }
- if err != nil {
- return err
- }
- if err := clientStream.Send(msg); err != nil {
- return err
- }
- }
- reply, err := clientStream.CloseAndRecv()
- if err != nil {
- return err
- }
- return stream.SendAndClose(reply)
- }
- func (m *LogSubscriptionOptions) Size() (n int) {
- var l int
- _ = l
- if len(m.Streams) > 0 {
- for _, e := range m.Streams {
- n += 1 + sovLogbroker(uint64(e))
- }
- }
- if m.Follow {
- n += 2
- }
- if m.Tail != 0 {
- n += 1 + sovLogbroker(uint64(m.Tail))
- }
- if m.Since != nil {
- l = m.Since.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- return n
- }
- func (m *LogSelector) Size() (n int) {
- var l int
- _ = l
- if len(m.ServiceIDs) > 0 {
- for _, s := range m.ServiceIDs {
- l = len(s)
- n += 1 + l + sovLogbroker(uint64(l))
- }
- }
- if len(m.NodeIDs) > 0 {
- for _, s := range m.NodeIDs {
- l = len(s)
- n += 1 + l + sovLogbroker(uint64(l))
- }
- }
- if len(m.TaskIDs) > 0 {
- for _, s := range m.TaskIDs {
- l = len(s)
- n += 1 + l + sovLogbroker(uint64(l))
- }
- }
- return n
- }
- func (m *LogContext) Size() (n int) {
- var l int
- _ = l
- l = len(m.ServiceID)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- l = len(m.NodeID)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- l = len(m.TaskID)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- return n
- }
- func (m *LogAttr) Size() (n int) {
- var l int
- _ = l
- l = len(m.Key)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- l = len(m.Value)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- return n
- }
- func (m *LogMessage) Size() (n int) {
- var l int
- _ = l
- l = m.Context.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- if m.Timestamp != nil {
- l = m.Timestamp.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if m.Stream != 0 {
- n += 1 + sovLogbroker(uint64(m.Stream))
- }
- l = len(m.Data)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if len(m.Attrs) > 0 {
- for _, e := range m.Attrs {
- l = e.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- }
- return n
- }
- func (m *SubscribeLogsRequest) Size() (n int) {
- var l int
- _ = l
- if m.Selector != nil {
- l = m.Selector.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if m.Options != nil {
- l = m.Options.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- return n
- }
- func (m *SubscribeLogsMessage) Size() (n int) {
- var l int
- _ = l
- if len(m.Messages) > 0 {
- for _, e := range m.Messages {
- l = e.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- }
- return n
- }
- func (m *ListenSubscriptionsRequest) Size() (n int) {
- var l int
- _ = l
- return n
- }
- func (m *SubscriptionMessage) Size() (n int) {
- var l int
- _ = l
- l = len(m.ID)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if m.Selector != nil {
- l = m.Selector.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if m.Options != nil {
- l = m.Options.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if m.Close {
- n += 2
- }
- return n
- }
- func (m *PublishLogsMessage) Size() (n int) {
- var l int
- _ = l
- l = len(m.SubscriptionID)
- if l > 0 {
- n += 1 + l + sovLogbroker(uint64(l))
- }
- if len(m.Messages) > 0 {
- for _, e := range m.Messages {
- l = e.Size()
- n += 1 + l + sovLogbroker(uint64(l))
- }
- }
- if m.Close {
- n += 2
- }
- return n
- }
- func (m *PublishLogsResponse) Size() (n int) {
- var l int
- _ = l
- return n
- }
- func sovLogbroker(x uint64) (n int) {
- for {
- n++
- x >>= 7
- if x == 0 {
- break
- }
- }
- return n
- }
- func sozLogbroker(x uint64) (n int) {
- return sovLogbroker(uint64((x << 1) ^ uint64((int64(x) >> 63))))
- }
- func (this *LogSubscriptionOptions) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&LogSubscriptionOptions{`,
- `Streams:` + fmt.Sprintf("%v", this.Streams) + `,`,
- `Follow:` + fmt.Sprintf("%v", this.Follow) + `,`,
- `Tail:` + fmt.Sprintf("%v", this.Tail) + `,`,
- `Since:` + strings.Replace(fmt.Sprintf("%v", this.Since), "Timestamp", "google_protobuf.Timestamp", 1) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *LogSelector) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&LogSelector{`,
- `ServiceIDs:` + fmt.Sprintf("%v", this.ServiceIDs) + `,`,
- `NodeIDs:` + fmt.Sprintf("%v", this.NodeIDs) + `,`,
- `TaskIDs:` + fmt.Sprintf("%v", this.TaskIDs) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *LogContext) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&LogContext{`,
- `ServiceID:` + fmt.Sprintf("%v", this.ServiceID) + `,`,
- `NodeID:` + fmt.Sprintf("%v", this.NodeID) + `,`,
- `TaskID:` + fmt.Sprintf("%v", this.TaskID) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *LogAttr) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&LogAttr{`,
- `Key:` + fmt.Sprintf("%v", this.Key) + `,`,
- `Value:` + fmt.Sprintf("%v", this.Value) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *LogMessage) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&LogMessage{`,
- `Context:` + strings.Replace(strings.Replace(this.Context.String(), "LogContext", "LogContext", 1), `&`, ``, 1) + `,`,
- `Timestamp:` + strings.Replace(fmt.Sprintf("%v", this.Timestamp), "Timestamp", "google_protobuf.Timestamp", 1) + `,`,
- `Stream:` + fmt.Sprintf("%v", this.Stream) + `,`,
- `Data:` + fmt.Sprintf("%v", this.Data) + `,`,
- `Attrs:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Attrs), "LogAttr", "LogAttr", 1), `&`, ``, 1) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *SubscribeLogsRequest) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&SubscribeLogsRequest{`,
- `Selector:` + strings.Replace(fmt.Sprintf("%v", this.Selector), "LogSelector", "LogSelector", 1) + `,`,
- `Options:` + strings.Replace(fmt.Sprintf("%v", this.Options), "LogSubscriptionOptions", "LogSubscriptionOptions", 1) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *SubscribeLogsMessage) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&SubscribeLogsMessage{`,
- `Messages:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Messages), "LogMessage", "LogMessage", 1), `&`, ``, 1) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *ListenSubscriptionsRequest) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&ListenSubscriptionsRequest{`,
- `}`,
- }, "")
- return s
- }
- func (this *SubscriptionMessage) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&SubscriptionMessage{`,
- `ID:` + fmt.Sprintf("%v", this.ID) + `,`,
- `Selector:` + strings.Replace(fmt.Sprintf("%v", this.Selector), "LogSelector", "LogSelector", 1) + `,`,
- `Options:` + strings.Replace(fmt.Sprintf("%v", this.Options), "LogSubscriptionOptions", "LogSubscriptionOptions", 1) + `,`,
- `Close:` + fmt.Sprintf("%v", this.Close) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *PublishLogsMessage) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&PublishLogsMessage{`,
- `SubscriptionID:` + fmt.Sprintf("%v", this.SubscriptionID) + `,`,
- `Messages:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Messages), "LogMessage", "LogMessage", 1), `&`, ``, 1) + `,`,
- `Close:` + fmt.Sprintf("%v", this.Close) + `,`,
- `}`,
- }, "")
- return s
- }
- func (this *PublishLogsResponse) String() string {
- if this == nil {
- return "nil"
- }
- s := strings.Join([]string{`&PublishLogsResponse{`,
- `}`,
- }, "")
- return s
- }
- func valueToStringLogbroker(v interface{}) string {
- rv := reflect.ValueOf(v)
- if rv.IsNil() {
- return "nil"
- }
- pv := reflect.Indirect(rv).Interface()
- return fmt.Sprintf("*%v", pv)
- }
- func (m *LogSubscriptionOptions) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: LogSubscriptionOptions: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: LogSubscriptionOptions: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType == 0 {
- var v LogStream
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (LogStream(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Streams = append(m.Streams, v)
- } else if wireType == 2 {
- var packedLen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- packedLen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if packedLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + packedLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- for iNdEx < postIndex {
- var v LogStream
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (LogStream(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Streams = append(m.Streams, v)
- }
- } else {
- return fmt.Errorf("proto: wrong wireType = %d for field Streams", wireType)
- }
- case 2:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Follow", wireType)
- }
- var v int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Follow = bool(v != 0)
- case 3:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Tail", wireType)
- }
- m.Tail = 0
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- m.Tail |= (int64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- case 4:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Since", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Since == nil {
- m.Since = &google_protobuf.Timestamp{}
- }
- if err := m.Since.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *LogSelector) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: LogSelector: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: LogSelector: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field ServiceIDs", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.ServiceIDs = append(m.ServiceIDs, string(dAtA[iNdEx:postIndex]))
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field NodeIDs", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.NodeIDs = append(m.NodeIDs, string(dAtA[iNdEx:postIndex]))
- iNdEx = postIndex
- case 3:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field TaskIDs", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.TaskIDs = append(m.TaskIDs, string(dAtA[iNdEx:postIndex]))
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *LogContext) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: LogContext: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: LogContext: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field ServiceID", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.ServiceID = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field NodeID", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.NodeID = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- case 3:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field TaskID", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.TaskID = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *LogAttr) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: LogAttr: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: LogAttr: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Key = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Value = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *LogMessage) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: LogMessage: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: LogMessage: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Timestamp == nil {
- m.Timestamp = &google_protobuf.Timestamp{}
- }
- if err := m.Timestamp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 3:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Stream", wireType)
- }
- m.Stream = 0
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- m.Stream |= (LogStream(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- case 4:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
- }
- var byteLen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- byteLen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if byteLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + byteLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
- if m.Data == nil {
- m.Data = []byte{}
- }
- iNdEx = postIndex
- case 5:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Attrs", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Attrs = append(m.Attrs, LogAttr{})
- if err := m.Attrs[len(m.Attrs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *SubscribeLogsRequest) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: SubscribeLogsRequest: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: SubscribeLogsRequest: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Selector", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Selector == nil {
- m.Selector = &LogSelector{}
- }
- if err := m.Selector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Options", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Options == nil {
- m.Options = &LogSubscriptionOptions{}
- }
- if err := m.Options.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *SubscribeLogsMessage) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: SubscribeLogsMessage: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: SubscribeLogsMessage: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Messages", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Messages = append(m.Messages, LogMessage{})
- if err := m.Messages[len(m.Messages)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *ListenSubscriptionsRequest) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: ListenSubscriptionsRequest: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: ListenSubscriptionsRequest: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *SubscriptionMessage) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: SubscriptionMessage: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: SubscriptionMessage: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.ID = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Selector", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Selector == nil {
- m.Selector = &LogSelector{}
- }
- if err := m.Selector.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 3:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Options", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- if m.Options == nil {
- m.Options = &LogSubscriptionOptions{}
- }
- if err := m.Options.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 4:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Close", wireType)
- }
- var v int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Close = bool(v != 0)
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *PublishLogsMessage) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: PublishLogsMessage: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: PublishLogsMessage: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- case 1:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field SubscriptionID", wireType)
- }
- var stringLen uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- stringLen |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- intStringLen := int(stringLen)
- if intStringLen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + intStringLen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.SubscriptionID = string(dAtA[iNdEx:postIndex])
- iNdEx = postIndex
- case 2:
- if wireType != 2 {
- return fmt.Errorf("proto: wrong wireType = %d for field Messages", wireType)
- }
- var msglen int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- msglen |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- if msglen < 0 {
- return ErrInvalidLengthLogbroker
- }
- postIndex := iNdEx + msglen
- if postIndex > l {
- return io.ErrUnexpectedEOF
- }
- m.Messages = append(m.Messages, LogMessage{})
- if err := m.Messages[len(m.Messages)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
- return err
- }
- iNdEx = postIndex
- case 3:
- if wireType != 0 {
- return fmt.Errorf("proto: wrong wireType = %d for field Close", wireType)
- }
- var v int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- v |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- m.Close = bool(v != 0)
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func (m *PublishLogsResponse) Unmarshal(dAtA []byte) error {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- preIndex := iNdEx
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- fieldNum := int32(wire >> 3)
- wireType := int(wire & 0x7)
- if wireType == 4 {
- return fmt.Errorf("proto: PublishLogsResponse: wiretype end group for non-group")
- }
- if fieldNum <= 0 {
- return fmt.Errorf("proto: PublishLogsResponse: illegal tag %d (wire type %d)", fieldNum, wire)
- }
- switch fieldNum {
- default:
- iNdEx = preIndex
- skippy, err := skipLogbroker(dAtA[iNdEx:])
- if err != nil {
- return err
- }
- if skippy < 0 {
- return ErrInvalidLengthLogbroker
- }
- if (iNdEx + skippy) > l {
- return io.ErrUnexpectedEOF
- }
- iNdEx += skippy
- }
- }
- if iNdEx > l {
- return io.ErrUnexpectedEOF
- }
- return nil
- }
- func skipLogbroker(dAtA []byte) (n int, err error) {
- l := len(dAtA)
- iNdEx := 0
- for iNdEx < l {
- var wire uint64
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- wire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- wireType := int(wire & 0x7)
- switch wireType {
- case 0:
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- iNdEx++
- if dAtA[iNdEx-1] < 0x80 {
- break
- }
- }
- return iNdEx, nil
- case 1:
- iNdEx += 8
- return iNdEx, nil
- case 2:
- var length int
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- length |= (int(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- iNdEx += length
- if length < 0 {
- return 0, ErrInvalidLengthLogbroker
- }
- return iNdEx, nil
- case 3:
- for {
- var innerWire uint64
- var start int = iNdEx
- for shift := uint(0); ; shift += 7 {
- if shift >= 64 {
- return 0, ErrIntOverflowLogbroker
- }
- if iNdEx >= l {
- return 0, io.ErrUnexpectedEOF
- }
- b := dAtA[iNdEx]
- iNdEx++
- innerWire |= (uint64(b) & 0x7F) << shift
- if b < 0x80 {
- break
- }
- }
- innerWireType := int(innerWire & 0x7)
- if innerWireType == 4 {
- break
- }
- next, err := skipLogbroker(dAtA[start:])
- if err != nil {
- return 0, err
- }
- iNdEx = start + next
- }
- return iNdEx, nil
- case 4:
- return iNdEx, nil
- case 5:
- iNdEx += 4
- return iNdEx, nil
- default:
- return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
- }
- }
- panic("unreachable")
- }
- var (
- ErrInvalidLengthLogbroker = fmt.Errorf("proto: negative length found during unmarshaling")
- ErrIntOverflowLogbroker = fmt.Errorf("proto: integer overflow")
- )
- func init() {
- proto.RegisterFile("github.com/docker/swarmkit/api/logbroker.proto", fileDescriptorLogbroker)
- }
- var fileDescriptorLogbroker = []byte{
- // 966 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0x41, 0x6f, 0x1b, 0x45,
- 0x14, 0xc7, 0x3d, 0xeb, 0xc4, 0x8e, 0x9f, 0x9b, 0xc4, 0x9d, 0xa4, 0x91, 0x65, 0xa8, 0x6d, 0x6d,
- 0xa5, 0x62, 0x45, 0x65, 0xdd, 0x1a, 0xa1, 0x22, 0x45, 0x42, 0xd4, 0xb8, 0x42, 0x16, 0x6e, 0x82,
- 0xc6, 0x8e, 0xe0, 0x16, 0xad, 0xbd, 0xd3, 0xed, 0xca, 0xeb, 0x1d, 0xb3, 0x33, 0x4e, 0x40, 0xe2,
- 0xc0, 0xa1, 0x48, 0x28, 0x07, 0x6e, 0x48, 0x70, 0xe8, 0x89, 0x5e, 0x10, 0x12, 0x17, 0x6e, 0x7c,
- 0x00, 0x14, 0x71, 0xe2, 0xc8, 0xc9, 0xa2, 0xfb, 0x01, 0xf8, 0x0c, 0x68, 0x67, 0xd6, 0xeb, 0x0d,
- 0xb6, 0x53, 0x54, 0x2e, 0xf6, 0x8c, 0xe7, 0xf7, 0xf6, 0xfd, 0xdf, 0x7f, 0xde, 0x5b, 0x83, 0x61,
- 0x3b, 0xe2, 0xc9, 0xa4, 0x6f, 0x0c, 0xd8, 0xa8, 0x6e, 0xb1, 0xc1, 0x90, 0xfa, 0x75, 0x7e, 0x66,
- 0xfa, 0xa3, 0xa1, 0x23, 0xea, 0xe6, 0xd8, 0xa9, 0xbb, 0xcc, 0xee, 0xfb, 0x6c, 0x48, 0x7d, 0x63,
- 0xec, 0x33, 0xc1, 0x30, 0x56, 0x90, 0x31, 0x83, 0x8c, 0xd3, 0x7b, 0xa5, 0x5d, 0x9b, 0xd9, 0x4c,
- 0x1e, 0xd7, 0xc3, 0x95, 0x22, 0x4b, 0x15, 0x9b, 0x31, 0xdb, 0xa5, 0x75, 0xb9, 0xeb, 0x4f, 0x1e,
- 0xd7, 0x85, 0x33, 0xa2, 0x5c, 0x98, 0xa3, 0x71, 0x04, 0xdc, 0xbf, 0x22, 0x75, 0x1c, 0x34, 0x76,
- 0x27, 0xb6, 0xe3, 0x45, 0x5f, 0x2a, 0x50, 0xff, 0x05, 0xc1, 0x5e, 0x87, 0xd9, 0xdd, 0x49, 0x9f,
- 0x0f, 0x7c, 0x67, 0x2c, 0x1c, 0xe6, 0x1d, 0xc9, 0x4f, 0x8e, 0x0f, 0x20, 0xcb, 0x85, 0x4f, 0xcd,
- 0x11, 0x2f, 0xa2, 0x6a, 0xba, 0xb6, 0xd5, 0xb8, 0x69, 0x2c, 0x0a, 0x36, 0xc2, 0x60, 0x49, 0x35,
- 0xb5, 0x42, 0x8a, 0xcc, 0x22, 0xf0, 0x1e, 0x64, 0x1e, 0x33, 0xd7, 0x65, 0x67, 0x45, 0xad, 0x8a,
- 0x6a, 0x1b, 0x24, 0xda, 0x61, 0x0c, 0x6b, 0xc2, 0x74, 0xdc, 0x62, 0xba, 0x8a, 0x6a, 0x69, 0x22,
- 0xd7, 0xf8, 0x2e, 0xac, 0x73, 0xc7, 0x1b, 0xd0, 0xe2, 0x5a, 0x15, 0xd5, 0xf2, 0x8d, 0x92, 0xa1,
- 0xaa, 0x35, 0x66, 0xc2, 0x8d, 0xde, 0xac, 0x5a, 0xa2, 0x40, 0xfd, 0x1b, 0x04, 0xf9, 0x30, 0x31,
- 0x75, 0xe9, 0x40, 0x30, 0x1f, 0xd7, 0x21, 0xcf, 0xa9, 0x7f, 0xea, 0x0c, 0xe8, 0x89, 0x63, 0x29,
- 0xb9, 0xb9, 0xe6, 0x56, 0x30, 0xad, 0x40, 0x57, 0xfd, 0xdc, 0x6e, 0x71, 0x02, 0x11, 0xd2, 0xb6,
- 0x38, 0xbe, 0x0d, 0x1b, 0x1e, 0xb3, 0x14, 0xad, 0x49, 0x3a, 0x1f, 0x4c, 0x2b, 0xd9, 0x43, 0x66,
- 0x49, 0x34, 0x1b, 0x1e, 0x46, 0x9c, 0x30, 0xf9, 0x50, 0x72, 0xe9, 0x39, 0xd7, 0x33, 0xf9, 0x50,
- 0x72, 0xe1, 0x61, 0xdb, 0xe2, 0xfa, 0x53, 0x04, 0xd0, 0x61, 0xf6, 0xfb, 0xcc, 0x13, 0xf4, 0x33,
- 0x81, 0xef, 0x00, 0xcc, 0xf5, 0x14, 0x51, 0x15, 0xd5, 0x72, 0xcd, 0xcd, 0x60, 0x5a, 0xc9, 0xc5,
- 0x72, 0x48, 0x2e, 0x56, 0x83, 0x6f, 0x41, 0x36, 0x12, 0x23, 0xcd, 0xca, 0x35, 0x21, 0x98, 0x56,
- 0x32, 0x4a, 0x0b, 0xc9, 0x28, 0x29, 0x21, 0x14, 0x29, 0x91, 0xde, 0x45, 0x90, 0x12, 0x42, 0x32,
- 0x4a, 0x87, 0x7e, 0x0f, 0xb2, 0x1d, 0x66, 0x3f, 0x10, 0xc2, 0xc7, 0x05, 0x48, 0x0f, 0xe9, 0xe7,
- 0x2a, 0x37, 0x09, 0x97, 0x78, 0x17, 0xd6, 0x4f, 0x4d, 0x77, 0x42, 0x55, 0x12, 0xa2, 0x36, 0xfa,
- 0xb9, 0x26, 0x95, 0x3f, 0xa2, 0x9c, 0x9b, 0x36, 0xc5, 0xef, 0x42, 0x76, 0xa0, 0x8a, 0x90, 0xa1,
- 0xf9, 0x46, 0x79, 0xc5, 0xa5, 0x47, 0xa5, 0x36, 0xd7, 0x2e, 0xa6, 0x95, 0x14, 0x99, 0x05, 0xe1,
- 0x77, 0x20, 0x17, 0xf7, 0xa6, 0x4c, 0x74, 0xf5, 0x7d, 0xce, 0x61, 0xfc, 0x36, 0x64, 0x54, 0xf3,
- 0xc8, 0xfa, 0x5e, 0xd6, 0x6d, 0x24, 0x82, 0xc3, 0x86, 0xb2, 0x4c, 0x61, 0xca, 0xde, 0xb9, 0x46,
- 0xe4, 0x1a, 0xdf, 0x87, 0x75, 0x53, 0x08, 0x9f, 0x17, 0xd7, 0xab, 0xe9, 0x5a, 0xbe, 0xf1, 0xda,
- 0x8a, 0x27, 0x85, 0x3e, 0x45, 0xfa, 0x15, 0xaf, 0x7f, 0x8f, 0x60, 0x37, 0x1a, 0x85, 0x3e, 0xed,
- 0x30, 0x9b, 0x13, 0xfa, 0xe9, 0x84, 0x72, 0x81, 0x0f, 0x60, 0x83, 0x47, 0xcd, 0x16, 0xf9, 0x52,
- 0x59, 0x25, 0x2f, 0xc2, 0x48, 0x1c, 0x80, 0x5b, 0x90, 0x65, 0x6a, 0xa6, 0x22, 0x47, 0xf6, 0x57,
- 0xc5, 0x2e, 0x4e, 0x21, 0x99, 0x85, 0xea, 0x9f, 0xfc, 0x4b, 0xda, 0xec, 0xc6, 0xde, 0x83, 0x8d,
- 0x91, 0x5a, 0xaa, 0xc6, 0x5f, 0x7d, 0x65, 0x51, 0x44, 0x54, 0x72, 0x1c, 0xa5, 0xbf, 0x0e, 0xa5,
- 0x8e, 0xc3, 0x05, 0xf5, 0x92, 0xf9, 0x67, 0xa5, 0xeb, 0xbf, 0x21, 0xd8, 0x49, 0x1e, 0xcc, 0xf2,
- 0xee, 0x81, 0x16, 0xf7, 0x76, 0x26, 0x98, 0x56, 0xb4, 0x76, 0x8b, 0x68, 0x8e, 0x75, 0xc9, 0x2a,
- 0xed, 0x7f, 0x58, 0x95, 0x7e, 0x65, 0xab, 0xc2, 0x4e, 0x1f, 0xb8, 0x8c, 0xab, 0x17, 0xca, 0x06,
- 0x51, 0x1b, 0xfd, 0x47, 0x04, 0xf8, 0xa3, 0x49, 0xdf, 0x75, 0xf8, 0x93, 0xa4, 0x7f, 0x07, 0xb0,
- 0xcd, 0x13, 0x0f, 0x9b, 0x0f, 0x2c, 0x0e, 0xa6, 0x95, 0xad, 0x64, 0x9e, 0x76, 0x8b, 0x6c, 0x25,
- 0xd1, 0xb6, 0x75, 0xc9, 0x7c, 0xed, 0x55, 0xcc, 0x9f, 0x6b, 0x4d, 0x27, 0xb5, 0xde, 0x80, 0x9d,
- 0x84, 0x54, 0x42, 0xf9, 0x98, 0x79, 0x9c, 0xee, 0x3f, 0x47, 0x90, 0x8b, 0x47, 0x00, 0xdf, 0x01,
- 0xdc, 0x39, 0xfa, 0xe0, 0xa4, 0xdb, 0x23, 0x0f, 0x1f, 0x3c, 0x3a, 0x39, 0x3e, 0xfc, 0xf0, 0xf0,
- 0xe8, 0xe3, 0xc3, 0x42, 0xaa, 0xb4, 0x7b, 0xfe, 0xac, 0x5a, 0x88, 0xb1, 0x63, 0x6f, 0xe8, 0xb1,
- 0x33, 0x0f, 0xef, 0xc3, 0xf5, 0x04, 0xdd, 0xed, 0xb5, 0x8e, 0x8e, 0x7b, 0x05, 0x54, 0xda, 0x39,
- 0x7f, 0x56, 0xdd, 0x8e, 0xe1, 0xae, 0xb0, 0xd8, 0x44, 0x2c, 0xb2, 0x0f, 0x09, 0x29, 0x68, 0x8b,
- 0x2c, 0xf5, 0xfd, 0xd2, 0xf5, 0xaf, 0x7f, 0x28, 0xa7, 0x7e, 0x7d, 0x5e, 0x9e, 0x0b, 0x6b, 0x3c,
- 0x45, 0xb0, 0x16, 0xea, 0xc6, 0x5f, 0xc0, 0xe6, 0xa5, 0x9e, 0xc5, 0xb5, 0x65, 0xee, 0x2c, 0x9b,
- 0xb8, 0xd2, 0xcb, 0xc9, 0xc8, 0x51, 0xfd, 0xc6, 0xef, 0x3f, 0xff, 0xfd, 0x9d, 0xb6, 0x0d, 0x9b,
- 0x92, 0x7c, 0x73, 0x64, 0x7a, 0xa6, 0x4d, 0xfd, 0xbb, 0xa8, 0xf1, 0x93, 0x26, 0xdd, 0x6a, 0xca,
- 0xff, 0x5c, 0xfc, 0x2d, 0x82, 0x9d, 0x25, 0x6d, 0x8e, 0x8d, 0xa5, 0x17, 0xb6, 0x72, 0x1e, 0x4a,
- 0x6f, 0x5c, 0x21, 0x2c, 0x39, 0x20, 0xfa, 0x2d, 0xa9, 0xeb, 0x26, 0x5c, 0x53, 0xba, 0xce, 0x98,
- 0x3f, 0xa4, 0xfe, 0x82, 0x4a, 0xfc, 0x15, 0x82, 0x7c, 0xe2, 0xae, 0xf1, 0xed, 0x65, 0xcf, 0x5f,
- 0xec, 0xdb, 0xe5, 0x3a, 0x96, 0x34, 0xcd, 0x7f, 0xd2, 0x51, 0x43, 0xcd, 0xe2, 0xc5, 0x8b, 0x72,
- 0xea, 0xcf, 0x17, 0xe5, 0xd4, 0x97, 0x41, 0x19, 0x5d, 0x04, 0x65, 0xf4, 0x47, 0x50, 0x46, 0x7f,
- 0x05, 0x65, 0xd4, 0xcf, 0xc8, 0x17, 0xf7, 0x5b, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x95, 0x7b,
- 0x3c, 0x04, 0xe0, 0x08, 0x00, 0x00,
- }
|