lib/nlp: add wrapper to the web REST api
[nit.git] / lib / nlp / examples / nlp_server.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 module nlp_server
16
17 import nlp
18 import config
19
20 redef class Config
21
22 var opt_java_cp = new OptionString("StanfordNLP java classpath", "-c", "--classpath")
23 var opt_port = new OptionInt("Server port on localhost (default is 9000)", 9000, "-p", "--port")
24
25 redef init do
26 opts.add_option(opt_java_cp, opt_port)
27 end
28 end
29
30 var config = new Config
31 config.parse_options(args)
32
33 var cp = config.opt_java_cp.value
34 if cp == null then cp = "stanfordnlp/*"
35
36 var srv = new NLPServer(cp, config.opt_port.value)
37 srv.start