Make our protos backwards compatible with Signal-Android

Android doesn't have a flags field (yet?). We should make sure our
existing fields align with theirs.

// FREEBIE
pull/1/head
Michael Kirk 7 years ago
parent ebb3ee86c4
commit b2b70258f2

@ -95,8 +95,8 @@ message DataMessage {
optional string contentType = 1; optional string contentType = 1;
optional string fileName = 2; optional string fileName = 2;
optional uint32 flags = 3; optional AttachmentPointer thumbnail = 3;
optional AttachmentPointer thumbnail = 4; optional uint32 flags = 4;
} }
optional uint64 id = 1; optional uint64 id = 1;

@ -908,8 +908,8 @@ NSString *NSStringFromOWSSignalServiceProtosGroupContextType(OWSSignalServicePro
#define QuotedAttachment_contentType @"contentType" #define QuotedAttachment_contentType @"contentType"
#define QuotedAttachment_fileName @"fileName" #define QuotedAttachment_fileName @"fileName"
#define QuotedAttachment_flags @"flags"
#define QuotedAttachment_thumbnail @"thumbnail" #define QuotedAttachment_thumbnail @"thumbnail"
#define QuotedAttachment_flags @"flags"
@interface OWSSignalServiceProtosDataMessageQuoteQuotedAttachment : PBGeneratedMessage<GeneratedMessageProtocol> { @interface OWSSignalServiceProtosDataMessageQuoteQuotedAttachment : PBGeneratedMessage<GeneratedMessageProtocol> {
@private @private
BOOL hasContentType_:1; BOOL hasContentType_:1;
@ -923,12 +923,12 @@ NSString *NSStringFromOWSSignalServiceProtosGroupContextType(OWSSignalServicePro
} }
- (BOOL) hasContentType; - (BOOL) hasContentType;
- (BOOL) hasFileName; - (BOOL) hasFileName;
- (BOOL) hasFlags;
- (BOOL) hasThumbnail; - (BOOL) hasThumbnail;
- (BOOL) hasFlags;
@property (readonly, strong) NSString* contentType; @property (readonly, strong) NSString* contentType;
@property (readonly, strong) NSString* fileName; @property (readonly, strong) NSString* fileName;
@property (readonly) UInt32 flags;
@property (readonly, strong) OWSSignalServiceProtosAttachmentPointer* thumbnail; @property (readonly, strong) OWSSignalServiceProtosAttachmentPointer* thumbnail;
@property (readonly) UInt32 flags;
+ (instancetype) defaultInstance; + (instancetype) defaultInstance;
- (instancetype) defaultInstance; - (instancetype) defaultInstance;
@ -975,17 +975,17 @@ NSString *NSStringFromOWSSignalServiceProtosGroupContextType(OWSSignalServicePro
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setFileName:(NSString*) value; - (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setFileName:(NSString*) value;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearFileName; - (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearFileName;
- (BOOL) hasFlags;
- (UInt32) flags;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setFlags:(UInt32) value;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearFlags;
- (BOOL) hasThumbnail; - (BOOL) hasThumbnail;
- (OWSSignalServiceProtosAttachmentPointer*) thumbnail; - (OWSSignalServiceProtosAttachmentPointer*) thumbnail;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setThumbnail:(OWSSignalServiceProtosAttachmentPointer*) value; - (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setThumbnail:(OWSSignalServiceProtosAttachmentPointer*) value;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setThumbnailBuilder:(OWSSignalServiceProtosAttachmentPointerBuilder*) builderForValue; - (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setThumbnailBuilder:(OWSSignalServiceProtosAttachmentPointerBuilder*) builderForValue;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) mergeThumbnail:(OWSSignalServiceProtosAttachmentPointer*) value; - (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) mergeThumbnail:(OWSSignalServiceProtosAttachmentPointer*) value;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearThumbnail; - (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearThumbnail;
- (BOOL) hasFlags;
- (UInt32) flags;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setFlags:(UInt32) value;
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearFlags;
@end @end
@interface OWSSignalServiceProtosDataMessageQuoteBuilder : PBGeneratedMessageBuilder { @interface OWSSignalServiceProtosDataMessageQuoteBuilder : PBGeneratedMessageBuilder {

@ -3456,8 +3456,8 @@ static OWSSignalServiceProtosDataMessageQuote* defaultOWSSignalServiceProtosData
@interface OWSSignalServiceProtosDataMessageQuoteQuotedAttachment () @interface OWSSignalServiceProtosDataMessageQuoteQuotedAttachment ()
@property (strong) NSString* contentType; @property (strong) NSString* contentType;
@property (strong) NSString* fileName; @property (strong) NSString* fileName;
@property UInt32 flags;
@property (strong) OWSSignalServiceProtosAttachmentPointer* thumbnail; @property (strong) OWSSignalServiceProtosAttachmentPointer* thumbnail;
@property UInt32 flags;
@end @end
@implementation OWSSignalServiceProtosDataMessageQuoteQuotedAttachment @implementation OWSSignalServiceProtosDataMessageQuoteQuotedAttachment
@ -3476,13 +3476,6 @@ static OWSSignalServiceProtosDataMessageQuote* defaultOWSSignalServiceProtosData
hasFileName_ = !!_value_; hasFileName_ = !!_value_;
} }
@synthesize fileName; @synthesize fileName;
- (BOOL) hasFlags {
return !!hasFlags_;
}
- (void) setHasFlags:(BOOL) _value_ {
hasFlags_ = !!_value_;
}
@synthesize flags;
- (BOOL) hasThumbnail { - (BOOL) hasThumbnail {
return !!hasThumbnail_; return !!hasThumbnail_;
} }
@ -3490,12 +3483,19 @@ static OWSSignalServiceProtosDataMessageQuote* defaultOWSSignalServiceProtosData
hasThumbnail_ = !!_value_; hasThumbnail_ = !!_value_;
} }
@synthesize thumbnail; @synthesize thumbnail;
- (BOOL) hasFlags {
return !!hasFlags_;
}
- (void) setHasFlags:(BOOL) _value_ {
hasFlags_ = !!_value_;
}
@synthesize flags;
- (instancetype) init { - (instancetype) init {
if ((self = [super init])) { if ((self = [super init])) {
self.contentType = @""; self.contentType = @"";
self.fileName = @""; self.fileName = @"";
self.flags = 0;
self.thumbnail = [OWSSignalServiceProtosAttachmentPointer defaultInstance]; self.thumbnail = [OWSSignalServiceProtosAttachmentPointer defaultInstance];
self.flags = 0;
} }
return self; return self;
} }
@ -3521,11 +3521,11 @@ static OWSSignalServiceProtosDataMessageQuoteQuotedAttachment* defaultOWSSignalS
if (self.hasFileName) { if (self.hasFileName) {
[output writeString:2 value:self.fileName]; [output writeString:2 value:self.fileName];
} }
if (self.hasFlags) {
[output writeUInt32:3 value:self.flags];
}
if (self.hasThumbnail) { if (self.hasThumbnail) {
[output writeMessage:4 value:self.thumbnail]; [output writeMessage:3 value:self.thumbnail];
}
if (self.hasFlags) {
[output writeUInt32:4 value:self.flags];
} }
[self.unknownFields writeToCodedOutputStream:output]; [self.unknownFields writeToCodedOutputStream:output];
} }
@ -3542,11 +3542,11 @@ static OWSSignalServiceProtosDataMessageQuoteQuotedAttachment* defaultOWSSignalS
if (self.hasFileName) { if (self.hasFileName) {
size_ += computeStringSize(2, self.fileName); size_ += computeStringSize(2, self.fileName);
} }
if (self.hasFlags) {
size_ += computeUInt32Size(3, self.flags);
}
if (self.hasThumbnail) { if (self.hasThumbnail) {
size_ += computeMessageSize(4, self.thumbnail); size_ += computeMessageSize(3, self.thumbnail);
}
if (self.hasFlags) {
size_ += computeUInt32Size(4, self.flags);
} }
size_ += self.unknownFields.serializedSize; size_ += self.unknownFields.serializedSize;
memoizedSerializedSize = size_; memoizedSerializedSize = size_;
@ -3589,15 +3589,15 @@ static OWSSignalServiceProtosDataMessageQuoteQuotedAttachment* defaultOWSSignalS
if (self.hasFileName) { if (self.hasFileName) {
[output appendFormat:@"%@%@: %@\n", indent, @"fileName", self.fileName]; [output appendFormat:@"%@%@: %@\n", indent, @"fileName", self.fileName];
} }
if (self.hasFlags) {
[output appendFormat:@"%@%@: %@\n", indent, @"flags", [NSNumber numberWithInteger:self.flags]];
}
if (self.hasThumbnail) { if (self.hasThumbnail) {
[output appendFormat:@"%@%@ {\n", indent, @"thumbnail"]; [output appendFormat:@"%@%@ {\n", indent, @"thumbnail"];
[self.thumbnail writeDescriptionTo:output [self.thumbnail writeDescriptionTo:output
withIndent:[NSString stringWithFormat:@"%@ ", indent]]; withIndent:[NSString stringWithFormat:@"%@ ", indent]];
[output appendFormat:@"%@}\n", indent]; [output appendFormat:@"%@}\n", indent];
} }
if (self.hasFlags) {
[output appendFormat:@"%@%@: %@\n", indent, @"flags", [NSNumber numberWithInteger:self.flags]];
}
[self.unknownFields writeDescriptionTo:output withIndent:indent]; [self.unknownFields writeDescriptionTo:output withIndent:indent];
} }
- (void) storeInDictionary:(NSMutableDictionary *)dictionary { - (void) storeInDictionary:(NSMutableDictionary *)dictionary {
@ -3607,14 +3607,14 @@ static OWSSignalServiceProtosDataMessageQuoteQuotedAttachment* defaultOWSSignalS
if (self.hasFileName) { if (self.hasFileName) {
[dictionary setObject: self.fileName forKey: @"fileName"]; [dictionary setObject: self.fileName forKey: @"fileName"];
} }
if (self.hasFlags) {
[dictionary setObject: [NSNumber numberWithInteger:self.flags] forKey: @"flags"];
}
if (self.hasThumbnail) { if (self.hasThumbnail) {
NSMutableDictionary *messageDictionary = [NSMutableDictionary dictionary]; NSMutableDictionary *messageDictionary = [NSMutableDictionary dictionary];
[self.thumbnail storeInDictionary:messageDictionary]; [self.thumbnail storeInDictionary:messageDictionary];
[dictionary setObject:[NSDictionary dictionaryWithDictionary:messageDictionary] forKey:@"thumbnail"]; [dictionary setObject:[NSDictionary dictionaryWithDictionary:messageDictionary] forKey:@"thumbnail"];
} }
if (self.hasFlags) {
[dictionary setObject: [NSNumber numberWithInteger:self.flags] forKey: @"flags"];
}
[self.unknownFields storeInDictionary:dictionary]; [self.unknownFields storeInDictionary:dictionary];
} }
- (BOOL) isEqual:(id)other { - (BOOL) isEqual:(id)other {
@ -3630,10 +3630,10 @@ static OWSSignalServiceProtosDataMessageQuoteQuotedAttachment* defaultOWSSignalS
(!self.hasContentType || [self.contentType isEqual:otherMessage.contentType]) && (!self.hasContentType || [self.contentType isEqual:otherMessage.contentType]) &&
self.hasFileName == otherMessage.hasFileName && self.hasFileName == otherMessage.hasFileName &&
(!self.hasFileName || [self.fileName isEqual:otherMessage.fileName]) && (!self.hasFileName || [self.fileName isEqual:otherMessage.fileName]) &&
self.hasFlags == otherMessage.hasFlags &&
(!self.hasFlags || self.flags == otherMessage.flags) &&
self.hasThumbnail == otherMessage.hasThumbnail && self.hasThumbnail == otherMessage.hasThumbnail &&
(!self.hasThumbnail || [self.thumbnail isEqual:otherMessage.thumbnail]) && (!self.hasThumbnail || [self.thumbnail isEqual:otherMessage.thumbnail]) &&
self.hasFlags == otherMessage.hasFlags &&
(!self.hasFlags || self.flags == otherMessage.flags) &&
(self.unknownFields == otherMessage.unknownFields || (self.unknownFields != nil && [self.unknownFields isEqual:otherMessage.unknownFields])); (self.unknownFields == otherMessage.unknownFields || (self.unknownFields != nil && [self.unknownFields isEqual:otherMessage.unknownFields]));
} }
- (NSUInteger) hash { - (NSUInteger) hash {
@ -3644,12 +3644,12 @@ static OWSSignalServiceProtosDataMessageQuoteQuotedAttachment* defaultOWSSignalS
if (self.hasFileName) { if (self.hasFileName) {
hashCode = hashCode * 31 + [self.fileName hash]; hashCode = hashCode * 31 + [self.fileName hash];
} }
if (self.hasFlags) {
hashCode = hashCode * 31 + [[NSNumber numberWithInteger:self.flags] hash];
}
if (self.hasThumbnail) { if (self.hasThumbnail) {
hashCode = hashCode * 31 + [self.thumbnail hash]; hashCode = hashCode * 31 + [self.thumbnail hash];
} }
if (self.hasFlags) {
hashCode = hashCode * 31 + [[NSNumber numberWithInteger:self.flags] hash];
}
hashCode = hashCode * 31 + [self.unknownFields hash]; hashCode = hashCode * 31 + [self.unknownFields hash];
return hashCode; return hashCode;
} }
@ -3716,12 +3716,12 @@ NSString *NSStringFromOWSSignalServiceProtosDataMessageQuoteQuotedAttachmentFlag
if (other.hasFileName) { if (other.hasFileName) {
[self setFileName:other.fileName]; [self setFileName:other.fileName];
} }
if (other.hasFlags) {
[self setFlags:other.flags];
}
if (other.hasThumbnail) { if (other.hasThumbnail) {
[self mergeThumbnail:other.thumbnail]; [self mergeThumbnail:other.thumbnail];
} }
if (other.hasFlags) {
[self setFlags:other.flags];
}
[self mergeUnknownFields:other.unknownFields]; [self mergeUnknownFields:other.unknownFields];
return self; return self;
} }
@ -3751,11 +3751,7 @@ NSString *NSStringFromOWSSignalServiceProtosDataMessageQuoteQuotedAttachmentFlag
[self setFileName:[input readString]]; [self setFileName:[input readString]];
break; break;
} }
case 24: { case 26: {
[self setFlags:[input readUInt32]];
break;
}
case 34: {
OWSSignalServiceProtosAttachmentPointerBuilder* subBuilder = [OWSSignalServiceProtosAttachmentPointer builder]; OWSSignalServiceProtosAttachmentPointerBuilder* subBuilder = [OWSSignalServiceProtosAttachmentPointer builder];
if (self.hasThumbnail) { if (self.hasThumbnail) {
[subBuilder mergeFrom:self.thumbnail]; [subBuilder mergeFrom:self.thumbnail];
@ -3764,6 +3760,10 @@ NSString *NSStringFromOWSSignalServiceProtosDataMessageQuoteQuotedAttachmentFlag
[self setThumbnail:[subBuilder buildPartial]]; [self setThumbnail:[subBuilder buildPartial]];
break; break;
} }
case 32: {
[self setFlags:[input readUInt32]];
break;
}
} }
} }
} }
@ -3799,22 +3799,6 @@ NSString *NSStringFromOWSSignalServiceProtosDataMessageQuoteQuotedAttachmentFlag
resultQuotedAttachment.fileName = @""; resultQuotedAttachment.fileName = @"";
return self; return self;
} }
- (BOOL) hasFlags {
return resultQuotedAttachment.hasFlags;
}
- (UInt32) flags {
return resultQuotedAttachment.flags;
}
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setFlags:(UInt32) value {
resultQuotedAttachment.hasFlags = YES;
resultQuotedAttachment.flags = value;
return self;
}
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearFlags {
resultQuotedAttachment.hasFlags = NO;
resultQuotedAttachment.flags = 0;
return self;
}
- (BOOL) hasThumbnail { - (BOOL) hasThumbnail {
return resultQuotedAttachment.hasThumbnail; return resultQuotedAttachment.hasThumbnail;
} }
@ -3845,6 +3829,22 @@ NSString *NSStringFromOWSSignalServiceProtosDataMessageQuoteQuotedAttachmentFlag
resultQuotedAttachment.thumbnail = [OWSSignalServiceProtosAttachmentPointer defaultInstance]; resultQuotedAttachment.thumbnail = [OWSSignalServiceProtosAttachmentPointer defaultInstance];
return self; return self;
} }
- (BOOL) hasFlags {
return resultQuotedAttachment.hasFlags;
}
- (UInt32) flags {
return resultQuotedAttachment.flags;
}
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) setFlags:(UInt32) value {
resultQuotedAttachment.hasFlags = YES;
resultQuotedAttachment.flags = value;
return self;
}
- (OWSSignalServiceProtosDataMessageQuoteQuotedAttachmentBuilder*) clearFlags {
resultQuotedAttachment.hasFlags = NO;
resultQuotedAttachment.flags = 0;
return self;
}
@end @end
@interface OWSSignalServiceProtosDataMessageQuoteBuilder() @interface OWSSignalServiceProtosDataMessageQuoteBuilder()

@ -3,8 +3,8 @@
PROTOC=protoc \ PROTOC=protoc \
--plugin=/usr/local/bin/proto-gen-objc \ --plugin=/usr/local/bin/proto-gen-objc \
--proto_path="${HOME}/src/WhisperSystems/protobuf-objc/src/compiler/" \ --proto_path="${HOME}/src/Signal/protobuf-objc/src/compiler/" \
--proto_path="${HOME}/src/WhisperSystems/protobuf-objc/src/compiler/google/protobuf/" \ --proto_path="${HOME}/src/Signal/protobuf-objc/src/compiler/google/protobuf/" \
--proto_path='./' --proto_path='./'
all: webrtc_data_proto all: webrtc_data_proto

Loading…
Cancel
Save