DTM database
From OESF
tiozzo sergio honda hornet 600 moto smao pentium p4 pc tempi greggio melanie moore teoman dus gram la ragazza di mille mesi tognazzi e la minorenne memoria ram evo chilly cah cha audi a6 28 v6 pigro ivan graziani boombots i santo california tornero turismo responsabile in senegal dentro www verona it dimm 512 polacco traduzioni urania vgn a417m berchet big builder cokka grasso cazzo asus a7n8x deluxe x2 4600 riassunto il ritratto di dorian grey bmw z3 2002 1 9 rifondazione partito comunista scrittura araba s 1 nikon tattooo euro 24 liviu guta de ca ma minti km0 opel benzina auto km 0 tavola sinottica lcd televisore memoria mobile pixel wrap stampante hp laserjet 1010 apple airport fox uomo calendario 2005 ricevitore bluetooth porno amatoriale gratis collegi femminili foto settimo cielo viaggi teorema pilot penna canon borsa videocamera hanes abbigliamento altri giochi illuminazione teatro zeus srl sony cybershot s90 motorola iden usb driver scuba diving last summer dance battiato eugenia rito hentai com opera mini diffusori toxic babe rumba rei acer 380 kvasir disegno bambino prestito aquila anastacia myskina cena fun club pepe aguilar midi www bet music com palermo bosco ficuzza vidas ricetta pasta browning robert cuarto de tula hp photosmart 935 il leone di s marco ug 3350 sud carolina cose fare ipa sud acer 20 stampanti per palmari bamb julia stegner codec sat ragazza orbassano athlon64 3000 download winzip gratis telefoni celluleri assicurazione sassuolo fuoco magico reggina calcio maglie everibody change leica minox lettore mp3 linein french festival a naxos music journey france giochi 3d vivitar reflex ricevitore satellitare telesystem diritto donna lacie dvd dl traduzione canzoni straniere testi nokia 6230 batteria telefoni mito l origine del sole quanto costa morire pasquale bruni spa codici xp rubati disegni per comunioni ird400 vaio vgnb3vp fiction vivere fror m410r kyocera conchiglie da collezione ferro da stiro caldaia vapore lotta mista hobby it robin jarvis libri mamma tettona hitachi deskstar 250 www abutres com br giochi calcio holli e bengi foot bastinado gt racing xxxxxxxx jawhawks fiat punto 1998 gpl piedi di roberta capua maestro stregoneria s100 azureus mac miele hepa plastificatrice a4 stachurski testo della canzone maybe d day web content manager everibody s change koulikoro frigorifero msz 702 nf hb pasotti export paris hilton video porno lettore mp3 usb captiva flatbed scanner diritto di autore albergo cologne xdpicture card 64mb biglietto aerei berlino this love maroons auto best insurance audiovox rtm8000 maledetta gioventu fotocamera digitale canon ixus 500 frigorifero per campeggio sotto il segno di el toro americanexpress it zoom g2 plaiboy com br problemi lancia ypsilon porno amatoriali gratis golden axe 2 gps nokia 6670 fox uomo sonia casio tv portatile 2 3 sub travel peul test psicologia iriver 20 www uncinetto ipocondria winans mario orologio da polso per donna tv combi philips 15 www metallica com mpeg2 codec milano bristol monitor crt philips 19 digitale terrestre rj45 gps portatile antenna mix de angelis temi sui promessi sposi capitolo 1 8 tv sender stefano donaudy nikon coolpix7600 breil one crono loewe profumi lust for bust frozen puzzle canzone del ciuccio spirits of music part 1 bobby mcferrin e nigel kennedy ragusa calcio sterilizzazione del gatto peru national anthem sadico nokia 3510 tastiera renata gonzales colombia z 24 conpagnie aeree DTM HowTo:
original by: Dr. Stefan C. Kremer
Note: Dr. Kremer expresses the wish to no longer been contacted directly about any issues with the DTM database and programming. I received from him all the documents he has, he no longer develops for the Zaurus. As soon as I have a hint on how to transfer these documents on this site, I will update the page and put all the links to the documents. In the mean time, you may contact me: Daniel Savard
This document describes how to write code that interfaces with DTM (the PIM storage format)
The DTM is a simple database that runs on the Zaurus SL-5600 (and the v3.10 ROM for the SL-5500) and the SL-6000 (probably also on all Zaurii newer than the SL-5600). The new PIM applications use DTM for all data storage where the old PIM applications used XML files. DTM is faster, XML is easier to interface with other code (until now).
Contents |
What you need to develop on the desktop:
1.Development tools
- need to set up your complier as described here
- probably don't really need qpe if you are not writing code with a GUI
- don't need qvfp
2.The specs and header files for the DTM access
- The files you need are here
- index-req-getit-lid-197.phtml dtm.zip
- index-req-getit-lid-198.phtml headers.zip
The headers and library are in the development image you can found on the ELSI for development on the Zaurus.
I haven't yet figure-out how to upload documents which are not images or sound files on this site for the benefit of everyone. I have two PDF documents on the DTM and PIM specifications I wish to make available here. E-mail me if you know how to upload them here (Daniel Savard).
3.libzdtm.so
- This is the actual shared library that you need to link against. It is found on the Zaurus in the /home/!QtPalmtop/lib/ directory. It needs to be moved to /opt/Qtopia/sharp/lib/ for cross compiling.
4.Example program
- Available here
What is in headers.zip
headers.zip has the header files for the libzdtml.so library. I copied these into my working directory for compiling, but they should probably be put somewhere sensible in the /opt file structure. These are critical since they spell out some details that are not clear from DTMSpecifications.pdf. For example that all the functions are preceded by underscore. And more info about the data types.
Potential Problems/Gotchas
- header files aren't ansi-C. The header files are C compliant, but not ansi-C, so I ended up using the g compiler to avoid a slew of warning messages. I think it should be possible to translate the C files into ansi for greater compatibility.
- no emulation. Since the only source for libzdtm.so is from the Zaurus itself and not a compiled library, it is not possible to emulate sofware on a PC architecture using qvfp or anything else. You can compile on your x86, but you'll have to move it to the Zaurus to actually make it run. I found that having the Zaurus on the network running sshd was critical to working effectively. I also put my ssh key on the Zaurus, so i wouldn't have to supply a password all the time. Then, I added an "install" directive to my makefile so that i could easily compile and copy over to code. I would run it in a seperate window on my desktop connected (again via ssh) to the Zaurus. This is the only way I could work efficiently. It would be really great if sharp released the source for DTM or at least an x86 compiled library.
- unsigned char *. The header files define most strings as unsigned chars which is goofy. In particular, this is incompatible with all the standard string libraries on the Zaurus. As a consequence I had to do a lot of casting from (char *) to (unsigned char *) and back in order to get the compiler to quiet down.
- Not without qte. The libzdtm.so requires libqte.so.2. I'm not sure why, it just does.
Running the Test Program
- BACKUP YOUR MACHINE This code has only been tested on one single Zaurus. Although the database access in intended to be read-only...here comes the disclaimer... SHARP (nor Stefan Kremer) ASSUME ANY RESPONSIBILITY to any conflict, fault, or damage affecting the unit that rises from your tinkering with the DTM data.
- Make sure you have the libzdrm.so on your computer in the appropriate directory and that all the links libzdtm.so.0.1 are there too.
- Make sure you have the source code for the test program in the current directory.
- Compile:
- arm-linux-g -I -c -Wall -ansi -pedantic -o arm-dtmdump.o dtmdump.cc
- arm-linux-g -Wall -ansi -pedantic -o arm-dtmdump arm-dtmdump.o -L/opt/Qtopia/sharp/lib -lzdtm
- Transfer to Zaurus:
- scp arm-dtmdump zaurus@zaurus:/home/zaurus/dtmdump
The compilation should succeed with no warnings or errors. The scp requires your zaurus to be on the network with the machine name 'zaurus'.
Program Output/Operation
The program takes 1 or 2 arguments as follows:
dtmdump {todo|calendar|addressbook|memo|category} dtmdump -f /home/zaurus/Applications/dtm/SLTDODO.BOX
The first form opens up a database based on the name; while the second opens a database based on a path. The first version is case insensitive, while the second is not.
The program then prints out the contents of the given database in an XML format. NOTE: the XML format used is __not__ compatible with the original PIM XML format! (I originally tried to do this, but the two DB's contain different kinds of information, so that problem is much harder, especially while I don't know what "rinfo" means.) The purpose of the program is mostly instructional at this point, but it should make it easy for others to extract DTM info and use it for their own purposes.

