mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
#import "TLUpdates$modernUpdateShortChatMessage.h"
|
|
|
|
#import "TLMetaClassStore.h"
|
|
|
|
//updateShortChatMessage flags:# unread:flags.0?true out:flags.1?true mentioned:flags.4?true media_unread:flags.5?true id:int from_id:int chat_id:int message:string pts:int pts_count:int date:int fwd_from_id:flags.2?Peer fwd_date:flags.2?int via_bot_id:flags.8?int reply_to_msg_id:flags.3?int entities:flags.7?Vector<MessageEntity> = Updates
|
|
|
|
@implementation TLUpdates$modernUpdateShortChatMessage
|
|
|
|
- (void)TLserialize:(NSOutputStream *)__unused os
|
|
{
|
|
TGLog(@"***** TLUpdates$modernUpdateShortMessage serialization not supported");
|
|
}
|
|
|
|
- (id<TLObject>)TLdeserialize:(NSInputStream *)is signature:(int32_t)__unused signature environment:(id<TLSerializationEnvironment>)__unused environment context:(TLSerializationContext *)__unused context error:(__autoreleasing NSError **)__unused error
|
|
{
|
|
TLUpdates$modernUpdateShortChatMessage *result = [[TLUpdates$modernUpdateShortChatMessage alloc] init];
|
|
|
|
result.flags = [is readInt32];
|
|
|
|
result.n_id = [is readInt32];
|
|
result.from_id = [is readInt32];
|
|
result.chat_id = [is readInt32];
|
|
|
|
result.message = [is readString];
|
|
|
|
result.pts = [is readInt32];
|
|
result.pts_count = [is readInt32];
|
|
|
|
result.date = [is readInt32];
|
|
|
|
if (result.flags & (1 << 2))
|
|
{
|
|
int32_t signature = [is readInt32];
|
|
result.fwd_header = TLMetaClassStore::constructObject(is, signature, environment, nil, error);
|
|
}
|
|
|
|
if (result.flags & (1 << 11)) {
|
|
result.via_bot_id = [is readInt32];
|
|
}
|
|
|
|
if (result.flags & (1 << 3))
|
|
result.reply_to_msg_id = [is readInt32];
|
|
|
|
if (result.flags & (1 << 7))
|
|
{
|
|
__unused int32_t entitiesSignature = [is readInt32];
|
|
int32_t count = [is readInt32];
|
|
NSMutableArray *entities = [[NSMutableArray alloc] init];
|
|
for (int32_t i = 0; i < count; i++)
|
|
{
|
|
int32_t signature = [is readInt32];
|
|
id entity = TLMetaClassStore::constructObject(is, signature, environment, nil, error);
|
|
if (entity != nil)
|
|
[entities addObject:entity];
|
|
}
|
|
result.entities = entities;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
@end
|