Re: [Rd] using openbabel plugins in R

2013-03-27 Thread Kevin Horan
After some more testing I have found that it actually does work if I 
compile without the plugin library but load it with dyn.load. I'm not 
sure why this wasn't working before. It only works though if the plugin 
library is loaded before libobtest2.so (the open babel main lib basically).

So, to clarify, the following works now:

g++ -shared -o libobtest2.so obtest2.o -fpic -lopenbabel -lR

R>dyn.load("/usr/lib/openbabel/2.2.3/mdlformat.so")
R>dyn.load("libobtest2.so")
R>.Call("test")
  format: 0x7fe114c96d20  #this is the correct result
  NULL


But now I have a chicken and egg problem. The plugin libraries are 
not stored in a standard directory, but open babel provides a function 
to list their paths. So I need to load the open babel library to fetch 
the plugin paths, then I can load the plugins, but, oops, too late, the 
open babel library is already loaded so loading the plugins now doesn't 
work. I tried using dyn.unload("libobtest2.so") but it didn't work. It 
seems like I'd have to compile a small executable program that uses 
openbabel to fetch the plugin paths, then run it as an external program 
from within R, then load the plugins, then load the open babel lib.
Does it make any sense that the order in which these are loaded 
affects things? Is there a way to load the plugin lib later and still 
have  it work? If the order does have to be maintained, any better ideas 
how to accomplish this? Thanks.

Also, here is the dlopen command that openbabel uses:
dlopen(lib_name.c_str(), RTLD_LAZY | RTLD_GLOBAL)


Kevin


On 03/26/2013 06:54 AM, Dirk Eddelbuettel wrote:

On 25 March 2013 at 12:50, Kevin Horan wrote:
| I posted this in openbabel-devel but didn't get much help, so hopefully
| someone here can help. I don't think its too openbabel specific.
|
| I would like to make use of open babel from within the R language.
| Initially I just need to do some format conversions, but may expand the
| usage to other parts of OpenBabel as well. I am familiar with embedding
| C/C++ code in R, but I'm having some trouble with the plugin mechanism
| of OpenBabel in this case. The  problem is that the formats are not
| available when I run the OpenBabel code from within R. So, for example,
| if I search for the SDF format like so:
|   OBFormat *format = conv.FindFormat("SDF");

[...]

|  The way it works normally in OpenBabel is that each plugin is its
| own shared library and then they get loaded at run time with the dlopen
| function (on linux at least). I have verified that this code is still
| being executed when called from within R, but it doesn't work for some
| reason.

I would try to start from the smallest possible working examples.  R itself
uses dlopen (see eg $RHOME/modules/ for the files it loads), and so does
OpenBabel. Maybe some wires get crossed. You may well have to dig down with
the debugger and see what assumptions / environment variables / ... are valid
or invalid between the working and non-working case.

Dirk



__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] mean.data.frame: R 3.0.0 help page wrong?

2013-03-27 Thread Uwe Ligges



On 27.03.2013 05:07, David Winsemius wrote:


The help page for mean still says there is a method for data.frame although 
this has been deprecated for several versions and in R 3.0.0 beta I get:

  mean(data.frame(x=rnorm(10), y=rnorm(10))  )
[1] NA
Warning message:
In mean.default(data.frame(x = rnorm(10), y = rnorm(10))) :
   argument is not numeric or logical: returning NA

I read in news():

o   mean() for data frames and sd() for data frames and matrices are
defunct.


Shouldn't the help page be amended?


Has been amended this morning by Martin Maechler, although I do not see 
a reply.


Best,
Uwe

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] using openbabel plugins in R

2013-03-27 Thread Dirk Eddelbuettel

On 27 March 2013 at 10:02, Kevin Horan wrote:
| After some more testing I have found that it actually does work if I 
| compile without the plugin library but load it with dyn.load. I'm not 
| sure why this wasn't working before. It only works though if the plugin 
| library is loaded before libobtest2.so (the open babel main lib basically).
|  So, to clarify, the following works now:
| 
| g++ -shared -o libobtest2.so obtest2.o -fpic -lopenbabel -lR
| 
| R>dyn.load("/usr/lib/openbabel/2.2.3/mdlformat.so")
| R>dyn.load("libobtest2.so")
| R>.Call("test")
|format: 0x7fe114c96d20  #this is the correct result
|NULL
| 
| 
|  But now I have a chicken and egg problem. The plugin libraries are 
| not stored in a standard directory, but open babel provides a function 
| to list their paths. So I need to load the open babel library to fetch 
| the plugin paths, then I can load the plugins, but, oops, too late, the 
| open babel library is already loaded so loading the plugins now doesn't 

