CCSection.m 11 KB

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