2

初めまして:明けましておめでとうございます:-)

私がやろうとしていること

Core Data の 2 つの属性を分割し、これらの分割の平均を計算しようとしています。属性は、キー パス ( eurusd、 などaud) によって指定されます。

例: 次のデータ セットがあります。

date         eur   usd    aud
------------------------------
2010-01-01   0.5   1.0    1.5
2010-01-02   0.6   1.1    1.6
2010-01-03   0.4   1.0    1.3

2 つの属性、たとえば eur / usd を次の結果で分割します...

divide eur / usd:
------------------
2010-01-01   0.5
2010-01-02   0.54
2010-01-03   0.4

...次に、これらの数値の平均を計算します(0.5 + 0.54 + 0.4)/3 = 0.48

私のコード

これらの計算を Core Data で直接実行したいので、次の式とフェッチ リクエストを作成しました。

NSExpression *fromCurrencyPathExpression = [NSExpression
    expressionForKeyPath:fromCurrency.lowercaseString];
NSExpression *toCurrencyPathExpression   = [NSExpression
    expressionForKeyPath:toCurrency.lowercaseString]; 
NSExpression *divisionExpression = [NSExpression
   expressionForFunction:@"divide:by:"
   arguments:@[fromCurrencyPathExpression,
   toCurrencyPathExpression]];
    
NSExpression *averageExpression = [NSExpression expressionForFunction:@"average:"
   arguments:@[divisionExpression]];

NSString *expressionName = @"averageRate";
NSExpressionDescription *expressionDescription = 
   [[NSExpressionDescription alloc] init];
expressionDescription.name = expressionName;
expressionDescription.expression = averageExpression;
expressionDescription.expressionResultType= NSDoubleAttributeType;

NSFetchRequest *request = [NSFetchRequest 
   fetchRequestWithEntityName:NSStringFromClass([self class])];
NSPredicate *predicate =
   [NSPredicate predicateWithFormat:@"date >= %@ AND date <= %@",startDate,fiscalPeriod.endDate];
    
request.predicate = predicate;
request.propertiesToFetch = @[expressionDescription];
request.resultType = NSDictionaryResultType;
     
NSError *error;
NSArray *results = [context 
    executeFetchRequest:request error:&error];

問題

ただし、アプリを実行すると、次のエラー メッセージでクラッシュします。

Unsupported argument to sum : (
    "eur / usd"

コードの何が問題になっていますか? 2 つの計算を連鎖させ、Core Data で直接実行するにはどうすればよいですか?

ありがとうございました!

4

1 に答える 1

5

のような「コレクション」関数式は@average、キー パスでのみ使用できますが、 として使用する場合、他の一般的な式と組み合わせて使用​​できないようpropertiesToFetchです。私はそれについての参照を持っていませんが、他の人も気づいた問題です:

したがって、次の 2 つの手順で進めることができます。まず、すべての除算の結果を含む配列を返すフェッチ リクエストを実行します。

NSExpression *fromCurrencyPathExpression = [NSExpression
                                            expressionForKeyPath:@"eur"];
NSExpression *toCurrencyPathExpression   = [NSExpression
                                            expressionForKeyPath:@"usd"];
NSExpression *divisionExpression = [NSExpression
                                    expressionForFunction:@"divide:by:"
                                    arguments:@[fromCurrencyPathExpression,
                                    toCurrencyPathExpression]];

NSString *expressionName = @"ratio";
NSExpressionDescription *expressionDescription =
[[NSExpressionDescription alloc] init];
expressionDescription.name = expressionName;
expressionDescription.expression = divisionExpression;
expressionDescription.expressionResultType= NSDoubleAttributeType;

NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Entity"];

request.propertiesToFetch = @[expressionDescription];
request.resultType = NSDictionaryResultType;

NSError *error;
NSArray *ratios = [context executeFetchRequest:request error:&error];

結果は辞書の配列です:

(lldb) po ratios
(NSArray *) $0 = 0x00000001001170f0 <_PFArray 0x1001170f0>(
{
    ratio = "0.5454545454545454";
},
{
    ratio = "0.4";
},
{
    ratio = "0.5";
}
)

また、「-com.apple.CoreData.SQLDebug 1」オプションを使用すると、分割が SQLite レベルで既に実行されていることがわかります。

sql: SELECT  t0.ZEUR /  t0.ZUSD FROM ZENTITY t0

次に、キー値コーディングを使用して、メモリ内のすべての比率の平均を計算できます。

NSNumber *average = [ratios valueForKeyPath:@"@avg.ratio"];

結果は

(lldb) po average
(NSNumber *) $0 = 0x000000010012fd60 0.4818181818181818
于 2013-01-10T20:46:34.977 に答える