|
2013-12-02
, 16:58
|
|
Posts: 125 |
Thanked: 1,142 times |
Joined on Feb 2010
@ Austria
|
#2
|
|
2013-12-02
, 17:27
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#3
|
I've started working on an Harmattan exporter (to CSV) and Sailfish importer, the exporter is finished, but the importer isn't there yet.
The code lives on github: https://github.com/merlin1991/Harmattan-SMS-Boat
[sbox-HARMATTAN_ARMEL: ~/Harmattan-SMS-Boat/n9Export] > qmake /scratchbox/tools/bin/misc_runner: : No such file or directory /scratchbox/tools/bin/misc_runner: : No such file or directory /scratchbox/tools/bin/misc_runner: : No such file or directory [sbox-HARMATTAN_ARMEL: ~/Harmattan-SMS-Boat/n9Export] > [sbox-HARMATTAN_ARMEL: ~/Harmattan-SMS-Boat/n9Export] > make g++ -c -pipe -g -D_REENTRANT -Wall -W -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/targets/HARMATTAN_ARMEL/usr/share/qt4/mkspecs/linux-g++-maemo -I. -I/targets/HARMATTAN_ARMEL/usr/include/qt4/QtCore -I/targets/HARMATTAN_ARMEL/usr/include/qt4/QtGui -I/targets/HARMATTAN_ARMEL/usr/include/qt4 -I. -o smsEx.o smsEx.cpp smsEx.cpp:5: fatal error: CommHistory/SyncSMSModel: No such file or directory compilation terminated. make: *** [smsEx.o] Error 1 [sbox-HARMATTAN_ARMEL: ~/Harmattan-SMS-Boat/n9Export] >
The Following User Says Thank You to juiceme For This Useful Post: | ||
|
2013-12-02
, 18:39
|
|
Posts: 125 |
Thanked: 1,142 times |
Joined on Feb 2010
@ Austria
|
#4
|
|
2013-12-02
, 19:11
|
|
Posts: 33 |
Thanked: 28 times |
Joined on Mar 2011
@ Finland
|
#5
|
|
2013-12-02
, 20:24
|
Posts: 4 |
Thanked: 45 times |
Joined on Dec 2013
|
#6
|
The access layer for messages isn't tracker but libcommhistory, tracker just happens to be the storage engine on the N9
libcommhistory is part of the nemo middleware layer so it can be used on Sailfish aswell, see https://github.com/nemomobile/libcommhistory/
I've started working on an Harmattan exporter (to CSV) and Sailfish importer, the exporter is finished, but the importer isn't there yet.
The code lives on github: https://github.com/merlin1991/Harmattan-SMS-Boat
Back in the day, I actually transferred all my messages from my N900 to my N9. So now there are well over 20000 messages on my N9. I think this time I will not import them as the database gets a bit large because of that import.
Unless some of you guys tells me to put Jolla to the test.
The Following 28 Users Say Thank You to jbrooks For This Useful Post: | ||
|
2013-12-02
, 21:38
|
|
Posts: 125 |
Thanked: 1,142 times |
Joined on Feb 2010
@ Austria
|
#7
|
I'd love to get some good text-based import/export tools in there instead. VMessage support would be especially interesting.
|
2013-12-02
, 21:58
|
Posts: 4 |
Thanked: 45 times |
Joined on Dec 2013
|
#8
|
I'd love to implement a proper transfer format instead of my selfinvented abuse of the term "CSV".
But apart from a wikipedia entry which tells me that vMessage is specified by IrDA and that the format is most likely in their IrMC standards set I've found nothing about the format.
And as usual one gets the standard only for a fee, which is 100$ in this case, so not an option for me.
|
2013-12-02
, 23:43
|
Posts: 32 |
Thanked: 33 times |
Joined on Sep 2012
@ Toulouse, France
|
#9
|
|
2013-12-03
, 06:27
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#10
|
I'd love to implement a proper transfer format instead of my selfinvented abuse of the term "CSV".
The Following User Says Thank You to juiceme For This Useful Post: | ||
Hence, I'd believe SMS'es are stored in tracker the same way that N9 handles them.
Now, on N9 I can get my SMS'es via tracker query: tracker-sparql -q "select nielainTextContent(?d) where {?d a nmo:SMSMessage}"
The same thing on Jolla device, however, returns nothing:
On N9 when I grep SMS from the used classes I get the hit for it:
And on Jolla it seems to be unused:
Now, how would I get to my messages on Jolla?