1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2014 Couchbase, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LCB_MCREQ_H
#define LCB_MCREQ_H
#include <libcouchbase/couchbase.h>
#include <libcouchbase/api3.h>
#include <libcouchbase/vbucket.h>
#include <memcached/protocol_binary.h>
#include "netbuf/netbuf.h"
#include "sllist.h"
#include "config.h"
#include "packetutils.h"
#ifdef __cplusplus
extern "C" {
#endif /** __cplusplus */
/**
* @file
* @brief Core memcached client routines
*/
/**
* @defgroup mcreq Memcached Packets
*
* @brief
* This module defines the core routines which are used to construct, handle,
* and enqueue packets. They also handle the retry mechanisms.
*
*
* # Initializing the Queue
*
* Using the mcreq system involves first establishing an mc_CMDQUEUE structure.
* This structure contains several mc_PIPELINE structures. The proper way to
* initialize the mc_CMDQEUE structure is to call mcreq_queue_init().
*
* Once the queue has been initialized, it must be assigned a
* `lcbvb_CONFIG*` (which it will _not_ own). This is done via the
* mcreq_queue_add_pipelines(). This function takes an array of pipeline pointers,
* and this will typically be a "subclass" (mc_SERVER) allocated via
* mcserver_alloc()
*
* Once the pipelines have been established, operations may be scheduled and
* distributed across the various pipelines.
*
* # Creating a Packet
*
* For each packet sent, the packet should first be reserved via the
* mcreq_basic_packet() call which allocates space for the actual packet
* as well as provides and populates the vbucket fields as needed.
*
* The header size must be the total size of the header plus any extras
* following the header but before the actual key data.
*
* If the command carries a body in addition to the key, it should be provided
* via mcreq_reserve_value().
*
* Once the packet has a key and value it must be assigned a cookie. The
* cookie may either be of a simple embedded type or an extended type. Whatever
* the case the appropriate flags should be set.
*
* # Scheduling Commands
*
* Scheduling commands is performed in an _enter_ and _leave_ sequence.
* mcreq_sched_enter() should be called before one or more commands are added.
* Then for each new command added, mcreq_sched_add() should be invoked with
* the new packet, and finally either mcreq_sched_leave() or mcreq_sched_fail()
* should be invoked to flush the commands to the network or free the resources
* allocated. In both cases the commands affected are scoped by the last call
* to mcreq_sched_enter().
*
* In order for commands to actually be flushed, the mc_PIPELINE::flush_start
* field must be set. This can vary depending on what the state of the underlying
* socket is. In server.c for example, the initial callback just schedules a
* connection. While the connection is in progress this field is set to a no-op
* callback, and finally when the socket is connected this field is set to
* interact with the I/O system which actually writes the buffers.
*
* # Flushing Responses
*
* This module does not do network I/O by design. Its only bridge is the
* mc_PIPELINE::flush_start function which should be set to actually flush
* the data.
*
* # Handling Reponses
*
* The I/O system reading the responses should place the response into a
* packet_info structure. Once this is done, the request for the response must
* be found using the opaque. This may be done with mcreq_pipeline_find()
* or mcreq_pipeline_remove() depending on whether this request expects multiple
* responses (such as the 'stat' command). These parameters should be passed
* to the mcreq_dispatch_response() function which will invoke the appropriate
* user-defined handler for it.
*
* If the packet does not expect more responses (as above), the application
* should call mcreq_packet_handled()
*
*
* # Error Handling and Failing Commands
*
* This module offers facilities for failing commands from a pipeline while
* safely allowing for their sharing of user-allocated data.
*
* The mcreq_pipeline_fail() and mcreq_pipeline_timeout() will fail packets
* in a single pipeline (the former failing all packets, the latter failing
* only packets older than a specified threshold).
*
* The mcreq_iterwipe() will clean a pipeline of its packets, invoking a
* callback which allows the user to relocate the packet to another pipeline.
* In this callback the user may invoke the mcreq_renew_packet() function to
* create a copy of the packet, keeping the previous packet in tact, but
* returning a copy of the packet as the 'primary' version.
*
* @addtogroup mcreq
* @{
*/
/**
* @name Core Packet Structure
* @{
*/
/** @brief Constant defining the size of a memcached header */
#define MCREQ_PKT_BASESIZE 24
/** @brief Embedded user data for a simple request. */
typedef struct {
const void *cookie; /**< User pointer to place in callbacks */
hrtime_t start; /**< Time of the initial request. Used for timeouts */
} mc_REQDATA;
struct mc_packet_st;
struct mc_pipeline_st;
/** This structure serves as a kind of 'vtable' for the mc_REQDATAEX structure. */
typedef struct {
/**
* Callback to be invoked for "Extended" packet handling. This is only
* available in the mc_REQDATAEX structure
* @param pipeline the pipeline on which the response was received
* @param pkt the request packet
* @param rc the error code for the response
* @param arg opaque pointer for callback
*/
void (*handler)(struct mc_pipeline_st *pipeline,
struct mc_packet_st *pkt, lcb_error_t rc, const void *res);
/**
* Destructor function called from within mcreq_sched_fail() for packets with
* extended data. This function should suitably free the data for the packet,
* if any.
* @param pkt The packet being unscheduled.
*/
void (*fail_dtor)(struct mc_packet_st *pkt);
} mc_REQDATAPROCS;
/**@brief Allocated user data for an extended request.
*
* @details
* An extended request is typically used by commands which have more complex
* handling requirements, such as mapping a single user API call to multiple
* packets, or when the packet itself is generated internally rather than
* on behalf of an API request.
*/
typedef struct {
const void *cookie; /**< User data */
hrtime_t start; /**< Start time */
mc_REQDATAPROCS *procs; /**< Common routines for the packet */
} mc_REQDATAEX;
/**
* Called when the buffers for a packet have been invoked
* @param pl the pipeline
* @param ucookie the cookie passed to the scheduler
* @param kbuf the pointer to the beginning of the key/header buffer, if
* passed to the scheduler
* @param vbuf the pointer to the beginning of the value buffer or the first
* IOV within the buffer.
*/
typedef void (*mcreq_bufdone_fn)(struct mc_pipeline_st *pl,
const void *ucookie, void *kbuf, void *vbuf);
/**
* Possible values for the mc_PACKET#flags field in the packet structure.
* These provide
* information as to which fields in the various unions are in use, and how
* to allocate/release data buffers for requests.
*/
typedef enum {
/** The key is user-allocated. Do not release to MBLOCK */
MCREQ_F_KEY_NOCOPY = 1 << 0,
/** The value is user-allocated. Do not release to MBLOCK */
MCREQ_F_VALUE_NOCOPY = 1 << 1,
/**
* The value is user allocated and in the form of an IOV.
* Use mc_VALUE#multi
*/
MCREQ_F_VALUE_IOV = 1 << 2,
/** The request has a value. Use mc_VALUE#single unless otherwise noted */
MCREQ_F_HASVALUE = 1 << 3,
/**
* The request is tied to an 'extended' user data structure.
* Use mc_USER#exdata
*/
MCREQ_F_REQEXT = 1 << 4,
/** The request is a one-to-one user forwarded packet */
MCREQ_F_UFWD = 1 << 5,
/**
* Indicates that the entire packet has been flushed. Specifically this
* also indicates that the packet's underlying buffers are no longer needed
* by libcouchbase.
*/
MCREQ_F_FLUSHED = 1 << 6,
/**
* Indicates that the callback should NOT be invoked for the request. This
* is typically because the request is just present in the queue for buffer
* management purposes and has expired or otherwise been invalidated.
*/
MCREQ_F_INVOKED = 1 << 7,
/**
* Indicates that this packet and its constituent data members are not
* part of a nb_MBLOCK but rather point to standalone malloc'd memory. This
* also indicates that the packet is actually an mc_EXPACKET extended
* type. This is set by mcreq_renew_packet()
*/
MCREQ_F_DETACHED = 1 << 8,
/**
* Another way of signalling that the callback has an 'internal' variant.
* Dispatching this command requires a specially formatted cookie object,
* which itself is expected to _contain_ a pointer to the callback, and
* thus be formatted like so:
* @code{.c}
* struct {
* lcb_RESPCALLBACK callback;
* };
* @endcode
*/
MCREQ_F_PRIVCALLBACK = 1 << 9
} mcreq_flags;
/** @brief mask of flags indicating user-allocated buffers */
#define MCREQ_UBUF_FLAGS (MCREQ_F_KEY_NOCOPY|MCREQ_F_VALUE_NOCOPY)
/** @brief mask of flags indicating response state of the packet */
#define MCREQ_STATE_FLAGS (MCREQ_F_INVOKED|MCREQ_F_FLUSHED)
/** Union representing the value within a packet */
union mc_VALUE {
/** For a single contiguous value */
nb_SPAN single;
/** For a set of multiple IOV buffers */
lcb_FRAGBUF multi;
};
/** Union representing application/command data within a packet structure */
union mc_USER {
/** Embedded command info for simple commands; 16 bytes, 48B */
mc_REQDATA reqdata;
/** Pointer to extended data */
mc_REQDATAEX *exdata;
};
/**
* @brief Packet structure for a single Memcached command
*
* A single packet structure is allocated for each request
* sent to a server. A packet structure may be associated with user data in the
* u_rdata union field, either by using the embedded structure, or by referencing
* an allocated chunk of 'extended' user data.
*/
typedef struct mc_packet_st {
/** Node in the linked list for logical command ordering */
sllist_node slnode;
/**
* Node in the linked list for actual output ordering.
* @see netbuf_end_flush2(), netbuf_pdu_enqueue()
*/
sllist_node sl_flushq;
/** Span for key and header */
nb_SPAN kh_span;
/** Extras length */
uint8_t extlen;
/** Retries */
uint8_t retries;
/** flags for request. @see mcreq_flags */
uint16_t flags;
/** Cached opaque value */
uint32_t opaque;
/** User/CMDAPI Data */
union mc_USER u_rdata;
/** Value data */
union mc_VALUE u_value;
/** Allocation data for the PACKET structure itself */
nb_MBLOCK *alloc_parent;
} mc_PACKET;
/**
* @brief Gets the request data from the packet structure itself
* @return an mc_REQDATA or mc_REQDATAEX pointer
*/
#define MCREQ_PKT_RDATA(pkt) \
(((pkt)->flags & MCREQ_F_REQEXT) \
? ((mc_REQDATA *)(pkt)->u_rdata.exdata) \
: (&(pkt)->u_rdata.reqdata))
/**
* @brief Retrieve the cookie pointer from a packet
* @param pkt
*/
#define MCREQ_PKT_COOKIE(pkt) MCREQ_PKT_RDATA(pkt)->cookie
/**@}*/
/**
* Callback invoked when APIs request that a pipeline start flushing. It
* receives a pipeline object as its sole argument.
*/
typedef void (*mcreq_flushstart_fn)(struct mc_pipeline_st *pipeline);
/**
* @brief Structure representing a single input/output queue for memcached
*
* Memcached request pipeline. This contains the command log for
* sending/receiving requests. This is basically the non-I/O part of the server
*/
typedef struct mc_pipeline_st {
/** List of requests. Newer requests are appended at the end */
sllist_root requests;
/** Parent command queue */
struct mc_cmdqueue_st *parent;
/**
* Flush handler. This is invoked to schedule a flush operation
* the socket
*/
mcreq_flushstart_fn flush_start;
/** Index of this server within the configuration map */
int index;
/**
* Intermediate queue where pending packets are placed. Moved to
* the `requests` list when mcreq_sched_leave() is called
*/
sllist_root ctxqueued;
/**
* Callback invoked for each packet (which has user-defined buffers) when
* it is no longer required
*/
mcreq_bufdone_fn buf_done_callback;
/** Buffer manager for the respective requests. */
nb_MGR nbmgr;
/** Allocator for packet structures */
nb_MGR reqpool;
} mc_PIPELINE;
typedef struct mc_cmdqueue_st {
/** Indexed pipelines, i.e. server map target */
mc_PIPELINE **pipelines;
/**
* Small array of size npipelines, for mcreq_sched_enter()/mcreq_sched_leave()
* stuff. See those functions for usage
*/
char *scheds;
/**
* Whether a context is currently entered (i.e. sched_enter())
*/
unsigned ctxenter;
/** Number of pipelines in the queue */
unsigned npipelines;
/** Number of pipelines, with fallback included */
unsigned _npipelines_ex;
/** Sequence number for pipeline. Incremented for each new packet */
uint32_t seq;
/** Configuration handle for vBucket mapping */
lcbvb_CONFIG* config;
/** Opaque pointer to be used by the application (in this case, lcb core) */
void* cqdata;
/**Special pipeline used to contain orphaned packets within a scheduling
* context. This field is used by mcreq_set_fallback_handler() */
mc_PIPELINE *fallback;
} mc_CMDQUEUE;
/**
* Allocate a packet belonging to a specific pipeline.
* @param pipeline the pipeline to allocate against
* @return a new packet structure or NULL on error
*/
mc_PACKET *
mcreq_allocate_packet(mc_PIPELINE *pipeline);
/**
* Free the packet structure. This will simply free the skeleton structure.
* The underlying members will not be touched.
* @param pipeline the pipleine which was used to allocate the packet
* @param packet the packet to release
*/
void
mcreq_release_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
struct mc_epkt_datum;
/**
* Extended packet structure. This is returned by mcreq_renew_packet().
*
* The purpose of this structure is to be able to "tag" extra data to the packet
* (typically for retries, or "special" commands) without weighing down on the
* normal packet structure; thus it should be considered a 'subclass' of the
* normal packet structure.
*/
typedef struct mc_expacket_st {
/** The base packet structure */
mc_PACKET base;
/* Additional data for the packet itself */
sllist_root data;
} mc_EXPACKET;
typedef struct mc_epkt_datum {
sllist_node slnode;
/**Unique string key by which this datum will be identified, as more
* than a single datum can exist for a packet */
const char *key;
/**Free the data structure
* @param datum the datum object */
void (*dtorfn)(struct mc_epkt_datum *datum);
} mc_EPKTDATUM;
/**
* Detatches the packet src belonging to the given pipeline. A detached
* packet has all its data allocated via malloc and does not belong to
* any particular buffer. This is typically used for relocation or retries
* where it is impractical to affect the in-order netbuf allocator.
*
* @param src the source packet to copy
* @return a new packet structure. You should still clear the packet's data
* with wipe_packet/release_packet but you may pass NULL as the pipeline
* parameter.
*
* @attention
* Any 'Extended' packet data is **MOVED** from the source to the destination
* packet. This goes well with the typical use case of this function, which is
* not to actually duplicate the packet, but rather to provide a fresh copy
* which may be re-used.
*
* @attention
* This function attempts to be "dumb" in the sense of trying to make an
* exact effective clone of the original packet (the main goal of this function
* is to move the resources of the packet over to a new block of memory). This
* means things like non-buffer-related flags (i.e. the ones not specifying
* the layout of the buffer) are _preserved_, including the so-called
* "state flags" which indicate if a packet has been flushed and/or handled. If
* calling this function to retry a packet, ensure to clear these state flags.
*/
mc_PACKET *
mcreq_renew_packet(const mc_PACKET *src);
/**
* Associates a datum with the packet. The packet must be a standalone packet,
* indicated by the MCREQ_F_DETACHED flag in the mc_PACKET::flags field.
* @param ep The packet to which the data should be added
* @param datum The datum object to add. The object is not copied and should
* not be freed until the `dtorfn` or `copyfn` functions have been called
* @return 0 on success, nonzero on failure (i.e. if packet is not detached).
*/
int
mcreq_epkt_insert(mc_EXPACKET *ep, mc_EPKTDATUM *datum);
/**
* Locate the datum associated with the given key for the packet.
* @param ep The packet in which to search
* @param key A NUL-terminated string matching the mc_EPKTDATUM::key field
* @return The datum, or NULL if it does not exist.
*/
mc_EPKTDATUM *
mcreq_epkt_find(mc_EXPACKET *ep, const char *key);
/**
* Reserve the packet's basic header structure, this is for use for frames
* which do not contain keys, or contain fixed size data which does not
* need to be returned via get_key
* @param pipeline the pipeline to use
* @param packet the packet which should contain the header
* @param hdrsize the total size of the header+extras+key
*/
lcb_error_t
mcreq_reserve_header(
mc_PIPELINE *pipeline, mc_PACKET *packet, uint8_t hdrsize);
/**
* Initialize the given packet's key structure
* @param pipeline the pipeline used to allocate the packet
* @param packet the packet which should have its key field initialized
* @param hdrsize the size of the header before the key. This should contain
* the header size (i.e. 24 bytes) PLUS any extras therein.
* @param kreq the user-provided key structure
* @return LCB_SUCCESS on success, LCB_CLIENT_ENOMEM on allocation failure
*/
lcb_error_t
mcreq_reserve_key(
mc_PIPELINE *pipeline, mc_PACKET *packet,
uint8_t hdrsize, const lcb_KEYBUF *kreq);
/**
* Initialize the given packet's value structure. Only applicable for storage
* operations.
* @param pipeline the pipeline used to allocate the packet
* @param packet the packet whose value field should be initialized
* @param vreq the user-provided structure containing the value parameters
* @return LCB_SUCCESS on success, LCB_CLIENT_ENOMEM on allocation failure
*/
lcb_error_t
mcreq_reserve_value(mc_PIPELINE *pipeline, mc_PACKET *packet,
const lcb_VALBUF *vreq);
/**
* Reserves value/body space, but doesn't actually copy the contents over
* @param pipeline the pipeline to use
* @param packet the packet to host the value
* @param n the number of bytes to reserve
*/
lcb_error_t
mcreq_reserve_value2(mc_PIPELINE *pipeline, mc_PACKET *packet, lcb_size_t n);
/**
* Enqueue the packet to the pipeline. This packet should have fully been
* initialized. Specifically, the packet's data buffer contents (i.e. key,
* header, and value) must not be modified once this function is called
*
* @param pipeline the target pipeline that the packet will be queued in
* @param packet the packet to enqueue.
* This function always succeeds.
*/
void
mcreq_enqueue_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
/**
* Like enqueue packet, except it will also inspect the packet's timeout field
* and if necessary, restructure the command inside the request list so that
* it appears before newer commands.
*
* The default enqueue_packet() just appends the command to the end of the
* queue while this will perform an additional check (and is less efficient)
*/
void
mcreq_reenqueue_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
/**
* Wipe the packet's internal buffers, releasing them. This should be called
* when the underlying data buffer fields are no longer needed, usually this
* is called directly before release_packet.
* Note that release_packet should be called to free the storage for the packet
* structure itself.
* @param pipeline the pipeline structure used to allocate this packet
* @param packet the packet to wipe.
*/
void
mcreq_wipe_packet(mc_PIPELINE *pipeline, mc_PACKET *packet);
/**
* Function to extract mapping information given a key and a hashkey
* @param queue The command queue
* @param key The structure for the key
* @param hashkey The optional hashkey structure
* @param nhdr The size of the header (for KV_CONTIG)
* @param[out] vbid The vBucket ID
* @param[out] srvix The master server's index
*/
void
mcreq_map_key(mc_CMDQUEUE *queue,
const lcb_KEYBUF *key, const lcb_KEYBUF *hashkey,
unsigned nhdr, int *vbid, int *srvix);
/**If the packet's vbucket does not have a master node, use the fallback pipeline
* and let it be handled by the handler installed via mcreq_set_fallback_handler()
*/
#define MCREQ_BASICPACKET_F_FALLBACKOK 0x01
/**
* Handle the basic requirements of a packet common to all commands
* @param queue the queue
* @param cmd the command base structure
*
* @param[out] req the request header which will be set with key, vbucket, and extlen
* fields. In other words, you do not need to initialize them once this
* function has completed.
*
* @param extlen the size of extras for this command
* @param[out] packet a pointer set to the address of the allocated packet
* @param[out] pipeline a pointer set to the target pipeline
* @param options a set of options to control creation behavior. Currently the
* only recognized options are `0` (i.e. default options), or @ref
* MCREQ_BASICPACKET_F_FALLBACKOK
*/
lcb_error_t
mcreq_basic_packet(
mc_CMDQUEUE *queue, const lcb_CMDBASE *cmd,
protocol_binary_request_header *req, uint8_t extlen,
mc_PACKET **packet, mc_PIPELINE **pipeline, int options);
/**
* @brief Get the key from a packet
* @param[in] packet The packet from which to retrieve the key
* @param[out] key
* @param[out] nkey
*/
void
mcreq_get_key(const mc_PACKET *packet, const void **key, lcb_size_t *nkey);
/** @brief Returns the size of the entire packet, in bytes */
uint32_t
mcreq_get_bodysize(const mc_PACKET *packet);
/**
* @brief get the total packet size (header+body)
* @param pkt the packet
* @return the total size
*/
uint32_t
mcreq_get_size(const mc_PACKET *packet);
/**
* @brief Get the vBucket for the request
* @param packet The packet
* @return The vBucket ID from the packet.
*/
uint16_t
mcreq_get_vbucket(const mc_PACKET *packet);
/** Initializes a single pipeline object */
int
mcreq_pipeline_init(mc_PIPELINE *pipeline);
/** Cleans up any initialization from pipeline_init */
void
mcreq_pipeline_cleanup(mc_PIPELINE *pipeline);
/**
* Set the pipelines that this queue will manage
* @param queue the queue to take the pipelines
* @param pipelines an array of pipeline pointers. The array is copied
* @param npipelines number of pipelines in the queue
* @param config the configuration handle. The configuration is _not_ owned
* and _not_ copied and the caller must ensure it remains valid
* until it is replaces.
*/
void
mcreq_queue_add_pipelines(
mc_CMDQUEUE *queue, mc_PIPELINE * const *pipelines,
unsigned npipelines, lcbvb_CONFIG* config);
/**
* Set the arra
* @param queue the queue
* @param count a pointer to the number of pipelines within the queue
* @return the pipeline array.
*
* When this function completes another call to add_pipelines must be performed
* in order for the queue to function properly.
*/
mc_PIPELINE **
mcreq_queue_take_pipelines(mc_CMDQUEUE *queue, unsigned *count);
int
mcreq_queue_init(mc_CMDQUEUE *queue);
void
mcreq_queue_cleanup(mc_CMDQUEUE *queue);
/**
* @brief Add a packet to the current scheduling context
* @param pipeline
* @param pkt
* @see mcreq_sched_enter()
*/
void
mcreq_sched_add(mc_PIPELINE *pipeline, mc_PACKET *pkt);
/**
* @brief enter a scheduling scope
* @param queue
* @attention It is not safe to call this function twice
* @volatile
*/
void
mcreq_sched_enter(struct mc_cmdqueue_st *queue);
/**
* @brief successfully exit a scheduling scope
*
* All operations enqueued since the last call to mcreq_sched_enter() will be
* placed in their respective pipelines' operation queue.
*
* @param queue
* @param do_flush Whether the items in the queue should be flushed
* @volatile
*/
void
mcreq_sched_leave(struct mc_cmdqueue_st *queue, int do_flush);
/**
* @brief destroy all operations within the scheduling scope
* All operations enqueued since the last call to mcreq_sched_enter() will
* be destroyed
* @param queue
*/
void
mcreq_sched_fail(struct mc_cmdqueue_st *queue);
/**
* Find a packet with the given opaque value
*/
mc_PACKET *
mcreq_pipeline_find(mc_PIPELINE *pipeline, uint32_t opaque);
/**
* Find and remove the packet with the given opaque value
*/
mc_PACKET *
mcreq_pipeline_remove(mc_PIPELINE *pipeline, uint32_t opaque);
/**
* Handles a received packet in response to a command
* @param pipeline the pipeline upon which the request was received
* @param request the original request
* @param response the packet received in the response
* @param immerr an immediate error message. If this is not LCB_SUCCESS then
* the packet in `response` shall contain only a header and the request itself
* should be analyzed
*
* @return 0 on success, nonzero if the handler could not be found for the
* command.
*/
int
mcreq_dispatch_response(mc_PIPELINE *pipeline, mc_PACKET *request,
packet_info *response, lcb_error_t immerr);
#define MCREQ_KEEP_PACKET 1
#define MCREQ_REMOVE_PACKET 2
/**
* Callback used for packet iteration wiping
*
* @param queue the queue
* @param srcpl the source pipeline which is being cleaned
* @param pkt the packet which is being cleaned
* @param cbarg the argument passed to the iterwipe
*
* @return one of MCREQ_KEEP_PACKET (if the packet should be kept inside the
* pipeline) or MCREQ_REMOVE_PACKET (if the packet should not be kept)
*/
typedef int (*mcreq_iterwipe_fn)
(mc_CMDQUEUE *queue, mc_PIPELINE *srcpl, mc_PACKET *pkt, void *cbarg);
/**
* Wipe a single pipeline. This may be used to move and/or relocate
* existing commands to other pipelines.
* @param queue the queue to use
* @param src the pipeline to wipe
* @param callback the callback to invoke for each packet
* @param arg the argument passed to the callback
*/
void
mcreq_iterwipe(mc_CMDQUEUE *queue, mc_PIPELINE *src,
mcreq_iterwipe_fn callback, void *arg);
/**
* Called when a packet does not need to have any more references to it
* remaining. A packet by itself only has two implicit references; one is
* a flush reference and the other is a handler reference.
*
* The flush reference is unset once the packet has been flushed and the
* handler reference is unset once the packet's handler callback has been
* invoked and the relevant data relayed to the user.
*
* Once this function is called, the packet passed will no longer be valid
* and thus should not be used.
*/
void
mcreq_packet_done(mc_PIPELINE *pipeline, mc_PACKET *pkt);
/**
* @brief Indicate that the packet was handled
* @param pipeline the pipeline
* @param pkt the packet which was handled
* If the packet has also been flushed, the packet's storage will be released
* and `pkt` will no longer point to valid memory.
*/
#define mcreq_packet_handled(pipeline, pkt) do { \
(pkt)->flags |= MCREQ_F_INVOKED; \
if ((pkt)->flags & MCREQ_F_FLUSHED) { \
mcreq_packet_done(pipeline, pkt); \
} \
} while (0);
/**
* Reset the timeout (or rather, the start time) on all pending packets
* to the time specified.
*
* @param pl The pipeline
* @param nstime The new timestamp to use.
*/
void
mcreq_reset_timeouts(mc_PIPELINE *pl, lcb_U64 nstime);
/**
* Callback to be invoked when a packet is about to be failed out from the
* request queue. This should be used to possibly invoke handlers. The packet
* will then be removed from the queue.
* @param pipeline the pipeline which has been errored
* @param packet the current packet
* @param err the error received
* @param arg an opaque pointer
*/
typedef void (*mcreq_pktfail_fn)
(mc_PIPELINE *pipeline, mc_PACKET *packet, lcb_error_t err, void *arg);
/**
* Fail out a given pipeline. All commands in the pipeline will be removed
* from the pipeline (though they may still not be freed if they are pending
* a flush).
*
* @param pipeline the pipeline to fail out
* @param err the error which caused the failure
* @param failcb a callback invoked to handle each failed packet
* @param cbarg a pointer passed as the last parameter to the callback
*
* @return the number of items actually failed.
*/
unsigned
mcreq_pipeline_fail(
mc_PIPELINE *pipeline, lcb_error_t err,
mcreq_pktfail_fn failcb, void *cbarg);
/**
* Fail out all commands in the pipeline which are older than a specified
* interval. This is similar to the pipeline_fail() function except that commands
* which are newer than the threshold are still kept
*
* @param pipeline the pipeline to fail out
* @param err the error to provide to the handlers (usually LCB_ETIMEDOUT)
* @param failcb the callback to invoke
* @param cbarg the last argument to the callback
* @param oldest_valid the _oldest_ time for a command to still be valid
* @param oldest_start set to the start time of the _oldest_ command which is
* still valid.
*
* @return the number of commands actually failed.
*/
unsigned
mcreq_pipeline_timeout(
mc_PIPELINE *pipeline, lcb_error_t err,
mcreq_pktfail_fn failcb, void *cbarg,
hrtime_t oldest_valid,
hrtime_t *oldest_start);
/**
* This function is called when a packet could not be properly mapped to a real
* pipeline
* @param cq the command queue
* @param pkt the packet which needs to be relocated. The packet needs to be
* properly copied via mcreq_renew_packet()
*/
typedef void (*mcreq_fallback_cb)(mc_CMDQUEUE *cq, mc_PACKET *pkt);
/**
* Set the callback function to be invoked when a packet could not be properly
* mapped to a node. The callback function is invoked from within the
* mcreq_sched_leave() function.
*
* The handler should be assigned only once, during initialization
*
* @param cq The command queue
* @param handler The handler to invoke
*/
void
mcreq_set_fallback_handler(mc_CMDQUEUE *cq, mcreq_fallback_cb handler);
/**
* Callback used by mcreq_dump_packet() and mcreq_dump_chain() to format the
* packet's payload
* @param data the data to dump
* @param size the size of the data
* @param fp the file to write the output to
*/
typedef void (*mcreq_payload_dump_fn)
(const void *data, unsigned size, FILE *fp);
/**
* Dumps a single packet to the file indicated by `fp`
* @param pkt the packet to dump
* @param fp The file to write to
* @param dumpfn If specified, this function is called to handle the packet's
* header and payload body
*/
void
mcreq_dump_packet(const mc_PACKET *pkt, FILE *fp, mcreq_payload_dump_fn dumpfn);
void
mcreq_dump_chain(const mc_PIPELINE *pipeline, FILE *fp, mcreq_payload_dump_fn dumpfn);
#define mcreq_write_hdr(pkt, hdr) \
memcpy( SPAN_BUFFER(&(pkt)->kh_span), (hdr)->bytes, sizeof((hdr)->bytes) )
#define mcreq_write_exhdr(pkt, hdr, n) \
memcpy(SPAN_BUFFER((&pkt)->kh_span), (hdr)->bytes, n)
#define mcreq_read_hdr(pkt, hdr) \
memcpy( (hdr)->bytes, SPAN_BUFFER(&(pkt)->kh_span), sizeof((hdr)->bytes) )
#define mcreq_first_packet(pipeline) \
SLLIST_IS_EMPTY(&(pipeline)->requests) ? NULL : \
SLLIST_ITEM(SLLIST_FIRST(&(pipeline)->requests), mc_PACKET, slnode)
/**@}*/
#ifdef __cplusplus
}
#endif /** __cplusplus */
#endif /* LCB_MCREQ_H */