<div class="gmail_quote">On Fri, Apr 23, 2010 at 5:35 PM, William Maddler <span dir="ltr"><<a href="mailto:news@maddler.net">news@maddler.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello all,<br>
I've tried googling around but got no luck.<br>
I'd need to get current operator name a SIM card status (registered/not<br>
registered).<br>
<br>
Any clue or starting point? C or Python would be fine.<br></blockquote><div><br>You can get them via dbus. First you get the operator code and country code, then you get the proper string. In shell script:<br><br><span style="font-family: courier new,monospace;">#!/bin/sh</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">opcountry=$(dbus-send --system --print-reply=literal --dest=<a href="http://com.nokia.phone.net">com.nokia.phone.net</a> /com/nokia/phone/net \<br>Phone.Net.get_registration_status | tr '\n' ' ' | awk '{print $8,$10}')</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">opcode=$(echo $opcountry | cut -f1 -d' ')</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">countrycode=$(echo $opcountry | cut -f2 -d' ')</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">dbus-send --system --print-reply --dest=<a href="http://com.nokia.phone.net">com.nokia.phone.net</a> /com/nokia/phone/net \<br>Phone.Net.get_operator_name byte:0 uint32:$opcode uint32:$countrycode | grep string \<br>
| awk '{print $2}' | tr -d \"</span><br style="font-family: courier new,monospace;"><br></div></div>-- <br>Cláudio "Patola" Sampaio<br>IRC: ptl - Yahoo: patolaaa<br>Campinas, SP - Brazil.<br>