CORDET Framework - C2 Implementation
|
Implementation of interface to control the client socket. More...
Go to the source code of this file.
Functions | |
void | CrDaClientSocketInitAction (FwPrDesc_t prDesc) |
Initialization action for the client socket. More... | |
void | CrDaClientSocketShutdownAction (FwSmDesc_t smDesc) |
Shutdown action for the client socket. More... | |
void | CrDaClientSocketInitCheck (FwPrDesc_t prDesc) |
Initialization check for the client socket. More... | |
void | CrDaClientSocketConfigAction (FwPrDesc_t prDesc) |
Configuration action for the client socket. More... | |
void | CrDaClientSocketPoll () |
Poll the client socket to check whether a new packet has arrived. More... | |
CrFwPckt_t | CrDaClientSocketPcktCollect (CrFwDestSrc_t src) |
Function implementing the Packet Collect Operation for the client socket. More... | |
CrFwBool_t | CrDaClientSocketIsPcktAvail (CrFwDestSrc_t src) |
Function implementing the Packet Available Check Operation for the client socket. More... | |
CrFwBool_t | CrDaClientSocketPcktHandover (CrFwPckt_t pckt) |
Function implementing the hand-over operation for the client socket. More... | |
void | CrDaClientSocketSetPort (int n) |
Set the port number for the socket. More... | |
void | CrDaClientSocketSetHost (char *name) |
Set the host name of the server. More... | |
Variables | |
static int | portno = 0 |
The port number. | |
static char * | hostName = NULL |
The host name. | |
static int | sockfd = 0 |
The file descriptor for the socket. | |
static int | pcktMaxLength |
The maximum size of an incoming packet. | |
static unsigned char * | readBuffer |
The Read Buffer. | |
Implementation of interface to control the client socket.
This file is part of the CORDET Framework.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
For information on alternative licensing, please contact P&P Software GmbH.
Definition in file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketConfigAction | ( | FwPrDesc_t | prDesc | ) |
Configuration action for the client socket.
This action clears the Read Buffer and executes the Configuration Action of the base InStream (function CrFwInStreamDefConfigAction
)
prDesc | the configuration procedure descriptor. |
Definition at line 173 of file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketInitAction | ( | FwPrDesc_t | prDesc | ) |
Initialization action for the client socket.
If the client socket has already been initialized, this function calls the Initialization Action of the base InStream/OutStream and then returns. If the client socket has not yet been initialized, this action:
prDesc | the initialization procedure descriptor. |
Definition at line 67 of file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketInitCheck | ( | FwPrDesc_t | prDesc | ) |
Initialization check for the client socket.
The check is successful if: the maximum length of a packet (as retrieved from CrFwPcktGetMaxLength
) is smaller than 256; and the port number and server host name have been set.
prDesc | the initialization procedure descriptor. |
Definition at line 150 of file CrDemoSlave2/CrDaClientSocket.c.
CrFwBool_t CrDaClientSocketIsPcktAvail | ( | CrFwDestSrc_t | pcktSrc | ) |
Function implementing the Packet Available Check Operation for the client socket.
This function implements the following logic:
packetSource
, the function returns 1.packetSource
, the function performs a non-blocking read on the socket.packetSource
, the function returns 0.packetSource
, the function stores it in the Read Buffer and then returns 1.pcktSrc | the source associated to the InStream |
Definition at line 241 of file CrDemoSlave2/CrDaClientSocket.c.
CrFwPckt_t CrDaClientSocketPcktCollect | ( | CrFwDestSrc_t | pcktSrc | ) |
Function implementing the Packet Collect Operation for the client socket.
If the packet in the Read Buffer has a source attribute equal to packetSource
, this function:
CrFwPcktMake
If the Read Buffer holds a packet from a source other then packetSource
, this function returns NULL. Note that the logic of the client socket module guarantees that the Read Buffer will always be full when this function is called.
pcktSrc | the source associated to the InStream |
Definition at line 223 of file CrDemoSlave2/CrDaClientSocket.c.
CrFwBool_t CrDaClientSocketPcktHandover | ( | CrFwPckt_t | pckt | ) |
Function implementing the hand-over operation for the client socket.
This function performs a non-blocking write on the socket and, if it succeeds, it returns 1; otherwise, it returns 0.
pckt | the packet to be written to the socket |
Definition at line 275 of file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketPoll | ( | ) |
Poll the client socket to check whether a new packet has arrived.
This function should be called periodically by an external scheduler. It performs a non-blocking read on the socket to check whether a packet is available at the socket. If a packet is available, it is placed into the Read Buffer, its source is determined, and then function CrFwInStreamPcktAvail
is called on the InStream associated to that packet source.
Definition at line 190 of file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketSetHost | ( | char * | name | ) |
Set the host name of the server.
If a local socket is being created, the host name should be set to "localhost".
name | the host number. |
Definition at line 298 of file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketSetPort | ( | int | n | ) |
Set the port number for the socket.
The port number must be an integer greater than 2000.
n | the port number. |
Definition at line 293 of file CrDemoSlave2/CrDaClientSocket.c.
void CrDaClientSocketShutdownAction | ( | FwSmDesc_t | smDesc | ) |
Shutdown action for the client socket.
If the client socket has already been shut down, this function calls the Shutdown Action of the base InStream/OutStream and then returns. If the client socket has not yet been shut down, this action executes the Shutdown Action of the base InStream/OutStream, releases the Read Buffer, and closes the socket.
smDesc | the InStream or OutStream State Machine descriptor. |
Definition at line 134 of file CrDemoSlave2/CrDaClientSocket.c.