Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
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
Model registry
Operate
Environments
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
cs525-sp18-g07
spark
Commits
a69638d9
Commit
a69638d9
authored
14 years ago
by
Mosharaf Chowdhury
Browse files
Options
Downloads
Patches
Plain Diff
Removed deprecated repl file ClassServer.scala
parent
b7dda4c5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/scala/spark/repl/ClassServer.scala
+0
-77
0 additions, 77 deletions
src/scala/spark/repl/ClassServer.scala
with
0 additions
and
77 deletions
src/scala/spark/repl/ClassServer.scala
deleted
100644 → 0
+
0
−
77
View file @
b7dda4c5
package
spark.repl
import
java.io.File
import
java.net.InetAddress
import
org.eclipse.jetty.server.Server
import
org.eclipse.jetty.server.handler.DefaultHandler
import
org.eclipse.jetty.server.handler.HandlerList
import
org.eclipse.jetty.server.handler.ResourceHandler
import
spark.Logging
/**
* Exception type thrown by ClassServer when it is in the wrong state
* for an operation.
*/
class
ServerStateException
(
message
:
String
)
extends
Exception
(
message
)
/**
* An HTTP server used by the interpreter to allow worker nodes to access
* class files created as the user types in lines of code. This is just a
* wrapper around a Jetty embedded HTTP server.
*/
class
ClassServer
(
classDir
:
File
)
extends
Logging
{
private
var
server
:
Server
=
null
private
var
port
:
Int
=
-
1
def
start
()
{
if
(
server
!=
null
)
{
throw
new
ServerStateException
(
"Server is already started"
)
}
else
{
server
=
new
Server
(
0
)
val
resHandler
=
new
ResourceHandler
resHandler
.
setResourceBase
(
classDir
.
getAbsolutePath
)
val
handlerList
=
new
HandlerList
handlerList
.
setHandlers
(
Array
(
resHandler
,
new
DefaultHandler
))
server
.
setHandler
(
handlerList
)
server
.
start
()
port
=
server
.
getConnectors
()(
0
).
getLocalPort
()
logDebug
(
"ClassServer started at "
+
uri
)
}
}
def
stop
()
{
if
(
server
==
null
)
{
throw
new
ServerStateException
(
"Server is already stopped"
)
}
else
{
server
.
stop
()
port
=
-
1
server
=
null
}
}
/**
* Get the URI of this HTTP server (http://host:port)
*/
def
uri
:
String
=
{
if
(
server
==
null
)
{
throw
new
ServerStateException
(
"Server is not started"
)
}
else
{
return
"http://"
+
getLocalIpAddress
+
":"
+
port
}
}
/**
* Get the local host's IP address in dotted-quad format (e.g. 1.2.3.4)
*/
private
def
getLocalIpAddress
:
String
=
{
// Get local IP as an array of four bytes
val
bytes
=
InetAddress
.
getLocalHost
().
getAddress
()
// Convert the bytes to ints (keeping in mind that they may be negative)
// and join them into a string
return
bytes
.
map
(
b
=>
(
b
.
toInt
+
256
)
%
256
).
mkString
(
"."
)
}
}
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