mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 05:52:58 +00:00
56 lines
1.3 KiB
Objective-C
56 lines
1.3 KiB
Objective-C
//
|
|
// MPPluginManager.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 16/07/15.
|
|
// Copyright (c) 2015 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPPluginManager.h"
|
|
|
|
#import "MPDocument.h"
|
|
|
|
#import "KeePassKit/KeePassKit.h"
|
|
|
|
@implementation MPPluginManager
|
|
|
|
+ (instancetype)sharedManager {
|
|
static MPPluginManager *instance;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
instance = [[MPPluginManager alloc] _init];
|
|
});
|
|
return instance;
|
|
}
|
|
|
|
- (instancetype)init {
|
|
return nil;
|
|
}
|
|
|
|
- (instancetype)_init {
|
|
self = [super init];
|
|
return self;
|
|
}
|
|
|
|
- (NSArray *)filteredEntriesUsingBlock:(NodeMatchBlock)matchBlock {
|
|
NSArray *currentDocuments = [[NSDocumentController sharedDocumentController] documents];
|
|
NSMutableArray *entries = [[NSMutableArray alloc] initWithCapacity:200];
|
|
for(MPDocument *document in currentDocuments) {
|
|
if(document.tree) {
|
|
[entries addObjectsFromArray:document.tree.allEntries];
|
|
}
|
|
}
|
|
NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) { return matchBlock(evaluatedObject); }];
|
|
return [[NSArray alloc] initWithArray:[entries filteredArrayUsingPredicate:predicate] copyItems:YES];
|
|
}
|
|
|
|
- (NSArray *)filteredGroupsUsingBlock:(NodeMatchBlock)matchBlock {
|
|
return nil;
|
|
}
|
|
|
|
- (void)_loadPlugins {
|
|
|
|
}
|
|
|
|
@end
|