CCSection.m 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. //
  2. // CCSection.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/02/16.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCSection.h"
  24. #import "CCCoreData.h"
  25. #import "CCExifGeo.h"
  26. #import "NCBridgeSwift.h"
  27. @implementation CCSectionDataSourceMetadata
  28. - (id)init {
  29. self = [super init];
  30. _allRecordsDataSource = [[NSMutableDictionary alloc] init];
  31. _allFileID = [[NSMutableArray alloc] init];
  32. _sections = [[NSMutableArray alloc] init];
  33. _sectionArrayRow = [[NSMutableDictionary alloc] init];
  34. _fileIDIndexPath = [[NSMutableDictionary alloc] init];
  35. _image = 0;
  36. _video = 0;
  37. _directories = 0;
  38. _files = 0;
  39. _totalSize = 0;
  40. return self;
  41. }
  42. @end
  43. @implementation CCSectionMetadata
  44. //
  45. // orderByField : nil, date, typeFile
  46. //
  47. + (CCSectionDataSourceMetadata *)creataDataSourseSectionMetadata:(NSArray *)records listProgressMetadata:(NSMutableDictionary *)listProgressMetadata groupByField:(NSString *)groupByField replaceDateToExifDate:(BOOL)replaceDateToExifDate activeAccount:(NSString *)activeAccount
  48. {
  49. id dataSection;
  50. long counterSessionDownload = 0;
  51. long counterSessionUpload = 0;
  52. NSMutableArray *copyRecords = [NSMutableArray new];
  53. NSMutableDictionary *dictionaryFileIDMetadataForIndexPath = [NSMutableDictionary new];
  54. CCSectionDataSourceMetadata *sectionDataSource = [CCSectionDataSourceMetadata new];
  55. /*
  56. Initialize datasource
  57. */
  58. NSInteger numDirectory = 0;
  59. BOOL directoryOnTop = [CCUtility getDirectoryOnTop];
  60. for (id record in records) {
  61. tableMetadata *metadata = [tableMetadata new];
  62. // verify type of class
  63. if ([record isKindOfClass:[TableMetadata class]])
  64. metadata = [CCCoreData insertEntityInMetadata:record];
  65. else
  66. metadata = (tableMetadata *)record;
  67. // if exists replace date with exif date
  68. /*
  69. if (replaceDateToExifDate) {
  70. TableLocalFile *localFile = [CCCoreData getLocalFileWithFileID:metadata.fileID activeAccount:activeAccount];
  71. if (localFile.exifDate)
  72. metadata.date = localFile.exifDate;
  73. }
  74. */
  75. if ([listProgressMetadata objectForKey:metadata.fileID] && [groupByField isEqualToString:@"session"]) {
  76. [copyRecords insertObject:metadata atIndex:0];
  77. } else {
  78. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_directory] && directoryOnTop) {
  79. [copyRecords insertObject:metadata atIndex:numDirectory++];
  80. } else {
  81. [copyRecords addObject:metadata];
  82. }
  83. }
  84. }
  85. /*
  86. sectionArrayRow
  87. */
  88. for (tableMetadata *metadata in copyRecords) {
  89. // how many download underway (only for groupSession)
  90. if ([metadata.session containsString:@"download"] && [groupByField isEqualToString:@"session"]) {
  91. counterSessionDownload++;
  92. if (counterSessionDownload > k_maxConcurrentOperationDownloadUpload)
  93. continue;
  94. }
  95. // how many upload underway (only for groupSession)
  96. if ([metadata.session containsString:@"upload"] && [groupByField isEqualToString:@"session"]) {
  97. counterSessionUpload++;
  98. if (counterSessionUpload > k_maxConcurrentOperationDownloadUpload)
  99. continue;
  100. }
  101. if ([metadata.session length] > 0 && [groupByField isEqualToString:@"session"]) {
  102. if ([metadata.session containsString:@"wwan"]) dataSection = [@"." stringByAppendingString:metadata.session];
  103. else dataSection = metadata.session;
  104. }
  105. else if ([groupByField isEqualToString:@"none"]) dataSection = @"_none_";
  106. else if ([groupByField isEqualToString:@"date"]) dataSection = [CCUtility datetimeWithOutTime:metadata.date];
  107. else if ([groupByField isEqualToString:@"alphabetic"]) dataSection = [[metadata.fileNamePrint substringToIndex:1] uppercaseString];
  108. else if ([groupByField isEqualToString:@"typefile"]) dataSection = metadata.typeFile;
  109. if (!dataSection) dataSection = @"_none_";
  110. NSMutableArray *metadatas = [sectionDataSource.sectionArrayRow objectForKey:dataSection];
  111. if (metadatas) {
  112. // ROW ++
  113. [metadatas addObject:metadata.fileID];
  114. [sectionDataSource.sectionArrayRow setObject:metadatas forKey:dataSection];
  115. } else {
  116. // SECTION ++
  117. metadatas = [[NSMutableArray alloc] initWithObjects:metadata.fileID, nil];
  118. [sectionDataSource.sectionArrayRow setObject:metadatas forKey:dataSection];
  119. }
  120. if (metadata && [metadata.fileID length] > 0)
  121. [dictionaryFileIDMetadataForIndexPath setObject:metadata forKey:metadata.fileID];
  122. }
  123. /*
  124. Sections order
  125. */
  126. BOOL ascending;
  127. if (replaceDateToExifDate || [groupByField isEqualToString:@"date"]) ascending = NO;
  128. else ascending = YES;
  129. NSArray *sortSections = [[sectionDataSource.sectionArrayRow allKeys] sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
  130. if ([groupByField isEqualToString:@"session"]) {
  131. if ([obj1 isKindOfClass:[NSString class]] && [obj1 containsString:@"download"]) return NSOrderedAscending;
  132. if ([obj2 isKindOfClass:[NSString class]] && [obj2 containsString:@"download"]) return NSOrderedDescending;
  133. if ([obj1 isKindOfClass:[NSString class]] && [obj1 containsString:@"upload"]) return NSOrderedAscending;
  134. if ([obj2 isKindOfClass:[NSString class]] && [obj2 containsString:@"upload"]) return NSOrderedDescending;
  135. }
  136. // Directory at Top
  137. if ([obj1 isKindOfClass:[NSString class]] && [obj1 containsString: k_metadataTypeFile_directory]) return NSOrderedAscending;
  138. if ([obj2 isKindOfClass:[NSString class]] && [obj2 containsString: k_metadataTypeFile_directory]) return NSOrderedDescending;
  139. if (ascending) return [obj1 compare:obj2];
  140. else return [obj2 compare:obj1];
  141. }];
  142. /*
  143. create allFileID, allRecordsDataSource, fileIDIndexPath, section
  144. */
  145. NSInteger indexSection = 0;
  146. NSInteger indexRow = 0;
  147. for (id section in sortSections) {
  148. [sectionDataSource.sections addObject:section];
  149. NSArray *rows = [sectionDataSource.sectionArrayRow objectForKey:section];
  150. for (NSString *fileID in rows) {
  151. tableMetadata *metadata = [dictionaryFileIDMetadataForIndexPath objectForKey:fileID];
  152. if (metadata.fileID) {
  153. [sectionDataSource.allFileID addObject:metadata.fileID];
  154. [sectionDataSource.allRecordsDataSource setObject:metadata forKey:metadata.fileID];
  155. [sectionDataSource.fileIDIndexPath setObject:[NSIndexPath indexPathForRow:indexRow inSection:indexSection] forKey:metadata.fileID];
  156. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  157. sectionDataSource.image++;
  158. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  159. sectionDataSource.video++;
  160. if (metadata.directory)
  161. sectionDataSource.directories++;
  162. else {
  163. sectionDataSource.files++;
  164. sectionDataSource.totalSize = sectionDataSource.totalSize + metadata.size;
  165. }
  166. indexRow++;
  167. }
  168. }
  169. indexSection++;
  170. indexRow = 0;
  171. }
  172. /*
  173. end
  174. */
  175. return sectionDataSource;
  176. }
  177. + (void)removeAllObjectsSectionDataSource:(CCSectionDataSourceMetadata *)sectionDataSource
  178. {
  179. [sectionDataSource.allRecordsDataSource removeAllObjects];
  180. [sectionDataSource.allFileID removeAllObjects];
  181. [sectionDataSource.sections removeAllObjects];
  182. [sectionDataSource.sectionArrayRow removeAllObjects];
  183. [sectionDataSource.fileIDIndexPath removeAllObjects];
  184. sectionDataSource.image = 0;
  185. sectionDataSource.video = 0;
  186. sectionDataSource.directories = 0;
  187. sectionDataSource.files = 0;
  188. sectionDataSource.totalSize = 0;
  189. }
  190. @end
  191. @implementation CCSectionDataSourceActivity
  192. - (id)init {
  193. self = [super init];
  194. _sections = [NSMutableArray new];
  195. _sectionArrayRow = [NSMutableDictionary new];
  196. return self;
  197. }
  198. @end
  199. @implementation CCSectionActivity
  200. + (CCSectionDataSourceActivity *)creataDataSourseSectionActivity:(NSArray *)records activeAccount:(NSString *)activeAccount
  201. {
  202. CCSectionDataSourceActivity *sectionDataSource = [CCSectionDataSourceActivity new];
  203. NSDate *oldDate = [NSDate date];
  204. for (tableActivity *record in records) {
  205. NSDateComponents* comps = [[NSCalendar currentCalendar] components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:record.date];
  206. NSDate *date = [[NSCalendar currentCalendar] dateFromComponents:comps];
  207. if ([oldDate compare:date] != NSOrderedSame) {
  208. [sectionDataSource.sections addObject:date];
  209. oldDate = date;
  210. }
  211. NSMutableArray *activities = [sectionDataSource.sectionArrayRow objectForKey:date];
  212. if (activities) {
  213. // ROW ++
  214. [activities addObject:record];
  215. [sectionDataSource.sectionArrayRow setObject:activities forKey:date];
  216. } else {
  217. // SECTION ++
  218. activities = [[NSMutableArray alloc] initWithObjects:record, nil];
  219. [sectionDataSource.sectionArrayRow setObject:activities forKey:date];
  220. }
  221. }
  222. return sectionDataSource;
  223. }
  224. @end