我有以下代码来模拟我实验室的工艺流程。借此计时器将新项目添加到 NSMutablearray。如何获得 while [array count] !=0 循环来识别新添加的内容?
还是有更好的方法?
我正在使用 GCD 块来模拟并行过程。HEFTBooker 对象只需要一个样本编号,然后等待定义的时间段,然后将其自身“标记”为空闲以处理另一个样本。
-(void)runBookingIn:(id)sender {
HEFTLaboratoryUnit *__labUnit = [[HEFTLaboratoryUnit alloc]init];
self.labUnit = __labUnit;
NSMutableArray *sampleNumbers = [[NSMutableArray alloc]init];
// Speed factor speeds up time for modelling i.e. 10 = 10 x normal time.
NSInteger speedFactor = 10;
// Sample arrival rate into laboratory per hour
NSInteger sampleArrivalRate = 50;
__weak id weakSelf = self;
self.timer = [RNTimer repeatingTimerWithTimeInterval:sampleArrivalRate/speedFactor block:^{
[weakSelf addNewSamplesToQueue];
}];
for (int i = 1; i <= 10; i++) {
[sampleNumbers addObject:[NSNumber numberWithInteger:i]];
}
self.labUnit.samplesToBeBookedIn = sampleNumbers;
NSMutableArray *bookerIns = [[NSMutableArray alloc]init];
HEFTBookerIn *webster = [[HEFTBookerIn alloc]init];
webster.bookingInRate = 60;
webster.name=@"Webster";
[bookerIns addObject:webster];
HEFTBookerIn *duffy = [[HEFTBookerIn alloc]init];
duffy.bookingInRate = 30;
duffy.name=@"Duffy";
[bookerIns addObject:duffy];
HEFTBookerIn *marrington = [[HEFTBookerIn alloc]init];
marrington.bookingInRate = 40;
marrington.name=@"Marrington";
[bookerIns addObject:marrington];
HEFTBookerIn *chatha = [[HEFTBookerIn alloc]init];
chatha.bookingInRate = 10;
chatha.name=@"Kam";
[bookerIns addObject:chatha];
int i = 0;
long countSamples;
countSamples = [self.labUnit.samplesToBeBookedIn count];
// loop sample numbers
dispatch_queue_t queue;
queue = dispatch_queue_create("com.HEFT.BookerQueue", DISPATCH_QUEUE_SERIAL);
dispatch_queue_t arrivalsQueue;
arrivalsQueue = dispatch_queue_create("com.HEFT.ArrivalsQueue", DISPATCH_QUEUE_SERIAL);
while ([self.labUnit.samplesToBeBookedIn count] != 0 )
{
NSInteger sampleNo = [[self.labUnit.samplesToBeBookedIn objectAtIndex:i] integerValue];
long count = [bookerIns count];
int counter = 0;
//loop over booker ins
int j;
for (j=0; j <count ; j++) {
HEFTBookerIn *booker = [bookerIns objectAtIndex:counter];
if (booker.free == YES){
dispatch_sync(queue, ^{
[booker bookingIn:sampleNo :speedFactor];
[self.labUnit.samplesToBeBookedIn removeObjectAtIndex:i];
});
break;
}
else{
counter ++;
}
}
}
}
-(void) addNewSamplesToQueue{
NSLog(@"More Samples Arriving");
for (int i = 1; i <= 10; i++) {
[self.labUnit.samplesToBeBookedIn addObject:[NSNumber numberWithInteger:i]];
}
}