2 * Summary: C++ interface for memcached server
4 * Copy: See Copyright for the status of this software.
6 * Authors: Padraig O'Sullivan <osullivan.padraig@gmail.com>
7 * Patrick Galbraith <patg@patg.net>
12 * @brief Libmemcached C++ interface
15 #ifndef LIBMEMCACHEDPP_H
16 #define LIBMEMCACHEDPP_H
18 #include <libmemcached/memcached.h>
19 #include <libmemcached/exception.hpp>
32 * This is the core memcached library (if later, other objects
33 * are needed, they will be created from this class).
46 memcached_create(&memc);
49 Memcache(const std::string &in_servers_list)
51 servers_list(in_servers_list),
56 memcached_create(&memc);
57 servers= memcached_servers_parse(servers_list.c_str());
58 memcached_server_push(&memc, servers);
61 Memcache(const std::string &hostname,
69 memcached_create(&memc);
70 servers_list.append(hostname);
71 servers_list.append(":");
72 std::ostringstream strsmt;
74 servers_list.append(strsmt.str());
75 servers= memcached_servers_parse(servers_list.c_str());
76 memcached_server_push(&memc, servers);
79 Memcache(memcached_st *clone)
86 memcached_clone(&memc, clone);
89 Memcache(const Memcache &rhs)
91 servers_list(rhs.servers_list),
96 memcached_clone(&memc, const_cast<memcached_st *>(&rhs.getImpl()));
97 servers= memcached_servers_parse(servers_list.c_str());
98 memcached_server_push(&memc, servers);
101 Memcache &operator=(const Memcache &rhs)
105 memcached_clone(&memc, const_cast<memcached_st *>(&rhs.getImpl()));
106 servers= memcached_servers_parse(servers_list.c_str());
107 memcached_server_push(&memc, servers);
114 memcached_free(&memc);
115 memcached_server_list_free(servers);
119 * Get the internal memcached_st *
121 memcached_st &getImpl()
127 * Get the internal memcached_st *
129 const memcached_st &getImpl() const
135 * Return an error string for the given return structure.
137 * @param[in] rc a memcached_return structure
138 * @return error string corresponding to given return code in the library.
140 const std::string getError(memcached_return rc) const
142 /* first parameter to strerror is unused */
143 return memcached_strerror(NULL, rc);
147 * Return the string which contains the list of memcached servers being
150 * @return a std::string containing the list of memcached servers
152 const std::string getServersList() const
158 * Set the list of memcached servers to use.
160 * @param[in] in_servers_list list of servers
161 * @return true on success; false otherwise
163 bool setServers(const std::string &in_servers_list)
165 servers_list.assign(in_servers_list);
166 servers= memcached_servers_parse(in_servers_list.c_str());
167 memcached_server_push(&memc, servers);
168 return (servers == NULL);
172 * Add a server to the list of memcached servers to use.
174 * @param[in] server_name name of the server to add
175 * @param[in] port port number of server to add
176 * @return true on success; false otherwise
178 bool addServer(const std::string &server_name, unsigned int port)
181 std::ostringstream strstm;
182 servers_list.append(",");
183 servers_list.append(server_name);
184 servers_list.append(":");
186 servers_list.append(strstm.str());
187 servers= memcached_server_list_append(servers,
191 memcached_server_push(&memc, servers);
192 return (rc == MEMCACHED_SUCCESS);
196 * Remove a server from the list of memcached servers to use.
198 * @param[in] server_name name of the server to remove
199 * @param[in] port port number of server to remove
200 * @return true on success; false otherwise
202 bool removeServer(const std::string &server_name, size_t port)
205 std::ostringstream strstm;
207 tmp_str.append(server_name);
210 tmp_str.append(strstm.str());
211 memcached_server_st *server= memcached_servers_parse(tmp_str.c_str());
212 memcached_return rc= memcached_server_remove(server);
213 return (rc == MEMCACHED_SUCCESS);
217 * Fetches an individual value from the server. mget() must always
218 * be called before using this method.
220 * @param[in] key key of object to fetch
221 * @param[out] ret_val store returned object in this vector
222 * @return a memcached return structure
224 memcached_return fetch(std::string &key,
225 std::vector<char> &ret_val)
227 char ret_key[MEMCACHED_MAX_KEY];
228 size_t value_length= 0;
229 size_t key_length= 0;
232 char *value= memcached_fetch(&memc, ret_key, &key_length,
233 &value_length, &flags, &rc);
234 if (value && ret_val.empty())
236 ret_val.reserve(value_length);
237 ret_val.assign(value, value + value_length);
244 * Fetches an individual value from the server.
246 * @param[in] key key of object whose value to get
247 * @param[out] ret_val object that is retrieved is stored in
249 * @return true on success; false otherwise
251 bool get(const std::string &key,
252 std::vector<char> &ret_val) throw (Error)
256 size_t value_length= 0;
260 throw(Error("the key supplied is empty!", false));
262 char *value= memcached_get(&memc, key.c_str(), key.length(),
263 &value_length, &flags, &rc);
264 if (value != NULL && ret_val.empty())
266 ret_val.reserve(value_length);
267 ret_val.assign(value, value + value_length);
274 * Fetches an individual from a server which is specified by
275 * the master_key parameter that is used for determining which
276 * server an object was stored in if key partitioning was
279 * @param[in] master_key key that specifies server object is stored on
280 * @param[in] key key of object whose value to get
281 * @param[out] ret_val object that is retrieved is stored in
283 * @return true on success; false otherwise
285 bool getByKey(const std::string &master_key,
286 const std::string &key,
287 std::vector<char> &ret_val) throw(Error)
291 size_t value_length= 0;
293 if (master_key.empty() || key.empty())
295 throw(Error("the master key or key supplied is empty!", false));
297 char *value= memcached_get_by_key(&memc,
298 master_key.c_str(), master_key.length(),
299 key.c_str(), key.length(),
300 &value_length, &flags, &rc);
303 ret_val.reserve(value_length);
304 ret_val.assign(value, value + value_length);
311 * Selects multiple keys at once. This method always
312 * works asynchronously.
314 * @param[in] keys vector of keys to select
315 * @return true if all keys are found
317 bool mget(std::vector<std::string> &keys)
319 std::vector<const char *> real_keys;
320 std::vector<size_t> key_len;
322 * Construct an array which will contain the length
323 * of each of the strings in the input vector. Also, to
324 * interface with the memcached C API, we need to convert
325 * the vector of std::string's to a vector of char *.
327 real_keys.reserve(keys.size());
328 key_len.reserve(keys.size());
330 std::vector<std::string>::iterator it= keys.begin();
332 while (it != keys.end())
334 real_keys.push_back(const_cast<char *>((*it).c_str()));
335 key_len.push_back((*it).length());
340 * If the std::vector of keys is empty then we cannot
341 * call memcached_mget as we will get undefined behavior.
343 if (! real_keys.empty())
345 memcached_return rc= memcached_mget(&memc, &real_keys[0], &key_len[0],
347 return (rc == MEMCACHED_SUCCESS);
354 * Writes an object to the server. If the object already exists, it will
355 * overwrite the existing object. This method always returns true
356 * when using non-blocking mode unless a network error occurs.
358 * @param[in] key key of object to write to server
359 * @param[in] value value of object to write to server
360 * @param[in] expiration time to keep the object stored in the server for
361 * @param[in] flags flags to store with the object
362 * @return true on succcess; false otherwise
364 bool set(const std::string &key,
365 const std::vector<char> &value,
367 uint32_t flags) throw(Error)
369 if (key.empty() || value.empty())
371 throw(Error("the key or value supplied is empty!", false));
373 memcached_return rc= memcached_set(&memc,
374 key.c_str(), key.length(),
375 &value[0], value.size(),
377 return (rc == MEMCACHED_SUCCESS || rc == MEMCACHED_BUFFERED);
381 * Writes an object to a server specified by the master_key parameter.
382 * If the object already exists, it will overwrite the existing object.
384 * @param[in] master_key key that specifies server to write to
385 * @param[in] key key of object to write to server
386 * @param[in] value value of object to write to server
387 * @param[in] expiration time to keep the object stored in the server for
388 * @param[in] flags flags to store with the object
389 * @return true on succcess; false otherwise
391 bool setByKey(const std::string &master_key,
392 const std::string &key,
393 const std::vector<char> &value,
395 uint32_t flags) throw(Error)
397 if (master_key.empty() ||
401 throw(Error("the key or value supplied is empty!", false));
403 memcached_return rc= memcached_set_by_key(&memc, master_key.c_str(),
405 key.c_str(), key.length(),
406 &value[0], value.size(),
409 return (rc == MEMCACHED_SUCCESS);
413 * Writes a list of objects to the server. Objects are specified by
414 * 2 vectors - 1 vector of keys and 1 vector of values.
416 * @param[in] keys vector of keys of objects to write to server
417 * @param[in] values vector of values of objects to write to server
418 * @param[in] expiration time to keep the objects stored in server for
419 * @param[in] flags flags to store with the objects
420 * @return true on success; false otherwise
422 bool setAll(std::vector<std::string> &keys,
423 std::vector< std::vector<char> *> &values,
425 uint32_t flags) throw(Error)
427 if (keys.size() != values.size())
429 throw(Error("The number of keys and values do not match!", false));
432 std::vector<std::string>::iterator key_it= keys.begin();
433 std::vector< std::vector<char> *>::iterator val_it= values.begin();
434 while (key_it != keys.end())
436 retval= set((*key_it), *(*val_it), expiration, flags);
448 * Writes a list of objects to the server. Objects are specified by
449 * a map of keys to values.
451 * @param[in] key_value_map map of keys and values to store in server
452 * @param[in] expiration time to keep the objects stored in server for
453 * @param[in] flags flags to store with the objects
454 * @return true on success; false otherwise
456 bool setAll(std::map<const std::string, std::vector<char> > &key_value_map,
458 uint32_t flags) throw(Error)
460 if (key_value_map.empty())
462 throw(Error("The key/values are not properly set!", false));
465 std::map<const std::string, std::vector<char> >::iterator it=
466 key_value_map.begin();
467 while (it != key_value_map.end())
469 retval= set(it->first, it->second, expiration, flags);
472 std::string err_buff("There was an error setting the key ");
473 err_buff.append(it->first);
474 throw(Error(err_buff, false));
482 * Increment the value of the object associated with the specified
483 * key by the offset given. The resulting value is saved in the value
486 * @param[in] key key of object in server whose value to increment
487 * @param[in] offset amount to increment object's value by
488 * @param[out] value store the result of the increment here
489 * @return true on success; false otherwise
491 bool increment(const std::string &key, uint32_t offset, uint64_t *value) throw(Error)
495 throw(Error("the key supplied is empty!", false));
497 memcached_return rc= memcached_increment(&memc, key.c_str(), key.length(),
499 return (rc == MEMCACHED_SUCCESS);
503 * Decrement the value of the object associated with the specified
504 * key by the offset given. The resulting value is saved in the value
507 * @param[in] key key of object in server whose value to decrement
508 * @param[in] offset amount to increment object's value by
509 * @param[out] value store the result of the decrement here
510 * @return true on success; false otherwise
512 bool decrement(const std::string &key, uint32_t offset, uint64_t *value)
517 throw(Error("the key supplied is empty!", false));
519 memcached_return rc= memcached_decrement(&memc, key.c_str(),
522 return (rc == MEMCACHED_SUCCESS);
527 * Add an object with the specified key and value to the server. This
528 * function returns false if the object already exists on the server.
530 * @param[in] key key of object to add
531 * @param[in] value of object to add
532 * @return true on success; false otherwise
534 bool add(const std::string &key, const std::vector<char> &value)
537 if (key.empty() || value.empty())
539 throw(Error("the key or value supplied is empty!", false));
541 memcached_return rc= memcached_add(&memc, key.c_str(), key.length(),
542 &value[0], value.size(), 0, 0);
543 return (rc == MEMCACHED_SUCCESS);
547 * Add an object with the specified key and value to the server. This
548 * function returns false if the object already exists on the server. The
549 * server to add the object to is specified by the master_key parameter.
551 * @param[in[ master_key key of server to add object to
552 * @param[in] key key of object to add
553 * @param[in] value of object to add
554 * @return true on success; false otherwise
556 bool addByKey(const std::string &master_key,
557 const std::string &key,
558 const std::vector<char> &value) throw(Error)
560 if (master_key.empty() ||
564 throw(Error("the master key or key supplied is empty!", false));
566 memcached_return rc= memcached_add_by_key(&memc,
574 return (rc == MEMCACHED_SUCCESS);
578 * Replaces an object on the server. This method only succeeds
579 * if the object is already present on the server.
581 * @param[in] key key of object to replace
582 * @param[in[ value value to replace object with
583 * @return true on success; false otherwise
585 bool replace(const std::string &key, const std::vector<char> &value) throw(Error)
590 throw(Error("the key or value supplied is empty!", false));
592 memcached_return rc= memcached_replace(&memc, key.c_str(), key.length(),
593 &value[0], value.size(),
595 return (rc == MEMCACHED_SUCCESS);
599 * Replaces an object on the server. This method only succeeds
600 * if the object is already present on the server. The server
601 * to replace the object on is specified by the master_key param.
603 * @param[in] master_key key of server to replace object on
604 * @param[in] key key of object to replace
605 * @param[in[ value value to replace object with
606 * @return true on success; false otherwise
608 bool replaceByKey(const std::string &master_key,
609 const std::string &key,
610 const std::vector<char> &value)
612 if (master_key.empty() ||
616 throw(Error("the master key or key supplied is empty!", false));
618 memcached_return rc= memcached_replace_by_key(&memc,
626 return (rc == MEMCACHED_SUCCESS);
630 * Places a segment of data before the last piece of data stored.
632 * @param[in] key key of object whose value we will prepend data to
633 * @param[in] value data to prepend to object's value
634 * @return true on success; false otherwise
636 bool prepend(const std::string &key, const std::vector<char> &value)
639 if (key.empty() || value.empty())
641 throw(Error("the key or value supplied is empty!", false));
643 memcached_return rc= memcached_prepend(&memc, key.c_str(), key.length(),
644 &value[0], value.size(), 0, 0);
645 return (rc == MEMCACHED_SUCCESS);
649 * Places a segment of data before the last piece of data stored. The
650 * server on which the object where we will be prepending data is stored
651 * on is specified by the master_key parameter.
653 * @param[in] master_key key of server where object is stored
654 * @param[in] key key of object whose value we will prepend data to
655 * @param[in] value data to prepend to object's value
656 * @return true on success; false otherwise
658 bool prependByKey(const std::string &master_key,
659 const std::string &key,
660 const std::vector<char> &value)
663 if (master_key.empty() ||
667 throw(Error("the master key or key supplied is empty!", false));
669 memcached_return rc= memcached_prepend_by_key(&memc,
678 return (rc == MEMCACHED_SUCCESS);
682 * Places a segment of data at the end of the last piece of data stored.
684 * @param[in] key key of object whose value we will append data to
685 * @param[in] value data to append to object's value
686 * @return true on success; false otherwise
688 bool append(const std::string &key, const std::vector<char> &value)
691 if (key.empty() || value.empty())
693 throw(Error("the key or value supplied is empty!", false));
695 memcached_return rc= memcached_append(&memc,
701 return (rc == MEMCACHED_SUCCESS);
705 * Places a segment of data at the end of the last piece of data stored. The
706 * server on which the object where we will be appending data is stored
707 * on is specified by the master_key parameter.
709 * @param[in] master_key key of server where object is stored
710 * @param[in] key key of object whose value we will append data to
711 * @param[in] value data to append to object's value
712 * @return true on success; false otherwise
714 bool appendByKey(const std::string &master_key,
715 const std::string &key,
716 const std::vector<char> &value)
719 if (master_key.empty() ||
723 throw(Error("the master key or key supplied is empty!", false));
725 memcached_return rc= memcached_append_by_key(&memc,
733 return (rc == MEMCACHED_SUCCESS);
737 * Overwrite data in the server as long as the cas_arg value
738 * is still the same in the server.
740 * @param[in] key key of object in server
741 * @param[in] value value to store for object in server
742 * @param[in] cas_arg "cas" value
744 bool cas(const std::string &key,
745 const std::vector<char> &value,
746 uint64_t cas_arg) throw(Error)
748 if (key.empty() || value.empty())
750 throw(Error("the key or value supplied is empty!", false));
752 memcached_return rc= memcached_cas(&memc, key.c_str(), key.length(),
753 &value[0], value.size(),
755 return (rc == MEMCACHED_SUCCESS);
759 * Overwrite data in the server as long as the cas_arg value
760 * is still the same in the server. The server to use is
761 * specified by the master_key parameter.
763 * @param[in] master_key specifies server to operate on
764 * @param[in] key key of object in server
765 * @param[in] value value to store for object in server
766 * @param[in] cas_arg "cas" value
768 bool casByKey(const std::string &master_key,
769 const std::string &key,
770 const std::vector<char> &value,
771 uint64_t cas_arg) throw(Error)
773 if (master_key.empty() ||
777 throw(Error("the master key, key or value supplied is empty!", false));
779 memcached_return rc= memcached_cas_by_key(&memc,
787 return (rc == MEMCACHED_SUCCESS);
791 * Delete an object from the server specified by the key given.
793 * @param[in] key key of object to delete
794 * @return true on success; false otherwise
796 bool remove(const std::string &key) throw(Error)
800 throw(Error("the key supplied is empty!", false));
802 memcached_return rc= memcached_delete(&memc, key.c_str(), key.length(), 0);
803 return (rc == MEMCACHED_SUCCESS);
807 * Delete an object from the server specified by the key given.
809 * @param[in] key key of object to delete
810 * @param[in] expiration time to delete the object after
811 * @return true on success; false otherwise
813 bool remove(const std::string &key,
814 time_t expiration) throw(Error)
818 throw(Error("the key supplied is empty!", false));
820 memcached_return rc= memcached_delete(&memc,
824 return (rc == MEMCACHED_SUCCESS);
828 * Delete an object from the server specified by the key given.
830 * @param[in] master_key specifies server to remove object from
831 * @param[in] key key of object to delete
832 * @return true on success; false otherwise
834 bool removeByKey(const std::string &master_key,
835 const std::string &key) throw(Error)
837 if (master_key.empty() || key.empty())
839 throw(Error("the master key or key supplied is empty!", false));
841 memcached_return rc= memcached_delete_by_key(&memc,
847 return (rc == MEMCACHED_SUCCESS);
851 * Delete an object from the server specified by the key given.
853 * @param[in] master_key specifies server to remove object from
854 * @param[in] key key of object to delete
855 * @param[in] expiration time to delete the object after
856 * @return true on success; false otherwise
858 bool removeByKey(const std::string &master_key,
859 const std::string &key,
860 time_t expiration) throw(Error)
862 if (master_key.empty() || key.empty())
864 throw(Error("the master key or key supplied is empty!", false));
866 memcached_return rc= memcached_delete_by_key(&memc,
872 return (rc == MEMCACHED_SUCCESS);
876 * Wipe the contents of memcached servers.
878 * @param[in] expiration time to wait until wiping contents of
880 * @return true on success; false otherwise
882 bool flush(time_t expiration)
884 memcached_return rc= memcached_flush(&memc, expiration);
885 return (rc == MEMCACHED_SUCCESS);
889 * Callback function for result sets. It passes the result
890 * sets to the list of functions provided.
892 * @param[in] callback list of callback functions
893 * @param[in] context pointer to memory reference that is
894 * supplied to the calling function
895 * @param[in] num_of_callbacks number of callback functions
896 * @return true on success; false otherwise
898 bool fetchExecute(memcached_execute_function *callback,
900 unsigned int num_of_callbacks)
902 memcached_return rc= memcached_fetch_execute(&memc,
906 return (rc == MEMCACHED_SUCCESS);
910 * Get the library version string.
911 * @return std::string containing a copy of the library version string.
913 const std::string libVersion() const
915 const char *ver= memcached_lib_version();
916 const std::string version(ver);
922 std::string servers_list;
924 memcached_server_st *servers;
925 memcached_result_st result;
930 #endif /* LIBMEMCACHEDPP_H */