aboutsummaryrefslogtreecommitdiff
path: root/src/Permission.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-03 03:06:35 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 03:11:39 +0100
commitc4090b670d4a1fdb2b5d18e30764d50827838ee1 (patch)
tree2a7e3f24a8c8aa8b5e78d38007c084114342c834 /src/Permission.cxx
parentddf112378b7e9abef79fde13828ba904723c1ffd (diff)
Permission: use std::map instead of GHashTable
Diffstat (limited to 'src/Permission.cxx')
-rw-r--r--src/Permission.cxx28
1 files changed, 9 insertions, 19 deletions
diff --git a/src/Permission.cxx b/src/Permission.cxx
index e455f7ee..0b76e336 100644
--- a/src/Permission.cxx
+++ b/src/Permission.cxx
@@ -25,6 +25,9 @@ extern "C" {
#include "conf.h"
}
+#include <map>
+#include <string>
+
#include <glib.h>
#include <stdbool.h>
@@ -38,7 +41,7 @@ extern "C" {
#define PERMISSION_CONTROL_STRING "control"
#define PERMISSION_ADMIN_STRING "admin"
-static GHashTable *permission_passwords;
+static std::map<std::string, unsigned> permission_passwords;
static unsigned permission_default;
@@ -78,9 +81,6 @@ void initPermissions(void)
unsigned permission;
const struct config_param *param;
- permission_passwords = g_hash_table_new_full(g_str_hash, g_str_equal,
- g_free, NULL);
-
permission_default = PERMISSION_READ | PERMISSION_ADD |
PERMISSION_CONTROL | PERMISSION_ADMIN;
@@ -104,9 +104,8 @@ void initPermissions(void)
permission = parsePermissions(separator + 1);
- g_hash_table_replace(permission_passwords,
- password,
- GINT_TO_POINTER(permission));
+ permission_passwords.insert(std::make_pair(password,
+ permission));
} while ((param = config_get_next_param(CONF_PASSWORD, param)));
}
@@ -118,23 +117,14 @@ void initPermissions(void)
int getPermissionFromPassword(char const* password, unsigned* permission)
{
- bool found;
- gpointer key, value;
-
- found = g_hash_table_lookup_extended(permission_passwords,
- password, &key, &value);
- if (!found)
+ auto i = permission_passwords.find(password);
+ if (i == permission_passwords.end())
return -1;
- *permission = GPOINTER_TO_INT(value);
+ *permission = i->second;
return 0;
}
-void finishPermissions(void)
-{
- g_hash_table_destroy(permission_passwords);
-}
-
unsigned getDefaultPermissions(void)
{
return permission_default;