Name: Henrique Romano
Member since: 2008-03-05 01:50:38
Last Login: 2008-07-23 23:37:09
Notes: Just the life of a python programmer apprendice, in words.
7 Jun 2008 (updated 7 Jun 2008 at 00:12 UTC) »
Well, at least some things got available to our employee and he can do its work.
It is raining and it is cold in the city and another employee would like to work at home; asking the sysadmin for access is not an option, so this employee explains the other employee that there is an option if he agrees to give access to your machine through SSH, so he could try some port forwarding through SSH and access the servers freely.
The slack employee then runs the following command on your machine:
ssh -L 8888:XXX.XXX.XXX.XXX:YYY
slackuser@ofirst_employee_host -N
Where XXX.XXX.XXX.XXX is the IP address of the company's server you want to access, the "8888" is the port number at your machine which you access the company's services (you access the services through localhost:8888 and it will be forwarded to "XXX.XXX.XXX.XXX:YYY") and YYY, obviously, is the port. With that, you can access the services at company normally (actually, it should be a pretty slow, but it is better than rain and cold).
(For reference and pictures, please visit this site)
All the story was just to put that tip in a context, the slack employee will be at the office in the next monday :)
So long!
There are some things that I consider essential to classify a good job. First, the most important, is how interesting is the project to develop... that is very important, even if the needed tools are not the ones you use every day and "want to use forever". Currently, there are tools for everything (or almost everything) you need to do, so you can just "join the points" and start appreciating the system to work, i.e, your own design.
Second, and this may sounds strange, is the language (or tool) used to develop. If the project is not very good, there is a chance that you enjoy the development, since you are improving your knowledge on the language that you like to write (or being in contact with new tools you didn't known before)...
If neither the project nor the tool are good, well.. you can talk to colleagues and see what they think about the projects and if there is some possibility to change the way things are done; if it doesn't work, something is wrong and it can be you!
...or it can be the company, in both cases it is worth to try finding a new job. That is exactly what I'm going to do now and I think this time things will be better; the project is good and the language is "perfect", but the people are not that good... (should I write about this combination later?)
29 Mar 2008 (updated 29 Mar 2008 at 01:01 UTC) »
As you may have read in the post about "watching for calls through telepathy", you can have noted that all the contact information available was just an URI, kind of "sip:1234@192.168.1.55". However, this info is only enough to supply a way to search for contacts which has this URI as account "specification".
So the question over this week was: How maemo store the accounts available for a contact?. Basically, how do you can get the list of accounts by which you can make a conversation with the contact?
We've looked at the APIs available (ebook, abook, mission-control, ...) and nothing seemed to supply the list... so I went to the database file and the first attempt was to try open it and investigate tables structure or something similar that could give me some information. No way there, the db is a Berkeley DB and there is no python modules to manage this kind of database (python for maemo seems to have removed this standard module of the distribution) and I wasn't disposed to try it in C (to work with a "mysterious" DB in C was not the kind of fun that I would like to play at the moment, at least with python this could be a bit easier).
Then I had the idea to try get the VCARD info for a contact and... WELL, the information was there. One thing that I forgot to say is that through the APIs I could get each information (named "fields" there) for the contact (first name, last name, email and so forth), but the accounts wasn't available through "fields", since you can have an variable number of accounts and the function to get a contact field expects a well defined constant (note, the "vcard" is a "well defined constant").
Through the vcard, you get things like:
X-SIP;X-OSSO-BOUND:your-account-on-device@host:the-contact-account@host
The "X-SIP" value is the user account which the contact account is mapped to. For example: I've two accounts on the device: gtalk and SIP. I've the contact X which I can talk through gtalk, the contact Y I can talk through gtalk and SIP... so you need a way to say what is the user account the contact account is bounded to (in the example, for the contact Y you could ask if his account is a "gtalk" or "sip" account), it servers as an "account type" identifier.
Given this, you can now map your "sip uri" available through the "calls watcher" to a real contact on the system. If you can do this, you can get all the other contact info, like the general ones available on most of the softwares (like name, email, web address, phone and another ways to contact the same person :)
Also note that there is a python package for vcard management, it is named vobject and is available on the project page and Python Package Index (Pypi).
Hope this information can help some people having to do this kind of interaction with maemo's rtcomm.
24 Mar 2008 (updated 24 Mar 2008 at 23:41 UTC) »
I want something good to die for To make it beautiful to live I want a new mistake Loose is more than hesitate You believe it in your headI can go with the flow Don't say it doesn't matter anymore I can go with the flow You believe it in your head?
- Go with the flow, Queens of the Stone Age
In the begining, things were obscure, we didn't know the way to follow, but the folks on the telepathy IRC channel (#telepathy @ irc.freenode.net) were very cool... and so, we got the problem fixed before the expected, this motivated to write about the solution here.
The first step was to watch for new connections made to a connection manager, it is quite simple, we just need to connect a callback to the "NewConnection" event, the initial block of code follows:
import dbus bus = dbus.SessionBus()cm = bus.get_object( "org.freedesktop.Telepathy.ConnectionManager.sofiasip", "/org/freedesktop/Telepathy/ConnectionManager/sofiasip") iface = dbus.Interface(cm, "org.freedesktop.Telepathy.ConnectionManager.sofiasip") iface.connect_to_signal("NewConnection", on_new_connection)
When a connection is created, we need to watch for new channels being created (which can be read as "a communication channel with some of the contacts was created"), this way:
def on_new_connection(bus_name, object_path, protocol):
conn = bus.get_object(bus_name, object_path)
iface = dbus.Interface(conn,
"org.freedesktop.Telepathy.Connection")
iface.connect_to_signal("NewChannel", on_new_channel)
So when a channel is created, you got the channel type, if it is a text conversation, the channel_type parameter would be something like "org.freedesktop.Telepathy.Channel.Type.Text". For our case, we need to filter "streamed-media" conversation, so channel_type must be "org.freedesktop.Telepathy.Channel.Type.StreamedMedia". If it is satisfied, we need then attach a new callback for the "StreamAdded" event -- this callback will be fired when a voice or video data transfer has began.
def on_new_channel(object_path, channel_type, handle_type,
handle, supress_handler):
if channel_type.split(".")[-1] == "StreamedMedia":
channel = bus.get_object(conn.bus_name, object_path)
iface = dbus.Interface(channel, channel_type)
iface.connect_to_signal("StreamAdded",
on_stream_added)
Finally, on on_stream_added callback, we filter
out voice channels, and get the person the user is trying to
speak with:
def on_stream_added(stream_id, contact_handle, stream_type):
# discard video channels
if stream_type == 1:
return
iface = dbus.Interface(conn,
"org.freedesktop.Telepathy.Connection")
contact_data = iface.InspectHandles(1, [contact_handle])
uri = filter(lambda d: d.startswith("sip"),
contact_data[0].split(";"))[0]
print "new call: %s" % uri
Shazam! It works! There is two things to note, though. If
you just copy-and-paste the code, it'll not work -- as you
can have noticed, some callbacks needs the connection
object... you have two choices here: to use lambdas to proxy
the real handler passing the connection object among all the
handlers until on_stream_added or you can
encapsulate all these handlers in a class and define the
connection object as an attribute of it, it is up to you.
The other thing is that it can seem not too simple as
watch_for_voip_connections(), but you must to
note that telepathy doesn't have something specific to do
what we needed here, but even in this case the framework
seems to be so well designed that it gives to you the power
needed to do your work.
I loved telepathy since the moment I start working with it, and I expect to contribute with the project as soon as possible. Hope you like it too :)
henrique certified others as follows:
Others have certified henrique as follows:
[ Certification disabled because you're not logged in. ]
FOAF updates: Trust rankings are now exported, making the data available to other users and websites. An external FOAF URI has been added, allowing users to link to an additional FOAF file.
Keep up with the latest Advogato features by reading the Advogato status blog.
If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!