Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pour rapport
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Yassine El Anzi
Pour rapport
Commits
9c26ce48
Commit
9c26ce48
authored
1 year ago
by
Yassine El Anzi
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
ff30a5a9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/thread/ThreadClient.java
+53
-0
53 additions, 0 deletions
src/thread/ThreadClient.java
with
53 additions
and
0 deletions
src/thread/ThreadClient.java
0 → 100644
+
53
−
0
View file @
9c26ce48
package
thread
;
import
server.Serveur
;
import
java.io.*
;
import
java.net.*
;
public
class
ThreadClient
extends
Thread
{
private
Socket
socket
;
private
PrintWriter
out
;
public
ThreadClient
(
Socket
socket
)
{
this
.
socket
=
socket
;
}
@Override
public
void
run
()
{
try
{
BufferedReader
entrant
=
new
BufferedReader
(
new
InputStreamReader
(
socket
.
getInputStream
()));
out
=
new
PrintWriter
(
socket
.
getOutputStream
(),
true
);
String
pseudonyme
=
entrant
.
readLine
();
while
(!
Serveur
.
addPseudonym
(
pseudonyme
))
{
out
.
println
(
"Pseudonyme déjà utilisé. Veuillez en choisir un autre."
);
pseudonyme
=
entrant
.
readLine
();
}
out
.
println
(
"Pseudonyme accepté!"
);
String
message
;
while
(
true
)
{
message
=
entrant
.
readLine
();
if
(
message
.
startsWith
(
"exit"
))
{
Serveur
.
diffuserMessage
(
pseudonyme
,
socket
,
true
);
this
.
socket
.
close
();
// Close the socket for this client
break
;
}
Serveur
.
diffuserMessage
(
pseudonyme
+
": "
+
message
,
socket
,
false
);
}
}
catch
(
SocketException
e
)
{
System
.
out
.
println
(
"Un client a perdu la connexion."
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
finally
{
try
{
socket
.
close
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
}
}
}
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