summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-03-19 12:15:52 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-03-19 12:15:52 +0000
commit26bdd29be8f2621fb72bd0a1759b78728880788c (patch)
treed5b89738695ea69ab79a7512e25b2ad5675fe782 /src
parentf5cd7fa9fb50240b10602ba1eb6e52533314a1dd (diff)
Fl_Plugin: using bas 'A' encoded BCD to write the pointer. This is pure and fast C. However, the pointer is not human readable (hexadecimal would just be a waste of time ;-). The size of the string adapts to the length of the pointer and ignores big/little endian. All calls have room for a maximum of 128bit per pointer. I also removed the verbose comments to keep them out of the snapshot tonight.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7303 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Preferences.cxx64
1 files changed, 37 insertions, 27 deletions
diff --git a/src/Fl_Preferences.cxx b/src/Fl_Preferences.cxx
index 962e4a8c8..349a41cf7 100644
--- a/src/Fl_Preferences.cxx
+++ b/src/Fl_Preferences.cxx
@@ -25,7 +25,7 @@
// http://www.fltk.org/str.php
//
-#define FL_PLUGIN_VERBOSE
+#undef FL_PLUGIN_VERBOSE
#include <FL/Fl.H>
#include <FL/Fl_Preferences.H>
@@ -1858,22 +1858,44 @@ Fl_Plugin_Manager::~Fl_Plugin_Manager()
#endif
}
+static unsigned char x2i(char hi, char lo) {
+ return ((hi-'A')<<4) | (lo-'A');
+}
+
+static void i2x(unsigned char v, char *d) {
+ d[0] = ((v>>4)&0x0f)+'A'; d[1] = (v&0x0f)+'A';
+}
+
+static void *a2p(const char *s) {
+ union { void *ret; unsigned char d[sizeof(void*)]; } v;
+ v.ret = 0L;
+ int i=0, n=sizeof(void*);
+ for (i=0; i<n; i++) {
+ v.d[i] = x2i(s[2*i], s[2*i+1]);
+ }
+ return v.ret;
+}
+
+static void p2a(void *vp, char *d) {
+ union { void *vp; unsigned char s[sizeof(void*)]; } v;
+ v.vp = vp;
+ int i=0, n=sizeof(void*);
+ for (i=0; i<n; i++) {
+ i2x(v.s[i], d+i*2);
+ }
+ d[2*i] = 0;
+}
+
/**
* \brief Return the address of a plugin by index.
*/
Fl_Plugin *Fl_Plugin_Manager::plugin(int index)
{
- char buf[32];
+ char buf[34];
Fl_Plugin *ret = 0;
Fl_Preferences pin(this, index);
- pin.get("address", buf, "@0", 32);
- // avoiding %p because it is not (fully) implemented on all machines
- if (sizeof(void *) == sizeof(unsigned long long) )
- sscanf(buf, "@%llx", (unsigned long long*)&ret);
- else if (sizeof(void *) == sizeof(unsigned long) )
- sscanf(buf, "@%lx", (unsigned long*)&ret);
- else
- sscanf(buf, "@%x", (unsigned int*)&ret);
+ pin.get("address", buf, "", 34);
+ if (buf[0]=='@') ret = (Fl_Plugin*)a2p(buf+1);
#ifdef FL_PLUGIN_VERBOSE
printf("Fl_Plugin: returning plugin at index %d: (%s) %p\n", index, buf, ret);
#endif
@@ -1885,18 +1907,12 @@ Fl_Plugin *Fl_Plugin_Manager::plugin(int index)
*/
Fl_Plugin *Fl_Plugin_Manager::plugin(const char *name)
{
- char buf[32];
+ char buf[34];
Fl_Plugin *ret = 0;
if (groupExists(name)) {
Fl_Preferences pin(this, name);
- pin.get("address", buf, "@0", 32);
- // avoiding %p because it is not (fully) implemented on all machines
- if (sizeof(void *) == sizeof(unsigned long long) )
- sscanf(buf, "@%llx", (unsigned long long*)&ret);
- else if (sizeof(void *) == sizeof(unsigned long) )
- sscanf(buf, "@%lx", (unsigned long*)&ret);
- else
- sscanf(buf, "@%x", (unsigned int*)&ret);
+ pin.get("address", buf, "", 34);
+ if (buf[0]=='@') ret = (Fl_Plugin*)a2p(buf+1);
#ifdef FL_PLUGIN_VERBOSE
printf("Fl_Plugin: returning plugin named \"%s\": (%s) %p\n", name, buf, ret);
#endif
@@ -1917,18 +1933,12 @@ Fl_Plugin *Fl_Plugin_Manager::plugin(const char *name)
*/
Fl_Preferences::ID Fl_Plugin_Manager::addPlugin(const char *name, Fl_Plugin *plugin)
{
- char buf[32];
+ char buf[34];
#ifdef FL_PLUGIN_VERBOSE
printf("Fl_Plugin: adding plugin named \"%s\" at 0x%p\n", name, plugin);
#endif
Fl_Preferences pin(this, name);
- // avoiding %p because it is not (fully) implemented on all machines
- if (sizeof(void *) == sizeof(long long) )
- snprintf(buf, 31, "@%llx", (unsigned long long)plugin);
- else if (sizeof(void *) == sizeof(long) )
- snprintf(buf, 31, "@%lx", (unsigned long)plugin);
- else
- snprintf(buf, 31, "@%x", (unsigned int)plugin);
+ buf[0] = '@'; p2a(plugin, buf+1);
pin.set("address", buf);
return pin.id();
}