Hi,

one of my students and I managed to discover different issues with the Osmosis launch scripts in the $OSMOSIS/bin directory, both on Windows and Unix-like systems.

The shell script (osmosis) will fail or even worse, silently pass incorrect parameters to the Java process if any of the parameter values contain spaces. Consider the following command entered in an interactive shell:

osmosis --read-apidb database="osm" user="os m" password="os m" --write-null

This will fail with the "Only one default (un-named) argument can exist per task." message. Changing the quoting on the original command line doesn't help.

The problem is with the way osmosis shell script executes the java runtime. The relevant lines of the script read like this:

EXEC="$JAVACMD ... $MAINCLASS $OSMOSIS_OPTIONS $@"
exec $EXEC

While interpolating the $@ in this expression, the shell discards all original quoting. The solution I've found for this is doing the following:

EXEC="$JAVACMD ... $MAINCLASS $OSMOSIS_OPTIONS"
exec $EXEC "$@"

Apparently, the exact sequence "$@" instructs the shell to preserve original quoting in the arguments, while "foo $@" does not. It doesn't make any sense to me, either, but it's probably some compatibility burden from decades ago. Anyway, the attached patch osmosis-shell-quoting.patch makes the necessary change (tested on Ubuntu 9.10 with bash 4.0.33 and /bin/sh which is linked to dash 0.5.5.1 here).

The Windows batch script gets the quoting right, but fails if Osmosis is installed on a drive different from the current working directory of the user. This is somewhat tricky, so I'll try to explain it step by step.

Assume that Osmosis is installed in c:\osmosis, PATH includes c:\osmosis\bin, and the current working directory is d:\data. User types:

d:\data> osmosis --read-xml dump.osm --write-null

The osmosis.bat script does the following:

set SAVEDIR=%CD%       # SAVEDIR == d:\data
set MYAPP_HOME=%~dp0.. # MYAPP_HOME == c:\osmosis\bin\..
cd %MYAPP_HOME%        # expands to cd c:\osmosis\bin\..  <-- BUG!
                       # %CD% == d:\data
set MYAPP_HOME=%CD%    # MYAPP_HOME == d:\data, which is clearly wrong.
# everything fails hereafter as the classpath points to d:\data\lib etc.

The bug is that the current working directory (%CD%) didn't change after cd %MYAPP_HOME% since the working directories are per-drive as they were in DOS 2.0 or so and we're on drive D: and did just change the CWD for drive C:.

The solution is really simple: all this %SAVEDIR% theater for "getting the absolute path" isn't necessary at all, because %~dp0 already returns the absolute path ('d' magic letter gets the drive, 'p' gets the full path, as documented on TechNet), so

set MYAPP_HOME=%dp~0

is perfectly sufficient, AFAIK.

The attached osmosis-batch-cwd.patch does the necessary change, tested on Windows 7 (32-bit).

Both patches apply to current trunk. I'd also like to thank Markus Bernd Wagner from the University of Stuttgart for discovering the shell script issue. If anything is wrong with the patches, just say so, I'll try to fix it.

Best regards
Igor
Index: package/bin/osmosis
===================================================================
--- package/bin/osmosis (Revision 25332)
+++ package/bin/osmosis (Arbeitskopie)
@@ -89,6 +89,6 @@
 MYAPP_CLASSPATH=$MYAPP_HOME/lib/default/plexus-classworlds-*.jar
 
 MAINCLASS=org.codehaus.classworlds.Launcher
-EXEC="$JAVACMD $JAVACMD_OPTIONS -cp $MYAPP_CLASSPATH -Dapp.home=$MYAPP_HOME 
-Dclassworlds.conf=$MYAPP_HOME/config/plexus.conf  $MAINCLASS $OSMOSIS_OPTIONS 
$@"
+EXEC="$JAVACMD $JAVACMD_OPTIONS -cp $MYAPP_CLASSPATH -Dapp.home=$MYAPP_HOME 
-Dclassworlds.conf=$MYAPP_HOME/config/plexus.conf  $MAINCLASS $OSMOSIS_OPTIONS"
 
-exec $EXEC
+exec $EXEC "$@"
Index: package/bin/osmosis.bat
===================================================================
--- package/bin/osmosis.bat     (Revision 25332)
+++ package/bin/osmosis.bat     (Arbeitskopie)
@@ -25,14 +25,7 @@
 REM fi
 IF "%JAVACMD%"=="" set JAVACMD=java
 
-REM Set "SAVEDIR" to the current directory
-set SAVEDIR=%CD%
 set MYAPP_HOME=%~dp0..
-REM Now make the MYAPP_HOME path absolute
-cd %MYAPP_HOME%
-set MYAPP_HOME=%CD%
-REM Change back to the original directory
-cd %SAVEDIR%
 
 set MAINCLASS=org.codehaus.classworlds.Launcher
 set PLEXUS_CP=%MYAPP_HOME%\lib\default\plexus-classworlds-2.2.2.jar
_______________________________________________
osmosis-dev mailing list
osmosis-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/osmosis-dev

Reply via email to