vote up 1 vote down star
1

I am building application that required some data from iPhone's Call log(read only). The call log is a sqlite db located at "*/User/Library/CallHistory/call_history.db*". I used a jailbroken device to extract the log. However trying to open this location using the *sqlite_open3()* command I get a *SQLITE_ERROR* error, which according to the library documentation means "SQL error or missing database". In an attempt to debug the error I've used NSFileManager to enumerate the folder('/User/Library/'). It would appear as if it's returning a "filtered" set of results, that exclude the 'CallHistory' folder along with several of the other folders.

The File system uses a series of alias to give the illusion of tradition OS X file structure, and I don't know if these are having an effect on my results.

The call log is only present on a device, and not the simulator. I've been unable to get it to work on a 1st gen iPhone running fireware 2.1.

This is some code I used to test the output

NSDirectoryEnumerator *dirnum = [[NSFileManager defaultManager] enumeratorAtPath: @"/private/var/mobile/Library/"];

while( bar = [dirnum nextObject])
{
	//Uncomment if you don't want to log sub folders
	//[dirnum skipDescendents];

	NSLog(bar);
}

I have a suspicion that Apple is blocking access to the directory as part of its sandboxing strategy, however I have no proof at this stage. However, I can access the address book without any issues, so I'm a little confused.

Thanks

flag

6 Answers

vote up 5 vote down check

There is no access to the call log from Cocoa Touch or other iPhone APIs.

link|flag
unless you jailbreak. – Isaac Waller Apr 18 at 5:20
vote up 0 vote down

Yes we are unable to access the call log via iPhone SDK.. but how does phoneView access call log via desktop application? http://ecamm.com/mac/phoneview/

any ideas?

link|flag
Guessing it mounts the iphone as a usb storage device, and then just reads the sqlite database that is the addressbook – Jonathan Apr 11 at 9:02
vote up 0 vote down

You cannot access the call log using the SDK and approved APIs. This is by design.

link|flag
vote up 1 vote down

Applications are not meant to access anything out of their sandbox. The Address Book database is accessible because it's accessed by the public frameworks. Before firmware 2.1, applications did have read-only access out of their sandbox.

link|flag
vote up 1 vote down

Keep in mind I have not tried any of this.

Your logic appears to be that if you can access the Address Book db, why not the call log db? Well, the Address Book is exposed via published APIs - the call log is not. Consequently, I don't think it's so strange that you can't access its db file either.

link|flag
vote up 0 vote down

Honestly, how can you imagine they would let you access the whole Call log? How about you transmit it over the Internet once you have fetched it and make good use of this information?

link|flag
Yeah, it's not the safest thing i agree, but i'm lead to believe that you can access the address book, so it's not as if it is that beyond believe. – Jonathan Dec 4 '08 at 18:59
That's (one of the many reasons) why they're so restrictive about the appstore. You could in theory write an app which sends your addressbook or call list out to the net, but they'd (hopefully) prevent that app from getting into the store – Orion Edwards Dec 4 '08 at 19:57
1  
Don't be silly. There are lots of programs on your computer which would be perfectly capable of sending contact info, emails and other stuff to god knows where without you knowing about it. And now it's on a phone it's suddenly a problem? – Rolf Dec 4 '08 at 22:53
I don't think Apple are filtering applications that much. There is no way to trace back you fetching some Contact info, storing it somewhere in memory, compressing the data, and boom, in another function sending it oversea. – Vincent Dec 15 '08 at 13:58
@Rolf: Because applications are free, and people are thinking it's so much a sand box that nothing can happen to their phone even if the application doesn't look very legit. – Vincent Dec 15 '08 at 13:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.