summaryrefslogtreecommitdiffstats
path: root/minadbd/minadbd_services.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-03-20 19:05:51 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-03-20 19:05:51 +0100
commitb3025d752dcd170870e9fbded797f791f7b80b9c (patch)
tree9f5ad0d458a7ae8cb128e0c48caf1def481105dd /minadbd/minadbd_services.cpp
parentMerge "Create a FuseDataProvider base class" am: eeea86f5fd (diff)
parentMerge "Remove the provider_vtab" (diff)
downloadandroid_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.tar
android_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.tar.gz
android_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.tar.bz2
android_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.tar.lz
android_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.tar.xz
android_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.tar.zst
android_bootable_recovery-b3025d752dcd170870e9fbded797f791f7b80b9c.zip
Diffstat (limited to 'minadbd/minadbd_services.cpp')
-rw-r--r--minadbd/minadbd_services.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/minadbd/minadbd_services.cpp b/minadbd/minadbd_services.cpp
index 3e1128546..6fe5c79bc 100644
--- a/minadbd/minadbd_services.cpp
+++ b/minadbd/minadbd_services.cpp
@@ -22,6 +22,7 @@
#include <unistd.h>
#include <functional>
+#include <memory>
#include <string>
#include <string_view>
#include <thread>
@@ -30,6 +31,7 @@
#include "adb_unique_fd.h"
#include "fdevent.h"
#include "fuse_adb_provider.h"
+#include "fuse_sideload.h"
#include "services.h"
#include "sysdeps.h"
@@ -44,7 +46,9 @@ static void sideload_host_service(unique_fd sfd, const std::string& args) {
printf("sideload-host file size %" PRId64 " block size %d\n", file_size, block_size);
- int result = run_adb_fuse(std::move(sfd), file_size, block_size);
+ auto adb_data_reader =
+ std::make_unique<FuseAdbDataProvider>(std::move(sfd), file_size, block_size);
+ int result = run_fuse_sideload(std::move(adb_data_reader));
printf("sideload_host finished\n");
exit(result == 0 ? 0 : 1);