summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/swig/java/sample2.java
blob: b5b3d761679c22eba7e5db919b2e39e72a02f250 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* $Id$ */
/* 
 * Copyright (C) 2013 Teluu Inc. (http://www.teluu.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 */
 
package org.pjsip.pjsua2.app;

import java.io.IOException;
import org.pjsip.pjsua2.*;
import org.pjsip.pjsua2.app.*;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import com.sun.javafx.tk.TKStage;
import java.lang.reflect.Method;

class MyObserver implements MyAppObserver {
	private static MyCall currentCall = null;
	
	@Override
	public void notifyRegState(pjsip_status_code code, String reason, int expiration) {}
	
	@Override
	public void notifyIncomingCall(MyCall call) {
		/* Auto answer. */
		CallOpParam call_param = new CallOpParam();
		call_param.setStatusCode(pjsip_status_code.PJSIP_SC_OK);
		try {
			currentCall = call;
			currentCall.answer(call_param);
		} catch (Exception e) {
			System.out.println(e);
			return;
		}	
	}
	
	@Override
	public void notifyCallMediaState(MyCall call) {
	}

	public void notifyCallState(MyCall call) {
		if (currentCall == null || call.getId() != currentCall.getId())
			return;

		CallInfo ci;
		try {
			ci = call.getInfo();
		} catch (Exception e) {
			ci = null;
		}
		if (ci.getState() == pjsip_inv_state.PJSIP_INV_STATE_DISCONNECTED) {
			currentCall = null;                        
		} else if (ci.getState() == pjsip_inv_state.PJSIP_INV_STATE_CONFIRMED) {
			if (ci.getSetting().getVideoCount() != 0) {
				System.out.println("Changing video window using " + sample2.hwnd);
				// Change window
				VideoWindowHandle vidWH = new VideoWindowHandle();	
				vidWH.getHandle().setWindow(sample2.hwnd);	    	    
				try {
					currentCall.vidWin.setWindow(vidWH);			
				} catch (Exception e) {
					System.out.println(e);
				}		 		
			}
		}		
	}

	@Override
	public void notifyBuddyState(MyBuddy buddy) {}	
}

class MyThread extends Thread {
	private static MyApp app = new MyApp();
	private static MyAppObserver observer = new MyObserver();
	private static MyAccount account = null;
	private static AccountConfig accCfg = null;		     
	
	public void run() {
		try {					
			app.init(observer, ".", true);
		} catch (Exception e) {
			System.out.println(e);
			app.deinit();
			System.exit(-1);
		}                 

		if (app.accList.size() == 0) {
			accCfg = new AccountConfig();
			accCfg.setIdUri("sip:localhost");
			accCfg.getVideoConfig().setAutoTransmitOutgoing(true);
			accCfg.getVideoConfig().setAutoShowIncoming(true);                        
			account = app.addAcc(accCfg);                        
		} else {
			account = app.accList.get(0);
			accCfg = account.cfg;
		}

		try {
			account.modify(accCfg);
		} catch (Exception e) {}

		while (!Thread.currentThread().isInterrupted()) {
			MyApp.ep.libHandleEvents(10);
			try {
				Thread.currentThread().sleep(50);
			} catch (InterruptedException ie) {
				break;
			}
		}    
                app.deinit();
	}		
}

public class sample2 extends Application {
	public static long hwnd;
	private static Thread myThread = new MyThread();

	private static long getWindowPointer(Stage stage) {
		try {
			TKStage tkStage = stage.impl_getPeer();
			Method getPlatformWindow = tkStage.getClass().getDeclaredMethod("getPlatformWindow" );
			getPlatformWindow.setAccessible(true);
			Object platformWindow = getPlatformWindow.invoke(tkStage);
			Method getNativeHandle = platformWindow.getClass().getMethod( "getNativeHandle" );
			getNativeHandle.setAccessible(true);
			return (long)getNativeHandle.invoke(platformWindow);
                } catch (Throwable e) {
			System.err.println("Error getting Window Pointer");
			return 0;
                }
	}
        
	@Override
	public void start(Stage primaryStage) {
		primaryStage.setTitle("Pjsua2 javafx sample");
		StackPane root = new StackPane();                
		primaryStage.setScene(new Scene(root, 300, 250));
		primaryStage.show();
		hwnd = getWindowPointer(primaryStage);
		myThread.start();
	}          
	@Override
	public void stop() throws Exception {
		myThread.interrupt();
		myThread.join();
	}                
	public static void main(String argv[]) {
		launch(argv);
	}        
}