Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MicroCART
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Distributed Autonomous Networked Control Lab
MicroCART
Commits
8cf0d959
Commit
8cf0d959
authored
1 year ago
by
jtkenny
Browse files
Options
Downloads
Patches
Plain Diff
starting writing code for a socket connection
parent
b581f3dc
No related branches found
No related tags found
6 merge requests
!106
Adding Pycrocart 2.1
,
!104
adding cflib to this branch
,
!103
Updating develop to current state of master branch
,
!98
Pycrocart 2.1 will
,
!94
Merge cflib adapter into main
,
!93
Groundstation tcp
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cflib_groundstation/groundstation_socket.py
+55
-0
55 additions, 0 deletions
cflib_groundstation/groundstation_socket.py
with
55 additions
and
0 deletions
cflib_groundstation/groundstation_socket.py
0 → 100644
+
55
−
0
View file @
8cf0d959
import
socket
import
os
import
collections
# Set the path for the Unix socket
socket_path
=
'
./cflib_groundstation.socket
'
class
GroundstationSocket
():
metadata
=
collections
.
namedtuple
(
"
metadata
"
,
[
"
msg_type
"
,
"
msg_id
"
,
"
data_len
"
])
def
groundstation_connect
(
self
):
# remove the socket file if it already exists
try
:
os
.
unlink
(
socket_path
)
except
OSError
:
if
os
.
path
.
exists
(
socket_path
):
raise
# Create the Unix socket server
server
=
socket
.
socket
(
socket
.
AF_UNIX
,
socket
.
SOCK_STREAM
)
print
(
"
Opened groundstation socket.
"
)
# Bind the socket to the path
server
.
bind
(
socket_path
)
# Listen for incoming connections
server
.
listen
(
1
)
# accept connections
print
(
'
Server is listening for incoming connections...
'
)
connection
,
client_address
=
server
.
accept
()
try
:
print
(
'
Connection from
'
,
str
(
connection
).
split
(
"
,
"
)[
0
][
-
4
:])
# receive data from the client
while
True
:
data
=
connection
.
recv
(
1000
)
if
not
data
:
break
print
(
'
Received data:
'
+
data
.
decode
())
dataarray
=
bytearray
(
data
)
# Send a response back to the client
response
=
'
Hello from the server!
'
connection
.
sendall
(
response
.
encode
())
finally
:
# close the connection
connection
.
close
()
# remove the socket file
os
.
unlink
(
socket_path
)
def
decodePacket
(
data
):
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment