Asterisk - The Open Source Telephony Project GIT-master-c7a8271
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
channel_internal_api.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2012, Digium, Inc.
5 *
6 * Mark Spencer <markster@digium.com>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*! \file
20 *
21 * \brief Channel Accessor API
22 *
23 * This file is intended to be the only file that ever accesses the
24 * internals of an ast_channel. All other files should use the
25 * accessor functions defined here.
26 *
27 * \author Terry Wilson
28 */
29
30/*** MODULEINFO
31 <support_level>core</support_level>
32 ***/
33
34#include "asterisk.h"
35
36#include <unistd.h>
37#include <fcntl.h>
38
39#include "asterisk/alertpipe.h"
40#include "asterisk/paths.h"
41#include "asterisk/channel.h"
43#include "asterisk/endpoints.h"
48#include "asterisk/stream.h"
49#include "asterisk/test.h"
50#include "asterisk/vector.h"
51#include "channel_private.h"
52#include "channelstorage.h"
53
54/*! \brief The current channel storage driver */
56/*! \brief The current channel storage instance */
58
59/*! \brief The monotonically increasing integer counter for channel uniqueids */
60static int uniqueint;
61
62/* ACCESSORS */
63
64#define DEFINE_STRINGFIELD_SETTERS_FOR(field, assert_on_null) \
65void ast_channel_##field##_set(struct ast_channel *chan, const char *value) \
66{ \
67 if ((assert_on_null)) ast_assert(!ast_strlen_zero(value)); \
68 if (!strcmp(value, chan->field)) return; \
69 ast_string_field_set(chan, field, value); \
70} \
71 \
72void ast_channel_##field##_build_va(struct ast_channel *chan, const char *fmt, va_list ap) \
73{ \
74 ast_string_field_build_va(chan, field, fmt, ap); \
75} \
76void ast_channel_##field##_build(struct ast_channel *chan, const char *fmt, ...) \
77{ \
78 va_list ap; \
79 va_start(ap, fmt); \
80 ast_channel_##field##_build_va(chan, fmt, ap); \
81 va_end(ap); \
82}
83
84#define DEFINE_STRINGFIELD_SETTERS_AND_INVALIDATE_FOR(field, publish, assert_on_null, invalidate) \
85void ast_channel_##field##_set(struct ast_channel *chan, const char *value) \
86{ \
87 if ((assert_on_null)) ast_assert(!ast_strlen_zero(value)); \
88 if (!strcmp(value, chan->field)) return; \
89 ast_string_field_set(chan, field, value); \
90 ast_channel_snapshot_invalidate_segment(chan, invalidate); \
91 if (publish && ast_channel_internal_is_finalized(chan)) ast_channel_publish_snapshot(chan); \
92} \
93 \
94void ast_channel_##field##_build_va(struct ast_channel *chan, const char *fmt, va_list ap) \
95{ \
96 ast_string_field_build_va(chan, field, fmt, ap); \
97 ast_channel_snapshot_invalidate_segment(chan, invalidate); \
98 if (publish && ast_channel_internal_is_finalized(chan)) ast_channel_publish_snapshot(chan); \
99} \
100void ast_channel_##field##_build(struct ast_channel *chan, const char *fmt, ...) \
101{ \
102 va_list ap; \
103 va_start(ap, fmt); \
104 ast_channel_##field##_build_va(chan, fmt, ap); \
105 va_end(ap); \
106}
107
110DEFINE_STRINGFIELD_SETTERS_FOR(latest_musicclass, 0);
118
119#define DEFINE_STRINGFIELD_GETTER_FOR(field) const char *ast_channel_##field(const struct ast_channel *chan) \
120{ \
121 return chan->field; \
122}
123
135
136void ast_channel_name_set(struct ast_channel *chan, const char *value)
137{
140 if (!strcmp(value, chan->name)) return;
143}
144
145void ast_channel_name_build_va(struct ast_channel *chan, const char *fmt, va_list ap)
146{
148 ast_string_field_build_va(chan, name, fmt, ap);
150}
151
152void ast_channel_name_build(struct ast_channel *chan, const char *fmt, ...)
153{
154 va_list ap;
156 va_start(ap, fmt);
157 ast_channel_name_build_va(chan, fmt, ap);
158 va_end(ap);
159}
160
161const char *ast_channel_uniqueid(const struct ast_channel *chan)
162{
163 ast_assert(chan->uniqueid.unique_id[0] != '\0');
164 return chan->uniqueid.unique_id;
165}
166
167const char *ast_channel_linkedid(const struct ast_channel *chan)
168{
169 ast_assert(chan->linkedid.unique_id[0] != '\0');
170 return chan->linkedid.unique_id;
171}
172
173const char *ast_channel_tenantid(const struct ast_channel *chan)
174{
175 /* It's ok for tenantid to be empty, so no need to assert */
176 return chan->linkedid.tenant_id;
177}
178
179void ast_channel_tenantid_set(struct ast_channel *chan, const char *value)
180{
181 if (ast_strlen_zero(value)) {
182 return;
183 }
186}
187
188const char *ast_channel_appl(const struct ast_channel *chan)
189{
190 return chan->appl;
191}
192void ast_channel_appl_set(struct ast_channel *chan, const char *value)
193{
194 chan->appl = value;
196}
197const char *ast_channel_blockproc(const struct ast_channel *chan)
198{
199 return chan->blockproc;
200}
201void ast_channel_blockproc_set(struct ast_channel *chan, const char *value)
202{
203 chan->blockproc = value;
204}
205const char *ast_channel_data(const struct ast_channel *chan)
206{
207 return chan->data;
208}
209void ast_channel_data_set(struct ast_channel *chan, const char *value)
210{
211 chan->data = value;
213}
214
215const char *ast_channel_context(const struct ast_channel *chan)
216{
217 return chan->context;
218}
219const char *ast_channel_lastcontext(const struct ast_channel *chan)
220{
221 return chan->lastcontext;
222}
223void ast_channel_context_set(struct ast_channel *chan, const char *value)
224{
225 if (!*chan->lastcontext || strcmp(value, chan->context)) {
226 /* only copy to last context when it changes, unless it's empty to begin with */
227 ast_copy_string(chan->lastcontext, chan->context, sizeof(chan->lastcontext));
228 }
229 ast_copy_string(chan->context, value, sizeof(chan->context));
231}
232const char *ast_channel_exten(const struct ast_channel *chan)
233{
234 return chan->exten;
235}
236const char *ast_channel_lastexten(const struct ast_channel *chan)
237{
238 return chan->lastexten;
239}
240void ast_channel_exten_set(struct ast_channel *chan, const char *value)
241{
242 if (!*chan->lastexten || strcmp(value, chan->exten)) {
243 /* only copy to last exten when it changes, unless it's empty to begin with */
244 ast_copy_string(chan->lastexten, chan->exten, sizeof(chan->lastexten));
245 }
246 ast_copy_string(chan->exten, value, sizeof(chan->exten));
248}
249
251{
252 return chan->dtmf_digit_to_emulate;
253}
255{
257}
258
260{
261 return chan->sending_dtmf_digit;
262}
264{
266}
267
268struct timeval ast_channel_sending_dtmf_tv(const struct ast_channel *chan)
269{
270 return chan->sending_dtmf_tv;
271}
272void ast_channel_sending_dtmf_tv_set(struct ast_channel *chan, struct timeval value)
273{
274 chan->sending_dtmf_tv = value;
275}
276
278{
279 return chan->amaflags;
280}
281
283{
284 if (chan->amaflags == value) {
285 return;
286 }
287 chan->amaflags = value;
289}
290int ast_channel_fdno(const struct ast_channel *chan)
291{
292 return chan->fdno;
293}
295{
296 chan->fdno = value;
297}
299{
300 return chan->hangupcause;
301}
303{
304 chan->hangupcause = value;
306}
307int ast_channel_priority(const struct ast_channel *chan)
308{
309 return chan->priority;
310}
312{
313 chan->priority = value;
315}
316int ast_channel_rings(const struct ast_channel *chan)
317{
318 return chan->rings;
319}
321{
322 chan->rings = value;
323}
324int ast_channel_streamid(const struct ast_channel *chan)
325{
326 return chan->streamid;
327}
329{
330 chan->streamid = value;
331}
332int ast_channel_timingfd(const struct ast_channel *chan)
333{
334 return chan->timingfd;
335}
337{
338 chan->timingfd = value;
339}
341{
342 return chan->visible_indication;
343}
345{
347}
348int ast_channel_hold_state(const struct ast_channel *chan)
349{
350 return chan->hold_state;
351}
353{
354 chan->hold_state = value;
355}
356int ast_channel_vstreamid(const struct ast_channel *chan)
357{
358 return chan->vstreamid;
359}
361{
362 chan->vstreamid = value;
363}
364unsigned short ast_channel_transfercapability(const struct ast_channel *chan)
365{
366 return chan->transfercapability;
367}
368void ast_channel_transfercapability_set(struct ast_channel *chan, unsigned short value)
369{
371}
372unsigned int ast_channel_emulate_dtmf_duration(const struct ast_channel *chan)
373{
374 return chan->emulate_dtmf_duration;
375}
377{
379}
380unsigned int ast_channel_fin(const struct ast_channel *chan)
381{
382 return chan->fin;
383}
384void ast_channel_fin_set(struct ast_channel *chan, unsigned int value)
385{
386 chan->fin = value;
387}
388unsigned int ast_channel_fout(const struct ast_channel *chan)
389{
390 return chan->fout;
391}
392void ast_channel_fout_set(struct ast_channel *chan, unsigned int value)
393{
394 chan->fout = value;
395}
396unsigned long ast_channel_insmpl(const struct ast_channel *chan)
397{
398 return chan->insmpl;
399}
400void ast_channel_insmpl_set(struct ast_channel *chan, unsigned long value)
401{
402 chan->insmpl = value;
403}
404unsigned long ast_channel_outsmpl(const struct ast_channel *chan)
405{
406 return chan->outsmpl;
407}
408void ast_channel_outsmpl_set(struct ast_channel *chan, unsigned long value)
409{
410 chan->outsmpl = value;
411}
412void *ast_channel_generatordata(const struct ast_channel *chan)
413{
414 return chan->generatordata;
415}
417{
418 chan->generatordata = value;
419}
420void *ast_channel_music_state(const struct ast_channel *chan)
421{
422 return chan->music_state;
423}
425{
426 chan->music_state = value;
427}
428void *ast_channel_tech_pvt(const struct ast_channel *chan)
429{
430 return chan->tech_pvt;
431}
433{
434 chan->tech_pvt = value;
435 if (value != NULL) {
437 }
438}
439void *ast_channel_timingdata(const struct ast_channel *chan)
440{
441 return chan->timingdata;
442}
444{
445 chan->timingdata = value;
446}
448{
449 return chan->audiohooks;
450}
452{
453 chan->audiohooks = value;
454}
455struct ast_cdr *ast_channel_cdr(const struct ast_channel *chan)
456{
457 return chan->cdr;
458}
459void ast_channel_cdr_set(struct ast_channel *chan, struct ast_cdr *value)
460{
461 chan->cdr = value;
462}
463struct ast_channel *ast_channel_masq(const struct ast_channel *chan)
464{
465 return chan->masq;
466}
468{
469 chan->masq = value;
470}
471struct ast_channel *ast_channel_masqr(const struct ast_channel *chan)
472{
473 return chan->masqr;
474}
476{
477 chan->masqr = value;
478}
480{
481 return chan->stream;
482}
484{
485 chan->stream = value;
486}
488{
489 return chan->vstream;
490}
492{
493 chan->vstream = value;
494}
496{
497 return chan->nativeformats;
498}
499
501{
502 enum ast_media_type type;
503
504 ast_assert(chan != NULL);
505
507 if (chan->stream_topology) {
508 chan->default_streams[type] =
510 } else {
511 chan->default_streams[type] = NULL;
512 }
513 }
514}
515
517 struct ast_stream_topology *topology)
518{
520 chan->stream_topology = topology;
522}
523
525 struct ast_channel *chan, void *change_source)
526{
527 chan->stream_topology_change_source = change_source;
528}
529
531{
533}
534
536 struct ast_format_cap *value)
537{
538 SCOPE_ENTER(2, "%s: %sFormats: %s\n", S_OR(ast_channel_name(chan), "<initializing>"),
539 S_COR(ast_channel_is_multistream(chan), "Multistream", ""),
541
542 ast_assert(chan != NULL);
543
545
546 /* If chan->stream_topology is NULL, the channel is being destroyed
547 * and topology is destroyed.
548 */
549 if (!chan->stream_topology) {
550 SCOPE_EXIT_RTN("Channel is being initialized or destroyed\n");
551 }
552
553 if (!ast_channel_is_multistream(chan) || !value) {
554 struct ast_stream_topology *new_topology;
555
558 SCOPE_EXIT_RTN("New %stopology set\n", value ? "" : "empty ");
559 }
560 SCOPE_EXIT_RTN("Set native formats but not topology\n");
561}
562
564{
565 return chan->framehooks;
566}
568{
569 chan->framehooks = value;
570}
572{
573 return chan->generator;
574}
576{
577 chan->generator = value;
578}
579struct ast_pbx *ast_channel_pbx(const struct ast_channel *chan)
580{
581 return chan->pbx;
582}
583void ast_channel_pbx_set(struct ast_channel *chan, struct ast_pbx *value)
584{
585 chan->pbx = value;
586}
588{
589 return chan->sched;
590}
592{
593 chan->sched = value;
594}
595struct ast_timer *ast_channel_timer(const struct ast_channel *chan)
596{
597 return chan->timer;
598}
600{
601 chan->timer = value;
602}
603struct ast_tone_zone *ast_channel_zone(const struct ast_channel *chan)
604{
605 return chan->zone;
606}
608{
609 chan->zone = value;
610}
612{
613 return chan->readtrans;
614}
616{
617 chan->readtrans = value;
618}
620{
621 return chan->writetrans;
622}
624{
625 chan->writetrans = value;
626}
627const struct ast_channel_tech *ast_channel_tech(const struct ast_channel *chan)
628{
629 return chan->tech;
630}
632{
633 if (value->read_stream || value->write_stream) {
634 ast_assert(value->read_stream && value->write_stream);
635 }
636
637 chan->tech = value;
638}
640{
641 return chan->adsicpe;
642}
644{
645 chan->adsicpe = value;
646}
648{
649 return chan->state;
650}
652{
653 return chan->callid;
654}
656{
657 char call_identifier_from[AST_CALLID_BUFFER_LENGTH];
658 char call_identifier_to[AST_CALLID_BUFFER_LENGTH];
659 call_identifier_from[0] = '\0';
660 ast_callid_strnprint(call_identifier_to, sizeof(call_identifier_to), callid);
661 if (chan->callid) {
662 ast_callid_strnprint(call_identifier_from, sizeof(call_identifier_from), chan->callid);
663 ast_debug(3, "Channel Call ID changing from %s to %s\n", call_identifier_from, call_identifier_to);
664 }
665
666 chan->callid = callid;
667
668 ast_test_suite_event_notify("CallIDChange",
669 "State: CallIDChange\r\n"
670 "Channel: %s\r\n"
671 "CallID: %s\r\n"
672 "PriorCallID: %s",
673 ast_channel_name(chan),
674 call_identifier_to,
675 call_identifier_from);
676}
677
679{
680 chan->state = value;
681}
682void ast_channel_set_oldwriteformat(struct ast_channel *chan, struct ast_format *format)
683{
684 ao2_replace(chan->oldwriteformat, format);
685}
686void ast_channel_set_rawreadformat(struct ast_channel *chan, struct ast_format *format)
687{
688 ao2_replace(chan->rawreadformat, format);
689}
690void ast_channel_set_rawwriteformat(struct ast_channel *chan, struct ast_format *format)
691{
692 ao2_replace(chan->rawwriteformat, format);
693}
694void ast_channel_set_readformat(struct ast_channel *chan, struct ast_format *format)
695{
696 ao2_replace(chan->readformat, format);
697}
698void ast_channel_set_writeformat(struct ast_channel *chan, struct ast_format *format)
699{
700 ao2_replace(chan->writeformat, format);
701}
703{
704 return chan->oldwriteformat;
705}
707{
708 return chan->rawreadformat;
709}
711{
712 return chan->rawwriteformat;
713}
715{
716 return chan->readformat;
717}
719{
720 return chan->writeformat;
721}
723{
724 return &chan->hangup_handlers;
725}
727{
728 return &chan->datastores;
729}
731{
732 return &chan->autochans;
733}
735{
736 return &chan->readq;
737}
739{
740 return &chan->dtmff;
741}
742struct ast_jb *ast_channel_jb(struct ast_channel *chan)
743{
744 return &chan->jb;
745}
747{
748 return &chan->caller;
749}
751{
752 return &chan->connected;
753}
755{
756 return &chan->connected_indicated;
757}
759{
760 return ast_party_id_merge(&chan->connected.id, &chan->connected.priv);
761}
763{
764 return &chan->dialed;
765}
767{
768 return &chan->redirecting;
769}
771{
772 return ast_party_id_merge(&chan->redirecting.orig, &chan->redirecting.priv_orig);
773}
775{
776 return ast_party_id_merge(&chan->redirecting.from, &chan->redirecting.priv_from);
777}
779{
780 return ast_party_id_merge(&chan->redirecting.to, &chan->redirecting.priv_to);
781}
782struct timeval *ast_channel_dtmf_tv(struct ast_channel *chan)
783{
784 return &chan->dtmf_tv;
785}
786struct timeval *ast_channel_whentohangup(struct ast_channel *chan)
787{
788 return &chan->whentohangup;
789}
791{
792 return &chan->varshead;
793}
795{
796 chan->dtmff = *value;
797}
798void ast_channel_jb_set(struct ast_channel *chan, struct ast_jb *value)
799{
800 chan->jb = *value;
801}
803{
804 chan->caller = *value;
806}
808{
809 chan->connected = *value;
811}
813{
814 chan->dialed = *value;
816}
818{
819 chan->redirecting = *value;
821}
822void ast_channel_dtmf_tv_set(struct ast_channel *chan, struct timeval *value)
823{
824 chan->dtmf_tv = *value;
825}
826void ast_channel_whentohangup_set(struct ast_channel *chan, struct timeval *value)
827{
828 chan->whentohangup = *value;
829}
831{
832 chan->varshead = *value;
833}
834struct timeval ast_channel_creationtime(struct ast_channel *chan)
835{
836 return chan->creationtime;
837}
838void ast_channel_creationtime_set(struct ast_channel *chan, struct timeval *value)
839{
840 chan->creationtime = *value;
842}
843
844struct timeval ast_channel_answertime(struct ast_channel *chan)
845{
846 return chan->answertime;
847}
848
849void ast_channel_answertime_set(struct ast_channel *chan, struct timeval *value)
850{
851 chan->answertime = *value;
852}
853
854/* Evil softhangup accessors */
856{
857 return chan->softhangup;
858}
860{
861 chan->softhangup = value;
862}
864{
865 chan->softhangup |= value;
866}
868{
869 chan ->softhangup &= ~value;
870}
871
873{
874 return chan->unbridged;
875}
876
878{
879 int res;
880 ast_channel_lock(chan);
882 ast_channel_unlock(chan);
883 return res;
884}
885
887{
888 chan->unbridged = !!value;
890}
891
893{
894 ast_channel_lock(chan);
896 ast_channel_unlock(chan);
897}
898
900{
901 return chan->is_t38_active;
902}
903
905{
906 int res;
907
908 ast_channel_lock(chan);
910 ast_channel_unlock(chan);
911 return res;
912}
913
914void ast_channel_set_is_t38_active_nolock(struct ast_channel *chan, int is_t38_active)
915{
916 chan->is_t38_active = !!is_t38_active;
917}
918
919void ast_channel_set_is_t38_active(struct ast_channel *chan, int is_t38_active)
920{
921 ast_channel_lock(chan);
922 ast_channel_set_is_t38_active_nolock(chan, is_t38_active);
923 ast_channel_unlock(chan);
924}
925
927{
928 chan->callid = 0;
929}
930
931/* Typedef accessors */
933{
934 return chan->callgroup;
935}
937{
938 chan->callgroup = value;
939}
941{
942 return chan->pickupgroup;
943}
945{
946 chan->pickupgroup = value;
947}
948struct ast_namedgroups *ast_channel_named_callgroups(const struct ast_channel *chan)
949{
950 return chan->named_callgroups;
951}
952void ast_channel_named_callgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
953{
956}
957struct ast_namedgroups *ast_channel_named_pickupgroups(const struct ast_channel *chan)
958{
959 return chan->named_pickupgroups;
960}
961void ast_channel_named_pickupgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
962{
965}
966
967/* Alertpipe functions */
969{
970 return ast_alertpipe_write(chan->alertpipe);
971}
972
974{
975 return ast_alertpipe_flush(chan->alertpipe);
976}
977
979{
980 return ast_alertpipe_read(chan->alertpipe);
981}
982
984{
985 return ast_alertpipe_writable(chan->alertpipe);
986}
987
989{
990 return ast_alertpipe_readable(chan->alertpipe);
991}
992
994{
996}
997
999{
1001}
1002
1004{
1005 return ast_alertpipe_init(chan->alertpipe);
1006}
1007
1009{
1010 return ast_alertpipe_readfd(chan->alertpipe);
1011}
1012
1014{
1015 ast_alertpipe_swap(chan1->alertpipe, chan2->alertpipe);
1016}
1017
1018/* file descriptor array accessors */
1019void ast_channel_internal_fd_set(struct ast_channel *chan, int which, int value)
1020{
1021 int pos;
1022
1023 /* This ensures that if the vector has to grow with unused positions they will be
1024 * initialized to -1.
1025 */
1026 for (pos = AST_VECTOR_SIZE(&chan->fds); pos < which; pos++) {
1027 AST_VECTOR_REPLACE(&chan->fds, pos, -1);
1028 }
1029
1030 AST_VECTOR_REPLACE(&chan->fds, which, value);
1031}
1032void ast_channel_internal_fd_clear(struct ast_channel *chan, int which)
1033{
1034 if (which >= AST_VECTOR_SIZE(&chan->fds)) {
1035 return;
1036 }
1037
1038 AST_VECTOR_REPLACE(&chan->fds, which, -1);
1039}
1041{
1043}
1044int ast_channel_fd(const struct ast_channel *chan, int which)
1045{
1046 return (which >= AST_VECTOR_SIZE(&chan->fds)) ? -1 : AST_VECTOR_GET(&chan->fds, which);
1047}
1048int ast_channel_fd_isset(const struct ast_channel *chan, int which)
1049{
1050 return ast_channel_fd(chan, which) > -1;
1051}
1052
1053int ast_channel_fd_count(const struct ast_channel *chan)
1054{
1055 return AST_VECTOR_SIZE(&chan->fds);
1056}
1057
1059{
1060 int pos = AST_EXTENDED_FDS;
1061
1062 while (ast_channel_fd_isset(chan, pos)) {
1063 pos += 1;
1064 }
1065
1066 AST_VECTOR_REPLACE(&chan->fds, pos, value);
1067
1068 return pos;
1069}
1070
1071pthread_t ast_channel_blocker(const struct ast_channel *chan)
1072{
1073 return chan->blocker;
1074}
1075void ast_channel_blocker_set(struct ast_channel *chan, pthread_t value)
1076{
1077 chan->blocker = value;
1078}
1079
1081{
1082 return chan->blocker_tid;
1083}
1085{
1086 chan->blocker_tid = value;
1087}
1088
1090{
1091 return chan->timingfunc;
1092}
1094{
1095 chan->timingfunc = value;
1096}
1097
1099{
1100 return chan->bridge;
1101}
1103{
1104 chan->bridge = value;
1107}
1108
1110{
1111 return chan->bridge_channel;
1112}
1114{
1116}
1117
1119{
1120 return &chan->flags;
1121}
1122
1123static int collect_names_cb(void *obj, void *arg, int flags)
1124{
1125 struct ast_control_pvt_cause_code *cause_code = obj;
1126 struct ast_str **str = arg;
1127
1128 ast_str_append(str, 0, "%s%s", (ast_str_strlen(*str) ? "," : ""), cause_code->chan_name);
1129
1130 return 0;
1131}
1132
1134{
1135 struct ast_str *chanlist = ast_str_create(128);
1136
1137 if (!chanlist) {
1138 return NULL;
1139 }
1140
1142
1143 return chanlist;
1144}
1145
1147{
1148 return ao2_find(chan->dialed_causes, chan_name, OBJ_KEY);
1149}
1150
1151int ast_channel_dialed_causes_add(const struct ast_channel *chan, const struct ast_control_pvt_cause_code *cause_code, int datalen)
1152{
1153 struct ast_control_pvt_cause_code *ao2_cause_code;
1155 ao2_cause_code = ao2_alloc(datalen, NULL);
1156
1157 if (ao2_cause_code) {
1158 memcpy(ao2_cause_code, cause_code, datalen);
1159 ao2_link(chan->dialed_causes, ao2_cause_code);
1160 ao2_ref(ao2_cause_code, -1);
1161 return 0;
1162 } else {
1163 return -1;
1164 }
1165}
1166
1168{
1170}
1171
1172/*! \brief Hash function for pvt cause code frames */
1173static int pvt_cause_hash_fn(const void *vpc, const int flags)
1174{
1175 const struct ast_control_pvt_cause_code *pc = vpc;
1177}
1178
1179/*! \brief Comparison function for pvt cause code frames */
1180static int pvt_cause_cmp_fn(void *obj, void *vstr, int flags)
1181{
1182 struct ast_control_pvt_cause_code *pc = obj;
1183 char *str = ast_tech_to_upper(ast_strdupa(vstr));
1184 char *pc_str = ast_tech_to_upper(ast_strdupa(pc->chan_name));
1185 return !strcmp(pc_str, str) ? CMP_MATCH | CMP_STOP : 0;
1186}
1187
1188#define DIALED_CAUSES_BUCKETS 37
1189
1190struct ast_channel *__ast_channel_internal_alloc_with_initializers(void (*destructor)(void *obj), const struct ast_assigned_ids *assignedids,
1191 const struct ast_channel *requestor, const struct ast_channel_initializers *initializers, const char *file, int line, const char *function)
1192{
1193 struct ast_channel *tmp;
1194
1195 tmp = __ao2_alloc(sizeof(*tmp), destructor,
1196 AO2_ALLOC_OPT_LOCK_MUTEX, "", file, line, function);
1197
1198 if (!tmp) {
1199 return NULL;
1200 }
1201
1202 if ((ast_string_field_init(tmp, 128))) {
1203 return ast_channel_unref(tmp);
1204 }
1205
1208 if (!tmp->dialed_causes) {
1209 return ast_channel_unref(tmp);
1210 }
1211
1212 /* Check initializers validity here for early abort. Unfortunately, we can't do much here because
1213 * tenant ID is part of linked ID, which would overwrite it further down. */
1214 if (initializers) {
1215 if (initializers->version == 0) {
1216 ast_log(LOG_ERROR, "Channel initializers must have a non-zero version.\n");
1217 return ast_channel_unref(tmp);
1218 } else if (initializers->version != AST_CHANNEL_INITIALIZERS_VERSION) {
1219 ast_log(LOG_ERROR, "ABI mismatch for ast_channel_initializers. "
1220 "Please ensure all modules were compiled for "
1221 "this version of Asterisk.\n");
1222 return ast_channel_unref(tmp);
1223 }
1224 }
1225
1226 /* set the creation time in the uniqueid */
1227 tmp->uniqueid.creation_time = time(NULL);
1229
1230 /* use provided id or default to historical {system-}time.# format */
1231 if (assignedids && !ast_strlen_zero(assignedids->uniqueid)) {
1232 ast_copy_string(tmp->uniqueid.unique_id, assignedids->uniqueid, sizeof(tmp->uniqueid.unique_id));
1234 snprintf(tmp->uniqueid.unique_id, sizeof(tmp->uniqueid.unique_id), "%li.%d",
1235 (long)(tmp->uniqueid.creation_time),
1237 } else {
1238 snprintf(tmp->uniqueid.unique_id, sizeof(tmp->uniqueid.unique_id), "%s-%li.%d",
1240 (long)(tmp->uniqueid.creation_time),
1242 }
1243
1244 /* copy linked id from parent channel if known */
1245 if (requestor) {
1246 tmp->linkedid = requestor->linkedid;
1247 } else {
1248 tmp->linkedid = tmp->uniqueid;
1249 }
1250
1251 /* Things like tenant ID need to be set here, otherwise they would be overwritten by
1252 * things like inheriting linked ID above. */
1253 if (initializers) {
1254 ast_copy_string(tmp->linkedid.tenant_id, initializers->tenantid, sizeof(tmp->linkedid.tenant_id));
1255 }
1256
1257 AST_VECTOR_INIT(&tmp->fds, AST_MAX_FDS);
1258
1259 /* Force all channel snapshot segments to be created on first use, so we don't have to check if
1260 * an old snapshot exists.
1261 */
1263
1264 return tmp;
1265}
1266
1267struct ast_channel *__ast_channel_internal_alloc(void (*destructor)(void *obj), const struct ast_assigned_ids *assignedids,
1268 const struct ast_channel *requestor, const char *file, int line, const char *function)
1269{
1270 return __ast_channel_internal_alloc_with_initializers(destructor, assignedids, requestor, NULL, file, line, function);
1271}
1272
1274{
1275 ast_assert(a->linkedid.creation_time != 0);
1276 ast_assert(b->linkedid.creation_time != 0);
1277
1278 if (a->linkedid.creation_time < b->linkedid.creation_time) {
1279 return a;
1280 }
1281 if (b->linkedid.creation_time < a->linkedid.creation_time) {
1282 return b;
1283 }
1284 if (a->linkedid.creation_unique < b->linkedid.creation_unique) {
1285 return a;
1286 }
1287 return b;
1288}
1289
1291{
1292 if (dest->linkedid.creation_time == source->linkedid.creation_time
1294 && !strcmp(dest->linkedid.unique_id, source->linkedid.unique_id)) {
1295 return;
1296 }
1297 dest->linkedid = source->linkedid;
1300}
1301
1303{
1304 struct ast_channel_id temp;
1305
1306 /* This operation is used as part of masquerading and so does not invalidate the peer
1307 * segment. This is due to the masquerade process invalidating all segments.
1308 */
1309
1310 /*
1311 * Since unique ids can be a key in the channel storage backend,
1312 * ensure that neither channel is linked in or the keys will be
1313 * invalid.
1314 */
1315 ast_assert(!a->linked_in_container && !b->linked_in_container);
1316
1317 temp = a->uniqueid;
1318 a->uniqueid = b->uniqueid;
1319 b->uniqueid = temp;
1320
1321 temp = a->linkedid;
1322 a->linkedid = b->linkedid;
1323 b->linkedid = temp;
1324}
1325
1327{
1328 struct stasis_topic *topic;
1329 struct stasis_forward *forward;
1330
1331 topic = a->topic;
1332 a->topic = b->topic;
1333 b->topic = topic;
1334
1335 forward = a->channel_forward;
1336 a->channel_forward = b->channel_forward;
1337 b->channel_forward = forward;
1338}
1339
1341{
1342 struct stasis_forward *temp;
1343
1344 temp = a->endpoint_forward;
1345 a->endpoint_forward = b->endpoint_forward;
1346 b->endpoint_forward = temp;
1347}
1348
1350{
1351 struct ast_channel_snapshot *snapshot;
1352
1353 snapshot = a->snapshot;
1354 a->snapshot = b->snapshot;
1355 b->snapshot = snapshot;
1356}
1357
1358void ast_channel_internal_set_fake_ids(struct ast_channel *chan, const char *uniqueid, const char *linkedid)
1359{
1360 ast_copy_string(chan->uniqueid.unique_id, uniqueid, sizeof(chan->uniqueid.unique_id));
1361 ast_copy_string(chan->linkedid.unique_id, linkedid, sizeof(chan->linkedid.unique_id));
1362}
1363
1365{
1366 if (chan->dialed_causes) {
1367 ao2_t_ref(chan->dialed_causes, -1,
1368 "done with dialed causes since the channel is going away");
1369 chan->dialed_causes = NULL;
1370 }
1371
1373
1376
1377 ao2_cleanup(chan->topic);
1378 chan->topic = NULL;
1379
1381
1382 AST_VECTOR_FREE(&chan->fds);
1383}
1384
1386{
1387 chan->finalized = 1;
1388}
1389
1391{
1392 return chan->finalized;
1393}
1394
1396{
1397 if (!chan) {
1398 return ast_channel_topic_all();
1399 }
1400
1401 return chan->topic;
1402}
1403
1405 struct ast_endpoint *endpoint)
1406{
1407 ast_assert(chan != NULL);
1408 ast_assert(endpoint != NULL);
1409
1410 chan->endpoint_forward =
1412 ast_endpoint_topic(endpoint));
1413 if (!chan->endpoint_forward) {
1414 return -1;
1415 }
1416
1417 return 0;
1418}
1419
1421{
1422 char *topic_name;
1423 int ret;
1424 ast_assert(chan->topic == NULL);
1425
1426 if (ast_strlen_zero(chan->uniqueid.unique_id)) {
1427 static int dummy_id;
1428 ret = ast_asprintf(&topic_name, "channel:dummy-%d", ast_atomic_fetchadd_int(&dummy_id, +1));
1429 } else {
1430 ret = ast_asprintf(&topic_name, "channel:%s", chan->uniqueid.unique_id);
1431 }
1432
1433 if (ret < 0) {
1434 return -1;
1435 }
1436
1437 chan->topic = stasis_topic_create(topic_name);
1438 ast_free(topic_name);
1439 if (!chan->topic) {
1440 return -1;
1441 }
1442
1445 if (!chan->channel_forward) {
1446 ao2_ref(chan->topic, -1);
1447 chan->topic = NULL;
1448 return -1;
1449 }
1450
1451 return 0;
1452}
1453
1455
1457{
1458 enum ast_channel_error *error_code = ast_threadstorage_get(&channel_errno, sizeof(*error_code));
1459 if (!error_code) {
1460 return;
1461 }
1462
1463 *error_code = error;
1464}
1465
1467{
1468 enum ast_channel_error *error_code = ast_threadstorage_get(&channel_errno, sizeof(*error_code));
1469 if (!error_code) {
1471 }
1472
1473 return *error_code;
1474}
1475
1477 const struct ast_channel *chan)
1478{
1479 ast_assert(chan != NULL);
1480
1481 return chan->stream_topology;
1482}
1483
1485 struct ast_stream_topology *topology)
1486{
1487 struct ast_stream_topology *new_topology;
1488 SCOPE_ENTER(1, "%s: %s\n", ast_channel_name(chan),
1489 ast_str_tmp(256, ast_stream_topology_to_str(topology, &STR_TMP)));
1490
1491 ast_assert(chan != NULL);
1492
1493 /* A non-MULTISTREAM channel can't manipulate topology directly */
1495
1496 /* Unless the channel is being destroyed, we always want a topology on
1497 * it even if its empty.
1498 */
1499 if (!topology) {
1500 new_topology = ast_stream_topology_alloc();
1501 } else {
1502 new_topology = topology;
1503 }
1504
1505 if (new_topology) {
1506 ast_channel_internal_set_stream_topology(chan, new_topology);
1507 }
1508
1509 SCOPE_EXIT_RTN_VALUE(new_topology, "Used %s topology\n", topology ? "provided" : "empty");
1510}
1511
1513 enum ast_media_type type)
1514{
1515 ast_assert(chan != NULL);
1517
1518 return chan->default_streams[type];
1519}
1520
1522 struct ast_channel *chan2)
1523{
1524 struct ast_stream_topology *tmp_topology;
1525
1526 ast_assert(chan1 != NULL && chan2 != NULL);
1527
1528 tmp_topology = chan1->stream_topology;
1529 chan1->stream_topology = chan2->stream_topology;
1530 chan2->stream_topology = tmp_topology;
1531
1534}
1535
1537{
1538 return (chan && chan->tech && chan->tech->read_stream && chan->tech->write_stream);
1539}
1540
1542{
1543 return chan->snapshot;
1544}
1545
1547{
1548 ao2_cleanup(chan->snapshot);
1549 chan->snapshot = ao2_bump(snapshot);
1550}
1551
1553{
1554 return &chan->snapshot_segment_flags;
1555}
void ast_alertpipe_close(int alert_pipe[2])
Close an alert pipe.
Definition: alertpipe.c:79
ssize_t ast_alertpipe_write(int alert_pipe[2])
Write an event to an alert pipe.
Definition: alertpipe.c:120
void ast_alertpipe_swap(int alert_pipe_1[2], int alert_pipe_2[2])
Swap the file descriptors from two alert pipes.
Definition: alertpipe.h:161
void ast_alertpipe_clear(int alert_pipe[2])
Sets the alert pipe file descriptors to default values.
Definition: alertpipe.h:98
ast_alert_status_t ast_alertpipe_flush(int alert_pipe[2])
Consume all alerts written to the alert pipe.
Definition: alertpipe.c:134
int ast_alertpipe_readable(int alert_pipe[2])
Determine if the alert pipe is readable.
Definition: alertpipe.h:114
int ast_alertpipe_readfd(int alert_pipe[2])
Get the alert pipe's read file descriptor.
Definition: alertpipe.h:146
int ast_alertpipe_init(int alert_pipe[2])
Initialize an alert pipe.
Definition: alertpipe.c:38
ast_alert_status_t
Definition: alertpipe.h:24
int ast_alertpipe_writable(int alert_pipe[2])
Determine if the alert pipe is writable.
Definition: alertpipe.h:130
ast_alert_status_t ast_alertpipe_read(int alert_pipe[2])
Read an event from an alert pipe.
Definition: alertpipe.c:102
const char * str
Definition: app_jack.c:150
static char dialcontext[AST_MAX_CONTEXT]
Asterisk main include file. File version handling, generic pbx functions.
#define ast_free(a)
Definition: astmm.h:180
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#define ast_asprintf(ret, fmt,...)
A wrapper for asprintf()
Definition: astmm.h:267
#define ast_log
Definition: astobj2.c:42
#define ao2_t_ref(o, delta, tag)
Definition: astobj2.h:460
#define ao2_link(container, obj)
Add an object to a container.
Definition: astobj2.h:1532
@ CMP_MATCH
Definition: astobj2.h:1027
@ CMP_STOP
Definition: astobj2.h:1028
#define OBJ_KEY
Definition: astobj2.h:1151
@ AO2_ALLOC_OPT_LOCK_MUTEX
Definition: astobj2.h:363
#define ao2_callback(c, flags, cb_fn, arg)
ao2_callback() is a generic function that applies cb_fn() to all objects in a container,...
Definition: astobj2.h:1693
#define ao2_cleanup(obj)
Definition: astobj2.h:1934
#define ao2_find(container, arg, flags)
Definition: astobj2.h:1736
#define ao2_replace(dst, src)
Replace one object reference with another cleaning up the original.
Definition: astobj2.h:501
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
#define ao2_bump(obj)
Bump refcount on an AO2 object by one, returning the object.
Definition: astobj2.h:480
@ OBJ_NODATA
Definition: astobj2.h:1044
@ OBJ_MULTIPLE
Definition: astobj2.h:1049
@ OBJ_UNLINK
Definition: astobj2.h:1039
#define ao2_alloc(data_size, destructor_fn)
Definition: astobj2.h:409
void * __ao2_alloc(size_t data_size, ao2_destructor_fn destructor_fn, unsigned int options, const char *tag, const char *file, int line, const char *func) attribute_warn_unused_result
Definition: astobj2.c:768
#define ao2_container_alloc_hash(ao2_options, container_options, n_buckets, hash_fn, sort_fn, cmp_fn)
Allocate and initialize a hash container with the desired number of buckets.
Definition: astobj2.h:1303
static char language[MAX_LANGUAGE]
Definition: chan_iax2.c:348
static char accountcode[AST_MAX_ACCOUNT_CODE]
Definition: chan_iax2.c:497
static const char type[]
Definition: chan_ooh323.c:109
General Asterisk PBX channel definitions.
const char * ast_channel_name(const struct ast_channel *chan)
int(* ast_timing_func_t)(const void *data)
Definition: channel.h:919
#define AST_EXTENDED_FDS
Definition: channel.h:197
#define ast_channel_lock(chan)
Definition: channel.h:2972
struct ast_namedgroups * ast_ref_namedgroups(struct ast_namedgroups *groups)
Definition: channel.c:7711
unsigned long long ast_group_t
Definition: channel.h:215
ast_channel_error
Definition: channel.h:4871
@ AST_CHANNEL_ERROR_UNKNOWN
Definition: channel.h:4873
int ast_queue_frame(struct ast_channel *chan, struct ast_frame *f)
Queue one or more frames to a channel's frame queue.
Definition: channel.c:1169
ama_flags
Channel AMA Flags.
Definition: channel.h:1197
ast_channel_adsicpe
Definition: channel.h:888
#define AST_CHANNEL_INITIALIZERS_VERSION
struct ABI version
Definition: channel.h:620
#define AST_MAX_FDS
Definition: channel.h:196
#define ast_channel_unref(c)
Decrease channel reference count.
Definition: channel.h:3008
struct ast_party_id ast_party_id_merge(struct ast_party_id *base, struct ast_party_id *overlay)
Merge a given party id into another given party id.
Definition: channel.c:1869
struct ast_namedgroups * ast_unref_namedgroups(struct ast_namedgroups *groups)
Definition: channel.c:7705
#define ast_channel_unlock(chan)
Definition: channel.h:2973
Internal channel functions for channel.c to use.
void ast_channel_internal_set_stream_topology_change_source(struct ast_channel *chan, void *change_source)
void ast_channel_internal_alertpipe_swap(struct ast_channel *chan1, struct ast_channel *chan2)
Swap the interal alertpipe between two channels.
void ast_channel_exten_set(struct ast_channel *chan, const char *value)
static struct ast_threadstorage channel_errno
const char * ast_channel_linkedid(const struct ast_channel *chan)
struct ast_bridge * ast_channel_internal_bridge(const struct ast_channel *chan)
void * ast_channel_get_stream_topology_change_source(struct ast_channel *chan)
Retrieve the source that initiated the last stream topology change.
struct timeval ast_channel_answertime(struct ast_channel *chan)
static void channel_set_default_streams(struct ast_channel *chan)
void ast_channel_rings_set(struct ast_channel *chan, int value)
void ast_channel_internal_copy_linkedid(struct ast_channel *dest, struct ast_channel *source)
Copy the full linkedid channel id structure from one channel to another.
void ast_channel_named_pickupgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
void ast_channel_name_set(struct ast_channel *chan, const char *value)
struct ast_channel * ast_channel_masq(const struct ast_channel *chan)
int ast_channel_blocker_tid(const struct ast_channel *chan)
void ast_channel_stream_set(struct ast_channel *chan, struct ast_filestream *value)
void ast_channel_appl_set(struct ast_channel *chan, const char *value)
void ast_channel_dtmff_set(struct ast_channel *chan, struct ast_frame *value)
void ast_channel_visible_indication_set(struct ast_channel *chan, int value)
const char * ast_channel_blockproc(const struct ast_channel *chan)
void ast_channel_caller_set(struct ast_channel *chan, struct ast_party_caller *value)
void ast_channel_internal_set_stream_topology(struct ast_channel *chan, struct ast_stream_topology *topology)
struct ast_stream_topology * ast_channel_set_stream_topology(struct ast_channel *chan, struct ast_stream_topology *topology)
Set the topology of streams on a channel.
void ast_channel_set_unbridged_nolock(struct ast_channel *chan, int value)
Variant of ast_channel_set_unbridged. Use this if the channel is already locked prior to calling.
struct ast_namedgroups * ast_channel_named_pickupgroups(const struct ast_channel *chan)
void * ast_channel_tech_pvt(const struct ast_channel *chan)
void ast_channel_internal_set_fake_ids(struct ast_channel *chan, const char *uniqueid, const char *linkedid)
Set uniqueid and linkedid string value only (not time)
const char * ast_channel_data(const struct ast_channel *chan)
void ast_channel_dialed_set(struct ast_channel *chan, struct ast_party_dialed *value)
struct ast_party_id ast_channel_redirecting_effective_to(struct ast_channel *chan)
struct ast_control_pvt_cause_code * ast_channel_dialed_causes_find(const struct ast_channel *chan, const char *chan_name)
Retrieve a ref-counted cause code information structure.
struct ast_format * ast_channel_rawreadformat(struct ast_channel *chan)
struct ast_party_id ast_channel_redirecting_effective_from(struct ast_channel *chan)
void * ast_channel_music_state(const struct ast_channel *chan)
void ast_channel_blockproc_set(struct ast_channel *chan, const char *value)
unsigned int ast_channel_fin(const struct ast_channel *chan)
void ast_channel_callid_cleanup(struct ast_channel *chan)
void ast_channel_insmpl_set(struct ast_channel *chan, unsigned long value)
void ast_channel_set_oldwriteformat(struct ast_channel *chan, struct ast_format *format)
void ast_channel_softhangup_internal_flag_clear(struct ast_channel *chan, int value)
struct varshead * ast_channel_varshead(struct ast_channel *chan)
int ast_channel_rings(const struct ast_channel *chan)
void ast_channel_generator_set(struct ast_channel *chan, struct ast_generator *value)
void ast_channel_blocker_set(struct ast_channel *chan, pthread_t value)
void ast_channel_tenantid_set(struct ast_channel *chan, const char *value)
void ast_channel_sending_dtmf_digit_set(struct ast_channel *chan, char value)
void * ast_channel_timingdata(const struct ast_channel *chan)
#define DEFINE_STRINGFIELD_GETTER_FOR(field)
int ast_channel_internal_alert_readfd(struct ast_channel *chan)
const char * ast_channel_tenantid(const struct ast_channel *chan)
void ast_channel_dtmf_tv_set(struct ast_channel *chan, struct timeval *value)
int ast_channel_internal_is_finalized(struct ast_channel *chan)
struct ast_flags * ast_channel_snapshot_segment_flags(struct ast_channel *chan)
void ast_channel_internal_swap_endpoint_forward(struct ast_channel *a, struct ast_channel *b)
Swap endpoint_forward between two channels.
void ast_channel_nativeformats_set(struct ast_channel *chan, struct ast_format_cap *value)
const struct ast_channelstorage_driver * current_channel_storage_driver
The current channel storage driver.
int ast_channel_fdno(const struct ast_channel *chan)
void ast_channel_internal_fd_clear_all(struct ast_channel *chan)
void ast_channel_internal_bridge_channel_set(struct ast_channel *chan, struct ast_bridge_channel *value)
void ast_channel_internal_alertpipe_close(struct ast_channel *chan)
struct ast_channel * __ast_channel_internal_alloc_with_initializers(void(*destructor)(void *obj), const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const struct ast_channel_initializers *initializers, const char *file, int line, const char *function)
struct stasis_topic * ast_channel_topic(struct ast_channel *chan)
A topic which publishes the events for a particular channel.
void ast_channel_answertime_set(struct ast_channel *chan, struct timeval *value)
struct ast_channelstorage_instance * current_channel_storage_instance
The current channel storage instance.
void ast_channel_hold_state_set(struct ast_channel *chan, int value)
struct ast_trans_pvt * ast_channel_readtrans(const struct ast_channel *chan)
const char * ast_channel_lastexten(const struct ast_channel *chan)
struct ast_format_cap * ast_channel_nativeformats(const struct ast_channel *chan)
void ast_channel_data_set(struct ast_channel *chan, const char *value)
void ast_channel_blocker_tid_set(struct ast_channel *chan, int value)
struct timeval ast_channel_sending_dtmf_tv(const struct ast_channel *chan)
void ast_channel_jb_set(struct ast_channel *chan, struct ast_jb *value)
struct ast_party_redirecting * ast_channel_redirecting(struct ast_channel *chan)
enum ast_channel_error ast_channel_internal_errno(void)
void ast_channel_snapshot_set(struct ast_channel *chan, struct ast_channel_snapshot *snapshot)
struct ast_trans_pvt * ast_channel_writetrans(const struct ast_channel *chan)
static int uniqueint
The monotonically increasing integer counter for channel uniqueids.
unsigned short ast_channel_transfercapability(const struct ast_channel *chan)
struct ast_namedgroups * ast_channel_named_callgroups(const struct ast_channel *chan)
ast_group_t ast_channel_pickupgroup(const struct ast_channel *chan)
void ast_channel_vstreamid_set(struct ast_channel *chan, int value)
#define DEFINE_STRINGFIELD_SETTERS_FOR(field, assert_on_null)
void ast_channel_internal_swap_stream_topology(struct ast_channel *chan1, struct ast_channel *chan2)
void ast_channel_timingdata_set(struct ast_channel *chan, void *value)
struct ast_format * ast_channel_oldwriteformat(struct ast_channel *chan)
int ast_channel_internal_alert_readable(struct ast_channel *chan)
struct ast_cdr * ast_channel_cdr(const struct ast_channel *chan)
void ast_channel_name_build_va(struct ast_channel *chan, const char *fmt, va_list ap)
struct ast_flags * ast_channel_flags(struct ast_channel *chan)
void ast_channel_redirecting_set(struct ast_channel *chan, struct ast_party_redirecting *value)
int ast_channel_priority(const struct ast_channel *chan)
void ast_channel_writetrans_set(struct ast_channel *chan, struct ast_trans_pvt *value)
void ast_channel_streamid_set(struct ast_channel *chan, int value)
void ast_channel_callid_set(struct ast_channel *chan, ast_callid callid)
void ast_channel_generatordata_set(struct ast_channel *chan, void *value)
struct ast_party_connected_line * ast_channel_connected(struct ast_channel *chan)
struct ast_str * ast_channel_dialed_causes_channels(const struct ast_channel *chan)
Retrieve a comma-separated list of channels for which dialed cause information is available.
void ast_channel_softhangup_internal_flag_set(struct ast_channel *chan, int value)
ast_callid ast_channel_callid(const struct ast_channel *chan)
const char * ast_channel_uniqueid(const struct ast_channel *chan)
const char * ast_channel_context(const struct ast_channel *chan)
char ast_channel_dtmf_digit_to_emulate(const struct ast_channel *chan)
unsigned long ast_channel_insmpl(const struct ast_channel *chan)
int ast_channel_fd_add(struct ast_channel *chan, int value)
Add a file descriptor to the channel without a fixed position.
ast_alert_status_t ast_channel_internal_alert_flush(struct ast_channel *chan)
void ast_channel_timingfd_set(struct ast_channel *chan, int value)
pthread_t ast_channel_blocker(const struct ast_channel *chan)
void ast_channel_sending_dtmf_tv_set(struct ast_channel *chan, struct timeval value)
int ast_channel_is_t38_active_nolock(struct ast_channel *chan)
ast_channel_is_t38_active variant. Use this if the channel is already locked prior to calling.
void ast_channel_internal_swap_topics(struct ast_channel *a, struct ast_channel *b)
Swap topics beteween two channels.
const char * ast_channel_appl(const struct ast_channel *chan)
void ast_channel_internal_cleanup(struct ast_channel *chan)
int ast_channel_unbridged_nolock(struct ast_channel *chan)
ast_channel_unbridged variant. Use this if the channel is already locked prior to calling.
void ast_channel_framehooks_set(struct ast_channel *chan, struct ast_framehook_list *value)
struct timeval ast_channel_creationtime(struct ast_channel *chan)
struct ast_channel_snapshot * ast_channel_snapshot(const struct ast_channel *chan)
struct ast_bridge_channel * ast_channel_internal_bridge_channel(const struct ast_channel *chan)
struct ast_framehook_list * ast_channel_framehooks(const struct ast_channel *chan)
void ast_channel_audiohooks_set(struct ast_channel *chan, struct ast_audiohook_list *value)
int ast_channel_fd(const struct ast_channel *chan, int which)
void ast_channel_timer_set(struct ast_channel *chan, struct ast_timer *value)
void ast_channel_internal_fd_set(struct ast_channel *chan, int which, int value)
void ast_channel_fin_set(struct ast_channel *chan, unsigned int value)
void ast_channel_set_rawreadformat(struct ast_channel *chan, struct ast_format *format)
struct ast_audiohook_list * ast_channel_audiohooks(const struct ast_channel *chan)
void ast_channel_tech_pvt_set(struct ast_channel *chan, void *value)
enum ama_flags ast_channel_amaflags(const struct ast_channel *chan)
void ast_channel_readtrans_set(struct ast_channel *chan, struct ast_trans_pvt *value)
void ast_channel_name_build(struct ast_channel *chan, const char *fmt,...)
void ast_channel_callgroup_set(struct ast_channel *chan, ast_group_t value)
void ast_channel_internal_bridge_set(struct ast_channel *chan, struct ast_bridge *value)
void * ast_channel_generatordata(const struct ast_channel *chan)
struct ast_format * ast_channel_rawwriteformat(struct ast_channel *chan)
void ast_channel_set_is_t38_active_nolock(struct ast_channel *chan, int is_t38_active)
Variant of ast_channel_set_is_t38_active. Use this if the channel is already locked prior to calling.
unsigned int ast_channel_fout(const struct ast_channel *chan)
struct ast_stream_topology * ast_channel_get_stream_topology(const struct ast_channel *chan)
Retrieve the topology of streams on a channel.
void ast_channel_set_unbridged(struct ast_channel *chan, int value)
Sets the unbridged flag and queues a NULL frame on the channel to trigger a check by bridge_channel_w...
void ast_channel_outsmpl_set(struct ast_channel *chan, unsigned long value)
int ast_channel_hangupcause(const struct ast_channel *chan)
int ast_channel_timingfd(const struct ast_channel *chan)
void ast_channel_fdno_set(struct ast_channel *chan, int value)
void ast_channel_set_rawwriteformat(struct ast_channel *chan, struct ast_format *format)
struct ast_party_dialed * ast_channel_dialed(struct ast_channel *chan)
void ast_channel_creationtime_set(struct ast_channel *chan, struct timeval *value)
struct ast_tone_zone * ast_channel_zone(const struct ast_channel *chan)
struct ast_party_id ast_channel_redirecting_effective_orig(struct ast_channel *chan)
enum ast_channel_adsicpe ast_channel_adsicpe(const struct ast_channel *chan)
int ast_channel_dialed_causes_add(const struct ast_channel *chan, const struct ast_control_pvt_cause_code *cause_code, int datalen)
Add cause code information to the channel.
void ast_channel_named_callgroups_set(struct ast_channel *chan, struct ast_namedgroups *value)
int ast_channel_alert_write(struct ast_channel *chan)
struct ast_channel * __ast_channel_internal_alloc(void(*destructor)(void *obj), const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const char *file, int line, const char *function)
const char * ast_channel_lastcontext(const struct ast_channel *chan)
int ast_channel_vstreamid(const struct ast_channel *chan)
struct ast_readq_list * ast_channel_readq(struct ast_channel *chan)
void ast_channel_set_is_t38_active(struct ast_channel *chan, int is_t38_active)
Sets the is_t38_active flag.
struct ast_jb * ast_channel_jb(struct ast_channel *chan)
ast_timing_func_t ast_channel_timingfunc(const struct ast_channel *chan)
static int collect_names_cb(void *obj, void *arg, int flags)
void ast_channel_set_readformat(struct ast_channel *chan, struct ast_format *format)
void ast_channel_dtmf_digit_to_emulate_set(struct ast_channel *chan, char value)
void ast_channel_softhangup_internal_flag_add(struct ast_channel *chan, int value)
struct timeval * ast_channel_whentohangup(struct ast_channel *chan)
struct ast_stream * ast_channel_get_default_stream(struct ast_channel *chan, enum ast_media_type type)
Retrieve the default stream of a specific media type on a channel.
struct ast_filestream * ast_channel_vstream(const struct ast_channel *chan)
ast_alert_status_t ast_channel_internal_alert_read(struct ast_channel *chan)
struct ast_format * ast_channel_writeformat(struct ast_channel *chan)
void ast_channel_internal_swap_uniqueid_and_linkedid(struct ast_channel *a, struct ast_channel *b)
Swap uniqueid and linkedid beteween two channels.
struct ast_generator * ast_channel_generator(const struct ast_channel *chan)
ast_group_t ast_channel_callgroup(const struct ast_channel *chan)
struct ast_party_id ast_channel_connected_effective_id(struct ast_channel *chan)
int ast_channel_unbridged(struct ast_channel *chan)
This function will check if the bridge needs to be re-evaluated due to external changes.
int ast_channel_hold_state(const struct ast_channel *chan)
void ast_channel_emulate_dtmf_duration_set(struct ast_channel *chan, unsigned int value)
void ast_channel_amaflags_set(struct ast_channel *chan, enum ama_flags value)
struct ast_party_connected_line * ast_channel_connected_indicated(struct ast_channel *chan)
void ast_channel_cdr_set(struct ast_channel *chan, struct ast_cdr *value)
void ast_channel_context_set(struct ast_channel *chan, const char *value)
int ast_channel_streamid(const struct ast_channel *chan)
void ast_channel_connected_set(struct ast_channel *chan, struct ast_party_connected_line *value)
void ast_channel_state_set(struct ast_channel *chan, enum ast_channel_state value)
int ast_channel_internal_setup_topics(struct ast_channel *chan)
void ast_channel_timingfunc_set(struct ast_channel *chan, ast_timing_func_t value)
struct ast_sched_context * ast_channel_sched(const struct ast_channel *chan)
int ast_channel_forward_endpoint(struct ast_channel *chan, struct ast_endpoint *endpoint)
Forward channel stasis messages to the given endpoint.
int ast_channel_fd_count(const struct ast_channel *chan)
Retrieve the number of file decriptor positions present on the channel.
static int pvt_cause_cmp_fn(void *obj, void *vstr, int flags)
Comparison function for pvt cause code frames.
struct ast_frame * ast_channel_dtmff(struct ast_channel *chan)
void ast_channel_internal_swap_snapshots(struct ast_channel *a, struct ast_channel *b)
Swap snapshots beteween two channels.
void ast_channel_music_state_set(struct ast_channel *chan, void *value)
unsigned int ast_channel_emulate_dtmf_duration(const struct ast_channel *chan)
struct ast_filestream * ast_channel_stream(const struct ast_channel *chan)
void ast_channel_internal_fd_clear(struct ast_channel *chan, int which)
struct ast_pbx * ast_channel_pbx(const struct ast_channel *chan)
void ast_channel_fout_set(struct ast_channel *chan, unsigned int value)
struct ast_autochan_list * ast_channel_autochans(struct ast_channel *chan)
const struct ast_channel_tech * ast_channel_tech(const struct ast_channel *chan)
void ast_channel_zone_set(struct ast_channel *chan, struct ast_tone_zone *value)
struct ast_channel * ast_channel_masqr(const struct ast_channel *chan)
int ast_channel_softhangup_internal_flag(struct ast_channel *chan)
enum ast_channel_state ast_channel_state(const struct ast_channel *chan)
struct timeval * ast_channel_dtmf_tv(struct ast_channel *chan)
struct ast_party_caller * ast_channel_caller(struct ast_channel *chan)
char ast_channel_sending_dtmf_digit(const struct ast_channel *chan)
int ast_channel_visible_indication(const struct ast_channel *chan)
struct ast_timer * ast_channel_timer(const struct ast_channel *chan)
struct ast_hangup_handler_list * ast_channel_hangup_handlers(struct ast_channel *chan)
void ast_channel_transfercapability_set(struct ast_channel *chan, unsigned short value)
unsigned long ast_channel_outsmpl(const struct ast_channel *chan)
void ast_channel_masqr_set(struct ast_channel *chan, struct ast_channel *value)
void ast_channel_internal_finalize(struct ast_channel *chan)
void ast_channel_internal_alertpipe_clear(struct ast_channel *chan)
void ast_channel_priority_set(struct ast_channel *chan, int value)
#define DIALED_CAUSES_BUCKETS
void ast_channel_hangupcause_set(struct ast_channel *chan, int value)
void ast_channel_internal_errno_set(enum ast_channel_error error)
void ast_channel_whentohangup_set(struct ast_channel *chan, struct timeval *value)
void ast_channel_pickupgroup_set(struct ast_channel *chan, ast_group_t value)
static int pvt_cause_hash_fn(const void *vpc, const int flags)
Hash function for pvt cause code frames.
int ast_channel_fd_isset(const struct ast_channel *chan, int which)
void ast_channel_adsicpe_set(struct ast_channel *chan, enum ast_channel_adsicpe value)
void ast_channel_dialed_causes_clear(const struct ast_channel *chan)
Clear all cause information from the channel.
#define DEFINE_STRINGFIELD_SETTERS_AND_INVALIDATE_FOR(field, publish, assert_on_null, invalidate)
int ast_channel_is_multistream(struct ast_channel *chan)
Determine if a channel is multi-stream capable.
int ast_channel_internal_alertpipe_init(struct ast_channel *chan)
void ast_channel_sched_set(struct ast_channel *chan, struct ast_sched_context *value)
void ast_channel_tech_set(struct ast_channel *chan, const struct ast_channel_tech *value)
const char * ast_channel_exten(const struct ast_channel *chan)
int ast_channel_is_t38_active(struct ast_channel *chan)
This function will check if T.38 is active on the channel.
struct ast_datastore_list * ast_channel_datastores(struct ast_channel *chan)
void ast_channel_masq_set(struct ast_channel *chan, struct ast_channel *value)
void ast_channel_varshead_set(struct ast_channel *chan, struct varshead *value)
void ast_channel_pbx_set(struct ast_channel *chan, struct ast_pbx *value)
struct ast_channel * ast_channel_internal_oldest_linkedid(struct ast_channel *a, struct ast_channel *b)
Determine which channel has an older linkedid.
void ast_channel_set_writeformat(struct ast_channel *chan, struct ast_format *format)
void ast_channel_vstream_set(struct ast_channel *chan, struct ast_filestream *value)
struct ast_format * ast_channel_readformat(struct ast_channel *chan)
int ast_channel_alert_writable(struct ast_channel *chan)
ast_channel_state
ast_channel states
Definition: channelstate.h:35
ast_media_type
Types of media.
Definition: codec.h:30
@ AST_MEDIA_TYPE_UNKNOWN
Definition: codec.h:31
@ AST_MEDIA_TYPE_END
Definition: codec.h:36
Endpoint abstractions.
const char * ast_format_cap_get_names(const struct ast_format_cap *cap, struct ast_str **buf)
Get the names of codecs of a set of formats.
Definition: format_cap.c:734
static const char name[]
Definition: format_mp3.c:68
#define SCOPE_EXIT_RTN(...)
#define SCOPE_EXIT_RTN_VALUE(__return_value,...)
#define SCOPE_ENTER(level,...)
struct stasis_topic * ast_channel_topic_all(void)
A topic which publishes the events for all channels.
struct stasis_topic * ast_endpoint_topic(struct ast_endpoint *endpoint)
Returns the topic for a specific endpoint.
void ast_channel_snapshot_invalidate_segment(struct ast_channel *chan, enum ast_channel_snapshot_segment_invalidation segment)
Invalidate a channel snapshot segment from being reused.
void ast_channel_publish_snapshot(struct ast_channel *chan)
Publish a ast_channel_snapshot for a channel.
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_PEER
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_CALLER
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_HANGUP
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_BRIDGE
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_BASE
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_CONNECTED
@ AST_CHANNEL_SNAPSHOT_INVALIDATE_DIALPLAN
struct ast_frame ast_null_frame
Definition: main/frame.c:79
void ast_callid_strnprint(char *buffer, size_t buffer_size, ast_callid callid)
copy a string representation of the callid into a target string
Definition: logger.c:2263
#define ast_debug(level,...)
Log a DEBUG message.
#define AST_CALLID_BUFFER_LENGTH
unsigned int ast_callid
#define LOG_ERROR
Tone Indication Support.
int ast_atomic_fetchadd_int(volatile int *p, int v)
Atomically add v to *p and return the previous value of *p.
Definition: lock.h:764
Asterisk file paths, configured in asterisk.conf.
const char * ast_config_AST_SYSTEM_NAME
Definition: options.c:171
#define NULL
Definition: resample.c:96
struct stasis_forward * stasis_forward_cancel(struct stasis_forward *forward)
Definition: stasis.c:1575
struct stasis_topic * stasis_topic_create(const char *name)
Create a new topic.
Definition: stasis.c:644
struct stasis_forward * stasis_forward_all(struct stasis_topic *from_topic, struct stasis_topic *to_topic)
Create a subscription which forwards all messages from one topic to another.
Definition: stasis.c:1605
Endpoint abstractions.
Media Stream API.
struct ast_stream_topology * ast_stream_topology_alloc(void)
Create a stream topology.
Definition: stream.c:652
const char * ast_stream_topology_to_str(const struct ast_stream_topology *topology, struct ast_str **buf)
Get a string representing the topology for debugging/display purposes.
Definition: stream.c:939
void ast_stream_topology_free(struct ast_stream_topology *topology)
Unreference and destroy a stream topology.
Definition: stream.c:746
struct ast_stream_topology * ast_stream_topology_create_from_format_cap(struct ast_format_cap *cap)
A helper function that, given a format capabilities structure, creates a topology and separates the m...
Definition: stream.c:851
struct ast_stream * ast_stream_topology_get_first_stream_by_type(const struct ast_stream_topology *topology, enum ast_media_type type)
Gets the first active stream of a specific type from the topology.
Definition: stream.c:967
#define ast_string_field_build_va(x, field, fmt, args)
Set a field to a complex (built) value.
Definition: stringfields.h:591
#define ast_string_field_set(x, field, data)
Set a field to a simple string value.
Definition: stringfields.h:521
#define ast_string_field_init(x, size)
Initialize a field pool and fields.
Definition: stringfields.h:359
#define ast_string_field_free_memory(x)
free all memory - to be called before destroying the object
Definition: stringfields.h:374
int ast_str_append(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Append to a thread local dynamic string.
Definition: strings.h:1139
#define S_OR(a, b)
returns the equivalent of logic or for strings: first one if not empty, otherwise second one.
Definition: strings.h:80
static force_inline int attribute_pure ast_str_hash(const char *str)
Compute a hash value on a string.
Definition: strings.h:1259
#define S_COR(a, b, c)
returns the equivalent of logic or for strings, with an additional boolean check: second one if not e...
Definition: strings.h:87
char * ast_tech_to_upper(char *dev_str)
Convert the tech portion of a device string to upper case.
Definition: strings.h:1236
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
#define ast_str_tmp(init_len, __expr)
Provides a temporary ast_str and returns a copy of its buffer.
Definition: strings.h:1189
#define ast_str_create(init_len)
Create a malloc'ed dynamic length string.
Definition: strings.h:659
size_t ast_str_strlen(const struct ast_str *buf)
Returns the current length of the string stored within buf.
Definition: strings.h:730
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Definition: strings.h:425
Structure to pass both assignedid values to channel drivers.
Definition: channel.h:606
const char * uniqueid
Definition: channel.h:607
Structure that contains information regarding a channel in a bridge.
struct ast_channel * chan
Structure that contains information about a bridge.
Definition: bridge.h:353
Responsible for call detail data.
Definition: cdr.h:279
Channel UniqueId structure.
char unique_id[AST_MAX_UNIQUEID]
char tenant_id[AST_MAX_TENANT_ID]
Helper struct for initializing additional channel information on channel creation.
Definition: channel.h:615
const char * tenantid
Definition: channel.h:626
uint32_t version
struct ABI version
Definition: channel.h:625
Structure representing a snapshot of channel state.
Structure to describe a channel "technology", ie a channel driver See for examples:
Definition: channel.h:648
int(*const write_stream)(struct ast_channel *chan, int stream_num, struct ast_frame *frame)
Write a frame on a specific stream, in standard format (see frame.h)
Definition: channel.h:773
struct ast_frame *(*const read_stream)(struct ast_channel *chan)
Read a frame (or chain of frames from the same stream), in standard format (see frame....
Definition: channel.h:767
Main Channel structure associated with a channel.
struct ast_filestream * stream
struct ast_cdr * cdr
struct ast_stream * default_streams[AST_MEDIA_TYPE_END]
pthread_t blocker
struct ast_channel_id uniqueid
struct stasis_topic * topic
const char * appl
struct ast_bridge_channel * bridge_channel
struct ast_framehook_list * framehooks
char lastexten[AST_MAX_EXTENSION]
struct timeval creationtime
struct ast_frame dtmff
char lastcontext[AST_MAX_CONTEXT]
struct ast_sched_context * sched
struct ast_channel_snapshot * snapshot
struct ast_datastore_list datastores
unsigned long outsmpl
struct ast_tone_zone * zone
struct ao2_container * dialed_causes
ast_timing_func_t timingfunc
enum ast_channel_adsicpe adsicpe
struct ast_format * rawwriteformat
struct ast_generator * generator
struct ast_bridge * bridge
struct timeval sending_dtmf_tv
struct ast_party_connected_line connected
Channel Connected Line ID information.
struct ast_trans_pvt * writetrans
ast_callid callid
struct timeval whentohangup
unsigned short transfercapability
char dtmf_digit_to_emulate
unsigned int emulate_dtmf_duration
void * stream_topology_change_source
struct ast_readq_list readq
struct ast_format * rawreadformat
char exten[AST_MAX_EXTENSION]
struct timeval dtmf_tv
void * music_state
struct ast_party_connected_line connected_indicated
Channel Connected Line ID information that was last indicated.
const char * data
struct ast_namedgroups * named_pickupgroups
struct stasis_forward * endpoint_forward
struct ast_flags snapshot_segment_flags
unsigned long insmpl
struct ast_trans_pvt * readtrans
struct ast_namedgroups * named_callgroups
struct ast_hangup_handler_list hangup_handlers
struct ast_timer * timer
struct varshead varshead
unsigned int fin
const struct ast_channel_tech * tech
struct ast_format * writeformat
struct ast_channel_id linkedid
enum ast_channel_state state
struct ast_party_redirecting redirecting
Redirecting/Diversion information.
struct ast_channel * masqr
ast_group_t pickupgroup
struct ast_party_dialed dialed
Dialed/Called information.
void * generatordata
char context[AST_MAX_CONTEXT]
struct ast_jb jb
struct ast_filestream * vstream
struct timeval answertime
struct ast_format * readformat
void * timingdata
struct ast_audiohook_list * audiohooks
struct ast_format * oldwriteformat
struct stasis_forward * channel_forward
struct ast_channel * masq
struct ast_format_cap * nativeformats
const char * blockproc
struct ast_pbx * pbx
struct ast_flags flags
ast_group_t callgroup
char sending_dtmf_digit
unsigned int fout
struct ast_autochan_list autochans
struct ast_stream_topology * stream_topology
unsigned int finalized
struct ast_party_caller caller
Channel Caller ID information.
char chan_name[AST_CHANNEL_NAME]
This structure is allocated by file.c in one chunk, together with buf_size and desc_size bytes of mem...
Definition: mod_format.h:101
Structure used to handle boolean flags.
Definition: utils.h:199
unsigned int flags
Definition: utils.h:200
Format capabilities structure, holds formats + preference order + etc.
Definition: format_cap.c:54
Definition of a media format.
Definition: format.c:43
Data structure associated with a single frame of data.
General jitterbuffer state.
Definition: abstract_jb.h:141
Caller Party information.
Definition: channel.h:420
Connected Line/Party information.
Definition: channel.h:458
Dialed/Called Party information.
Definition: channel.h:380
Information needed to identify an endpoint in a call.
Definition: channel.h:340
Redirecting Line information. RDNIS (Redirecting Directory Number Information Service) Where a call d...
Definition: channel.h:524
Definition: pbx.h:215
Support for dynamic strings.
Definition: strings.h:623
A set of tones for a given locale.
Definition: indications.h:74
Default structure for translators, with the basic fields and buffers, all allocated as part of the sa...
Definition: translate.h:213
List of channel drivers.
Definition: app_dial.c:803
Forwarding information.
Definition: stasis.c:1558
int value
Definition: syslog.c:37
Test Framework API.
#define ast_test_suite_event_notify(s, f,...)
Definition: test.h:189
static struct test_val b
static struct test_val a
void * ast_threadstorage_get(struct ast_threadstorage *ts, size_t init_size)
Retrieve thread storage.
#define AST_THREADSTORAGE(name)
Define a thread storage variable.
Definition: threadstorage.h:86
int error(const char *format,...)
Definition: utils/frame.c:999
#define ast_assert(a)
Definition: utils.h:739
#define ast_set_flag(p, flag)
Definition: utils.h:70
#define AST_FLAGS_ALL
Definition: utils.h:196
Vector container support.
#define AST_VECTOR_REPLACE(vec, idx, elem)
Replace an element at a specific position in a vector, growing the vector if needed.
Definition: vector.h:295
#define AST_VECTOR_RESET(vec, cleanup)
Reset vector.
Definition: vector.h:636
#define AST_VECTOR_ELEM_CLEANUP_NOOP(elem)
Vector element cleanup that does nothing.
Definition: vector.h:582
#define AST_VECTOR_SIZE(vec)
Get the number of elements in a vector.
Definition: vector.h:620
#define AST_VECTOR_FREE(vec)
Deallocates this vector.
Definition: vector.h:185
#define AST_VECTOR_INIT(vec, size)
Initialize a vector.
Definition: vector.h:124
#define AST_VECTOR_GET(vec, idx)
Get an element from a vector.
Definition: vector.h:691