blob: 67ed3fc14b1eff4fc4e99abd09fc82de7e0174ba [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>
21
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080022#define MKID(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023
24#define ID_STAT MKID('S','T','A','T')
25#define ID_LIST MKID('L','I','S','T')
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#define ID_SEND MKID('S','E','N','D')
27#define ID_RECV MKID('R','E','C','V')
28#define ID_DENT MKID('D','E','N','T')
29#define ID_DONE MKID('D','O','N','E')
30#define ID_DATA MKID('D','A','T','A')
31#define ID_OKAY MKID('O','K','A','Y')
32#define ID_FAIL MKID('F','A','I','L')
33#define ID_QUIT MKID('Q','U','I','T')
34
Elliott Hughesaa245492015-08-03 10:38:08 -070035struct SyncRequest {
36 uint32_t id; // ID_STAT, et cetera.
37 uint32_t path_length; // <= 1024
38 // Followed by 'path_length' bytes of path (not NUL-terminated).
39} __attribute__((packed)) ;
40
Elliott Hughes2d4121c2015-04-17 09:47:42 -070041union syncmsg {
Elliott Hughesaa245492015-08-03 10:38:08 -070042 struct __attribute__((packed)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043 unsigned id;
44 unsigned mode;
45 unsigned size;
46 unsigned time;
47 } stat;
Elliott Hughesaa245492015-08-03 10:38:08 -070048 struct __attribute__((packed)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080049 unsigned id;
50 unsigned mode;
51 unsigned size;
52 unsigned time;
53 unsigned namelen;
54 } dent;
Elliott Hughesaa245492015-08-03 10:38:08 -070055 struct __attribute__((packed)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056 unsigned id;
57 unsigned size;
58 } data;
Elliott Hughesaa245492015-08-03 10:38:08 -070059 struct __attribute__((packed)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060 unsigned id;
61 unsigned msglen;
Mark Lindner76f2a932014-03-11 17:55:59 -070062 } status;
Elliott Hughesaa245492015-08-03 10:38:08 -070063};
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080064
Elliott Hughesaa245492015-08-03 10:38:08 -070065void file_sync_service(int fd, void* cookie);
66bool do_sync_ls(const char* path);
67bool do_sync_push(const char* lpath, const char* rpath, bool show_progress);
68bool do_sync_sync(const std::string& lpath, const std::string& rpath, bool list_only);
69bool do_sync_pull(const char* rpath, const char* lpath, bool show_progress, int copy_attrs);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070
71#define SYNC_DATA_MAX (64*1024)
72
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080073#endif