Can use something like pkg-config to query the path?  Eg R offers this
(beyond its own "R CMD config ..." interface:

edd@max:~$ pkg-config --libs-only-L libR
-L/usr/lib/R/lib  
edd@max:~$ 

| work. I tried using dyn.unload("libobtest2.so") but it didn't work. It 
| seems like I'd have to compile a small executable program that uses 
| openbabel to fetch the plugin paths, then run it as an external program 
| from within R, then load the plugins, then load the open babel lib.

Yup. And you could do the test / probing (if that is the last resort) at the
configure test.

|  Does it make any sense that the order in which these are loaded 
| affects things? Is there a way to load the plugin lib later and still 
| have  it work? If the order does have to be maintained, any better ideas 
| how to accomplish this? Thanks.
|  Also, here is the dlopen command that openbabel uses:
|  dlopen(lib_name.c_str(), RTLD_LAZY | RTLD_GLOBAL)

That rings a bell. We once had what I think was that very same issue with
Rmpi as the OpenMPI libraries have there symbols split over several shared
libraries.  But that was many many years ago and I have forgotten what we did
then ...

Dirk

 
| Kevin
| 
| 
| On 03/26/2013 06:54 AM, Dirk Eddelbuettel wrote:
| > On 25 March 2013 at 12:50, Kevin Horan wrote:
| > | I posted this in openbabel-devel but didn't get much help, so hopefully
| > | someone here can help. I don't think its too openbabel specific.
| > |
| > | I would like to make use of open babel from within the R language.
| > | Initially I just need to do some format conversions, but may expand the
| > | usage to other parts of OpenBabel as well. I am familiar with embedding
| > | C/C++ code in R, but I'm having some trouble with the plugin mechanism
| > | of OpenBabel in this case. The  problem is that the formats are not
| > | available when I run the OpenBabel code from within R. So, for example,
| > | if I search for the SDF format like so:
| > |   OBFormat *format = conv.FindFormat("SDF");
| >
| > [...]
| >
| > |  The way it works normally in OpenBabel is that each plugin is its
| > | own shared library and then they get loaded at run time with the dlopen
| > | function (on linux at least). I have verified that this code is still
| > | being executed when called from within R, but it doesn't work for some
| > | reason.
| >
| > I would try to start from the smallest possible working examples.  R itself
| > uses dlopen (see eg $RHOME/modules/ for the files it loads), and so does
| > OpenBabel. Maybe some wires get crossed. You may well have to dig down with
| > the debugger and see what assumptions / environment variables / ... are 
valid
| > or invalid between the working and non-working case.
| >
| > Dirk
| >
| 
| __
| R-devel@r-project.org mailing list
| https://stat.ethz.ch/mailman/listinfo/r-devel

-- 
Dirk Eddelbuettel | e...@debian.org | http://dirk.eddelbuettel.com

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] using openbabel plugins in R

2013-03-27 Thread Simon Urbanek

On Mar 27, 2013, at 1:02 PM, Kevin Horan wrote:

> After some more testing I have found that it actually does work if I compile 
> without the plugin library but load it with dyn.load. I'm not sure why this 
> wasn't working before. It only works though if the plugin library is loaded 
> before libobtest2.so (the open babel main lib basically).
>So, to clarify, the following works now:
> 
> g++ -shared -o libobtest2.so obtest2.o -fpic -lopenbabel -lR
> 
> R>dyn.load("/usr/lib/openbabel/2.2.3/mdlformat.so")
> R>dyn.load("libobtest2.so")
> R>.Call("test")
>  format: 0x7fe114c96d20  #this is the correct result
>  NULL
> 
> 
>But now I have a chicken and egg problem.

Run the egg in a separate R process (i.e. use system() to call another R 
process which loads libobtest2.so and calls the API to get the path). Then load 
the modules followed by the .so. 

