fixed partyline-conference handling
[lcr.git] / joinpbx.cpp
index 552352f..406d9e8 100644 (file)
@@ -255,8 +255,8 @@ JoinPBX::JoinPBX(class Endpoint *epoint) : Join()
        j_pid = getpid();
        j_updatebridge = 0;
        j_partyline = 0;
-       j_multicause = CAUSE_NOUSER;
-       j_multilocation = LOCATION_PRIVATE_LOCAL;
+       j_multicause = 0;
+       j_multilocation = 0;
 
        /* initialize a relation only to the calling interface */
        relation = j_relation = (struct join_relation *)MALLOC(sizeof(struct join_relation));
@@ -517,6 +517,7 @@ int JoinPBX::release(struct join_relation *relation, int location, int cause)
        }
        if (!reltemp)
                FATAL("relation not in list of our relations. this must not happen.\n");
+//printf("releasing relation %d\n", reltemp->epoint_id);
        *relationpointer = reltemp->next;
        FREE(reltemp, sizeof(struct join_relation));
        cmemuse--;
@@ -697,6 +698,57 @@ void JoinPBX::message_epoint(unsigned long epoint_id, int message_type, union pa
                return;
        }
 
+       /* process party line */
+       if (message_type == MESSAGE_SETUP) if (param->setup.partyline)
+       {
+               j_partyline = param->setup.partyline;
+       }
+       if (j_partyline)
+       {
+               switch(message_type)
+               {
+                       case MESSAGE_SETUP:
+                       PDEBUG(DEBUG_JOIN, "respsone with connect in partyline mode.\n");
+                       relation->type = RELATION_TYPE_CONNECT;
+                       message = message_create(j_serial, epoint_id, JOIN_TO_EPOINT, MESSAGE_CONNECT);
+                       SPRINT(message->param.connectinfo.id, "%d", j_partyline);
+                       message->param.connectinfo.ntype = INFO_NTYPE_UNKNOWN;
+                       message_put(message);
+                       j_updatebridge = 1; /* update bridge flag */
+                       break;
+                       
+                       case MESSAGE_AUDIOPATH:
+                       PDEBUG(DEBUG_JOIN, "join received channel message: %d.\n", param->audiopath);
+                       if (relation->channel_state != param->audiopath)
+                       {
+                               relation->channel_state = param->audiopath;
+                               j_updatebridge = 1; /* update bridge flag */
+                               if (options.deb & DEBUG_JOIN)
+                                       joinpbx_debug(this, "Join::message_epoint{after setting new channel state}");
+                       }
+                       break;
+
+                       case MESSAGE_DISCONNECT:
+                       PDEBUG(DEBUG_JOIN, "releasing after receiving disconnect, because join in partyline mode.\n");
+                       message = message_create(j_serial, epoint_id, JOIN_TO_EPOINT, MESSAGE_RELEASE);
+                       message->param.disconnectinfo.cause = CAUSE_NORMAL;
+                       message->param.disconnectinfo.location = LOCATION_PRIVATE_LOCAL;
+                       message_put(message);
+                       // fall through
+
+                       case MESSAGE_RELEASE:
+                       PDEBUG(DEBUG_JOIN, "releasing from join\n");
+                       release(relation, 0, 0);
+                       break;
+
+                       default:
+                       PDEBUG(DEBUG_JOIN, "ignoring message, because join in partyline mode.\n");
+               }
+               return;
+       }
+
+
+       /* process messages */
        switch(message_type)
        {
                /* process audio path message */
@@ -760,62 +812,71 @@ void JoinPBX::message_epoint(unsigned long epoint_id, int message_type, union pa
                        relation->type = RELATION_TYPE_CONNECT;
                /* release other relations in setup state */
                release_again:
-               relation = j_relation;
-               while(relation)
+               reltemp = j_relation;
+               while(reltemp)
                {
-                       if (relation->type == RELATION_TYPE_SETUP)
+//printf("connect, checking relation %d\n", reltemp->epoint_id);
+                       if (reltemp->type == RELATION_TYPE_SETUP)
                        {
-                               if (release(relation, LOCATION_PRIVATE_LOCAL, CAUSE_NONSELECTED))
+//printf("relation %d is of type setup, releasing\n", reltemp->epoint_id);
+                               /* send release to endpoint */
+                               message = message_create(j_serial, reltemp->epoint_id, JOIN_TO_EPOINT, MESSAGE_RELEASE);
+                               message->param.disconnectinfo.cause = CAUSE_NONSELECTED;
+                               message->param.disconnectinfo.location = LOCATION_PRIVATE_LOCAL;
+                               message_put(message);
+
+                               if (release(reltemp, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL)) // dummy cause, should not be used, since calling and connected endpoint still exist afterwards.
                                        return; // must return, because join IS destroyed
                                goto release_again;
                        }
-                       relation = relation->next;
+                       if (reltemp->type == RELATION_TYPE_CALLING)
+                               reltemp->type = RELATION_TYPE_CONNECT;
+                       reltemp = reltemp->next;
                }
                break; // continue with our message
 
                /* release is sent by endpoint */
                case MESSAGE_RELEASE:
-               if (relation->type == RELATION_TYPE_SETUP)
+               switch(relation->type)
                {
+                       case RELATION_TYPE_SETUP: /* by called */
                        /* collect cause and send collected cause */
                        collect_cause(&j_multicause, &j_multilocation, param->disconnectinfo.cause, param->disconnectinfo.location);
-                       release(relation, j_multilocation, j_multicause);
-               } else
-               {
+                       if (j_multicause)
+                               release(relation, j_multilocation, j_multicause);
+                       else
+                               release(relation, LOCATION_PRIVATE_LOCAL, CAUSE_UNSPECIFIED);
+                       break;
+
+                       case RELATION_TYPE_CALLING: /* by calling */
+                       /* remove all relations that are in called */
+                       release_again2:
+                       reltemp = j_relation;
+                       while(reltemp)
+                       {
+                               if (reltemp->type == RELATION_TYPE_SETUP)
+                               {
+                                       /* send release to endpoint */
+                                       message = message_create(j_serial, reltemp->epoint_id, JOIN_TO_EPOINT, message_type);
+                                       memcpy(&message->param, param, sizeof(union parameter));
+                                       message_put(message);
+
+                                       if (release(reltemp, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL))
+                                               return; // must return, because join IS destroyed
+                                       goto release_again2;
+                               }
+                               reltemp = reltemp->next;
+                       }
+                       PERROR("we are still here, this should not happen\n");
+                       break;
+
+                       default: /* by connected */
                        /* send current cause */
                        release(relation, param->disconnectinfo.location, param->disconnectinfo.cause);
                }
                return; // must return, because join may be destroyed
        }
 
-       /* process party line */
-       if (message_type == MESSAGE_SETUP) if (param->setup.partyline)
-       {
-               PDEBUG(DEBUG_JOIN, "respsone with connect in partyline mode.\n");
-               j_partyline = param->setup.partyline;
-               message = message_create(j_serial, epoint_id, JOIN_TO_EPOINT, MESSAGE_CONNECT);
-               message->param.setup.partyline = j_partyline;
-               message_put(message);
-               j_updatebridge = 1; /* update bridge flag */
-       }
-       if (j_partyline)
-       {
-               if (message_type == MESSAGE_DISCONNECT)
-               {
-                       PDEBUG(DEBUG_JOIN, "releasing after receiving disconnect, because join in partyline mode.\n");
-                       message = message_create(j_serial, epoint_id, JOIN_TO_EPOINT, MESSAGE_RELEASE);
-                       message->param.disconnectinfo.cause = CAUSE_NORMAL;
-                       message->param.disconnectinfo.location = LOCATION_PRIVATE_LOCAL;
-                       message_put(message);
-                       return;
-               }
-       }
-       if (j_partyline)
-       {
-               PDEBUG(DEBUG_JOIN, "ignoring message, because join in partyline mode.\n");
-               return;
-       }
-
        /* count relations */
        num=joinpbx_countrelations(j_serial);
 
@@ -945,7 +1006,7 @@ int JoinPBX::out_setup(unsigned long epoint_id, int message_type, union paramete
        relation->tx_state = NOTIFY_STATE_ACTIVE; /* new joins always assumed to be active */
        relation->rx_state = NOTIFY_STATE_ACTIVE; /* new joins always assumed to be active */
        /* create a new endpoint */
-       epoint = new Endpoint(0, j_serial, 0);
+       epoint = new Endpoint(0, j_serial);
        if (!epoint)
                FATAL("No memory for Endpoint instance\n");
        if (!(epoint->ep_app = new DEFAULT_ENDPOINT_APP(epoint)))