Source Code Cross Referenced for ChatCommandHandler.java in  » Net » QuickServer » chatserver » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » QuickServer » chatserver 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * This file is part of the QuickServer library 
003:         * Copyright (C) 2003-2005 QuickServer.org
004:         *
005:         * Use, modification, copying and distribution of this software is subject to
006:         * the terms and conditions of the GNU Lesser General Public License. 
007:         * You should have received a copy of the GNU LGP License along with this 
008:         * library; if not, you can download a copy from <http://www.quickserver.org/>.
009:         *
010:         * For questions, suggestions, bug-reports, enhancement-requests etc.
011:         * visit http://www.quickserver.org
012:         *
013:         */
014:
015:        package chatserver;
016:
017:        import java.net.*;
018:        import java.io.*;
019:        import java.util.*;
020:        import org.quickserver.net.server.ClientCommandHandler;
021:        import org.quickserver.net.server.ClientEventHandler;
022:        import org.quickserver.net.server.ClientHandler;
023:        import java.util.logging.*;
024:
025:        /**
026:         * IMPORTANT NOTE: This example just demonstrates how to use some 
027:         * of the ClientIdentifiable features. This is not the good
028:         * way to write a chat application. It will be overkill on the server to
029:         * ask it to find a client from over 1000 clients every time you need
030:         * to send a message. 
031:         *
032:         * @author  Akshathkumar Shetty
033:         */
034:        public class ChatCommandHandler implements  ClientEventHandler,
035:                ClientCommandHandler {
036:            private static final Logger logger = Logger
037:                    .getLogger(ChatCommandHandler.class.getName());
038:
039:            //--ClientEventHandler
040:            public void gotConnected(ClientHandler handler)
041:                    throws SocketTimeoutException, IOException {
042:                handler.sendSystemMsg("Connection opened : "
043:                        + handler.getHostAddress());
044:
045:                ChatData cd = (ChatData) handler.getClientData();
046:                cd.setClientInfo("IP: " + handler.getHostAddress());
047:
048:                handler.sendClientMsg("{system.msg} Welcome to ChatServer v "
049:                        + ChatServer.VER);
050:                handler.sendClientMsg("{system.help} Send username=password ");
051:                handler.sendClientMsg("{system.help} Send 'quit' to exit ");
052:            }
053:
054:            public void lostConnection(ClientHandler handler)
055:                    throws IOException {
056:                handler.sendSystemMsg("Connection lost : "
057:                        + handler.getHostAddress());
058:                tellOthersInRoom(handler);
059:            }
060:
061:            public void closingConnection(ClientHandler handler)
062:                    throws IOException {
063:                handler.sendSystemMsg("Connection closed: "
064:                        + handler.getHostAddress());
065:                tellOthersInRoom(handler);
066:            }
067:
068:            //--ClientEventHandler
069:
070:            private void tellOthersInRoom(ClientHandler handler) {
071:                try {
072:                    ChatData cd = (ChatData) handler.getClientData();
073:                    ChatMessaging.sendInfoMessage2Room(handler, cd.getRoom(),
074:                            "LoggedOut");
075:                } catch (Exception e) {
076:                    logger.fine("IGNORE Error: " + e);
077:                    e.printStackTrace();
078:                }
079:            }
080:
081:            public void handleCommand(ClientHandler handler, String command)
082:                    throws SocketTimeoutException, IOException {
083:                if (command.toLowerCase().equals("quit")) {
084:                    handler.sendClientMsg("{system.msg} Bye");
085:                    handler.closeConnection();
086:                    return;
087:                }
088:
089:                if (command.startsWith("changeRoom")) {
090:                    changeRoom(handler, command);
091:                    return;
092:                }
093:
094:                if (command.startsWith("sendMsgToRoom")) {
095:                    ChatMessaging.sendMsgToRoom(handler, command);
096:                    return;
097:                }
098:
099:                if (command.startsWith("sendMsg")) {
100:                    ChatMessaging.sendMsg(handler, command);
101:                    return;
102:                }
103:
104:                if (command.startsWith("userList")) {
105:                    ChatMessaging.sendRoomList(handler);
106:                    return;
107:                }
108:
109:                ChatMessaging.printHelp(handler, command);
110:            }
111:
112:            public static void changeRoom(ClientHandler handler, String command)
113:                    throws SocketTimeoutException, IOException {
114:                String room = null;
115:                int i = command.indexOf(" ");
116:                if (i == -1) {
117:                    handler
118:                            .sendClientMsg("{system.error} BadParam no room name sent");
119:                    return;
120:                }
121:                room = command.substring(i + 1);
122:                ChatData cd = (ChatData) handler.getClientData();
123:                String oldRoom = cd.getRoom();
124:                ChatMessaging.sendInfoMessage2Room(handler, oldRoom,
125:                        "LoggedOut");
126:                cd.setRoom(room);
127:                ChatMessaging.sendInfoMessage2Room(handler, room, "LoggedIn");
128:                handler.sendClientMsg("{system.msg} Chat Room changed to: "
129:                        + room);
130:            }
131:
132:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.