15 changed files with 438 additions and 88 deletions
-
6include/tr/comm_end_point.h
-
49include/tr/connect_entry_point.h
-
42include/tr/connector.h
-
12include/tr/interface/comm_end_point.h
-
12src/Makefile.am
-
34src/cep_append_read_data.c
-
34src/cep_append_write_data.c
-
34src/cet_accept.c
-
37src/comm_end_point.c
-
24src/con_compose.c
-
24src/con_next_message.c
-
72src/conn_entry_point.c
-
8src/connection.c
-
102src/connector.c
-
36src/i_comm_end_point.c
@ -0,0 +1,49 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#ifndef __TR_CONNECT_ENTRY_POINT_H__ |
||||
|
#define __TR_CONNECT_ENTRY_POINT_H__ |
||||
|
|
||||
|
#include <sys/types.h> |
||||
|
|
||||
|
#include "trbase.h" |
||||
|
#include "trio.h" |
||||
|
|
||||
|
#include "tr/comm_end_point.h" |
||||
|
|
||||
|
TR_CLASS(TR_ConnEntryPoint) { |
||||
|
TR_EXTENDS(TR_CommEndPoint); |
||||
|
}; |
||||
|
TR_INSTANCE_INIT(TR_ConnEntryPoint); |
||||
|
TR_CLASSVARS_DECL(TR_ConnEntryPoint) { |
||||
|
TR_CV_EXTENDS(TR_CommEndPoint); |
||||
|
}; |
||||
|
|
||||
|
#define TR_CET_EVENT_ACC_READY (TR_CEP_EVENT_MAX + 1) |
||||
|
#define TR_CET_EVENT_MAX ((size_t)TR_CET_EVENT_ACC_READY) |
||||
|
|
||||
|
TR_TcpSocket TR_cetAccept(TR_ConnEntryPoint); |
||||
|
|
||||
|
#endif // __TR_CONNECT_ENTRY_POINT_H__ |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
|
|
||||
@ -0,0 +1,42 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#ifndef __TR_CONNECTOR_H__ |
||||
|
#define __TR_CONNECTOR_H__ |
||||
|
|
||||
|
#include <sys/types.h> |
||||
|
|
||||
|
#include "trbase.h" |
||||
|
#include "trevent.h" |
||||
|
|
||||
|
TR_CLASS(TR_Connector) { |
||||
|
TR_EXTENDS(TR_EventHandler); |
||||
|
}; |
||||
|
TR_INSTANCE_INIT(TR_Connector); |
||||
|
TR_CLASSVARS_DECL(TR_Connector) { |
||||
|
TR_CV_EXTENDS(TR_EventHandler); |
||||
|
}; |
||||
|
|
||||
|
#endif // __TR_CONNECTOR_H__ |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
|
|
||||
@ -0,0 +1,34 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#include "trbase.h" |
||||
|
#include "trio.h" |
||||
|
|
||||
|
#include "tr/comm_end_point.h" |
||||
|
|
||||
|
void |
||||
|
cepAppendReadData(TR_CommEndPoint this, TR_RemoteData data) |
||||
|
{ |
||||
|
TR_queuePut(this->read_buffer, data); |
||||
|
} |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
@ -0,0 +1,34 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#include "trbase.h" |
||||
|
#include "trio.h" |
||||
|
|
||||
|
#include "tr/comm_end_point.h" |
||||
|
|
||||
|
void |
||||
|
cepAppendWriteData(TR_CommEndPoint this, TR_RemoteData data) |
||||
|
{ |
||||
|
TR_queuePut(this->write_buffer, data); |
||||
|
} |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
@ -0,0 +1,34 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#include "trio.h" |
||||
|
|
||||
|
#include "tr/comm_end_point.h" |
||||
|
#include "tr/connect_entry_point.h" |
||||
|
|
||||
|
TR_TcpSocket |
||||
|
TR_cetAccept(TR_ConnEntryPoint cet) |
||||
|
{ |
||||
|
return TR_socketAccept((TR_TcpSocket)((TR_CommEndPoint)cet)->transport); |
||||
|
} |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
@ -0,0 +1,24 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
@ -0,0 +1,24 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
@ -0,0 +1,72 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#include <stdarg.h> |
||||
|
#include <stdint.h> |
||||
|
|
||||
|
#include <sys/types.h> |
||||
|
|
||||
|
#include "trbase.h" |
||||
|
#include "trio.h" |
||||
|
#include "trevent.h" |
||||
|
|
||||
|
#include "tr/connect_entry_point.h" |
||||
|
#include "tr/interface/comm_end_point.h" |
||||
|
|
||||
|
static |
||||
|
int |
||||
|
connEntryPointCtor(void * _this, va_list * params) |
||||
|
{ |
||||
|
TR_PARENTCALL(_this, TR_Class, ctor, params); |
||||
|
return 0; |
||||
|
} |
||||
|
|
||||
|
static |
||||
|
void |
||||
|
connEntryPointDtor(void * _this) |
||||
|
{ |
||||
|
TR_PARENTCALL(_this, TR_Class, dtor); |
||||
|
} |
||||
|
|
||||
|
static |
||||
|
void |
||||
|
connEntryPointCvInit(TR_class_ptr cls) |
||||
|
{ |
||||
|
TR_EVENT_CREATE(cls, TR_CET_EVENT_ACC_READY); |
||||
|
} |
||||
|
|
||||
|
intptr_t connEntryPoint_events[TR_CET_EVENT_MAX + 1]; |
||||
|
TR_INIT_IFACE(TR_Class, connEntryPointCtor, connEntryPointDtor, NULL); |
||||
|
TR_INIT_IFACE(TR_CommEndPoint, NULL, NULL); |
||||
|
TR_CREATE_CLASS( |
||||
|
TR_ConnEntryPoint, |
||||
|
TR_CommEndPoint, |
||||
|
connEntryPointCvInit, |
||||
|
TR_IF(TR_Class), |
||||
|
TR_IF(TR_CommEndPoint)) = { |
||||
|
{{ |
||||
|
TR_CET_EVENT_MAX + 1, |
||||
|
connEntryPoint_events |
||||
|
}} |
||||
|
}; |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
@ -0,0 +1,102 @@ |
|||||
|
/** |
||||
|
* \file |
||||
|
* |
||||
|
* \author Georg Hopp |
||||
|
* |
||||
|
* \copyright |
||||
|
* Copyright © 2014 Georg Hopp |
||||
|
* |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
*/ |
||||
|
|
||||
|
#include <stdarg.h> |
||||
|
#include <stdint.h> |
||||
|
|
||||
|
#include <sys/types.h> |
||||
|
|
||||
|
#include "trbase.h" |
||||
|
#include "trio.h" |
||||
|
#include "trevent.h" |
||||
|
|
||||
|
#include "tr/connector.h" |
||||
|
#include "tr/connection.h" |
||||
|
#include "tr/protocol.h" |
||||
|
|
||||
|
static |
||||
|
int |
||||
|
connectorCtor(void * _this, va_list * params) |
||||
|
{ |
||||
|
TR_PARENTCALL(_this, TR_Class, ctor, params); |
||||
|
return 0; |
||||
|
} |
||||
|
|
||||
|
static |
||||
|
void |
||||
|
connectorDtor(void * _this) |
||||
|
{ |
||||
|
TR_PARENTCALL(_this, TR_Class, dtor); |
||||
|
} |
||||
|
|
||||
|
static |
||||
|
int |
||||
|
connectorAccept(void * _this, TR_Event event) |
||||
|
{ |
||||
|
TR_Connector this = _this; |
||||
|
TR_CommEndPoint connection = (TR_CommEndPoint)event->subject; |
||||
|
TR_TcpSocket socket = TR_socketAccept( |
||||
|
(TR_TcpSocket)connection->transport); |
||||
|
|
||||
|
while (socket) { |
||||
|
TR_Connection new_con = TR_new( |
||||
|
TR_Connection, |
||||
|
socket, |
||||
|
connection->protocol, |
||||
|
8192); |
||||
|
TR_eventHandlerIssueEvent( |
||||
|
(TR_EventHandler)this, |
||||
|
(TR_EventSubject)new_con, |
||||
|
TR_CON_EVENT_NEW_CON, |
||||
|
NULL); |
||||
|
socket = TR_socketAccept((TR_TcpSocket)connection->transport); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* TODO we need to identify socket failures and close socket then. |
||||
|
*/ |
||||
|
|
||||
|
return 1; |
||||
|
} |
||||
|
|
||||
|
static |
||||
|
void |
||||
|
connectorCvInit(TR_class_ptr cls) |
||||
|
{ |
||||
|
TR_EVENT_HANDLER_SET_METHOD( |
||||
|
cls, |
||||
|
TR_CommEndPoint, |
||||
|
TR_CEP_EVENT_READ_READY, |
||||
|
connectorAccept); |
||||
|
} |
||||
|
|
||||
|
TR_INSTANCE(TR_Hash, _event_methods); |
||||
|
TR_INIT_IFACE(TR_Class, connectorCtor, connectorDtor, NULL); |
||||
|
TR_CREATE_CLASS( |
||||
|
TR_Connector, |
||||
|
TR_EventHandler, |
||||
|
connectorCvInit, |
||||
|
TR_IF(TR_Class)) = { |
||||
|
{ &(__event_methods.data) } |
||||
|
}; |
||||
|
|
||||
|
// vim: set ts=4 sw=4: |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue