<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="generator" content="Osso Notes">
    <title></title></head>
<body>
<p>The source code for the qt mobility contacts backend for the n900 may also be a good reference. I am pretty sure it is all in one file and it is pretty straigh forward. Just an idea....
<br>
<br>----- Original message -----
<br>&gt; Thanks Andrew, this seems to be roughly what I'm looking for. In
<br>&gt; particular, it seems an OssoABookContact is asubclass of an EContact,
<br>&gt; so I can just use this stuff directly.
<br>&gt; 
<br>&gt; However, I've looked at the associated code in hermes:
<br>&gt; <a href="https://garage.maemo.org/plugins/ggit/browse.php/?p=hermes;a=blob;f=package/src/org/maemo/hermes/engine/contact.py;h=a309b290ee506ca6de7f46108adb1541ea4fbb58;hb=HEAD">https://garage.maemo.org/plugins/ggit/browse.php/?p=hermes;a=blob;f=package/src/org/maemo/hermes/engine/contact.py;h=a309b290ee506ca6de7f46108adb1541ea4fbb58;hb=HEAD</a>
<br>&gt; and I can't find where you get the "GList" and "EVCardAttribute"
<br>&gt; types. I've got my own implementation of a glist (stolen from
<br>&gt; somewhere online) but I'd prefer to not have to write the
<br>&gt; EVCardAttribute myself (wrapping the evolution code).
<br>&gt; 
<br>&gt; My best guess is that it's coming through some long line of imports
<br>&gt; (maybe evolution?) or the pygobject library, but neither of these seem
<br>&gt; to have this type for the libraries I have access to. Any suggestions?
<br>&gt; 
<br>&gt; Thanks!
<br>&gt; 
<br>&gt; On Tue, Aug 24, 2010 at 11:40 PM, Andrew Flegg &lt;<a href="mailto:andrew@bleb.org">andrew@bleb.org</a>&gt; wrote:
<br>&gt; &gt; Here's some code from Hermes'[1] org/maemo/hermes/engine/contact.py:
<br>&gt; &gt; 
<br>&gt; &gt; --------8&lt;---------
<br>&gt; &gt; # Constants from
<br>&gt; &gt; <a href="http://library.gnome.org/devel/libebook/stable/EContact.html#EContactField">http://library.gnome.org/devel/libebook/stable/EContact.html#EContactField</a>
<br>&gt; &gt; ebook = CDLL('libebook-1.2.so.5') E_CONTACT_PHONE_OTHER = 30
<br>&gt; &gt; 
<br>&gt; &gt; &nbsp; &nbsp;def get_phones(self):
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp;"""Return a list of phone numbers associated with this
<br>&gt; &gt; contact."""
<br>&gt; &gt; 
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp;nums = []
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp;ai =
<br>&gt; &gt; GList.new(ebook.e_contact_get_attributes(hash(self._contact),
<br>&gt; &gt; E_CONTACT_PHONE_OTHER))&nbsp; &nbsp; &nbsp; &nbsp;while ai.has_next():&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;attr =
<br>&gt; &gt; ai.next(as_a = EVCardAttribute)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;types = set()
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if attr.params:
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;params =
<br>&gt; &gt; GList.new(ebook.e_vcard_attribute_param_get_values(attr.params.contents.next()))
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;while params.has_next():&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
<br>&gt; &gt; &nbsp;types.add(string_at(params.next()))
<br>&gt; &gt; 
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;device = 'VOICE' in types and 'landline' \
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;or 'CELL' &nbsp;in types and 'mobile' &nbsp; \
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;or None
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;type = 'HOME' in types and 'home' \
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;or 'WORK' in types and 'work' \
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;or None
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;number = string_at(attr.value().next())
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nums.append(PhoneNumber(number, type = type, device =
<br>&gt; &gt; device))
<br>&gt; &gt; 
<br>&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp;return nums
<br>&gt; &gt; -------&gt;8--------
<br>&gt; &gt; 
<br>&gt; &gt; If you don't speak Python, what is basically does is (dealing with an
<br>&gt; &gt; EContact, but you can get that from an OssoABookContact IIRC:
<br>&gt; &gt; 
<br>&gt; &gt; &nbsp;1) Get all attributes of type 30 - this returns all
<br>&gt; &gt; &nbsp; &nbsp; phone numbers, I've found.
<br>&gt; &gt; &nbsp;2) Loop over each attribute, the value of which is
<br>&gt; &gt; &nbsp; &nbsp; the phone number.
<br>&gt; &gt; &nbsp;3) The parameters of the attribute will tell you the different
<br>&gt; &gt; &nbsp; &nbsp; types flagged against this number.
<br>&gt; &gt; 
<br>&gt; &gt; HTH,
<br>&gt; &gt; 
<br>&gt; &gt; Andrew
<br>&gt; &gt; 
<br>&gt; &gt; [1] <a href="http://hermes.garage.maemo.org/">http://hermes.garage.maemo.org/</a>
<br>&gt; &gt; 
<br>&gt; &gt; --
<br>&gt; &gt; Andrew Flegg -- <a href="mailto:andrew@bleb.org">mailto:andrew@bleb.org</a>&nbsp; &nbsp;|&nbsp; &nbsp;<a href="http://www.bleb.org/">http://www.bleb.org/</a>
<br>&gt; &gt; Maemo Community Council chair
<br>&gt; &gt; ----- Original message -----
<br>&gt; &gt; &gt; Hello maemo-developers!
<br>&gt; &gt; &gt; 
<br>&gt; &gt; &gt; Does anyone know how to get a phone number (any number) out of an
<br>&gt; &gt; &gt; OssoABookContact instance? I'm at my wit's end; all of the online
<br>&gt; &gt; &gt; hits i've found have been doing the opposite and I can't figure this
<br>&gt; &gt; &gt; out. My guess was using the osso_abook_contact_get_value function,
<br>&gt; &gt; &gt; but I have no idea what the appropriate attribute would be. I've
<br>&gt; &gt; &gt; tried a great many (Cell, for instance) and gotten nothing.
<br>&gt; &gt; &gt; 
<br>&gt; &gt; &gt; Ideas?
<br>&gt; &gt; &gt; 
<br>&gt; &gt; &gt; Thanks!
<br>&gt; &gt; &gt; _______________________________________________
<br>&gt; &gt; &gt; maemo-developers mailing list
<br>&gt; &gt; &gt; <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a>
<br>&gt; &gt; &gt; <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers</a>
<br>&gt; &gt; 
<br>&gt; &gt; 
<br>&gt; _______________________________________________
<br>&gt; maemo-developers mailing list
<br>&gt; <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a>
<br>&gt; <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers">https://lists.maemo.org/mailman/listinfo/maemo-developers</a>
<br><br></p>
</body>
</html>