struct _ZakCgiUrlPrivate
{
ZakCgiMain *zakcgimain;
-
- gchar *controller;
- gchar *action;
GHashTable *ht_functions;
};
ZakCgiUrlPrivate *priv = ZAK_CGI_URL_GET_PRIVATE (zak_cgi_url);
priv->zakcgimain = NULL;
-
- priv->controller = NULL;
- priv->action = NULL;
priv->ht_functions = g_hash_table_new (g_str_hash, g_str_equal);
}
ZakCgiUrl *zak_cgi_url;
ZakCgiUrlPrivate *priv;
- GHashTable *ht_env;
-
- GValue *url;
-
zak_cgi_url = ZAK_CGI_URL (g_object_new (zak_cgi_url_get_type (), NULL));
priv = ZAK_CGI_URL_GET_PRIVATE (zak_cgi_url);
priv->zakcgimain = zakcgimain;
- /* parsing */
- ht_env = zak_cgi_main_get_parameters (priv->zakcgimain, NULL);
- url = g_hash_table_lookup (ht_env, "_url");
- if (url != NULL)
- {
- gchar **splitted;
-
- splitted = g_strsplit (g_value_get_string (url), "/", -1);
- if (g_strv_length (splitted) >= 3)
- {
- priv->controller = g_strdup (splitted[1]);
- priv->action = g_strdup (splitted [2]);
- }
- g_strfreev (splitted);
- }
-
return zak_cgi_url;
}
void
zak_cgi_url_connect (ZakCgiUrl *url,
- const gchar *controller,
- const gchar *action,
+ const gchar *regex,
ZakCgiUrlConnectedFunction function,
gpointer user_data)
{
g_ptr_array_add (ar, function);
g_ptr_array_add (ar, user_data);
- g_hash_table_replace (priv->ht_functions, g_strdup_printf ("%s|%s", controller, action), g_ptr_array_ref (ar));
+ g_hash_table_replace (priv->ht_functions, g_strdup (regex), g_ptr_array_ref (ar));
g_ptr_array_unref (ar);
}
void
zak_cgi_url_dispatch (ZakCgiUrl *url)
{
- gchar *name;
+ GError *error;
+
+ const gchar *_url;
+
+ GHashTable *ht_env;
+ GHashTableIter iter;
+ gpointer key;
+ gpointer value;
+
+ GRegex *regex;
+ GMatchInfo *minfo;
+ gchar *str_regex;
+
GPtrArray *ar;
ZakCgiUrlConnectedFunction function;
-
+
ZakCgiUrlPrivate *priv = ZAK_CGI_URL_GET_PRIVATE (url);
- name = g_strdup_printf ("%s|%s", priv->controller, priv->action);
- ar = (GPtrArray *)g_hash_table_lookup (priv->ht_functions, name);
- if (ar != NULL)
+ ht_env = zak_cgi_main_get_parameters (priv->zakcgimain, NULL);
+ _url = g_value_get_string (g_hash_table_lookup (ht_env, "_url"));
+ if (_url != NULL)
{
- function = g_ptr_array_index (ar, 0);
- (*function)(g_ptr_array_index (ar, 1));
+ g_hash_table_iter_init (&iter, priv->ht_functions);
+ while (g_hash_table_iter_next (&iter, &key, &value))
+ {
+ error = NULL;
+ str_regex = g_strdup_printf ("%s$", (gchar *)key);
+ regex = g_regex_new (str_regex, 0, 0, &error);
+ g_free (str_regex);
+ if (regex == NULL
+ || error != NULL)
+ {
+ syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "Error on creating regex: %s.",
+ error->message != NULL ? error->message : "no details");
+ return;
+ }
+
+ if (g_regex_match ((const GRegex *)regex, _url, 0, &minfo))
+ {
+ ar = (GPtrArray *)value;
+ function = g_ptr_array_index (ar, 0);
+ (*function)(minfo, g_ptr_array_index (ar, 1));
+ }
+ }
}
}
#include <url.h>
void
-hook (gpointer user_data)
+hook (GMatchInfo *minfo, gpointer user_data)
{
GString *str = (GString *)user_data;
g_string_append_printf (str, "FROM THE HOOK<br/><br/>\n");
+
+ while (g_match_info_matches (minfo))
+ {
+ guint n = g_match_info_get_match_count (minfo);
+ g_string_append_printf (str, "Match count: %d<br/><br/>\n", n);
+ gchar *word = g_match_info_fetch (minfo, 0);
+ g_string_append_printf (str, "Found: %s<br/><br/>\n", word);
+ g_free (word);
+
+ guint i;
+ for (i = 1; i < n; i++)
+ {
+ gchar *word = g_match_info_fetch (minfo, i);
+ g_string_append_printf (str, "sub %d: %s<br/><br/>\n", i, word);
+ g_free (word);
+ }
+
+ if (n > 1)
+ {
+ word = g_match_info_fetch_named (minfo, "controller");
+ g_string_append_printf (str, "sub named controller: %s<br/><br/>\n", word);
+ g_free (word);
+ }
+
+ g_match_info_next (minfo, NULL);
+ }
}
int
str = g_string_new ("<html>\n"
"<head><title>Url</title></head>\n"
- "<body>\n");
+ "<body>\n"
+ "FROM INIT<br/><br/>\n");
url = zak_cgi_url_new (NULL);
- zak_cgi_url_connect (url, "thecontroller", "theaction", (ZakCgiUrlConnectedFunction)hook, str);
+ zak_cgi_url_connect (url, "/(?<controller>[a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)", (ZakCgiUrlConnectedFunction)hook, str);
zak_cgi_url_dispatch (url);
return 0;
}
-