asterisk/res/res_pjsip
Mark Michelson f55abe9cf1 Decouple subscription handling from NOTIFY/PUBLISH body generation.
When the PJSIP pubsub framework was created, subscription handlers were required
to state what event they handled along with what body types they knew how to
generate. While this serves well when implementing a base RFC, it has problems
when trying to extend the body to support non-standard or proprietary body
elements. The code also was NOTIFY-specific, meaning that when the time comes
that we start writing code to send out PUBLISH requests with MWI or presence
bodies, we would likely find ourselves duplicating code that had previously been
written.

This changeset introduces the concept of body generators and body supplements. A
body generator is responsible for allocating a native structure for a given body
type, providing the primary body content, converting the native structure to a
string, and deallocating resources. A body supplement takes the primary body
content (the native structure, not a string) generated by the body generator and
adds nonstandard elements to the body. With these elements living in their own
module, it becomes easy to extend our support for body types and to re-use
resources when sending a PUBLISH request.

Body generators and body supplements register themselves with the pubsub core,
similar to how subscription and publish handlers had done. Now, subscription
handlers do not need to know what type of body content they generate, but they
still need to inform the pubsub core about what the default body type for a
given event package is. The pubsub core keeps track of what body generators and
body supplements have been registered. When a SUBSCRIBE arrives, the pubsub core
will check that there is a subscription handler for the event in the SUBSCRIBE,
then it will check that there is a body generator that can provide the content
specified in the Accept header(s).

Because of the nature of body generators and supplements, it means
res_pjsip_exten_state and res_pjsip_mwi have been completely gutted. They no
longer worry about body types, instead calling
ast_sip_pubsub_generate_body_content() when they need to generate a NOTIFY body.

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

Merged revisions 407016 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@407030 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-01-31 22:27:07 +00:00
..
include res_pjsip,compat: INFINITY and NAN undefined 2014-01-28 20:47:15 +00:00
config_auth.c res_pjsip: Add PJSIP CLI commands 2013-12-20 21:32:13 +00:00
config_domain_aliases.c The large GULP->PJSIP renaming effort. 2013-07-30 18:14:50 +00:00
config_global.c res_pjsip_messaging: send message to a default outbound endpoint 2013-12-11 20:24:50 +00:00
config_system.c res_pjsip: convert configuration settings names to snake case 2013-11-22 17:27:55 +00:00
config_transport.c res_pjsip: AMI commands and events. 2013-11-23 17:26:57 +00:00
location.c PJSIP: Add Path header support 2014-01-15 13:16:10 +00:00
pjsip_cli.c res_pjsip: Fix CLI tab completion issues 2014-01-13 13:34:47 +00:00
pjsip_configuration.c res_pjsip: Ensure more URI validation happens in pj threads. 2014-01-03 17:27:08 +00:00
pjsip_distributor.c PJSIP: Add Path header support 2014-01-15 13:16:10 +00:00
pjsip_global_headers.c The large GULP->PJSIP renaming effort. 2013-07-30 18:14:50 +00:00
pjsip_options.c res_pjsip: AOR option qualify_frequency not respected on startup 2014-01-16 20:06:59 +00:00
pjsip_outbound_auth.c res_pjsip: Ignore 401/407 responses for transactions and dialogs we don't know about. 2013-12-19 18:00:33 +00:00
presence_xml.c Decouple subscription handling from NOTIFY/PUBLISH body generation. 2014-01-31 22:27:07 +00:00
security_events.c Print "<unknown>" for artificial endpoint in PJSIP security events. 2014-01-10 20:00:16 +00:00