Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SampleClient.java « server « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1710c553e953f91fe669606ae8c37f56fa2de733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// Java Sample client for mosesserver (Created by Marwen AZOUZI)
// The XML-RPC libraries are available at Apache (http://ws.apache.org/xmlrpc/) 
//

import java.util.HashMap;
import java.net.URL;
import org.apache.xmlrpc.client.XmlRpcClient;
import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;

public class SampleClient {
	public static void main(String[] args) {
		try {
			// Create an instance of XmlRpcClient
			XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
			config.setServerURL(new URL("http://localhost:8080/RPC2"));
			XmlRpcClient client = new XmlRpcClient();
			client.setConfig(config);
			// The XML-RPC data type used by mosesserver is <struct>. In Java, this data type can be represented using HashMap.
			HashMap<String,String> mosesParams = new HashMap<String,String>();
			String textToTranslate = new String("some text to translate .");
			mosesParams.put("text", textToTranslate);
			mosesParams.put("align", "true");
			mosesParams.put("report-all-factors", "true");
			// The XmlRpcClient.execute method doesn't accept Hashmap (pParams). It's either Object[] or List. 
			Object[] params = new Object[] { null };
			params[0] = mosesParams;
			// Invoke the remote method "translate". The result is an Object, convert it to a HashMap.
			HashMap result = (HashMap)client.execute("translate", params);
                        // Print the returned results
			String textTranslation = (String)result.get("text");
			System.out.println("Input : "+textToTranslate);
			System.out.println("Translation : "+textTranslation);
			if (result.get("align") != null){ 
				Object[] aligns = (Object[])result.get("align");
				System.out.println("Phrase alignments : [Source Start:Source End][Target Start]"); 
				for ( Object element : aligns) {
	                		HashMap align = (HashMap)element;	
					System.out.println("["+align.get("src-start")+":"+align.get("src-end")+"]["+align.get("tgt-start")+"]");
				}
			}				
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}