blob: 6606efdfb6cded3fcc31f63f8f130829fb912a7f [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
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 Hughesd236d072015-04-21 10:17:07 -070020#include <string>
Josh Gao05786772015-10-30 16:57:19 -070021#include <vector>
Elliott Hughesd236d072015-04-21 10:17:07 -070022
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#define MKID(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080024
Josh Gao5a1e3fd2016-12-05 17:11:34 -080025#define ID_LSTAT_V1 MKID('S','T','A','T')
26#define ID_STAT_V2 MKID('S','T','A','2')
27#define ID_LSTAT_V2 MKID('L','S','T','2')
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#define ID_LIST MKID('L','I','S','T')
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080029#define ID_SEND MKID('S','E','N','D')
30#define ID_RECV MKID('R','E','C','V')
31#define ID_DENT MKID('D','E','N','T')
32#define ID_DONE MKID('D','O','N','E')
33#define ID_DATA MKID('D','A','T','A')
34#define ID_OKAY MKID('O','K','A','Y')
35#define ID_FAIL MKID('F','A','I','L')
36#define ID_QUIT MKID('Q','U','I','T')
37
Elliott Hughesaa245492015-08-03 10:38:08 -070038struct SyncRequest {
39 uint32_t id; // ID_STAT, et cetera.
40 uint32_t path_length; // <= 1024
41 // Followed by 'path_length' bytes of path (not NUL-terminated).
42} __attribute__((packed)) ;
43
Elliott Hughes2d4121c2015-04-17 09:47:42 -070044union syncmsg {
Elliott Hughesaa245492015-08-03 10:38:08 -070045 struct __attribute__((packed)) {
Josh Gao8d685912016-02-19 13:41:33 -080046 uint32_t id;
47 uint32_t mode;
48 uint32_t size;
49 uint32_t time;
Josh Gao5a1e3fd2016-12-05 17:11:34 -080050 } stat_v1;
51 struct __attribute__((packed)) {
52 uint32_t id;
53 uint32_t error;
54 uint64_t dev;
55 uint64_t ino;
56 uint32_t mode;
57 uint32_t nlink;
58 uint32_t uid;
59 uint32_t gid;
60 uint64_t size;
61 int64_t atime;
62 int64_t mtime;
63 int64_t ctime;
64 } stat_v2;
Elliott Hughesaa245492015-08-03 10:38:08 -070065 struct __attribute__((packed)) {
Josh Gao8d685912016-02-19 13:41:33 -080066 uint32_t id;
67 uint32_t mode;
68 uint32_t size;
69 uint32_t time;
70 uint32_t namelen;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071 } dent;
Elliott Hughesaa245492015-08-03 10:38:08 -070072 struct __attribute__((packed)) {
Josh Gao8d685912016-02-19 13:41:33 -080073 uint32_t id;
74 uint32_t size;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080075 } data;
Elliott Hughesaa245492015-08-03 10:38:08 -070076 struct __attribute__((packed)) {
Josh Gao8d685912016-02-19 13:41:33 -080077 uint32_t id;
78 uint32_t msglen;
Mark Lindner76f2a932014-03-11 17:55:59 -070079 } status;
Elliott Hughesaa245492015-08-03 10:38:08 -070080};
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081
Elliott Hughesaa245492015-08-03 10:38:08 -070082void file_sync_service(int fd, void* cookie);
83bool do_sync_ls(const char* path);
Dan Albert06b0d6b2017-05-18 22:56:48 -070084bool do_sync_push(const std::vector<const char*>& srcs, const char* dst, bool sync);
Josh Gao05786772015-10-30 16:57:19 -070085bool do_sync_pull(const std::vector<const char*>& srcs, const char* dst,
Felipe Leme44a42672016-04-01 17:43:27 -070086 bool copy_attrs, const char* name=nullptr);
Josh Gao05786772015-10-30 16:57:19 -070087
Elliott Hughesaa245492015-08-03 10:38:08 -070088bool do_sync_sync(const std::string& lpath, const std::string& rpath, bool list_only);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080089
90#define SYNC_DATA_MAX (64*1024)
91
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080092#endif