asterisk/addons
Terry Wilson 04da92c379 Replace direct access to channel name with accessor functions
There are many benefits to making the ast_channel an opaque handle, from
increasing maintainability to presenting ways to kill masquerades. This patch
kicks things off by taking things a field at a time, renaming the field to
'__do_not_use_${fieldname}' and then writing setters/getters and converting the
existing code to using them. When all fields are done, we can move ast_channel
to a C file from channel.h and lop off the '__do_not_use_'.

This patch sets up main/channel_interal_api.c to be the only file that actually
accesses the ast_channel's fields directly. The intent would be for any API
functions in channel.c to use the accessor functions. No more monkeying around
with channel internals. We should use our own APIs.

The interesting changes in this patch are the addition of
channel_internal_api.c, the moving of the AST_DATA stuff from channel.c to
channel_internal_api.c (note: the AST_DATA stuff will have to be reworked to
use accessor functions when ast_channel is really opaque), and some re-working
of the way channel iterators/callbacks are handled so as to avoid creating fake
ast_channels on the stack to pass in matching data by directly accessing fields
(since "name" is a stringfield and the fake channel doesn't init the
stringfields, you can't use the ast_channel_name_set() function). I went with
ast_channel_name(chan) for a getter, and ast_channel_name_set(chan, name) for a
setter.

The majority of the grunt-work for this change was done by writing a semantic
patch using Coccinelle ( http://coccinelle.lip6.fr/ ).

Review: https://reviewboard.asterisk.org/r/1655/


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@350223 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2012-01-09 22:15:50 +00:00
..
ooh323c Generate response to Status Enquiry message with Status q.931 message. 2011-11-09 19:08:44 +00:00
app_mysql.c Merged revisions 328247 via svnmerge from 2011-07-14 20:28:54 +00:00
app_saycountpl.c Merged revisions 328247 via svnmerge from 2011-07-14 20:28:54 +00:00
cdr_mysql.c Merged revisions 328247 via svnmerge from 2011-07-14 20:28:54 +00:00
chan_mobile.c Replace direct access to channel name with accessor functions 2012-01-09 22:15:50 +00:00
chan_ooh323.c Replace direct access to channel name with accessor functions 2012-01-09 22:15:50 +00:00
chan_ooh323.h Asterisk media architecture conversion - no more format bitfields 2011-02-03 16:22:10 +00:00
format_mp3.c Merged revisions 328247 via svnmerge from 2011-07-14 20:28:54 +00:00
Makefile Merged revisions 280742 via svnmerge from 2010-08-03 18:50:14 +00:00
ooh323cDriver.c Merged revisions 308242 via svnmerge from 2011-02-18 00:11:06 +00:00
ooh323cDriver.h Merged revisions 308242 via svnmerge from 2011-02-18 00:11:06 +00:00
res_config_mysql.c Allow each logging destination and console to have its own notion of the verbosity level. 2011-11-29 18:43:16 +00:00