Source Code Cross Referenced for GroovySocketServer.java in  » Scripting » groovy-1.0 » groovy » ui » 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 » Scripting » groovy 1.0 » groovy.ui 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         $Id: GroovySocketServer.java 2273 2005-06-10 14:05:02Z cstein $
003:
004:         Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved.
005:
006:         Redistribution and use of this software and associated documentation
007:         ("Software"), with or without modification, are permitted provided
008:         that the following conditions are met:
009:
010:         1. Redistributions of source code must retain copyright
011:            statements and notices.  Redistributions must also contain a
012:            copy of this document.
013:
014:         2. Redistributions in binary form must reproduce the
015:            above copyright notice, this list of conditions and the
016:            following disclaimer in the documentation and/or other
017:            materials provided with the distribution.
018:
019:         3. The name "groovy" must not be used to endorse or promote
020:            products derived from this Software without prior written
021:            permission of The Codehaus.  For written permission,
022:            please contact info@codehaus.org.
023:
024:         4. Products derived from this Software may not be called "groovy"
025:            nor may "groovy" appear in their names without prior written
026:            permission of The Codehaus. "groovy" is a registered
027:            trademark of The Codehaus.
028:
029:         5. Due credit should be given to The Codehaus -
030:            http://groovy.codehaus.org/
031:
032:         THIS SOFTWARE IS PROVIDED BY THE CODEHAUS AND CONTRIBUTORS
033:         ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
034:         NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
035:         FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
036:         THE CODEHAUS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
037:         INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
038:         (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
039:         SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
040:         HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
041:         STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
042:         ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
043:         OF THE POSSIBILITY OF SUCH DAMAGE.
044:
045:         */
046:        package groovy.ui;
047:
048:        import groovy.lang.GroovyShell;
049:        import groovy.lang.Script;
050:
051:        import java.io.BufferedReader;
052:        import java.io.FileInputStream;
053:        import java.io.IOException;
054:        import java.io.InputStreamReader;
055:        import java.io.PrintWriter;
056:        import java.net.InetAddress;
057:        import java.net.ServerSocket;
058:        import java.net.Socket;
059:        import java.net.URL;
060:
061:        /**
062:         * Simple server that executes supplied script against a socket
063:         * @author Jeremy Rayner
064:         */
065:
066:        public class GroovySocketServer implements  Runnable {
067:            private URL url;
068:            private GroovyShell groovy;
069:            private boolean isScriptFile;
070:            private String scriptFilenameOrText;
071:            private boolean autoOutput;
072:
073:            public GroovySocketServer(GroovyShell groovy, boolean isScriptFile,
074:                    String scriptFilenameOrText, boolean autoOutput, int port) {
075:                this .groovy = groovy;
076:                this .isScriptFile = isScriptFile;
077:                this .scriptFilenameOrText = scriptFilenameOrText;
078:                this .autoOutput = autoOutput;
079:                try {
080:                    url = new URL("http", InetAddress.getLocalHost()
081:                            .getHostAddress(), port, "/");
082:                    System.out.println("groovy is listening on port " + port);
083:                } catch (IOException e) {
084:                    e.printStackTrace();
085:                }
086:                new Thread(this ).start();
087:            }
088:
089:            public void run() {
090:                try {
091:                    ServerSocket serverSocket = new ServerSocket(url.getPort());
092:                    while (true) {
093:                        // Create one script per socket connection.
094:                        // This is purposefully not caching the Script
095:                        // so that the script source file can be changed on the fly,
096:                        // as each connection is made to the server.
097:                        Script script;
098:                        if (isScriptFile) {
099:                            GroovyMain gm = new GroovyMain();
100:                            script = groovy
101:                                    .parse(new FileInputStream(
102:                                            gm
103:                                                    .huntForTheScriptFile(scriptFilenameOrText)));
104:                        } else {
105:                            script = groovy.parse(scriptFilenameOrText);
106:                        }
107:                        new GroovyClientConnection(script, autoOutput,
108:                                serverSocket.accept());
109:                    }
110:                } catch (Exception e) {
111:                    e.printStackTrace();
112:                }
113:            }
114:
115:            class GroovyClientConnection implements  Runnable {
116:                private Script script;
117:                private Socket socket;
118:                private BufferedReader reader;
119:                private PrintWriter writer;
120:                private boolean autoOutputFlag;
121:
122:                GroovyClientConnection(Script script, boolean autoOutput,
123:                        Socket socket) throws IOException {
124:                    this .script = script;
125:                    this .autoOutputFlag = autoOutput;
126:                    this .socket = socket;
127:                    reader = new BufferedReader(new InputStreamReader(socket
128:                            .getInputStream()));
129:                    writer = new PrintWriter(socket.getOutputStream());
130:                    new Thread(this , "Groovy client connection - "
131:                            + socket.getInetAddress().getHostAddress()).start();
132:                }
133:
134:                public void run() {
135:                    try {
136:                        String line = null;
137:                        script.setProperty("out", writer);
138:                        script.setProperty("socket", socket);
139:                        script.setProperty("init", Boolean.TRUE);
140:                        while ((line = reader.readLine()) != null) {
141:                            // System.out.println(line);
142:                            script.setProperty("line", line);
143:                            Object o = script.run();
144:                            script.setProperty("init", Boolean.FALSE);
145:                            if (o != null) {
146:                                if ("success".equals(o)) {
147:                                    break; // to close sockets gracefully etc...
148:                                } else {
149:                                    if (autoOutputFlag) {
150:                                        writer.println(o);
151:                                    }
152:                                }
153:                            }
154:                            writer.flush();
155:                        }
156:                    } catch (IOException e) {
157:                        e.printStackTrace();
158:                    } finally {
159:                        try {
160:                            writer.flush();
161:                            writer.close();
162:                        } finally {
163:                            try {
164:                                socket.close();
165:                            } catch (IOException e3) {
166:                                e3.printStackTrace();
167:                            }
168:                        }
169:                    }
170:                }
171:            }
172:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.