Note that all this is inherently fragile and probably not portable (e.g. it 
seems to assume flat namespaces). Another way (only slightly less fragile) is 
to link libobtest2.so against the modules directly.

The real issue seems in openbabel - there is really no reason why it shouldn't 
be loading the modules. I didn't look at it, but it could be that it is simply 
trying to detect things in the wrong namespace and thus mis-detecting something 
in R as its own. It's obviously a bad design in openbabel as it's polluting the 
global namespace, but that's another story... (Linux users won't notice as 
Linux doesn't support two-level namespaces AFAIK).

Cheers,
Simon


> The plugin libraries are not stored in a standard directory, but open babel 
> provides a function to list their paths. So I need to load the open babel 
> library to fetch the plugin paths, then I can load the plugins, but, oops, 
> too late, the open babel library is already loaded so loading the plugins now 
> doesn't work. I tried using dyn.unload("libobtest2.so") but it didn't work. 
> It seems like I'd have to compile a small executable program that uses 
> openbabel to fetch the plugin paths, then run it as an external program from 
> within R, then load the plugins, then load the open babel lib.
>Does it make any sense that the order in which these are loaded affects 
> things? Is there a way to load the plugin lib later and still have  it work? 
> If the order does have to be maintained, any better ideas how to accomplish 
> this? Thanks.
>Also, here is the dlopen command that openbabel uses:
>dlopen(lib_name.c_str(), RTLD_LAZY | RTLD_GLOBAL)
> 
> 
> Kevin
> 
> 
> On 03/26/2013 06:54 AM, Dirk Eddelbuettel wrote:
>> On 25 March 2013 at 12:50, Kevin Horan wrote:
>> | I posted this in openbabel-devel but didn't get much help, so hopefully
>> | someone here can help. I don't think its too openbabel specific.
>> |
>> | I would like to make use of open babel from within the R language.
>> | Initially I just need to do some format conversions, but may expand the
>> | usage to other parts of OpenBabel as well. I am familiar with embedding
>> | C/C++ code in R, but I'm having some trouble with the plugin mechanism
>> | of OpenBabel in this case. The  problem is that the formats are not
>> | available when I run the OpenBabel code from within R. So, for example,
>> | if I search for the SDF format like so:
>> |   OBFormat *format = conv.FindFormat("SDF");
>> 
>> [...]
>> 
>> |  The way it works normally in OpenBabel is that each plugin is its
>> | own shared library and then they get loaded at run time with the dlopen
>> | function (on linux at least). I have verified that this code is still
>> | being executed when called from within R, but it doesn't work for some
>> | reason.
>> 
>> I would try to start from the smallest possible working examples.  R itself
>> uses dlopen (see eg $RHOME/modules/ for the files it loads), and so does
>> OpenBabel. Maybe some wires get crossed. You may well have to dig down with
>> the debugger and see what assumptions / environment variables / ... are valid
>> or invalid between the working and non-working case.
>> 
>> Dirk
>> 
> 
> __
> R-devel@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
> 
> 

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] using openbabel plugins in R

2013-03-27 Thread Kevin Horan


Thanks for all the suggestions. I have discovered that the problem is 
fixed in openbabel 2.3.x. I had actually been testing with open babel 
2.3.2 (as well as 2.2.3), but I was running it from the build directory 
since I didn't want to install it on the system as I was only testing 
with it. Because of this, 2.3.2 failed in the same way as 2.2.3 (the 
version actually installed), but for a different reason (It couldn't 
find the modules directory ). Actually installing 2.3.2 fixed the problem.


Kevin

On 03/27/2013 11:20 AM, Simon Urbanek wrote:

On Mar 27, 2013, at 1:02 PM, Kevin Horan wrote:


After some more testing I have found that it actually does work if I compile 
without the plugin library but load it with dyn.load. I'm not sure why this 
wasn't working before. It only works though if the plugin library is loaded 
before libobtest2.so (the open babel main lib basically).
So, to clarify, the following works now:

g++ -shared -o libobtest2.so obtest2.o -fpic -lopenbabel -lR

R>dyn.load("/usr/lib/openbabel/2.2.3/mdlformat.so")
R>dyn.load("libobtest2.so")
R>.Call("test")
  format: 0x7fe114c96d20  #this is the correct result
  NULL


