Sha256: 608fc1527ffab753263eb57fbd0f6e3c8a50cf336402d9a9122e8bbec72c33f3

Contents?: true

Size: 1.56 KB

Versions: 16

Compression:

Stored size: 1.56 KB

Contents

#ifndef LCB_AUTH_PRIV_H
#define LCB_AUTH_PRIV_H
#include <libcouchbase/auth.h>

#ifdef __cplusplus
#include <string>
#include <map>

namespace lcb {
class Authenticator {
public:
    typedef std::map<std::string,std::string> Map;
    // Gets the "global" username
    const std::string& username() const { return m_username; }

    // Gets the "global" password
    const std::string& password() const { return m_password; }

    // Get the username and password for a specific bucket
    const std::string& username_for(const char *bucket) const;
    const std::string& password_for(const char *bucket) const;

    const Map& buckets() const { return m_buckets; }
    Authenticator() : m_refcount(1), m_mode(LCBAUTH_MODE_CLASSIC) {}
    Authenticator(const Authenticator&);

    size_t refcount() const { return m_refcount; }
    void incref() { ++m_refcount; }
    void decref() { if (!--m_refcount) { delete this; } }
    lcb_error_t set_mode(lcbauth_MODE mode_) {
        if (m_buckets.size() || m_username.size() || m_password.size()) {
            return LCB_ERROR;
        } else {
            m_mode = mode_;
            return LCB_SUCCESS;
        }
    }
    lcbauth_MODE mode() const { return m_mode; }
    lcb_error_t add(const char *user, const char *pass, int flags);
    lcb_error_t add(const std::string& user, const std::string& pass, int flags) {
        return add(user.c_str(), pass.c_str(), flags);
    }

private:
    Map m_buckets;
    std::string m_username;
    std::string m_password;
    size_t m_refcount;
    lcbauth_MODE m_mode;
};
}
#endif
#endif /* LCB_AUTH_H */

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
libcouchbase-1.2.8 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.7 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.6 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.5 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.4 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.3 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.2 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.1 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.2.0 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.1.1 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.1.0 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.0.4 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.0.3 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.0.2 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.0.1 ext/libcouchbase/src/auth-priv.h
libcouchbase-1.0.0 ext/libcouchbase/src/auth-priv.h