The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef _FILE_SYNC_SERVICE_H_ |
| 18 | #define _FILE_SYNC_SERVICE_H_ |
| 19 | |
Elliott Hughes | c5a12b2 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 20 | #include <string> |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 21 | #include <vector> |
Elliott Hughes | c5a12b2 | 2015-04-21 10:17:07 -0700 | [diff] [blame] | 22 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 23 | #define MKID(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24)) |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 24 | |
| 25 | #define ID_STAT MKID('S','T','A','T') |
| 26 | #define ID_LIST MKID('L','I','S','T') |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 27 | #define ID_SEND MKID('S','E','N','D') |
| 28 | #define ID_RECV MKID('R','E','C','V') |
| 29 | #define ID_DENT MKID('D','E','N','T') |
| 30 | #define ID_DONE MKID('D','O','N','E') |
| 31 | #define ID_DATA MKID('D','A','T','A') |
| 32 | #define ID_OKAY MKID('O','K','A','Y') |
| 33 | #define ID_FAIL MKID('F','A','I','L') |
| 34 | #define ID_QUIT MKID('Q','U','I','T') |
| 35 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 36 | struct SyncRequest { |
| 37 | uint32_t id; // ID_STAT, et cetera. |
| 38 | uint32_t path_length; // <= 1024 |
| 39 | // Followed by 'path_length' bytes of path (not NUL-terminated). |
| 40 | } __attribute__((packed)) ; |
| 41 | |
Elliott Hughes | fe7ff81 | 2015-04-17 09:47:42 -0700 | [diff] [blame] | 42 | union syncmsg { |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 43 | struct __attribute__((packed)) { |
Josh Gao | 48b4cf6 | 2016-02-19 13:41:33 -0800 | [diff] [blame] | 44 | uint32_t id; |
| 45 | uint32_t mode; |
| 46 | uint32_t size; |
| 47 | uint32_t time; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | } stat; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 49 | struct __attribute__((packed)) { |
Josh Gao | 48b4cf6 | 2016-02-19 13:41:33 -0800 | [diff] [blame] | 50 | uint32_t id; |
| 51 | uint32_t mode; |
| 52 | uint32_t size; |
| 53 | uint32_t time; |
| 54 | uint32_t namelen; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 55 | } dent; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 56 | struct __attribute__((packed)) { |
Josh Gao | 48b4cf6 | 2016-02-19 13:41:33 -0800 | [diff] [blame] | 57 | uint32_t id; |
| 58 | uint32_t size; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 | } data; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 60 | struct __attribute__((packed)) { |
Josh Gao | 48b4cf6 | 2016-02-19 13:41:33 -0800 | [diff] [blame] | 61 | uint32_t id; |
| 62 | uint32_t msglen; |
Mark Lindner | 9f9d145 | 2014-03-11 17:55:59 -0700 | [diff] [blame] | 63 | } status; |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 64 | }; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 65 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 66 | void file_sync_service(int fd, void* cookie); |
| 67 | bool do_sync_ls(const char* path); |
Josh Gao | 5d093b2 | 2015-10-30 16:57:19 -0700 | [diff] [blame] | 68 | bool do_sync_push(const std::vector<const char*>& srcs, const char* dst); |
| 69 | bool do_sync_pull(const std::vector<const char*>& srcs, const char* dst, |
| 70 | bool copy_attrs); |
| 71 | |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 72 | bool do_sync_sync(const std::string& lpath, const std::string& rpath, bool list_only); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 73 | |
| 74 | #define SYNC_DATA_MAX (64*1024) |
| 75 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 76 | #endif |