|
|
@@ -13,7 +13,6 @@ import java.io.OutputStream; |
|
|
|
import java.io.OutputStreamWriter; |
|
|
|
import java.io.PrintWriter; |
|
|
|
import java.io.UnsupportedEncodingException; |
|
|
|
import java.net.ServerSocket; |
|
|
|
import java.net.Socket; |
|
|
|
import java.util.concurrent.ExecutorService; |
|
|
|
import java.util.concurrent.Executors; |
|
|
@@ -64,25 +63,25 @@ public abstract class Transmitter implements Runnable, Subscriber<String>, Trans |
|
|
|
public abstract void connect() throws IOException; |
|
|
|
|
|
|
|
public void initIO() { |
|
|
|
try { |
|
|
|
lg.info("Initialisiere reader und writer"); |
|
|
|
InputStream is = socket.getInputStream(); |
|
|
|
OutputStream os = socket.getOutputStream(); |
|
|
|
|
|
|
|
InputStreamReader isr = new InputStreamReader(is, "UTF-8"); |
|
|
|
OutputStreamWriter osr = new OutputStreamWriter(os, "UTF-8"); |
|
|
|
|
|
|
|
reader = new BufferedReader(isr); |
|
|
|
writer = new PrintWriter(osr); |
|
|
|
lg.info("Reader / Writer Initialisierung abgeschlossen"); |
|
|
|
startempfangen(); |
|
|
|
lg.info("Warte auf Nachricht"); |
|
|
|
|
|
|
|
} catch (UnsupportedEncodingException ex) { |
|
|
|
Logger.getLogger(Transmitter.class.getName()).log(Level.SEVERE, null, ex); |
|
|
|
} catch (IOException ex) { |
|
|
|
Logger.getLogger(Transmitter.class.getName()).log(Level.SEVERE, null, ex); |
|
|
|
} |
|
|
|
try { |
|
|
|
lg.info("Initialisiere reader und writer"); |
|
|
|
InputStream is = socket.getInputStream(); |
|
|
|
OutputStream os = socket.getOutputStream(); |
|
|
|
|
|
|
|
InputStreamReader isr = new InputStreamReader(is, "UTF-8"); |
|
|
|
OutputStreamWriter osr = new OutputStreamWriter(os, "UTF-8"); |
|
|
|
|
|
|
|
reader = new BufferedReader(isr); |
|
|
|
writer = new PrintWriter(osr); |
|
|
|
lg.info("Reader / Writer Initialisierung abgeschlossen"); |
|
|
|
startempfangen(); |
|
|
|
lg.info("Warte auf Nachricht"); |
|
|
|
|
|
|
|
} catch (UnsupportedEncodingException ex) { |
|
|
|
Logger.getLogger(Transmitter.class.getName()).log(Level.SEVERE, null, ex); |
|
|
|
} catch (IOException ex) { |
|
|
|
Logger.getLogger(Transmitter.class.getName()).log(Level.SEVERE, null, ex); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void send(Nachricht nachricht){ |
|
|
@@ -91,54 +90,43 @@ public abstract class Transmitter implements Runnable, Subscriber<String>, Trans |
|
|
|
writer.flush(); |
|
|
|
lg.info("Nachricht gesendet"); |
|
|
|
textPublisher.submit(nachricht); |
|
|
|
// |
|
|
|
// String nachricht = in.readLine(); // ACHTUNG blockiert |
|
|
|
// lg.info("Client: Serverbestätigung erhalten"); |
|
|
|
// |
|
|
|
// lg.info("Client: fertig"); |
|
|
|
// in.close(); |
|
|
|
// out.close(); |
|
|
|
// s.close(); |
|
|
|
|
|
|
|
|
|
|
|
// in.close(); |
|
|
|
// out.close(); |
|
|
|
// s.close(); |
|
|
|
} |
|
|
|
public Nachricht receive(){ |
|
|
|
Nachricht nachricht = new Nachricht(""); |
|
|
|
try { |
|
|
|
String txtNachricht = reader.readLine(); |
|
|
|
if(!txtNachricht.isEmpty()){ |
|
|
|
lg.info("Nachricht erhalten"); |
|
|
|
nachricht.setNachricht("Er / Sie: " + txtNachricht); |
|
|
|
return nachricht; |
|
|
|
} |
|
|
|
|
|
|
|
} catch (IOException e) { |
|
|
|
throw new RuntimeException(e); |
|
|
|
Nachricht nachricht = new Nachricht(""); |
|
|
|
try { |
|
|
|
String txtNachricht = reader.readLine(); |
|
|
|
if(!txtNachricht.isEmpty()){ |
|
|
|
lg.info("Nachricht erhalten"); |
|
|
|
nachricht.setNachricht("Er / Sie: " + txtNachricht); |
|
|
|
return nachricht; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return nachricht; |
|
|
|
} catch (IOException e) { |
|
|
|
throw new RuntimeException(e); |
|
|
|
} |
|
|
|
return nachricht; |
|
|
|
} |
|
|
|
|
|
|
|
// public void disconnect (){ |
|
|
|
// in.close(); |
|
|
|
// out.close(); |
|
|
|
// s.close(); |
|
|
|
// } |
|
|
|
|
|
|
|
@Override |
|
|
|
public void run() { |
|
|
|
while (true) { |
|
|
|
lg.info("Warte auf Nachricht"); |
|
|
|
if(laufend) { |
|
|
|
Nachricht eingehendeNachricht = receive(); |
|
|
|
|
|
|
|
if(!eingehendeNachricht.getNachricht().isEmpty()){ |
|
|
|
textPublisher.submit(eingehendeNachricht); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
else{ |
|
|
|
break; |
|
|
|
} |
|
|
|
while (true) { |
|
|
|
lg.info("Warte auf Nachricht"); |
|
|
|
if(laufend) { |
|
|
|
Nachricht eingehendeNachricht = receive(); |
|
|
|
if(!eingehendeNachricht.getNachricht().isEmpty()){ |
|
|
|
textPublisher.submit(eingehendeNachricht); |
|
|
|
} |
|
|
|
} |
|
|
|
else{ |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@@ -164,18 +152,13 @@ public abstract class Transmitter implements Runnable, Subscriber<String>, Trans |
|
|
|
|
|
|
|
private void startempfangen() |
|
|
|
{ |
|
|
|
synchronized (this){ |
|
|
|
laufend = true; |
|
|
|
} |
|
|
|
|
|
|
|
if (eService == null){ |
|
|
|
eService = Executors.newSingleThreadExecutor(); |
|
|
|
eService.execute(this); |
|
|
|
} |
|
|
|
|
|
|
|
lg.info("Starte Chat"); |
|
|
|
|
|
|
|
|
|
|
|
synchronized (this){ |
|
|
|
laufend = true; |
|
|
|
} |
|
|
|
if (eService == null){ |
|
|
|
eService = Executors.newSingleThreadExecutor(); |
|
|
|
eService.execute(this); |
|
|
|
} |
|
|
|
lg.info("Starte Chat"); |
|
|
|
} |
|
|
|
|
|
|
|
} |