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
|
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* sample_datasource.c: A prototype for handling external data sources
*
* Copyright (C) 2002 Jody Goldberg (jody@gnome.org)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#include <gnumeric-config.h>
#include <glib/gi18n.h>
#include <gnumeric.h>
#include "func.h"
#include "plugin.h"
#include "value.h"
#include "workbook.h"
#include "sheet.h"
#include "plugin-util.h"
#include "module-plugin-defs.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h>
#include <stdio.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "gnumeric:atl"
GNUMERIC_MODULE_PLUGIN_INFO_DECL;
static int atl_fd = -1;
static char * atl_filename = NULL;
static FILE *atl_file = NULL;
static guint atl_source = 0;
static GHashTable *watched_values = NULL;
static GHashTable *watchers = NULL;
typedef struct {
char *name;
float value;
gboolean valid;
GHashTable *deps;
} WatchedValue;
typedef struct {
GnmExprFunction const *node; /* Expression node that calls us */
GnmDependent *dep; /* GnmDependent containing that node */
WatchedValue *value;
} Watcher;
static guint
watcher_hash (Watcher const *w)
{
return ((int)w->node << 16) + (int)w->dep;
}
static gint
watcher_equal (Watcher const *w1, Watcher const *w2)
{
return w1->node == w2->node && w1->dep == w2->dep;
}
static WatchedValue *
watched_value_fetch (char const *tag)
{
WatchedValue *val = g_hash_table_lookup (watched_values, tag);
if (val == NULL) {
val = g_new (WatchedValue, 1);
val->name = g_strdup (tag);
val->value = 0.;
val->valid = FALSE;
val->deps = g_hash_table_new (g_direct_hash, g_direct_equal);
g_hash_table_insert (watched_values, val->name, val);
}
return val;
}
/***************************************************************************/
static void
cb_watcher_queue_recalc (gpointer key, gpointer value, gpointer closure)
{
Watcher const *w = key;
Sheet *sheet = w->dep->sheet;
dependent_queue_recalc (w->dep);
if (sheet && workbook_autorecalc (sheet->workbook))
workbook_recalc (sheet->workbook);
}
static gboolean
cb_atl_input (GIOChannel *gioc, GIOCondition cond, gpointer ignored)
{
char buf[128];
/* quick format ticker:value\n
* there is no notion of a field for now.
*/
while (fgets (buf, sizeof (buf), atl_file) != NULL) {
char *sym = buf;
char *value_str = strchr (buf, ':');
if (value_str != NULL) {
float val;
char *end;
*value_str++ = '\0';
/* pre clear incase something left a mess */
errno = 0;
val = strtod (value_str, &end);
if (sym != end && errno == 0) {
WatchedValue *wv = watched_value_fetch (sym);
wv->valid = TRUE;
wv->value = val;
g_hash_table_foreach (wv->deps,
cb_watcher_queue_recalc, NULL);
printf ("'%s' <= %f\n", sym, val);
}
}
}
return TRUE;
}
void
plugin_init (void)
{
GIOChannel *channel = NULL;
char *filename;
fprintf (stderr, ">>>>>>>>>>>>>>>>>>>>>>>>>>>> LOAD ATL\n");
g_return_if_fail (atl_fd < 0);
filename = g_strdup_printf ("%s/%s", g_get_home_dir (), "atl");
/* NOTE : better to use popen here, but this is fine for testing */
#ifdef HAVE_MKFIFO
if (mkfifo (filename, S_IRUSR | S_IWUSR) == 0) {
atl_filename = filename;
atl_fd = open (atl_filename, O_RDWR|O_NONBLOCK);
} else
#endif /* HAVE_MKFIFO */
g_free (filename);
if (atl_fd >= 0) {
atl_file = fdopen (atl_fd, "rb");
channel = g_io_channel_unix_new (atl_fd);
atl_source = g_io_add_watch (channel,
G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL,
cb_atl_input, NULL);
g_io_channel_unref (channel);
}
watched_values = g_hash_table_new (
(GHashFunc) g_str_hash,
(GEqualFunc) g_str_equal);
watchers = g_hash_table_new (
(GHashFunc) watcher_hash,
(GEqualFunc) watcher_equal);
}
/* TODO : init and cleanup should be given CommandContexts
* to make things tidier
*/
void
plugin_cleanup (void)
{
fprintf (stderr, "UNLOAD ATL >>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
if (atl_source) {
g_source_remove (atl_source);
atl_source = 0;
}
if (atl_filename) {
unlink (atl_filename);
g_free (atl_filename);
atl_filename = NULL;
}
if (atl_fd >= 0) {
close (atl_fd);
atl_fd = -1;
}
if (atl_file != NULL) {
fclose (atl_file);
atl_file = NULL;
}
g_hash_table_destroy (watched_values);
watched_values = NULL;
g_hash_table_destroy (watchers);
watchers = NULL;
}
static GnmValue *
atl_last (FunctionEvalInfo *ei, GnmValue *argv[])
{
WatchedValue *val = watched_value_fetch (value_peek_string (argv[0]));
Watcher key;
key.node = ei->func_call;
key.dep = ei->pos->dep;
g_return_val_if_fail (val != NULL,
value_new_error_NA (ei->pos));
/* If caller wants to be notified of updates */
if (key.node != NULL && key.dep != NULL) {
Watcher *w = g_hash_table_lookup (watchers, &key);
if (w == NULL) {
w = g_new (Watcher, 1);
key.value = val;
*w = key;
g_hash_table_insert (watchers, w, w);
g_hash_table_insert (w->value->deps, w, w);
} else if (w->value != val) {
g_hash_table_remove (w->value->deps, w);
w->value = val;
g_hash_table_insert (w->value->deps, w, w);
}
}
if (!val->valid)
return value_new_error_NA (ei->pos);
return value_new_float (val->value);
}
static DependentFlags
atl_last_link (FunctionEvalInfo *ei)
{
puts ("link atl_last");
return DEPENDENT_ALWAYS_UNLINK;
}
static void
atl_last_unlink (FunctionEvalInfo *ei)
{
Watcher key, *w;
key.node = ei->func_call;
key.dep = ei->pos->dep;
w = g_hash_table_lookup (watchers, &key);
if (w != NULL) {
if (w->value != NULL)
g_hash_table_remove (w->value->deps, w);
g_free (w);
}
puts ("unlink atl_last");
}
static const char *help_atl_last = {
/* xgettext:no-c-format */
N_("@FUNCTION=atl_last\n"
"@SYNTAX=ATL_LAST (tag)\n"
"@DESCRIPTION="
"ATL_LAST is a sample implemention of a real time data source. "
"It takes a string tag and monitors the named pipe /tmp/atl "
"for changes to the value of that tag.\n"
"\n"
"* This is no intended to be generally enabled and is OFF by default.\n"
"\n"
"@EXAMPLES=\n"
"ATL_LAST(\"IBM\")"
"\n"
"@SEEALSO=")
};
GnmFuncDescriptor const ATL_functions[] = {
{"atl_last", "s", "tag", &help_atl_last, atl_last, NULL, atl_last_link, atl_last_unlink },
{NULL}
};
|