import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;import java.io.*;
import java.net.Socket;
@Slf4j
@Service
public class TcpClientService {private Socket socket;private PrintWriter out;private BufferedReader in;public synchronized void startConnection(String ip, int port) {if (socket == null || socket.isClosed()) {try {socket = new Socket(ip, port);out = new PrintWriter(new OutputStreamWriter(socket.getOutputStream()), true);in = new BufferedReader(new InputStreamReader(socket.getInputStream()));} catch (IOException e) {throw new RuntimeException(e);}}}public synchronized String sendMessage(String message) {String response = null;try {if (socket == null || socket.isClosed()) {throw new IllegalStateException("Connection is closed. Please start the connection first.");}out.println(message);response = in.readLine();} catch (IOException e) {throw new RuntimeException(e);}return response;}public synchronized void stopConnection() throws Exception {if (socket != null && !socket.isClosed()) {in.close();out.close();socket.close();}}public boolean isConnectionActive() {return socket != null && !socket.isClosed();}
}