But now I have a chicken and egg problem.

Run the egg in a separate R process (i.e. use system() to call another R 
process which loads libobtest2.so and calls the API to get the path). Then load 
the modules followed by the .so.

Note that all this is inherently fragile and probably not portable (e.g. it 
seems to assume flat namespaces). Another way (only slightly less fragile) is 
to link libobtest2.so against the modules directly.

The real issue seems in openbabel - there is really no reason why it shouldn't 
be loading the modules. I didn't look at it, but it could be that it is simply 
trying to detect things in the wrong namespace and thus mis-detecting something 
in R as its own. It's obviously a bad design in openbabel as it's polluting the 
global namespace, but that's another story... (Linux users won't notice as 
Linux doesn't support two-level namespaces AFAIK).

Cheers,
Simon



The plugin libraries are not stored in a standard directory, but open babel provides a 
function to list their paths. So I need to load the open babel library to fetch the 
plugin paths, then I can load the plugins, but, oops, too late, the open babel library is 
already loaded so loading the plugins now doesn't work. I tried using 
dyn.unload("libobtest2.so") but it didn't work. It seems like I'd have to 
compile a small executable program that uses openbabel to fetch the plugin paths, then 
run it as an external program from within R, then load the plugins, then load the open 
babel lib.
Does it make any sense that the order in which these are loaded affects 
things? Is there a way to load the plugin lib later and still have  it work? If 
the order does have to be maintained, any better ideas how to accomplish this? 
Thanks.
Also, here is the dlopen command that openbabel uses:
dlopen(lib_name.c_str(), RTLD_LAZY | RTLD_GLOBAL)


Kevin


On 03/26/2013 06:54 AM, Dirk Eddelbuettel wrote:

On 25 March 2013 at 12:50, Kevin Horan wrote:
| I posted this in openbabel-devel but didn't get much help, so hopefully
| someone here can help. I don't think its too openbabel specific.
|
| I would like to make use of open babel from within the R language.
| Initially I just need to do some format conversions, but may expand the
| usage to other parts of OpenBabel as well. I am familiar with embedding
| C/C++ code in R, but I'm having some trouble with the plugin mechanism
| of OpenBabel in this case. The  problem is that the formats are not
| available when I run the OpenBabel code from within R. So, for example,
| if I search for the SDF format like so:
|   OBFormat *format = conv.FindFormat("SDF");

[...]

|  The way it works normally in OpenBabel is that each plugin is its
| own shared library and then they get loaded at run time with the dlopen
| function (on linux at least). I have verified that this code is still
| being executed when called from within R, but it doesn't work for some
| reason.

I would try to start from the smallest possible working examples.  R itself
uses dlopen (see eg $RHOME/modules/ for the files it loads), and so does
OpenBabel. Maybe some wires get crossed. You may well have to dig down with
the debugger and see what assumptions / environment variables / ... are valid
or invalid between the working and non-working case.

Dirk


__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel




__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


[Rd] broken link to binary of R-3.0 RC

2013-03-27 Thread Dan Tenenbaum
Hi,

>From http://cran.r-project.org/bin/windows/base/rtest.html
I clicked on:

Download R-3.0.0 RC build for Windows

and got Object not found for

http://cran.r-project.org/bin/windows/base/R-3.0.0rc-win.exe

Thanks,
Dan

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel


Re: [Rd] sysdata.rda vs. rda files in data directory

2013-03-27 Thread Ulrike Grömping
Dear all, 

for everybody's benefit, here is a brief summary of what I learnt from Uwe
Ligges. There is a convincing reason against combining a data directory with
a datalist file only (the way for retrieving a list of the data available
without the package loaded) with a sysdata.rda file in the R directory (the
only way for achieving a small installed size): the command data(filename)
will not work on the names listed in the datalist file (I thought
otherwise), which would be sort of odd and unexpected. Therefore, I will go
for the small installed size (=sysdata.rda file) without a data directory.

Best, Ulrike



--
View this message in context: 
http://r.789695.n4.nabble.com/sysdata-rda-vs-rda-files-in-data-directory-tp4662302p4662661.html
Sent from the R devel mailing list archive at Nabble.com.

__
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel