Wiki » History » Version 10
« Previous -
Version 10/27
(diff) -
Next » -
Current version
Luis Figueira, 2013-12-06 04:07 PM
Wiki¶
Some issues on building the compiled version of the MATLAB code¶
Reading config files (m files using eval)¶
When reading/writing files - such as config files - not everything will behave like in the matlab console.
The way teh config files were being read was not working - was simply using eval. It was necessary to read the file manually, adapting the suggestion found here: http://stackoverflow.com/questions/185461/reading-input-m-file-in-a-main-m-file#185660
(...)in a function we would create a text file, INP, containing our parameters.
We create this file in the directory returned by the ctfroot function.
Then, in MAIN, we would use the following to retrieve these parameters:
eval(char(textread(fullfile(ctfroot, INP), '%s', 'whitespace', '');
See commit:d9262cdbfb38d9262cdbfb38 on the jabuilder-int branch.
Other input/output files¶
At the moment the input/output is done in the same folder where the the java class is being called from (hrir_final.mat and binsimecho.wav...).
Building the isvr jar¶
> /Applications/MATLAB_R2013b.app/bin/mcc -W "java:uk.ac.soton.isvr,HumanEcho" -d ./scratch -T "link:lib" -v "class{HumanEcho:./webapp/WEB-INF/mcode/gen_echo.m}"
Contents of the isvr jar¶
> jar tvf scratch/isvr.jar 0 Tue Nov 26 16:47:42 GMT 2013 META-INF/ 68 Tue Nov 26 16:47:44 GMT 2013 META-INF/MANIFEST.MF 0 Tue Nov 26 16:47:30 GMT 2013 uk/ 0 Tue Nov 26 16:47:30 GMT 2013 uk/ac/ 0 Tue Nov 26 16:47:30 GMT 2013 uk/ac/soton/ 0 Tue Nov 26 16:47:36 GMT 2013 uk/ac/soton/isvr/ 3895 Tue Nov 26 16:47:36 GMT 2013 uk/ac/soton/isvr/HumanEcho.class 336 Tue Nov 26 16:47:36 GMT 2013 uk/ac/soton/isvr/HumanEchoRemote.class 168802 Tue Nov 26 16:47:30 GMT 2013 uk/ac/soton/isvr/isvr.ctf 1798 Tue Nov 26 16:47:36 GMT 2013 uk/ac/soton/isvr/IsvrMCRFactory.class
Configuration¶
The app configuration file can be found in webapp/WEB-INF/classes/myapp.properties
Logging¶
We are using log4j for logging. The log4j jar (1.2.17) is included in the repository. The configuration file is in webapp/WEB-INF/classes/
Using Eclipse¶
(tested on Eclipse Kepler Service Release 1 under OSX 10.9)
- Launch Eclipse, choosing
EchoWebApp
as your workspace folder; - Create a new Java project from existing sources
- Add Tomcat to Eclipse->Preferences->Runtime Environment (Tomcat 7)
- Add the servlet-api.jar library to Eclipse>Preferences (general, not project)>Java>BuildPath>User Libraries