summaryrefslogtreecommitdiff
path: root/libtbd_apply.c
diff options
context:
space:
mode:
authorAlberto <alberto.ruiz@codethink.co.uk>2011-09-30 16:56:50 +0100
committerAlberto <alberto.ruiz@codethink.co.uk>2011-09-30 16:56:50 +0100
commitb4c970e9241d08e5b57a67cdf0acc86d5d9f7be5 (patch)
tree3212cf8945cbabfa34b1bb5a71dc0b3ca391f911 /libtbd_apply.c
parent1710f45e2bab8a8e73190441276664c7d405f7d5 (diff)
downloadtbdiff-b4c970e9241d08e5b57a67cdf0acc86d5d9f7be5.tar.gz
Getting rid of some more of the otap prefixes
Diffstat (limited to 'libtbd_apply.c')
-rw-r--r--libtbd_apply.c194
1 files changed, 97 insertions, 97 deletions
diff --git a/libtbd_apply.c b/libtbd_apply.c
index aef8ac3..44b69d0 100644
--- a/libtbd_apply.c
+++ b/libtbd_apply.c
@@ -52,19 +52,19 @@ _otap_apply_identify(FILE* stream)
{
uint8_t cmd;
if(fread(&cmd, 1, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
- if(cmd != OTAP_CMD_IDENTIFY)
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
+ if(cmd != TBD_CMD_IDENTIFY)
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
uint16_t nlen;
if(fread(&nlen, 2, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(strlen(TB_DIFF_PROTOCOL_ID) != nlen)
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
char nstr[nlen];
if(fread(nstr, 1, nlen, stream) != nlen)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(strncmp(nstr, TB_DIFF_PROTOCOL_ID, nlen) != 0)
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
return 0;
}
@@ -73,33 +73,33 @@ _otap_apply_cmd_dir_create(FILE* stream)
{
uint16_t dlen;
if(fread(&dlen, sizeof(uint16_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char dname[dlen + 1];
if(fread(dname, 1, dlen, stream) != dlen)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
dname[dlen] = '\0';
printf("cmd_dir_create %s\n", dname);
if(strchr(dname, '/') != NULL)
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
uint32_t mtime;
if(fread(&mtime, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
uint32_t uid;
if(fread(&uid, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
uint32_t gid;
if(fread(&gid, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
uint32_t mode;
if(fread(&mode, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(mkdir(dname, (mode_t)mode) != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_CREATE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CREATE_DIR);
// Apply metadata.
struct utimbuf timebuff = { time(NULL), mtime };
@@ -117,19 +117,19 @@ _otap_apply_cmd_dir_enter(FILE *stream,
{
uint16_t dlen;
if(fread(&dlen, 2, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char dname[dlen + 1];
if(fread(dname, 1, dlen, stream) != dlen)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
dname[dlen] = '\0';
printf("cmd_dir_enter %s\n", dname);
if((strchr(dname, '/') != NULL) || (strcmp(dname, "..") == 0))
- otap_error(OTAP_ERROR_UNABLE_TO_CHANGE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CHANGE_DIR);
if(depth != NULL)
(*depth)++;
if(chdir(dname) != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_CHANGE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CHANGE_DIR);
return 0;
}
@@ -139,17 +139,17 @@ _otap_apply_cmd_dir_leave(FILE *stream,
{
uint8_t count;
if(fread(&count, 1, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
uintptr_t rcount = count + 1;
printf("cmd_dir_leave %"PRIuPTR"\n", rcount);
if((depth != NULL) && (*depth < rcount))
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
uintptr_t i;
for(i = 0; i < rcount; i++) {
if(chdir("..") != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_CHANGE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CHANGE_DIR);
}
if(depth != NULL)
@@ -162,13 +162,13 @@ _otap_apply_cmd_file_create(FILE* stream)
{
uint16_t flen;
if(fread(&flen, 2, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char fname[flen + 1];
if(fread(fname, 1, flen, stream) != flen)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
fname[flen] = '\0';
if((strchr(fname, '/') != NULL) || (strcmp(fname, "..") == 0))
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
uint32_t mtime;
uint32_t mode;
@@ -181,19 +181,19 @@ _otap_apply_cmd_file_create(FILE* stream)
fread(&uid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&gid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&fsize, 4, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
fprintf(stderr, "cmd_file_create %s:%"PRId32"\n", fname, fsize);
FILE* fp = fopen(fname, "rb");
if(fp != NULL) {
fclose(fp);
- otap_error(OTAP_ERROR_FILE_ALREADY_EXISTS);
+ otap_error(TBD_ERROR_FILE_ALREADY_EXISTS);
}
fp = fopen(fname, "wb");
if(fp == NULL)
- otap_error(OTAP_ERROR_UNABLE_TO_OPEN_FILE_FOR_WRITING);
+ otap_error(TBD_ERROR_UNABLE_TO_OPEN_FILE_FOR_WRITING);
uintptr_t block = 256;
uint8_t fbuff[block];
@@ -201,9 +201,9 @@ _otap_apply_cmd_file_create(FILE* stream)
if(fsize < block)
block = fsize;
if(fread(fbuff, 1, block, stream) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(fwrite(fbuff, 1, block, fp) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_WRITE_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_WRITE_STREAM);
}
fclose(fp);
@@ -230,17 +230,17 @@ _otap_apply_cmd_file_delta(FILE* stream)
uint32_t mode;
uint16_t flen;
if(fread(&flen, 2, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char fname[flen + 1];
if(fread(fname, 1, flen, stream) != flen)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
fname[flen] = '\0';
fprintf(stderr, "cmd_file_delta %s\n", fname);
if((strchr(fname, '/') != NULL) ||
(strcmp(fname, "..") == 0))
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
/* Reading metadata */
if(fread(&mdata_mask, sizeof(uint16_t), 1, stream) != 1 ||
@@ -248,26 +248,26 @@ _otap_apply_cmd_file_delta(FILE* stream)
fread(&uid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&gid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&mode, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
FILE* op = fopen(fname, "rb");
if(op == NULL)
- otap_error(OTAP_ERROR_UNABLE_TO_OPEN_FILE_FOR_READING);
+ otap_error(TBD_ERROR_UNABLE_TO_OPEN_FILE_FOR_READING);
if(remove(fname) != 0) {
fclose(op);
- otap_error(OTAP_ERROR_UNABLE_TO_REMOVE_FILE);
+ otap_error(TBD_ERROR_UNABLE_TO_REMOVE_FILE);
}
FILE* np = fopen(fname, "wb");
if(np == NULL) {
fclose(op);
- otap_error(OTAP_ERROR_UNABLE_TO_OPEN_FILE_FOR_WRITING);
+ otap_error(TBD_ERROR_UNABLE_TO_OPEN_FILE_FOR_WRITING);
}
uint32_t dstart, dend;
if(fread(&dstart, 4, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(fread(&dend, 4, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
uintptr_t block;
uint8_t fbuff[256];
@@ -275,34 +275,34 @@ _otap_apply_cmd_file_delta(FILE* stream)
if(dstart < block)
block = dstart;
if(fread(fbuff, 1, block, op) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(fwrite(fbuff, 1, block, np) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_WRITE_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_WRITE_STREAM);
}
uint32_t fsize;
if(fread(&fsize, 4, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
for(block = 256; fsize != 0; fsize -= block) {
if(fsize < block)
block = fsize;
if(fread(fbuff, 1, block, stream) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
if(fwrite(fbuff, 1, block, np) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_WRITE_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_WRITE_STREAM);
}
if(fseek(op, dend, SEEK_SET) != 0) {
fclose(np);
fclose(op);
- otap_error(OTAP_ERROR_UNABLE_TO_SEEK_THROUGH_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_SEEK_THROUGH_STREAM);
}
for(block = 256; block != 0;) {
block = fread(fbuff, 1, block, op);
if(fwrite(fbuff, 1, block, np) != block)
- otap_error(OTAP_ERROR_UNABLE_TO_WRITE_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_WRITE_STREAM);
}
fclose(np);
@@ -310,14 +310,14 @@ _otap_apply_cmd_file_delta(FILE* stream)
// Apply metadata.
int ret;
- if(mdata_mask & OTAP_METADATA_MTIME) {
+ if(mdata_mask & TBD_METADATA_MTIME) {
struct utimbuf timebuff = { time(NULL), mtime };
utime(fname, &timebuff); // Don't care if it succeeds right now.
}
- if(mdata_mask & OTAP_METADATA_UID ||
- mdata_mask & OTAP_METADATA_GID)
+ if(mdata_mask & TBD_METADATA_UID ||
+ mdata_mask & TBD_METADATA_GID)
ret = chown(fname, (uid_t)uid, (gid_t)gid);
- if(mdata_mask | OTAP_METADATA_MODE)
+ if(mdata_mask | TBD_METADATA_MODE)
ret = chmod(fname, mode);
return 0;
@@ -329,14 +329,14 @@ __otap_apply_cmd_entity_delete(const char* name)
DIR* dp = opendir(name);
if(dp == NULL) {
if(remove(name) != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_REMOVE_FILE);
+ otap_error(TBD_ERROR_UNABLE_TO_REMOVE_FILE);
return 0;
}
if(chdir(name) != 0) {
closedir(dp);
- otap_error(OTAP_ERROR_UNABLE_TO_CHANGE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CHANGE_DIR);
}
struct dirent* entry;
@@ -350,7 +350,7 @@ __otap_apply_cmd_entity_delete(const char* name)
closedir(dp);
if(chdir("..") != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_CHANGE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CHANGE_DIR);
return err;
}
@@ -358,9 +358,9 @@ __otap_apply_cmd_entity_delete(const char* name)
closedir(dp);
if(chdir("..") != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_CHANGE_DIR);
+ otap_error(TBD_ERROR_UNABLE_TO_CHANGE_DIR);
if(remove(name) != 0)
- otap_error(OTAP_ERROR_UNABLE_TO_REMOVE_FILE);
+ otap_error(TBD_ERROR_UNABLE_TO_REMOVE_FILE);
return 0;
}
@@ -369,16 +369,16 @@ _otap_apply_cmd_entity_delete(FILE* stream)
{
uint16_t elen;
if(fread(&elen, 2, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char ename[elen + 1];
if(fread(ename, 1, elen, stream) != elen)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
ename[elen] = '\0';
fprintf(stderr, "cmd_entity_delete %s\n", ename);
if((strchr(ename, '/') != NULL) || (strcmp(ename, "..") == 0))
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
return __otap_apply_cmd_entity_delete(ename);
}
@@ -393,30 +393,30 @@ _otap_apply_cmd_symlink_create(FILE *stream)
if(fread(&mtime, sizeof(uint32_t), 1, stream) != 1 ||
fread(&uid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&gid, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
/* Reading link file name */
if(fread(&len, sizeof(uint16_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char linkname[len + 1];
linkname[len] = '\0';
if(fread(linkname, sizeof(char), len, stream) != len)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
/* Reading target path */
if(fread(&len, sizeof(uint16_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
char linkpath[len+1];
linkpath[len] = '\0';
if(fread(linkpath, sizeof(char), len, stream) != len)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
fprintf(stderr, "cmd_symlink_create %s -> %s\n", linkname, linkpath);
if(symlink(linkpath, linkname))
- return OTAP_ERROR_UNABLE_TO_CREATE_SYMLINK;
+ return TBD_ERROR_UNABLE_TO_CREATE_SYMLINK;
int ret;
struct timeval tv[2];
@@ -427,7 +427,7 @@ _otap_apply_cmd_symlink_create(FILE *stream)
lutimes(linkname, tv); // Don't care if it succeeds right now.
ret = lchown(linkname, (uid_t)uid, (uid_t)gid);
- return OTAP_ERROR_SUCCESS;
+ return TBD_ERROR_SUCCESS;
}
static int
@@ -447,14 +447,14 @@ _otap_apply_cmd_special_create(FILE *stream)
fread(&gid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&dev, sizeof(uint32_t), 1, stream) != 1) {
free(name);
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
}
fprintf(stderr, "cmd_special_create %s\n", name);
if(mknod(name, mode, (dev_t)dev) != 0) {
free(name);
- return OTAP_ERROR_UNABLE_TO_CREATE_SPECIAL_FILE;
+ return TBD_ERROR_UNABLE_TO_CREATE_SPECIAL_FILE;
}
struct utimbuf timebuff = { time(NULL), mtime };
@@ -465,7 +465,7 @@ _otap_apply_cmd_special_create(FILE *stream)
ret = chmod(name, mode);
free(name);
- return OTAP_ERROR_SUCCESS;
+ return TBD_ERROR_SUCCESS;
}
static int
@@ -482,26 +482,26 @@ _otap_apply_cmd_dir_delta(FILE *stream)
fread(&uid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&gid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&mode, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
int ret;
char *dname = _otap_apply_fread_string(stream);
if(dname == NULL)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
fprintf(stderr, "cmd_dir_delta %s\n", dname);
- if(metadata_mask & OTAP_METADATA_MTIME) {
+ if(metadata_mask & TBD_METADATA_MTIME) {
struct utimbuf timebuff = { time(NULL), mtime };
utime(dname, &timebuff); // Don't care if it succeeds right now.
}
- if(metadata_mask & OTAP_METADATA_UID || metadata_mask & OTAP_METADATA_GID)
+ if(metadata_mask & TBD_METADATA_UID || metadata_mask & TBD_METADATA_GID)
ret = chown(dname, (uid_t)uid, (gid_t)gid);
- if(metadata_mask | OTAP_METADATA_MODE)
+ if(metadata_mask | TBD_METADATA_MODE)
ret = chmod(dname, mode);
free(dname);
- return OTAP_ERROR_SUCCESS;
+ return TBD_ERROR_SUCCESS;
}
static int
@@ -518,33 +518,33 @@ _otap_apply_cmd_file_mdata_update(FILE *stream)
fread(&uid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&gid, sizeof(uint32_t), 1, stream) != 1 ||
fread(&mode, sizeof(uint32_t), 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
int ret;
char *dname = _otap_apply_fread_string(stream);
if(dname == NULL)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
fprintf(stderr, "cmd_metadata_update %s\n", dname);
- if(metadata_mask & OTAP_METADATA_MTIME) {
+ if(metadata_mask & TBD_METADATA_MTIME) {
struct utimbuf timebuff = { time(NULL), mtime };
utime(dname, &timebuff); // Don't care if it succeeds right now.
}
- if(metadata_mask & OTAP_METADATA_UID || metadata_mask & OTAP_METADATA_GID)
+ if(metadata_mask & TBD_METADATA_UID || metadata_mask & TBD_METADATA_GID)
ret = chown(dname, (uid_t)uid, (gid_t)gid);
- if(metadata_mask | OTAP_METADATA_MODE)
+ if(metadata_mask | TBD_METADATA_MODE)
ret = chmod(dname, mode);
free(dname);
- return OTAP_ERROR_SUCCESS;
+ return TBD_ERROR_SUCCESS;
}
int
otap_apply(FILE* stream)
{
if(stream == NULL)
- otap_error(OTAP_ERROR_NULL_POINTER);
+ otap_error(TBD_ERROR_NULL_POINTER);
int err;
if((err = _otap_apply_identify(stream)) != 0)
@@ -555,57 +555,57 @@ otap_apply(FILE* stream)
while(!flush) {
uint8_t cmd;
if(fread(&cmd, 1, 1, stream) != 1)
- otap_error(OTAP_ERROR_UNABLE_TO_READ_STREAM);
+ otap_error(TBD_ERROR_UNABLE_TO_READ_STREAM);
switch(cmd) {
- case OTAP_CMD_DIR_CREATE:
+ case TBD_CMD_DIR_CREATE:
if((err = _otap_apply_cmd_dir_create(stream)) != 0)
return err;
break;
- case OTAP_CMD_DIR_ENTER:
+ case TBD_CMD_DIR_ENTER:
if((err = _otap_apply_cmd_dir_enter(stream, &depth)) != 0)
return err;
break;
- case OTAP_CMD_DIR_LEAVE:
+ case TBD_CMD_DIR_LEAVE:
if((err = _otap_apply_cmd_dir_leave(stream, &depth)) != 0)
return err;
break;
- case OTAP_CMD_FILE_CREATE:
+ case TBD_CMD_FILE_CREATE:
if((err = _otap_apply_cmd_file_create(stream)) != 0)
return err;
break;
- case OTAP_CMD_FILE_DELTA:
+ case TBD_CMD_FILE_DELTA:
if((err = _otap_apply_cmd_file_delta(stream)) != 0)
return err;
break;
- case OTAP_CMD_SYMLINK_CREATE:
+ case TBD_CMD_SYMLINK_CREATE:
if((err = _otap_apply_cmd_symlink_create(stream)) != 0)
return err;
break;
- case OTAP_CMD_SPECIAL_CREATE:
+ case TBD_CMD_SPECIAL_CREATE:
if((err = _otap_apply_cmd_special_create(stream)) != 0)
return err;
break;
- case OTAP_CMD_DIR_DELTA:
+ case TBD_CMD_DIR_DELTA:
if((err = _otap_apply_cmd_dir_delta(stream)) != 0)
return err;
break;
- case OTAP_CMD_FILE_METADATA_UPDATE:
+ case TBD_CMD_FILE_METADATA_UPDATE:
if((err = _otap_apply_cmd_file_mdata_update(stream)) != 0)
return err;
break;
- case OTAP_CMD_ENTITY_MOVE:
- case OTAP_CMD_ENTITY_COPY:
- otap_error(OTAP_ERROR_FEATURE_NOT_IMPLEMENTED); // TODO - Implement.
- case OTAP_CMD_ENTITY_DELETE:
+ case TBD_CMD_ENTITY_MOVE:
+ case TBD_CMD_ENTITY_COPY:
+ otap_error(TBD_ERROR_FEATURE_NOT_IMPLEMENTED); // TODO - Implement.
+ case TBD_CMD_ENTITY_DELETE:
if((err = _otap_apply_cmd_entity_delete(stream)) != 0)
return err;
break;
- case OTAP_CMD_UPDATE:
+ case TBD_CMD_UPDATE:
flush = true;
break;
default:
fprintf(stderr, "Error: Invalid command 0x%02"PRIx8".\n", cmd);
- otap_error(OTAP_ERROR_INVALID_PARAMETER);
+ otap_error(TBD_ERROR_INVALID_PARAMETER);
}
}