blob: 2aa5d8f5ec29b1705cd7fe6a6ff76716a852ec26 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <vector>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include "common/libs/fs/shared_fd.h"
#include "common/libs/fs/shared_select.h"
#include "host/vadb/usbip/server.h"
#include "host/vadb/virtual_adb_server.h"
DEFINE_string(socket, "", "Socket to use to talk to USBForwarder.");
DEFINE_string(usbip_socket_name, "android", "Name of the USB/IP socket.");
int main(int argc, char* argv[]) {
google::InitGoogleLogging(argv[0]);
google::ParseCommandLineFlags(&argc, &argv, true);
vadb::VirtualADBServer adb(FLAGS_socket);
CHECK(adb.Init());
vadb::usbip::Server s(FLAGS_usbip_socket_name, adb.Pool());
CHECK(s.Init()) << "Could not start server";
for (;;) {
avd::SharedFDSet fd_read;
fd_read.Zero();
adb.BeforeSelect(&fd_read);
s.BeforeSelect(&fd_read);
int ret = avd::Select(&fd_read, nullptr, nullptr, nullptr);
if (ret <= 0) continue;
adb.AfterSelect(fd_read);
s.AfterSelect(fd_read);
}
}