|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
Hello, apart from using fork() and exec*(), or system(), is there any
other way to run the gperf command line program inside a C program? I need to generate at run-time a perfect hash function, and it seems that gperf has no API to execute it programmatically, so the only way is to call it as an external program, and instruct it to write the ouput code to a certain file whose path I know. Thanks a lot |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
Alexander Mahone wrote, On 26/05/08 14:41:
> Hello, apart from using fork() and exec*(), or system(), is there any > other way to run the gperf command line program inside a C program? I In standard C the only method is system(), anything else is system specific, so I suggest asking in comp.unix.programmer. > need to generate at run-time a perfect hash function, and it seems > that gperf has no API to execute it programmatically, so the only way > is to call it as an external program, and instruct it to write the > ouput code to a certain file whose path I know. > Thanks a lot A better method almost certainly is to either find or write a library that does what you want. If you search the group you will find that hashing has been discussed several times here. Alternatively a simple google search for "perfect has library" without the quotes shows some options. -- Flash Gordon |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
In article <b91dbf2d-7c63-4c01-ad5d-2476fbe6fc60@d45g2000hsc.googlegroups.com>,
Alexander Mahone <salvodanilogiuffrida@gmail.com> wrote: >Hello, apart from using fork() and exec*(), or system(), is there any >other way to run the gperf command line program inside a C program? Note that C does not define fork() or exec*(), only system(). >I >need to generate at run-time a perfect hash function, and it seems >that gperf has no API to execute it programmatically, so the only way >is to call it as an external program, and instruct it to write the >ouput code to a certain file whose path I know. Which system() should do fine for. Anything beyond system() is system-specific. [OT] Based upon your reference to fork() and exec*(), it looks like you might be using a POSIX type system. If so, then -possibly-, depending on your system architecture and how exactly gperf was compiled, you -might- be able to use operating system facilities to request that gperf be loaded -as if- it were a dynamic library, find it's entry point, and dispatch to that. Common facility names that might give this kind of access are dlopen() and dlsym(). You might or might not be able to find a symbol within the program that gives you a callable API; if not, then you would still have to create command line arguments, possibly use dup2() or similiar OS facilities do feed the program with internal streams instead of creating a real file... On the other hand, the kinds of systems that tend to make hacks like the above possible, usually have ways of "pre-linking" programs: in such cases, the speed difference between the hack I mentioned vs invocation via system() is probably close to unmeasurable. -- "It's a hard life sometimes and the biggest temptation is to let how hard it is be an excuse to weaken." -- Walter Dean Myers |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
Flash Gordon <spam@flash-gordon.me.uk> writes:
[...] > A better method almost certainly is to either find or write a library > that does what you want. If you search the group you will find that > hashing has been discussed several times here. Alternatively a simple > google search for "perfect has library" without the quotes shows some > options. You mean "perfect hash library", yes? -- Keith Thompson (The_Other_Keith) kst-u@mib.org <http://www.ghoti.net/~kst> Nokia "We must do something. This is something. Therefore, we must do this." -- Antony Jay and Jonathan Lynn, "Yes Minister" |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
Keith Thompson wrote, On 26/05/08 19:33:
> Flash Gordon <spam@flash-gordon.me.uk> writes: > [...] >> A better method almost certainly is to either find or write a library >> that does what you want. If you search the group you will find that >> hashing has been discussed several times here. Alternatively a simple >> google search for "perfect has library" without the quotes shows some >> options. > > You mean "perfect hash library", yes? Yes, thank you. -- Flash Gordon |
|
![]() |
| Outils de la discussion | |
|
|