2016-09-14 65 views
2

我目前正在运行一个完全连接到我的JavaScript客户端的Python SocketIO服务器。我使用socketio android example chat app来编写Android代码,它与NodeJS服务器完美协作,但是当我转换到使用Python服务器时,它将无法连接。如何将Android应用程序连接到python-socketio后端?

如何从Android连接到Ptyhon-SocketIO服务器?

的Android代码:

public class HomeActivity extends AppCompatActivity 
    implements NavigationView.OnNavigationItemSelectedListener { 

private final String TAG = "MainActivity"; 

Button btnCore0, btnCore1, btnCPUUsage; 
private ProgressBar progressBar; 

private Socket mSocket; 

{ 
    try { 
     mSocket = IO.socket(Constants.SERVER_URL); 
    } catch (URISyntaxException e) { 
     Log.e(TAG, e.getMessage()); 
    } 
} 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_home); 
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
    setSupportActionBar(toolbar); 

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); 
    fab.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View view) { 
      Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) 
        .setAction("Action", null).show(); 
     } 
    }); 

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 
    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
      this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); 
    drawer.setDrawerListener(toggle); 
    toggle.syncState(); 

    NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); 
    navigationView.setNavigationItemSelectedListener(this); 

    btnCore0 = (Button) findViewById(R.id.btnCore0); 
    btnCore1 = (Button) findViewById(R.id.btnCore1); 
    btnCPUUsage = (Button) findViewById(R.id.btnCPUUsage); 
    progressBar = (ProgressBar) findViewById(R.id.progressBar); 

    // Make buttons invisible 
    btnCore0.setVisibility(View.INVISIBLE); 
    btnCore1.setVisibility(View.INVISIBLE); 
    btnCPUUsage.setVisibility(View.INVISIBLE); 
    // Make progress bar visible 
    progressBar.setVisibility(View.VISIBLE); 

    mSocket.on("status-update", onNewMessage); 
    mSocket.on(Socket.EVENT_DISCONNECT, onSocketDisconnected); 
    mSocket.connect(); 
} 

private Emitter.Listener onNewMessage = new Emitter.Listener() { 
    @Override 
    public void call(final Object... args) { 
     HomeActivity.this.runOnUiThread(new Runnable() { 
      @Override 
      public void run() { 
       Log.d(TAG, "New message 090909***"); 
       JSONObject data = (JSONObject) args[0]; 
       int core0 = 0; 
       int core1 = 0; 
       int cpu_usage_in = 0; 
       try { 
        core0 = data.getInt("core0_in"); 
        core1 = data.getInt("core1_in"); 
        cpu_usage_in = data.getInt("cpu_usage_in"); 
       } catch (JSONException e) { 
        Log.e(TAG, e.getMessage()); 
       } 

       btnCore0.setText(getResources().getString(R.string.core0, String.valueOf(core0))); 
       btnCore1.setText(getResources().getString(R.string.core1, String.valueOf(core1))); 
       btnCPUUsage.setText(getResources().getString(R.string.cpu_usge, String.valueOf(cpu_usage_in))); 

       updateButtonBackgroundColor(btnCore0, core0); 
       updateButtonBackgroundColor(btnCore1, core1); 
       updateButtonBackgroundColor(btnCPUUsage, cpu_usage_in); 

       onServerDataReceived(); 
      } 
     }); 
    } 
}; 

接着是发射每秒的Pyhton服务器。这,我知道工作正常,因为我可以从JavaScript应用程序连接到它。 Python代码:

from flask import Flask, render_template 
from flask_socketio import SocketIO 
from gcm import GCM 

eventlet.monkey_patch() 
app = Flask(__name__) 
socket = SocketIO(app, logger=True, engineio_logger=True) 

class Server(threading.Thread): 
def __init__(self, thread_id): 
    threading.Thread.__init__(self) 
    self.threadID = thread_id 

def run(self): 
    print("Starting " + self.name) 
    serve() 
    print("Exiting " + self.name) 


def serve(): 
if __name__ == '__main__': 
    eventlet.wsgi.server(eventlet.wrap_ssl(eventlet.listen(('', 8000)), certfile='/home/garthtee/cert.pem', keyfile='/home/garthtee/privkey.pem'), app) 

server_thread = Server("Server-thread") 
server_thread.start() 
threads.append(server_thread) 
print("Started @ " + str(get_time())) 
while True: 
sensors.init() 
try: 
    for chip in sensors.iter_detected_chips(): 
     # print('%s at %s' % (chip, chip.adapter_name)) 
     for feature in chip: 
      if feature.label == 'Core 0': 
       core0 = feature.get_value() 
      elif feature.label == 'Core 1': 
       core1 = feature.get_value() 
    for x in range(1): 
     cpu_usage = str(psutil.cpu_percent(interval=1)) 
finally: 
    socket.emit('status-update', {'core0_in': core0, 'core1_in': core1, 'cpu_usage_in': cpu_usage, 'users': users}) 

    alert_checker(avg_temp, users) 
    sensors.cleanup() 
    time.sleep(1) 

以下错误显示出来:

SSLError:[SSL:SSL_HANDSHAKE_FAILURE] SSL握手失败(_ssl.c:1754)

+0

完成,如果有人可以帮助,我会很感激。 – Garth

+0

你需要用确切的术语解释你的意思是“它不会连接”。服务器是否完全忽略了Android应用,例如,如果服务器URL错误会发生什么? – Miguel

+0

服务器发出消息确定,但Android应用程序不会收到消息。我有上面的Android代码,自从我运行一个NodeJS服务器以来,我没有改变它,因此连接工作。 – Garth

回答

1

我下载的SocketIO python库Github

我修改了这样的示例代码:

import socketio 
import eventlet 
import eventlet.wsgi 
from flask import Flask, render_template 

sio = socketio.Server() 
app = Flask(__name__) 

@app.route('/') 
def index(): 
    """Serve the client-side application.""" 
    return render_template('index.html') 

@sio.on('connect', namespace='/') 
def connect(sid, environ): 
    print("connect ", sid) 

@sio.on('add user', namespace='/') 
def login(sid, environ): 
    print("login ", sid) 
    sio.emit('login', room=sid) 

@sio.on('new message', namespace='/') 
def message(sid, data): 
    print("message ", data) 
    sio.emit('reply', room=sid) 

@sio.on('disconnect', namespace='/') 
def disconnect(sid): 
    print('disconnect ', sid) 

if __name__ == '__main__': 
    # wrap Flask application with engineio's middleware 
    app = socketio.Middleware(sio, app) 

    # deploy as an eventlet WSGI server 
    eventlet.wsgi.server(eventlet.listen(('', 8000)), app) 

然后我克隆Android example chat项目,我在Constants.java改变的唯一事情:

public static final String CHAT_SERVER_URL = "http://MY_LOCAL_IP:8000"; 

和Android应用程序可以连接。 我在应用程序中看到它,也在python控制台中看到它。 如果你删除了一些不必要的解析部分(应用程序崩溃,因为响应不同),你也可以在python中看到你的消息。

您是否尝试过首先不使用SSL来运行您的服务器应用程序?

也许这就是问题所在。 在Android上,您可以使用IO.setDefaultSSLContext(SSLContext sslContext)来设置SSL。

+0

我尝试过使用此socket.io-client-java,但无法连接到它。当我使用NodeJS后端时,它可以很好地工作,但不适用于Python。也许有什么需要改变的Python后端? – Garth

+0

您是否使用相同的SocketIO版本? – danesz

+0

谢谢,我修改了答案。 @Garth你可以在没有SSL的情况下试用吗? – danesz

相关问题