CCSection.m 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. //
  2. // CCSection.m
  3. // Nextcloud iOS
  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 "CCExifGeo.h"
  25. #import "NCBridgeSwift.h"
  26. @implementation CCSectionDataSourceMetadata
  27. - (id)init {
  28. self = [super init];
  29. _allRecordsDataSource = [[NSMutableDictionary alloc] init];
  30. _allEtag = [[NSMutableArray alloc] init];
  31. _sections = [[NSMutableArray alloc] init];
  32. _sectionArrayRow = [[NSMutableDictionary alloc] init];
  33. _fileIDIndexPath = [[NSMutableDictionary alloc] init];
  34. _image = 0;
  35. _video = 0;
  36. _directories = 0;
  37. _files = 0;
  38. _totalSize = 0;
  39. return self;
  40. }
  41. - (id)copyWithZone: (NSZone *) zone
  42. {
  43. CCSectionDataSourceMetadata *sectionDataSourceMetadata = [[CCSectionDataSourceMetadata allocWithZone: zone] init];
  44. [sectionDataSourceMetadata setAllRecordsDataSource: self.allRecordsDataSource];
  45. [sectionDataSourceMetadata setAllEtag: self.allEtag];
  46. [sectionDataSourceMetadata setSections: self.sections];
  47. [sectionDataSourceMetadata setSectionArrayRow: self.sectionArrayRow];
  48. [sectionDataSourceMetadata setFileIDIndexPath: self.fileIDIndexPath];
  49. [sectionDataSourceMetadata setVideo: self.video];
  50. [sectionDataSourceMetadata setImage: self.image];
  51. [sectionDataSourceMetadata setDirectories: self.directories];
  52. [sectionDataSourceMetadata setFiles: self.files];
  53. [sectionDataSourceMetadata setTotalSize: self.totalSize];
  54. return sectionDataSourceMetadata;
  55. }
  56. @end
  57. @implementation CCSectionMetadata
  58. //
  59. // orderByField : nil, date, typeFile
  60. //
  61. + (CCSectionDataSourceMetadata *)creataDataSourseSectionMetadata:(NSArray *)records listProgressMetadata:(NSMutableDictionary *)listProgressMetadata groupByField:(NSString *)groupByField activeAccount:(NSString *)activeAccount
  62. {
  63. id dataSection;
  64. long counterSessionDownload = 0;
  65. long counterSessionUpload = 0;
  66. NSMutableArray *copyRecords = [NSMutableArray new];
  67. NSMutableDictionary *dictionaryEtagMetadataForIndexPath = [NSMutableDictionary new];
  68. NSMutableArray *fileInUpload = [NSMutableArray new];
  69. CCSectionDataSourceMetadata *sectionDataSource = [CCSectionDataSourceMetadata new];
  70. /*
  71. Initialize datasource
  72. */
  73. NSInteger numDirectory = 0;
  74. NSInteger numDirectoryFavorite = 0;
  75. BOOL directoryOnTop = [CCUtility getDirectoryOnTop];
  76. NSMutableArray *metadataFilesFavorite = [NSMutableArray new];
  77. // fileName in Upload [PickerFileProvider]
  78. for (tableMetadata* metadata in records) {
  79. if ([metadata.session containsString:@"upload"]) {
  80. [fileInUpload addObject:metadata.fileName];
  81. }
  82. }
  83. for (tableMetadata* metadata in records) {
  84. // remove duplicate in Upload [PickerFileProvider]
  85. if (fileInUpload.count > 0 && ![metadata.session containsString:@"upload"]) {
  86. if ([fileInUpload containsObject:metadata.fileName])
  87. continue;
  88. }
  89. if ([listProgressMetadata objectForKey:metadata.fileID] && [groupByField isEqualToString:@"session"]) {
  90. [copyRecords insertObject:metadata atIndex:0];
  91. } else {
  92. if (metadata.directory && directoryOnTop) {
  93. if (metadata.favorite) {
  94. [copyRecords insertObject:metadata atIndex:numDirectoryFavorite++];
  95. numDirectory++;
  96. } else {
  97. [copyRecords insertObject:metadata atIndex:numDirectory++];
  98. }
  99. } else {
  100. if (metadata.favorite && directoryOnTop) {
  101. [metadataFilesFavorite addObject:metadata];
  102. } else {
  103. [copyRecords addObject:metadata];
  104. }
  105. }
  106. }
  107. }
  108. if (directoryOnTop && metadataFilesFavorite.count > 0)
  109. [copyRecords insertObjects:metadataFilesFavorite atIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(numDirectoryFavorite, metadataFilesFavorite.count)]]; // Add Favorite files at end of favorite folders
  110. /*
  111. sectionArrayRow
  112. */
  113. for (tableMetadata *metadata in copyRecords) {
  114. // how many download underway (only for groupSession)
  115. if ([metadata.session containsString:@"download"] && [groupByField isEqualToString:@"session"]) {
  116. counterSessionDownload++;
  117. if (counterSessionDownload > k_maxConcurrentOperationDownloadUpload)
  118. continue;
  119. }
  120. // how many upload underway (only for groupSession)
  121. if ([metadata.session containsString:@"upload"] && [groupByField isEqualToString:@"session"]) {
  122. counterSessionUpload++;
  123. if (counterSessionUpload > k_maxConcurrentOperationDownloadUpload)
  124. continue;
  125. }
  126. if ([metadata.session length] > 0 && [groupByField isEqualToString:@"session"]) {
  127. if ([metadata.session containsString:@"wwan"]) dataSection = [@"." stringByAppendingString:metadata.session];
  128. else dataSection = metadata.session;
  129. }
  130. else if ([groupByField isEqualToString:@"none"]) dataSection = @"_none_";
  131. else if ([groupByField isEqualToString:@"date"]) dataSection = [CCUtility datetimeWithOutTime:metadata.date];
  132. else if ([groupByField isEqualToString:@"alphabetic"]) dataSection = [[metadata.fileNameView substringToIndex:1] uppercaseString];
  133. else if ([groupByField isEqualToString:@"typefile"]) dataSection = metadata.typeFile;
  134. if (!dataSection) dataSection = @"_none_";
  135. NSMutableArray *metadatas = [sectionDataSource.sectionArrayRow objectForKey:dataSection];
  136. if (metadatas) {
  137. // ROW ++
  138. [metadatas addObject:metadata.fileID];
  139. [sectionDataSource.sectionArrayRow setObject:metadatas forKey:dataSection];
  140. } else {
  141. // SECTION ++
  142. metadatas = [[NSMutableArray alloc] initWithObjects:metadata.fileID, nil];
  143. [sectionDataSource.sectionArrayRow setObject:metadatas forKey:dataSection];
  144. }
  145. if (metadata && [metadata.fileID length] > 0)
  146. [dictionaryEtagMetadataForIndexPath setObject:metadata forKey:metadata.fileID];
  147. }
  148. /*
  149. Sections order
  150. */
  151. BOOL ascending;
  152. if ([groupByField isEqualToString:@"date"]) ascending = NO;
  153. else ascending = YES;
  154. NSArray *sortSections = [[sectionDataSource.sectionArrayRow allKeys] sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
  155. if ([groupByField isEqualToString:@"session"]) {
  156. if ([obj1 isKindOfClass:[NSString class]] && [obj1 containsString:@"download"]) return NSOrderedAscending;
  157. if ([obj2 isKindOfClass:[NSString class]] && [obj2 containsString:@"download"]) return NSOrderedDescending;
  158. if ([obj1 isKindOfClass:[NSString class]] && [obj1 containsString:@"upload"]) return NSOrderedAscending;
  159. if ([obj2 isKindOfClass:[NSString class]] && [obj2 containsString:@"upload"]) return NSOrderedDescending;
  160. }
  161. // Directory at Top
  162. if ([obj1 isKindOfClass:[NSString class]] && [obj1 containsString: k_metadataTypeFile_directory]) return NSOrderedAscending;
  163. if ([obj2 isKindOfClass:[NSString class]] && [obj2 containsString: k_metadataTypeFile_directory]) return NSOrderedDescending;
  164. if (ascending) return [obj1 compare:obj2];
  165. else return [obj2 compare:obj1];
  166. }];
  167. /*
  168. create allEtag, allRecordsDataSource, fileIDIndexPath, section
  169. */
  170. NSInteger indexSection = 0;
  171. NSInteger indexRow = 0;
  172. for (id section in sortSections) {
  173. [sectionDataSource.sections addObject:section];
  174. NSArray *rows = [sectionDataSource.sectionArrayRow objectForKey:section];
  175. for (NSString *fileID in rows) {
  176. tableMetadata *metadata = [dictionaryEtagMetadataForIndexPath objectForKey:fileID];
  177. if (metadata.fileID) {
  178. [sectionDataSource.allEtag addObject:metadata.fileID];
  179. [sectionDataSource.allRecordsDataSource setObject:metadata forKey:metadata.fileID];
  180. [sectionDataSource.fileIDIndexPath setObject:[NSIndexPath indexPathForRow:indexRow inSection:indexSection] forKey:metadata.fileID];
  181. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  182. sectionDataSource.image++;
  183. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  184. sectionDataSource.video++;
  185. if (metadata.directory)
  186. sectionDataSource.directories++;
  187. else {
  188. sectionDataSource.files++;
  189. sectionDataSource.totalSize = sectionDataSource.totalSize + metadata.size;
  190. }
  191. indexRow++;
  192. }
  193. }
  194. indexSection++;
  195. indexRow = 0;
  196. }
  197. /*
  198. end
  199. */
  200. return sectionDataSource;
  201. }
  202. + (void)removeAllObjectsSectionDataSource:(CCSectionDataSourceMetadata *)sectionDataSource
  203. {
  204. [sectionDataSource.allRecordsDataSource removeAllObjects];
  205. [sectionDataSource.allEtag removeAllObjects];
  206. [sectionDataSource.sections removeAllObjects];
  207. [sectionDataSource.sectionArrayRow removeAllObjects];
  208. [sectionDataSource.fileIDIndexPath removeAllObjects];
  209. sectionDataSource.image = 0;
  210. sectionDataSource.video = 0;
  211. sectionDataSource.directories = 0;
  212. sectionDataSource.files = 0;
  213. sectionDataSource.totalSize = 0;
  214. }
  215. @end
  216. @implementation CCSectionDataSourceActivity
  217. - (id)init {
  218. self = [super init];
  219. _sections = [NSMutableArray new];
  220. _sectionArrayRow = [NSMutableDictionary new];
  221. return self;
  222. }
  223. @end
  224. @implementation CCSectionActivity
  225. + (CCSectionDataSourceActivity *)creataDataSourseSectionActivity:(NSArray *)records activeAccount:(NSString *)activeAccount
  226. {
  227. CCSectionDataSourceActivity *sectionDataSource = [CCSectionDataSourceActivity new];
  228. NSDate *oldDate = [NSDate date];
  229. for (tableActivity *record in records) {
  230. NSDateComponents* comps = [[NSCalendar currentCalendar] components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:record.date];
  231. NSDate *date = [[NSCalendar currentCalendar] dateFromComponents:comps];
  232. if ([oldDate compare:date] != NSOrderedSame) {
  233. [sectionDataSource.sections addObject:date];
  234. oldDate = date;
  235. }
  236. NSMutableArray *activities = [sectionDataSource.sectionArrayRow objectForKey:date];
  237. if (activities) {
  238. // ROW ++
  239. [activities addObject:record];
  240. [sectionDataSource.sectionArrayRow setObject:activities forKey:date];
  241. } else {
  242. // SECTION ++
  243. activities = [[NSMutableArray alloc] initWithObjects:record, nil];
  244. [sectionDataSource.sectionArrayRow setObject:activities forKey:date];
  245. }
  246. }
  247. return sectionDataSource;
  248. }
  249. @end