Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1st iteration fixes #3

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open

1st iteration fixes #3

wants to merge 3 commits into from

Conversation

PavelLinearB
Copy link
Member

@PavelLinearB PavelLinearB commented Feb 19, 2025

workerB

✨ PR Description

Purpose: Implements a basic client-server chat application using socket programming and threading in Python.

Main changes:

  • Created server.py with Client class handling multiple client connections and message broadcasting
  • Added client.py with socket connection and separate threads for sending/receiving messages
  • Implemented basic message relay system with UTF-8 encoding/decoding between connected clients

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We’d love your feedback! 🚀

@PavelLinearB PavelLinearB changed the title strings 1st iteration fixes Feb 19, 2025
Copy link

gitstream-cm bot commented Feb 20, 2025

✨ PR Review

Maintainability - src/server/server.py (Line 34-40)

Details:

Problem: Global connections list is modified without thread safety
Fix: Add mutex lock for connections list access
Why: Prevents race conditions when multiple threads modify the list

+ connection_lock = threading.Lock()

                print("Client " + str(self.address) + " has disconnected")
                self.signal = False
+               with connection_lock:
                    connections.remove(self)
                break

Performance - src/client/client.py & src/server/server.py (Line 10 & 33)

Details:

Problem: Fixed 32-byte buffer size limits message length and wastes bandwidth
Fix: Implement proper message framing with length prefix
Why: Allows variable length messages while maintaining efficiency

- data = socket.recv(32)
+ msg_size = int.from_bytes(socket.recv(4), 'big')
+ data = socket.recv(msg_size)

Potential Bug - src/client/client.py & src/server/server.py (Lines 9-14 & 32-37)

Details:

Problem: Bare except clauses mask important errors
Fix: Catch specific exceptions
Why: Allows proper handling of different error conditions

        try:
            data = socket.recv(32)
            print(str(data.decode('utf-8')))
-       except:
+       except (socket.error, ConnectionResetError) as e:
            print("You have been disconnected from the server")
            signal = False
            break

Generated by LinearB AI and added by gitStream

@linear-b linear-b deleted a comment from gitstream-cm bot Feb 20, 2025
Copy link

gitstream-cm bot commented Mar 17, 2025

✨ PR Review

Performance - src/client/client.py

Details:

Problem: Fixed small buffer size (32 bytes) can cause message truncation
Fix: Increase buffer size and handle larger messages properly
Why: Ensures complete message transmission and prevents data loss

    while signal:
        try:
-            data = socket.recv(32)
+            data = socket.recv(4096)
            print(str(data.decode('utf-8')))

Security - src/client/client.py

Details:

Problem: No cleanup of socket resources on program exit
Fix: Add proper socket closure in finally block
Why: Prevents resource leaks and ensures proper cleanup

try:
    while True:
        message = input()
        sock.sendall(str.encode(message))
+except KeyboardInterrupt:
+    print("\nDisconnecting from server...")
+finally:
+    sock.close()

Performance - src/server/server.py

Details:

Problem: Fixed small buffer size (32 bytes) can cause message truncation
Fix: Increase buffer size to handle larger messages
Why: Prevents message truncation and data loss

    def run(self):
        while self.signal:
            try:
-                data = self.socket.recv(32)
+                data = self.socket.recv(4096)
            except:
                print("Client " + str(self.address) + " has disconnected")

Maintainability - src/server/server.py

Details:

Problem: Global variables for connection management are unsafe in threaded environment
Fix: Encapsulate connection management in a class
Why: Improves thread safety and maintainability

-connections = []
-total_connections = 0
+class ConnectionManager:
+    def __init__(self):
+        self.connections = []
+        self.total_connections = 0
+        self._lock = threading.Lock()
+    
+    def add_connection(self, client):
+        with self._lock:
+            self.connections.append(client)
+            self.total_connections += 1
+
+    def remove_connection(self, client):
+        with self._lock:
+            self.connections.remove(client)

Generated by LinearB AI and added by gitStream.
AI-generated content may contain inaccuracies. Please verify before using. We’d love your feedback! 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants