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

Update Server.java #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/main/java/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@
* @author ismet abacı
*/
public class Server {
// GG:
// Neden private değil ?
final static Logger logger = Logger.getLogger(String.valueOf(Server.class));

/**
* this method listens for a message on a port and process received messages
*/
public static void main(String[] args) {
// GG:
// Port vs gibi bilgiler ayarlanabilir olmalıdır. Hardcoded olarak kullanılmamalıdır.
int port = 49999;
try {
logger.info("Server started listening (port:" + port + ")...");
Expand All @@ -29,11 +33,17 @@ public static void main(String[] args) {
*/
private static void runServer(int portNumber) throws IOException, InterruptedException {
ServerSocket ss = new ServerSocket(portNumber);
// GG:
// Değişkenler neden kullanılacakları yerden uzakta tanımlanıyor ? Değişkenler
// mümkün mertebe kullanılacakları yere yakın tanımlanmalıdır.
Socket s;
BufferedReader in;
JSONObject msg;
String input;
int numberOfThreads = 3,threadIndex;
// GG:
// Thread oluşturmak masraflı bir işlemdir ve oluşturulan treadlerin yönetilmesi karmaşıktır
// Threadleri kendimiz yaratmak dışında kullanabileceğiniz yöntem nedir ?
MyThread [] myThreads = new MyThread[numberOfThreads];

for (int i=0;i<numberOfThreads;i++){
Expand All @@ -44,8 +54,13 @@ private static void runServer(int portNumber) throws IOException, InterruptedExc
myThreads[1].setPriority(Thread.NORM_PRIORITY);
myThreads[2].setPriority(Thread.MIN_PRIORITY);

// GG:
// Neden sonsuz döngü ? Bu sunucu durduralamayacak mı ?
while (true) {
s = ss.accept();
// GG:
// Socket bağlantısı kabul edildikten sonra gelen mesajı okumak ve önceliğine
// göre threadlere atamak bu sınıfın görevi mi ?
in = new BufferedReader(new InputStreamReader(s.getInputStream()));
if ((input = in.readLine()) != null) {
msg = new JSONObject(input);
Expand Down