voltando a versao de n aberturas e fechamentos de sockets
Dependencies: EthernetInterface NTPClient mbed-rtos_old mbed
Fork of header_main_public by
main.cpp@14:22a35f575502, 2014-09-16 (annotated)
- Committer:
- klauss
- Date:
- Tue Sep 16 21:02:37 2014 +0000
- Revision:
- 14:22a35f575502
- Parent:
- 13:ae278302dffe
- Child:
- 15:9c7456c1b6f4
stable version
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
klauss | 0:4d17cd9c8f9d | 1 | #include "bits.h" |
klauss | 0:4d17cd9c8f9d | 2 | #include "utils.h" |
klauss | 0:4d17cd9c8f9d | 3 | #include "configs.h" |
klauss | 0:4d17cd9c8f9d | 4 | #include "UART3Interrupt.h" |
klauss | 0:4d17cd9c8f9d | 5 | #include "parallelcpld.h" |
klauss | 0:4d17cd9c8f9d | 6 | |
klauss | 0:4d17cd9c8f9d | 7 | #include "debug.h" |
klauss | 0:4d17cd9c8f9d | 8 | #include "utils.h" |
klauss | 0:4d17cd9c8f9d | 9 | |
klauss | 0:4d17cd9c8f9d | 10 | /* |
klauss | 0:4d17cd9c8f9d | 11 | #define set_status(a,b) _set_status(a,b) |
klauss | 0:4d17cd9c8f9d | 12 | #define _set_status(a,b) { \ |
klauss | 0:4d17cd9c8f9d | 13 | a = b; \ |
klauss | 0:4d17cd9c8f9d | 14 | sprintf( debug_msg, "-- State == %d -- Line %d", a, __LINE__ ); \ |
klauss | 0:4d17cd9c8f9d | 15 | debug.sendTo( debug_server, debug_msg, strlen( debug_msg ) ); \ |
klauss | 0:4d17cd9c8f9d | 16 | } |
klauss | 0:4d17cd9c8f9d | 17 | #define whereami() _whereami() |
klauss | 0:4d17cd9c8f9d | 18 | #define _whereami() { \ |
klauss | 0:4d17cd9c8f9d | 19 | sprintf( debug_msg, "-- whereami %d", __LINE__ ); \ |
klauss | 0:4d17cd9c8f9d | 20 | debug.sendTo( debug_server, debug_msg, strlen( debug_msg ) ); \ |
klauss | 0:4d17cd9c8f9d | 21 | } |
klauss | 0:4d17cd9c8f9d | 22 | */ |
klauss | 0:4d17cd9c8f9d | 23 | volatile uint8_t status = 0x00; |
klauss | 0:4d17cd9c8f9d | 24 | |
klauss | 0:4d17cd9c8f9d | 25 | bool debug_bool = true; |
klauss | 0:4d17cd9c8f9d | 26 | |
klauss | 0:4d17cd9c8f9d | 27 | int main(){ |
klauss | 0:4d17cd9c8f9d | 28 | start_cpld(); |
klauss | 0:4d17cd9c8f9d | 29 | config_lpc(); |
klauss | 0:4d17cd9c8f9d | 30 | |
klauss | 0:4d17cd9c8f9d | 31 | /* referencia e inicio da conexao com a ethernet */ |
klauss | 0:4d17cd9c8f9d | 32 | EthernetInterface eth; |
klauss | 13:ae278302dffe | 33 | |
klauss | 9:ffa64f38ef9c | 34 | int eth_status = __init_eth__( ð ); |
klauss | 9:ffa64f38ef9c | 35 | |
klauss | 8:e3bfe62a477e | 36 | if( eth_status ){ |
klauss | 9:ffa64f38ef9c | 37 | debug_msg("Sem conexao eth"); |
klauss | 8:e3bfe62a477e | 38 | } |
klauss | 0:4d17cd9c8f9d | 39 | |
klauss | 0:4d17cd9c8f9d | 40 | /* debugs */ |
klauss | 2:93bec7313ccc | 41 | // debug_server.set_address( "192.168.120.144", 9897 ); |
klauss | 2:93bec7313ccc | 42 | // debug.bind( 72133 ); |
klauss | 2:93bec7313ccc | 43 | // debug.init(); |
klauss | 0:4d17cd9c8f9d | 44 | |
klauss | 0:4d17cd9c8f9d | 45 | Timer t; |
klauss | 0:4d17cd9c8f9d | 46 | t.start(); |
klauss | 0:4d17cd9c8f9d | 47 | |
klauss | 0:4d17cd9c8f9d | 48 | /* representa ramal do call box */ |
klauss | 0:4d17cd9c8f9d | 49 | int ext = 0; |
klauss | 0:4d17cd9c8f9d | 50 | |
klauss | 0:4d17cd9c8f9d | 51 | /* representa porta do call box */ |
klauss | 0:4d17cd9c8f9d | 52 | int port = 0; |
klauss | 0:4d17cd9c8f9d | 53 | |
klauss | 0:4d17cd9c8f9d | 54 | /* buffer para onde se copia os dados vindos do cb para tratameno interno */ |
klauss | 0:4d17cd9c8f9d | 55 | uint8_t buffer[ __CB_BUFFER_SIZE__ ]; |
klauss | 0:4d17cd9c8f9d | 56 | |
klauss | 0:4d17cd9c8f9d | 57 | /* buffer de escrita do pacote de saida que sera enviado pro cb / servidor */ |
klauss | 0:4d17cd9c8f9d | 58 | uint8_t write_buffer[ __CB_BUFFER_SIZE__ ]; |
klauss | 0:4d17cd9c8f9d | 59 | |
klauss | 0:4d17cd9c8f9d | 60 | /* ponteiro que aponta para os dados vindo do CPLD */ |
klauss | 0:4d17cd9c8f9d | 61 | uint8_t * buffer_from_cb_ptr = ( uint8_t * )RXBuffer; |
klauss | 0:4d17cd9c8f9d | 62 | |
klauss | 0:4d17cd9c8f9d | 63 | /* referencia para os dados contidos no pacote, sem o header */ |
klauss | 0:4d17cd9c8f9d | 64 | uint8_t * data = NULL; |
klauss | 0:4d17cd9c8f9d | 65 | |
klauss | 0:4d17cd9c8f9d | 66 | /* gerencia o tipo do pacote para providenciar tratamento adequado */ |
klauss | 0:4d17cd9c8f9d | 67 | volatile uint8_t type = __DO_NOTHING__; |
klauss | 0:4d17cd9c8f9d | 68 | |
klauss | 0:4d17cd9c8f9d | 69 | /* representa a lista dos Call Boxes atualmente reconhecidos pela cabeceira */ |
klauss | 0:4d17cd9c8f9d | 70 | Vector * v_cb = new Vector(); |
klauss | 0:4d17cd9c8f9d | 71 | |
klauss | 0:4d17cd9c8f9d | 72 | /* representa a lista de ligacoes ativas na cabeceira */ |
klauss | 0:4d17cd9c8f9d | 73 | Vector * v_call = new Vector(); |
klauss | 0:4d17cd9c8f9d | 74 | |
klauss | 0:4d17cd9c8f9d | 75 | /* gerencia a distribuicao de timeslice para os call boxes */ |
klauss | 0:4d17cd9c8f9d | 76 | Timeslice * ts = new Timeslice(); |
klauss | 0:4d17cd9c8f9d | 77 | |
klauss | 0:4d17cd9c8f9d | 78 | /* tenta instanciar o vetor de call boxes, acende o led 1 antes de encerrar o programa */ |
klauss | 0:4d17cd9c8f9d | 79 | reset_leds(); |
klauss | 0:4d17cd9c8f9d | 80 | if( v_cb == NULL ){ |
klauss | 0:4d17cd9c8f9d | 81 | led1 = 0; |
klauss | 0:4d17cd9c8f9d | 82 | while( v_cb == NULL ){ |
klauss | 0:4d17cd9c8f9d | 83 | Vector * v_cb = new Vector(); |
klauss | 0:4d17cd9c8f9d | 84 | led1 = led1; |
klauss | 0:4d17cd9c8f9d | 85 | if( t.read() > 5 ){ |
klauss | 0:4d17cd9c8f9d | 86 | debug_msg("Erro ao alocar o vetor de CBx"); |
klauss | 0:4d17cd9c8f9d | 87 | t.reset(); |
klauss | 0:4d17cd9c8f9d | 88 | } |
klauss | 0:4d17cd9c8f9d | 89 | } |
klauss | 0:4d17cd9c8f9d | 90 | }else if( v_call == NULL ){ |
klauss | 0:4d17cd9c8f9d | 91 | led2 = 0; |
klauss | 0:4d17cd9c8f9d | 92 | led1 = 1; |
klauss | 0:4d17cd9c8f9d | 93 | while( v_call == NULL ){ |
klauss | 0:4d17cd9c8f9d | 94 | Vector * v_call = new Vector(); |
klauss | 0:4d17cd9c8f9d | 95 | led1 = led1; |
klauss | 0:4d17cd9c8f9d | 96 | if( t.read() > 5 ){ |
klauss | 0:4d17cd9c8f9d | 97 | debug_msg("Erro ao alocar o vetor de Calls"); |
klauss | 0:4d17cd9c8f9d | 98 | t.reset(); |
klauss | 0:4d17cd9c8f9d | 99 | } |
klauss | 0:4d17cd9c8f9d | 100 | } |
klauss | 0:4d17cd9c8f9d | 101 | } |
klauss | 0:4d17cd9c8f9d | 102 | reset_leds(); |
klauss | 0:4d17cd9c8f9d | 103 | debug_msg( " Ready " ); |
klauss | 1:a1758104fa1d | 104 | while( true ){ |
klauss | 0:4d17cd9c8f9d | 105 | if( status != __WAITING__ ){ |
klauss | 0:4d17cd9c8f9d | 106 | __read_cb_buffer__( buffer, buffer_from_cb_ptr ); |
klauss | 0:4d17cd9c8f9d | 107 | status = __WAITING__; |
klauss | 0:4d17cd9c8f9d | 108 | |
klauss | 0:4d17cd9c8f9d | 109 | data = __parse_cb_buffer__( &ext, &port, &type, buffer ); |
klauss | 0:4d17cd9c8f9d | 110 | |
klauss | 3:cd9148672e25 | 111 | if( data != NULL ){ |
klauss | 13:ae278302dffe | 112 | debug_msg("Procurando pelo CBx :: %d -- Type :: %d", ext, type ); |
klauss | 7:019b08223b87 | 113 | if( type != __AUDIO__ ){ |
klauss | 0:4d17cd9c8f9d | 114 | Call_Box * cb = __find_CB__( v_cb, ext ); |
klauss | 0:4d17cd9c8f9d | 115 | if( cb != NULL ){ |
klauss | 3:cd9148672e25 | 116 | cb->reset_elapsed_time(); |
klauss | 0:4d17cd9c8f9d | 117 | if( ( data[ 0 ] ^ cb->get_msg_id() ) == BIT7 ){ |
klauss | 0:4d17cd9c8f9d | 118 | // some pkg reply |
klauss | 0:4d17cd9c8f9d | 119 | if( ( data[ 0 ] | BIT7 ) == cb->get_msg_id() ){ |
klauss | 7:019b08223b87 | 120 | if( type == __BOOT__ ) type = __REGISTRY__; |
klauss | 0:4d17cd9c8f9d | 121 | __send_to_cb__( __build_cb_package__( ext, port, type, |
klauss | 0:4d17cd9c8f9d | 122 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 0:4d17cd9c8f9d | 123 | type = __DO_NOTHING__; |
klauss | 0:4d17cd9c8f9d | 124 | debug_msg("-- Renviado ultimo pkg --"); |
klauss | 0:4d17cd9c8f9d | 125 | }else if( data[ 0 ] == ( cb->get_msg_id() | BIT7 ) ){ |
klauss | 0:4d17cd9c8f9d | 126 | // ack from CBx |
klauss | 3:cd9148672e25 | 127 | debug_msg("-- ACK do meu pkg --"); |
klauss | 0:4d17cd9c8f9d | 128 | type = __DO_NOTHING__; |
klauss | 0:4d17cd9c8f9d | 129 | } |
klauss | 0:4d17cd9c8f9d | 130 | } |
klauss | 0:4d17cd9c8f9d | 131 | } |
klauss | 0:4d17cd9c8f9d | 132 | } |
klauss | 0:4d17cd9c8f9d | 133 | }else type = __DO_NOTHING__; |
klauss | 0:4d17cd9c8f9d | 134 | } |
klauss | 2:93bec7313ccc | 135 | //---------------------- |
klauss | 0:4d17cd9c8f9d | 136 | if( t.read() > 5 ){ |
klauss | 0:4d17cd9c8f9d | 137 | for( register uint8_t i = 0; i < v_cb->size(); i++ ){ |
klauss | 0:4d17cd9c8f9d | 138 | Call_Box * cb = ( Call_Box * )v_cb->get_element( i ); |
klauss | 13:ae278302dffe | 139 | debug_msg(" Type :: %d -- Ext :: %d -- TimeSlice :: %d -- remain_timeslices :: %d :: v_call->size() :: %d :: Status :: %d :: SIP Status %d", type , cb->get_ext(), cb->get_timeslice(), ts->remain_timeslices(), v_call->size(), cb->status, cb->sip->status ); |
klauss | 0:4d17cd9c8f9d | 140 | } |
klauss | 14:22a35f575502 | 141 | debug_msg(""); |
klauss | 0:4d17cd9c8f9d | 142 | t.reset(); |
klauss | 0:4d17cd9c8f9d | 143 | led3 = !led3; |
klauss | 0:4d17cd9c8f9d | 144 | } |
klauss | 0:4d17cd9c8f9d | 145 | //---------------------- |
klauss | 0:4d17cd9c8f9d | 146 | switch( type ){ |
klauss | 0:4d17cd9c8f9d | 147 | case __DO_NOTHING__ :{} |
klauss | 0:4d17cd9c8f9d | 148 | break; |
klauss | 0:4d17cd9c8f9d | 149 | |
klauss | 0:4d17cd9c8f9d | 150 | case __CB_BYE__ : { |
klauss | 0:4d17cd9c8f9d | 151 | Call_Box * cb = __find_CB__( v_cb, ext ); |
klauss | 0:4d17cd9c8f9d | 152 | if( cb != NULL ){ |
klauss | 4:de46f0d9b14d | 153 | debug_msg("Nao encontrado CBx :: %d -- Type :: %d", ext, type ); |
klauss | 0:4d17cd9c8f9d | 154 | data[ 0 ] |= BIT7; |
klauss | 0:4d17cd9c8f9d | 155 | cb->set_msg_id( data[ 0 ] ); |
klauss | 0:4d17cd9c8f9d | 156 | debug_msg( " Request bye from CBx " ); |
klauss | 0:4d17cd9c8f9d | 157 | for( register uint8_t i = 0; i < v_call->size(); i++ ){ |
klauss | 0:4d17cd9c8f9d | 158 | VZ_call * call = (VZ_call *)v_call->get_element( i ); |
klauss | 0:4d17cd9c8f9d | 159 | if( call->get_cb_ext() == ext ){ |
klauss | 4:de46f0d9b14d | 160 | cb->send_bye(); |
klauss | 0:4d17cd9c8f9d | 161 | ts->return_timeslice( cb->get_timeslice() ); |
klauss | 0:4d17cd9c8f9d | 162 | cb->set_timeslice( 0x00 ); |
klauss | 0:4d17cd9c8f9d | 163 | set_status( cb->status, cb_idle ); |
klauss | 13:ae278302dffe | 164 | v_call->remove_element( i ); |
klauss | 13:ae278302dffe | 165 | set_status( cb->sip->status, sip_idle); |
klauss | 0:4d17cd9c8f9d | 166 | data[ __TIMESLICE_PLACE__ ] = 0x00; |
klauss | 0:4d17cd9c8f9d | 167 | __send_to_cb__( __build_cb_package__( ext, port, __CB_BYE__, |
klauss | 0:4d17cd9c8f9d | 168 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 13:ae278302dffe | 169 | set_status( cb->sip->status, sip_idle ); |
klauss | 3:cd9148672e25 | 170 | delete( call ); |
klauss | 0:4d17cd9c8f9d | 171 | } |
klauss | 0:4d17cd9c8f9d | 172 | } |
klauss | 0:4d17cd9c8f9d | 173 | } |
klauss | 7:019b08223b87 | 174 | }break; |
klauss | 7:019b08223b87 | 175 | |
klauss | 0:4d17cd9c8f9d | 176 | case __INVITE__ : { |
klauss | 13:ae278302dffe | 177 | debug_msg("ok -- recebido o invite pelo menos"); |
klauss | 0:4d17cd9c8f9d | 178 | Call_Box * cb = __find_CB__( v_cb, ext ); |
klauss | 0:4d17cd9c8f9d | 179 | if( cb == NULL ){ |
klauss | 4:de46f0d9b14d | 180 | debug_msg("Nao encontrado CBx :: %d -- Type :: %d", ext, type ); |
klauss | 0:4d17cd9c8f9d | 181 | cb = new Call_Box( ext, port ); |
klauss | 0:4d17cd9c8f9d | 182 | v_cb->add( cb ); |
klauss | 0:4d17cd9c8f9d | 183 | set_status( cb->status, cb_idle ); |
klauss | 0:4d17cd9c8f9d | 184 | cb->registry(); |
klauss | 0:4d17cd9c8f9d | 185 | } |
klauss | 13:ae278302dffe | 186 | cb->reset_elapsed_time(); |
klauss | 10:22da1a0ac1e1 | 187 | if( v_call->size() != 0 ){ |
klauss | 10:22da1a0ac1e1 | 188 | data[ 0 ] |= BIT7; |
klauss | 10:22da1a0ac1e1 | 189 | cb->set_msg_id( data[ 0 ] ); |
klauss | 10:22da1a0ac1e1 | 190 | set_status(cb->status,cb_idle); |
klauss | 10:22da1a0ac1e1 | 191 | cb->set_timeslice( 0x00 ); |
klauss | 10:22da1a0ac1e1 | 192 | data[ __TIMESLICE_PLACE__ ] = 0x00; |
klauss | 10:22da1a0ac1e1 | 193 | __send_to_cb__( __build_cb_package__( ext, port, __INVITE__, |
klauss | 10:22da1a0ac1e1 | 194 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 10:22da1a0ac1e1 | 195 | debug_msg( "-- Negando chamada, uma ja em andamento -- " ); |
klauss | 10:22da1a0ac1e1 | 196 | break; |
klauss | 10:22da1a0ac1e1 | 197 | } |
klauss | 0:4d17cd9c8f9d | 198 | set_status( cb->status, cb_trying ); |
klauss | 0:4d17cd9c8f9d | 199 | debug_msg(" Ok temos um cbx encontrado com status :: %d", cb->status ); |
klauss | 0:4d17cd9c8f9d | 200 | switch( cb->status ){ |
klauss | 0:4d17cd9c8f9d | 201 | case cb_on_call : { |
klauss | 0:4d17cd9c8f9d | 202 | // a priori, nao fazer nada |
klauss | 0:4d17cd9c8f9d | 203 | //data[ __TIMESLICE_PLACE__ ] = 0x00; |
klauss | 0:4d17cd9c8f9d | 204 | //__send_to_cb__( __build_cb_package__( ext, port, __BYE__, |
klauss | 0:4d17cd9c8f9d | 205 | // ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 0:4d17cd9c8f9d | 206 | }break; |
klauss | 0:4d17cd9c8f9d | 207 | |
klauss | 0:4d17cd9c8f9d | 208 | case cb_ringing : { |
klauss | 0:4d17cd9c8f9d | 209 | // tratar sip 2 |
klauss | 0:4d17cd9c8f9d | 210 | }break; |
klauss | 0:4d17cd9c8f9d | 211 | |
klauss | 0:4d17cd9c8f9d | 212 | case cb_trying : { |
klauss | 0:4d17cd9c8f9d | 213 | data[ 0 ] |= BIT7; |
klauss | 0:4d17cd9c8f9d | 214 | cb->set_msg_id( data[ 0 ] ); |
klauss | 0:4d17cd9c8f9d | 215 | cb->set_timeslice( ts->get_timeslice() ); |
klauss | 0:4d17cd9c8f9d | 216 | if( cb->get_timeslice() == 0x00 ){ |
klauss | 0:4d17cd9c8f9d | 217 | //sem timeslice pra tratar com o * |
klauss | 9:ffa64f38ef9c | 218 | set_status(cb->status,cb_idle); |
klauss | 0:4d17cd9c8f9d | 219 | data[ __TIMESLICE_PLACE__ ] = 0x00; |
klauss | 0:4d17cd9c8f9d | 220 | __send_to_cb__( __build_cb_package__( ext, port, __INVITE__, |
klauss | 0:4d17cd9c8f9d | 221 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 13:ae278302dffe | 222 | set_status( cb->sip->status, sip_idle); |
klauss | 13:ae278302dffe | 223 | debug_msg( "-- Trying -- Sem TS -- %s ", write_buffer ); |
klauss | 0:4d17cd9c8f9d | 224 | }else{ |
klauss | 0:4d17cd9c8f9d | 225 | set_status(cb->status,cb_busy); |
klauss | 0:4d17cd9c8f9d | 226 | data[ __TIMESLICE_PLACE__ ] = cb->get_timeslice(); |
klauss | 0:4d17cd9c8f9d | 227 | __send_to_cb__( __build_cb_package__( ext, port, __INVITE__, |
klauss | 0:4d17cd9c8f9d | 228 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 0:4d17cd9c8f9d | 229 | |
klauss | 0:4d17cd9c8f9d | 230 | debug_msg(" -- %d on %d -- ", cb->get_ext(), data[ __TIMESLICE_PLACE__ ] ); |
klauss | 0:4d17cd9c8f9d | 231 | |
klauss | 3:cd9148672e25 | 232 | cb->set_msg_id( ( ( cb->get_msg_id() ) + 1 ) & ( BIT7 ^ 0xff ) ); |
klauss | 0:4d17cd9c8f9d | 233 | VZ_call * call = cb->invite(); |
klauss | 0:4d17cd9c8f9d | 234 | |
klauss | 0:4d17cd9c8f9d | 235 | if( call != NULL ){ |
klauss | 0:4d17cd9c8f9d | 236 | v_call->add( call ); |
klauss | 0:4d17cd9c8f9d | 237 | set_status(cb->status,cb_on_call); |
klauss | 0:4d17cd9c8f9d | 238 | |
klauss | 0:4d17cd9c8f9d | 239 | debug_msg(" -- %d on %d -- ", cb->get_ext(), data[ __TIMESLICE_PLACE__ ] ); |
klauss | 0:4d17cd9c8f9d | 240 | __send_to_cb__( __build_cb_package__( ext, port, __INVITE__, |
klauss | 0:4d17cd9c8f9d | 241 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 13:ae278302dffe | 242 | debug_msg( "-- Trying -- aceitando pedido de invite -- %s ", write_buffer ); |
klauss | 0:4d17cd9c8f9d | 243 | //debug_pkg( 300, write_buffer ); |
klauss | 0:4d17cd9c8f9d | 244 | }else{ |
klauss | 4:de46f0d9b14d | 245 | set_status( cb->status,cb_idle); |
klauss | 0:4d17cd9c8f9d | 246 | ts->return_timeslice( cb->get_timeslice() ); |
klauss | 0:4d17cd9c8f9d | 247 | cb->set_timeslice( 0x00 ); |
klauss | 0:4d17cd9c8f9d | 248 | data[ __TIMESLICE_PLACE__ ] = 0x00; |
klauss | 0:4d17cd9c8f9d | 249 | debug_msg(" -- %d on %d -- ", cb->get_ext(), data[ __TIMESLICE_PLACE__ ] ); |
klauss | 0:4d17cd9c8f9d | 250 | __send_to_cb__( __build_cb_package__( ext, port, __CB_BYE__, |
klauss | 0:4d17cd9c8f9d | 251 | ( char * )data, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 9:ffa64f38ef9c | 252 | debug_msg( "-- Trying -- Negando pedido de invite -- %s ", write_buffer ); |
klauss | 13:ae278302dffe | 253 | set_status( cb->sip->status, sip_idle); |
klauss | 0:4d17cd9c8f9d | 254 | } |
klauss | 0:4d17cd9c8f9d | 255 | } |
klauss | 4:de46f0d9b14d | 256 | }break; |
klauss | 0:4d17cd9c8f9d | 257 | case cb_busy : { |
klauss | 0:4d17cd9c8f9d | 258 | // tratar sip |
klauss | 0:4d17cd9c8f9d | 259 | }break; |
klauss | 0:4d17cd9c8f9d | 260 | } |
klauss | 0:4d17cd9c8f9d | 261 | }break; |
klauss | 4:de46f0d9b14d | 262 | case __REGISTRY__ : { |
klauss | 4:de46f0d9b14d | 263 | Call_Box * cb = NULL; |
klauss | 2:93bec7313ccc | 264 | |
klauss | 4:de46f0d9b14d | 265 | data[ 0 ] |= BIT7 ; |
klauss | 4:de46f0d9b14d | 266 | cb = __find_CB__( v_cb, ext ); |
klauss | 4:de46f0d9b14d | 267 | if( cb != NULL ){ |
klauss | 4:de46f0d9b14d | 268 | cb->reset_elapsed_time(); |
klauss | 4:de46f0d9b14d | 269 | debug_msg(" reset_elapsed_time CBx -- %d", ext ); |
klauss | 0:4d17cd9c8f9d | 270 | }else{ |
klauss | 9:ffa64f38ef9c | 271 | debug_msg("Nao encontrado CBx :: %d -- Type :: %d", ext, type ); |
klauss | 4:de46f0d9b14d | 272 | cb = new Call_Box( ext, port ); |
klauss | 4:de46f0d9b14d | 273 | v_cb->add( cb ); |
klauss | 4:de46f0d9b14d | 274 | debug_msg(" Criado CBx -- %d", ext ); |
klauss | 0:4d17cd9c8f9d | 275 | } |
klauss | 4:de46f0d9b14d | 276 | debug_msg("::Registrado %d - %d::", ext, port ); |
klauss | 4:de46f0d9b14d | 277 | cb->registry(); |
klauss | 4:de46f0d9b14d | 278 | }break; |
klauss | 4:de46f0d9b14d | 279 | case __BOOT__ : { |
klauss | 4:de46f0d9b14d | 280 | __send_to_cb__( __build_cb_package__( ext, port, __REGISTRY__, |
klauss | 4:de46f0d9b14d | 281 | ( char * )data, data[ 0 ], __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 4:de46f0d9b14d | 282 | }break; |
klauss | 4:de46f0d9b14d | 283 | case __TELEMETRY__ : { |
klauss | 13:ae278302dffe | 284 | debug_msg("Leitura da bateria :: ( Id : %x, MSB : %x, LSB : %x )", data[ 0 ], data[ 1 ], data[ 2 ] ); |
klauss | 4:de46f0d9b14d | 285 | }break; |
klauss | 0:4d17cd9c8f9d | 286 | case __AUDIO__ : { |
klauss | 0:4d17cd9c8f9d | 287 | Call_Box * cb; |
klauss | 0:4d17cd9c8f9d | 288 | VZ_call * call = NULL; |
klauss | 0:4d17cd9c8f9d | 289 | cb = NULL; |
klauss | 0:4d17cd9c8f9d | 290 | call = __find_Call__( v_call, ext ); |
klauss | 0:4d17cd9c8f9d | 291 | if( call != NULL ){ |
klauss | 0:4d17cd9c8f9d | 292 | //debug_( 240, data ); |
klauss | 0:4d17cd9c8f9d | 293 | //debug_pkg( 242, data ); |
klauss | 0:4d17cd9c8f9d | 294 | //char * pkg = call->build_eth_package( oitocentos ); |
klauss | 0:4d17cd9c8f9d | 295 | //char * pkg = call->build_eth_package( data ); |
klauss | 9:ffa64f38ef9c | 296 | char * pkg = call->build_eth_package( data + 2 ); |
klauss | 0:4d17cd9c8f9d | 297 | call->send_message( pkg ); |
klauss | 0:4d17cd9c8f9d | 298 | cb = __find_CB__( v_cb, ext ); |
klauss | 0:4d17cd9c8f9d | 299 | if( cb != NULL ) cb->reset_elapsed_time(); |
klauss | 4:de46f0d9b14d | 300 | }else{ |
klauss | 4:de46f0d9b14d | 301 | debug_msg("Nao encontrado CBx :: %d -- Type :: %d", ext, type ); |
klauss | 0:4d17cd9c8f9d | 302 | } |
klauss | 0:4d17cd9c8f9d | 303 | }break; |
klauss | 9:ffa64f38ef9c | 304 | }// fim switch |
klauss | 0:4d17cd9c8f9d | 305 | for( register int i = 0; i < v_call->size(); i++ ){ |
klauss | 0:4d17cd9c8f9d | 306 | VZ_call * call = ( VZ_call * )v_call->get_element( i ); |
klauss | 0:4d17cd9c8f9d | 307 | int length = 0; |
klauss | 0:4d17cd9c8f9d | 308 | char * tmp = call->get_eth_message( &length ); |
klauss | 0:4d17cd9c8f9d | 309 | if( tmp != NULL ){ |
klauss | 0:4d17cd9c8f9d | 310 | Call_Box * cb = NULL; |
klauss | 0:4d17cd9c8f9d | 311 | int cb_port = 0xffff; |
klauss | 0:4d17cd9c8f9d | 312 | cb = __find_CB__( v_cb, call->get_cb_ext() ); |
klauss | 4:de46f0d9b14d | 313 | |
klauss | 4:de46f0d9b14d | 314 | if( cb != NULL ){ |
klauss | 4:de46f0d9b14d | 315 | cb_port = cb->get_port(); |
klauss | 4:de46f0d9b14d | 316 | }else debug_msg("Nao encontrado CBx :: %d -- Type :: %d", ext, type ); |
klauss | 4:de46f0d9b14d | 317 | |
klauss | 0:4d17cd9c8f9d | 318 | uint8_t * pkg2cb = __build_cb_package__( call->get_cb_ext(), cb_port, __AUDIO__, |
klauss | 0:4d17cd9c8f9d | 319 | tmp, __AUDIO__, length, write_buffer ); |
klauss | 4:de46f0d9b14d | 320 | |
klauss | 0:4d17cd9c8f9d | 321 | __send_to_cb__( pkg2cb ); |
klauss | 0:4d17cd9c8f9d | 322 | } |
klauss | 14:22a35f575502 | 323 | } |
klauss | 14:22a35f575502 | 324 | debug_msg(""); |
klauss | 13:ae278302dffe | 325 | registry_aging( v_cb, buffer, write_buffer ); |
klauss | 4:de46f0d9b14d | 326 | |
klauss | 0:4d17cd9c8f9d | 327 | int ret = sip_manager( v_cb, v_call, write_buffer ); |
klauss | 0:4d17cd9c8f9d | 328 | if( ret > 0x00 ){ |
klauss | 0:4d17cd9c8f9d | 329 | Call_Box * cb = __find_CB__( v_cb, ret ); |
klauss | 4:de46f0d9b14d | 330 | if( cb != NULL ){ |
klauss | 4:de46f0d9b14d | 331 | if( cb->status == cb_on_call ){ |
klauss | 4:de46f0d9b14d | 332 | ts->return_timeslice( cb->get_timeslice() ); |
klauss | 4:de46f0d9b14d | 333 | cb->set_timeslice( 0x00 ); |
klauss | 4:de46f0d9b14d | 334 | set_status(cb->status,cb_idle); |
klauss | 4:de46f0d9b14d | 335 | buffer[ __TIMESLICE_PLACE__ ] = 0x00; |
klauss | 4:de46f0d9b14d | 336 | cb->set_msg_id( ( ( cb->get_msg_id() ) + 1 ) & ( BIT7 ^ 0xff ) ); |
klauss | 4:de46f0d9b14d | 337 | for( register uint8_t i = 0; i < v_call->size(); i++ ){ |
klauss | 4:de46f0d9b14d | 338 | VZ_call * call = ( VZ_call * )v_call->get_element( i ); |
klauss | 4:de46f0d9b14d | 339 | if( call->get_cb_ext() == ret ){ |
klauss | 4:de46f0d9b14d | 340 | v_call->remove_element( i ); |
klauss | 4:de46f0d9b14d | 341 | delete( call ); |
klauss | 4:de46f0d9b14d | 342 | } |
klauss | 2:93bec7313ccc | 343 | } |
klauss | 4:de46f0d9b14d | 344 | __send_to_cb__( __build_cb_package__( ext, port, __CB_BYE__, |
klauss | 4:de46f0d9b14d | 345 | ( char * )buffer, cb->get_msg_id(), __CB_BUFFER_SIZE__ - __VZ_HEADER_OFFSET__, write_buffer ) ); |
klauss | 4:de46f0d9b14d | 346 | cb->reset_sip(); |
klauss | 13:ae278302dffe | 347 | set_status( cb->sip->status, sip_idle ); |
klauss | 0:4d17cd9c8f9d | 348 | } |
klauss | 4:de46f0d9b14d | 349 | }else debug_msg("Nao encontrado CBx :: %d -- Type :: %d", ext, type ); |
klauss | 0:4d17cd9c8f9d | 350 | } |
klauss | 13:ae278302dffe | 351 | |
klauss | 10:22da1a0ac1e1 | 352 | call_manager( v_call, v_cb, buffer, write_buffer, ts ); |
klauss | 0:4d17cd9c8f9d | 353 | |
klauss | 0:4d17cd9c8f9d | 354 | static uint8_t flag = 0; |
klauss | 0:4d17cd9c8f9d | 355 | if( v_call->size() == 0 ){ |
klauss | 0:4d17cd9c8f9d | 356 | if (flag == 0) { flag = 1; } |
klauss | 0:4d17cd9c8f9d | 357 | ts->reset(); |
klauss | 0:4d17cd9c8f9d | 358 | }else { |
klauss | 0:4d17cd9c8f9d | 359 | if (flag == 1) { flag = 0; } |
klauss | 0:4d17cd9c8f9d | 360 | } |
klauss | 0:4d17cd9c8f9d | 361 | /* eu deveria tirar ts que nao constam em chamadas aqui */ |
klauss | 13:ae278302dffe | 362 | /* for( register uint8_t i = 0; i < v_cb->size(); i++ ){ |
klauss | 0:4d17cd9c8f9d | 363 | Call_Box * cb = ( Call_Box * )v_cb->get_element( i ); |
klauss | 0:4d17cd9c8f9d | 364 | if( cb->get_timeslice() != 0x00 ){ |
klauss | 0:4d17cd9c8f9d | 365 | VZ_call * call = __find_Call__( v_call, cb->get_ext() ); |
klauss | 0:4d17cd9c8f9d | 366 | if( call == NULL ){ |
klauss | 0:4d17cd9c8f9d | 367 | ts->return_timeslice( cb->get_timeslice() ); |
klauss | 0:4d17cd9c8f9d | 368 | cb->set_timeslice( 0x00 ); |
klauss | 0:4d17cd9c8f9d | 369 | set_status(cb->status,cb_idle); |
klauss | 0:4d17cd9c8f9d | 370 | } |
klauss | 0:4d17cd9c8f9d | 371 | } |
klauss | 0:4d17cd9c8f9d | 372 | } |
klauss | 4:de46f0d9b14d | 373 | */ type = __DO_NOTHING__; |
klauss | 0:4d17cd9c8f9d | 374 | } |
klauss | 0:4d17cd9c8f9d | 375 | } |