524 lines
20 KiB
Plaintext
524 lines
20 KiB
Plaintext
/*
|
|
* Copyright 2017 Google
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#import "Firestore/Source/API/FSTUserDataConverter.h"
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#import "FIRGeoPoint.h"
|
|
#import "FIRTimestamp.h"
|
|
|
|
#import "Firestore/Source/API/FIRDocumentReference+Internal.h"
|
|
#import "Firestore/Source/API/FIRFieldPath+Internal.h"
|
|
#import "Firestore/Source/API/FIRFieldValue+Internal.h"
|
|
#import "Firestore/Source/API/FIRFirestore+Internal.h"
|
|
#import "Firestore/Source/API/FIRGeoPoint+Internal.h"
|
|
#import "Firestore/Source/API/converters.h"
|
|
|
|
#include "Firestore/core/src/core/user_data.h"
|
|
#include "Firestore/core/src/model/database_id.h"
|
|
#include "Firestore/core/src/model/document_key.h"
|
|
#include "Firestore/core/src/model/field_mask.h"
|
|
#include "Firestore/core/src/model/field_path.h"
|
|
#include "Firestore/core/src/model/field_transform.h"
|
|
#include "Firestore/core/src/model/field_value.h"
|
|
#include "Firestore/core/src/model/precondition.h"
|
|
#include "Firestore/core/src/model/transform_operation.h"
|
|
#include "Firestore/core/src/nanopb/nanopb_util.h"
|
|
#include "Firestore/core/src/timestamp_internal.h"
|
|
#include "Firestore/core/src/util/exception.h"
|
|
#include "Firestore/core/src/util/hard_assert.h"
|
|
#include "Firestore/core/src/util/string_apple.h"
|
|
#include "absl/memory/memory.h"
|
|
#include "absl/strings/match.h"
|
|
#include "absl/types/optional.h"
|
|
|
|
namespace util = firebase::firestore::util;
|
|
using firebase::Timestamp;
|
|
using firebase::TimestampInternal;
|
|
using firebase::firestore::GeoPoint;
|
|
using firebase::firestore::core::ParseAccumulator;
|
|
using firebase::firestore::core::ParseContext;
|
|
using firebase::firestore::core::ParsedSetData;
|
|
using firebase::firestore::core::ParsedUpdateData;
|
|
using firebase::firestore::core::UserDataSource;
|
|
using firebase::firestore::model::ArrayTransform;
|
|
using firebase::firestore::model::DatabaseId;
|
|
using firebase::firestore::model::DocumentKey;
|
|
using firebase::firestore::model::FieldMask;
|
|
using firebase::firestore::model::FieldPath;
|
|
using firebase::firestore::model::FieldTransform;
|
|
using firebase::firestore::model::FieldValue;
|
|
using firebase::firestore::model::NumericIncrementTransform;
|
|
using firebase::firestore::model::ObjectValue;
|
|
using firebase::firestore::model::Precondition;
|
|
using firebase::firestore::model::ServerTimestampTransform;
|
|
using firebase::firestore::model::TransformOperation;
|
|
using firebase::firestore::nanopb::MakeByteString;
|
|
using firebase::firestore::util::ThrowInvalidArgument;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
#pragma mark - FSTDocumentKeyReference
|
|
|
|
@implementation FSTDocumentKeyReference {
|
|
DocumentKey _key;
|
|
DatabaseId _databaseID;
|
|
}
|
|
|
|
- (instancetype)initWithKey:(DocumentKey)key databaseID:(DatabaseId)databaseID {
|
|
self = [super init];
|
|
if (self) {
|
|
_key = std::move(key);
|
|
_databaseID = std::move(databaseID);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (const model::DocumentKey &)key {
|
|
return _key;
|
|
}
|
|
|
|
- (const model::DatabaseId &)databaseID {
|
|
return _databaseID;
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark - Conversion helpers
|
|
|
|
#pragma mark - FSTUserDataConverter
|
|
|
|
@interface FSTUserDataConverter ()
|
|
@property(strong, nonatomic, readonly) FSTPreConverterBlock preConverter;
|
|
@end
|
|
|
|
@implementation FSTUserDataConverter {
|
|
DatabaseId _databaseID;
|
|
}
|
|
|
|
- (instancetype)initWithDatabaseID:(DatabaseId)databaseID
|
|
preConverter:(FSTPreConverterBlock)preConverter {
|
|
self = [super init];
|
|
if (self) {
|
|
_databaseID = std::move(databaseID);
|
|
_preConverter = preConverter;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (ParsedSetData)parsedSetData:(id)input {
|
|
// NOTE: The public API is typed as NSDictionary but we type 'input' as 'id' since we can't trust
|
|
// Obj-C to verify the type for us.
|
|
if (![input isKindOfClass:[NSDictionary class]]) {
|
|
ThrowInvalidArgument("Data to be written must be an NSDictionary.");
|
|
}
|
|
|
|
ParseAccumulator accumulator{UserDataSource::Set};
|
|
absl::optional<FieldValue> updateData = [self parseData:input context:accumulator.RootContext()];
|
|
HARD_ASSERT(updateData.has_value(), "Parsed data should not be nil.");
|
|
|
|
return std::move(accumulator).SetData(ObjectValue(std::move(*updateData)));
|
|
}
|
|
|
|
- (ParsedSetData)parsedMergeData:(id)input fieldMask:(nullable NSArray<id> *)fieldMask {
|
|
// NOTE: The public API is typed as NSDictionary but we type 'input' as 'id' since we can't trust
|
|
// Obj-C to verify the type for us.
|
|
if (![input isKindOfClass:[NSDictionary class]]) {
|
|
ThrowInvalidArgument("Data to be written must be an NSDictionary.");
|
|
}
|
|
|
|
ParseAccumulator accumulator{UserDataSource::MergeSet};
|
|
|
|
absl::optional<FieldValue> updateData = [self parseData:input context:accumulator.RootContext()];
|
|
HARD_ASSERT(updateData.has_value(), "Parsed data should not be nil.");
|
|
|
|
ObjectValue updateObject = ObjectValue(std::move(*updateData));
|
|
|
|
if (fieldMask) {
|
|
std::set<FieldPath> validatedFieldPaths;
|
|
for (id fieldPath in fieldMask) {
|
|
FieldPath path;
|
|
|
|
if ([fieldPath isKindOfClass:[NSString class]]) {
|
|
path = FieldPath::FromDotSeparatedString(util::MakeString(fieldPath));
|
|
} else if ([fieldPath isKindOfClass:[FIRFieldPath class]]) {
|
|
path = static_cast<FIRFieldPath *>(fieldPath).internalValue;
|
|
} else {
|
|
ThrowInvalidArgument("All elements in mergeFields: must be NSStrings or FIRFieldPaths.");
|
|
}
|
|
|
|
// Verify that all elements specified in the field mask are part of the parsed context.
|
|
if (!accumulator.Contains(path)) {
|
|
ThrowInvalidArgument(
|
|
"Field '%s' is specified in your field mask but missing from your input data.",
|
|
path.CanonicalString());
|
|
}
|
|
|
|
validatedFieldPaths.insert(path);
|
|
}
|
|
|
|
return std::move(accumulator)
|
|
.MergeData(updateObject, FieldMask{std::move(validatedFieldPaths)});
|
|
|
|
} else {
|
|
return std::move(accumulator).MergeData(updateObject);
|
|
}
|
|
}
|
|
|
|
- (ParsedUpdateData)parsedUpdateData:(id)input {
|
|
// NOTE: The public API is typed as NSDictionary but we type 'input' as 'id' since we can't trust
|
|
// Obj-C to verify the type for us.
|
|
if (![input isKindOfClass:[NSDictionary class]]) {
|
|
ThrowInvalidArgument("Data to be written must be an NSDictionary.");
|
|
}
|
|
|
|
NSDictionary *dict = input;
|
|
|
|
ParseAccumulator accumulator{UserDataSource::Update};
|
|
__block ParseContext context = accumulator.RootContext();
|
|
__block ObjectValue updateData = ObjectValue::Empty();
|
|
|
|
[dict enumerateKeysAndObjectsUsingBlock:^(id key, id value, BOOL *) {
|
|
FieldPath path;
|
|
|
|
if ([key isKindOfClass:[NSString class]]) {
|
|
path = FieldPath::FromDotSeparatedString(util::MakeString(key));
|
|
} else if ([key isKindOfClass:[FIRFieldPath class]]) {
|
|
path = ((FIRFieldPath *)key).internalValue;
|
|
} else {
|
|
ThrowInvalidArgument("Dictionary keys in updateData: must be NSStrings or FIRFieldPaths.");
|
|
}
|
|
|
|
value = self.preConverter(value);
|
|
if ([value isKindOfClass:[FSTDeleteFieldValue class]]) {
|
|
// Add it to the field mask, but don't add anything to updateData.
|
|
context.AddToFieldMask(std::move(path));
|
|
} else {
|
|
absl::optional<FieldValue> parsedValue = [self parseData:value
|
|
context:context.ChildContext(path)];
|
|
if (parsedValue) {
|
|
context.AddToFieldMask(path);
|
|
updateData = updateData.Set(path, *parsedValue);
|
|
}
|
|
}
|
|
}];
|
|
|
|
return std::move(accumulator).UpdateData(updateData);
|
|
}
|
|
|
|
- (FieldValue)parsedQueryValue:(id)input {
|
|
return [self parsedQueryValue:input allowArrays:false];
|
|
}
|
|
|
|
- (FieldValue)parsedQueryValue:(id)input allowArrays:(bool)allowArrays {
|
|
ParseAccumulator accumulator{allowArrays ? UserDataSource::ArrayArgument
|
|
: UserDataSource::Argument};
|
|
|
|
absl::optional<FieldValue> parsed = [self parseData:input context:accumulator.RootContext()];
|
|
HARD_ASSERT(parsed, "Parsed data should not be nil.");
|
|
HARD_ASSERT(accumulator.field_transforms().empty(),
|
|
"Field transforms should have been disallowed.");
|
|
return *parsed;
|
|
}
|
|
|
|
/**
|
|
* Internal helper for parsing user data.
|
|
*
|
|
* @param input Data to be parsed.
|
|
* @param context A context object representing the current path being parsed, the source of the
|
|
* data being parsed, etc.
|
|
*
|
|
* @return The parsed value, or nil if the value was a FieldValue sentinel that should not be
|
|
* included in the resulting parsed data.
|
|
*/
|
|
- (absl::optional<FieldValue>)parseData:(id)input context:(ParseContext &&)context {
|
|
input = self.preConverter(input);
|
|
if ([input isKindOfClass:[NSDictionary class]]) {
|
|
return [self parseDictionary:(NSDictionary *)input context:std::move(context)];
|
|
|
|
} else if ([input isKindOfClass:[FIRFieldValue class]]) {
|
|
// FieldValues usually parse into transforms (except FieldValue.delete()) in which case we
|
|
// do not want to include this field in our parsed data (as doing so will overwrite the field
|
|
// directly prior to the transform trying to transform it). So we don't call appendToFieldMask
|
|
// and we return nil as our parsing result.
|
|
[self parseSentinelFieldValue:(FIRFieldValue *)input context:std::move(context)];
|
|
return absl::nullopt;
|
|
|
|
} else {
|
|
// If context path is unset we are already inside an array and we don't support field mask paths
|
|
// more granular than the top-level array.
|
|
if (context.path()) {
|
|
context.AddToFieldMask(*context.path());
|
|
}
|
|
|
|
if ([input isKindOfClass:[NSArray class]]) {
|
|
// TODO(b/34871131): Include the path containing the array in the error message.
|
|
// In the case of IN queries, the parsed data is an array (representing the set of values to
|
|
// be included for the IN query) that may directly contain additional arrays (each
|
|
// representing an individual field value), so we disable this validation.
|
|
if (context.array_element() && context.data_source() != UserDataSource::ArrayArgument) {
|
|
ThrowInvalidArgument("Nested arrays are not supported");
|
|
}
|
|
return [self parseArray:(NSArray *)input context:std::move(context)];
|
|
} else {
|
|
return [self parseScalarValue:input context:std::move(context)];
|
|
}
|
|
}
|
|
}
|
|
|
|
- (FieldValue)parseDictionary:(NSDictionary<NSString *, id> *)dict
|
|
context:(ParseContext &&)context {
|
|
if (dict.count == 0) {
|
|
const FieldPath *path = context.path();
|
|
if (path && !path->empty()) {
|
|
context.AddToFieldMask(*path);
|
|
}
|
|
return ObjectValue::Empty().AsFieldValue();
|
|
} else {
|
|
__block ObjectValue result = ObjectValue::Empty();
|
|
|
|
[dict enumerateKeysAndObjectsUsingBlock:^(NSString *key, id value, BOOL *) {
|
|
absl::optional<FieldValue> parsedValue =
|
|
[self parseData:value context:context.ChildContext(util::MakeString(key))];
|
|
if (parsedValue) {
|
|
FieldPath path = FieldPath{util::MakeString(key)};
|
|
result = result.Set(path, *parsedValue);
|
|
}
|
|
}];
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
- (FieldValue)parseArray:(NSArray<id> *)array context:(ParseContext &&)context {
|
|
__block FieldValue::Array result;
|
|
result.reserve(array.count);
|
|
|
|
[array enumerateObjectsUsingBlock:^(id entry, NSUInteger idx, BOOL *) {
|
|
absl::optional<FieldValue> parsedEntry = [self parseData:entry
|
|
context:context.ChildContext(idx)];
|
|
if (!parsedEntry) {
|
|
// Just include nulls in the array for fields being replaced with a sentinel.
|
|
parsedEntry = FieldValue::Null();
|
|
}
|
|
result.push_back(*parsedEntry);
|
|
}];
|
|
return FieldValue::FromArray(std::move(result));
|
|
}
|
|
|
|
/**
|
|
* "Parses" the provided FIRFieldValue, adding any necessary transforms to
|
|
* context.fieldTransforms.
|
|
*/
|
|
- (void)parseSentinelFieldValue:(FIRFieldValue *)fieldValue context:(ParseContext &&)context {
|
|
// Sentinels are only supported with writes, and not within arrays.
|
|
if (!context.write()) {
|
|
ThrowInvalidArgument("%s can only be used with updateData() and setData()%s",
|
|
fieldValue.methodName, context.FieldDescription());
|
|
}
|
|
if (!context.path()) {
|
|
ThrowInvalidArgument("%s is not currently supported inside arrays", fieldValue.methodName);
|
|
}
|
|
|
|
if ([fieldValue isKindOfClass:[FSTDeleteFieldValue class]]) {
|
|
if (context.data_source() == UserDataSource::MergeSet) {
|
|
// No transform to add for a delete, but we need to add it to our fieldMask so it gets
|
|
// deleted.
|
|
context.AddToFieldMask(*context.path());
|
|
|
|
} else if (context.data_source() == UserDataSource::Update) {
|
|
HARD_ASSERT(context.path()->size() > 0,
|
|
"FieldValue.delete() at the top level should have already been handled.");
|
|
ThrowInvalidArgument("FieldValue.delete() can only appear at the top level of your "
|
|
"update data%s",
|
|
context.FieldDescription());
|
|
} else {
|
|
// We shouldn't encounter delete sentinels for queries or non-merge setData calls.
|
|
ThrowInvalidArgument(
|
|
"FieldValue.delete() can only be used with updateData() and setData() with merge:true%s",
|
|
context.FieldDescription());
|
|
}
|
|
|
|
} else if ([fieldValue isKindOfClass:[FSTServerTimestampFieldValue class]]) {
|
|
context.AddToFieldTransforms(*context.path(), ServerTimestampTransform());
|
|
|
|
} else if ([fieldValue isKindOfClass:[FSTArrayUnionFieldValue class]]) {
|
|
std::vector<FieldValue> parsedElements =
|
|
[self parseArrayTransformElements:((FSTArrayUnionFieldValue *)fieldValue).elements];
|
|
ArrayTransform array_union(TransformOperation::Type::ArrayUnion, std::move(parsedElements));
|
|
context.AddToFieldTransforms(*context.path(), std::move(array_union));
|
|
|
|
} else if ([fieldValue isKindOfClass:[FSTArrayRemoveFieldValue class]]) {
|
|
std::vector<FieldValue> parsedElements =
|
|
[self parseArrayTransformElements:((FSTArrayRemoveFieldValue *)fieldValue).elements];
|
|
ArrayTransform array_remove(TransformOperation::Type::ArrayRemove, std::move(parsedElements));
|
|
context.AddToFieldTransforms(*context.path(), std::move(array_remove));
|
|
|
|
} else if ([fieldValue isKindOfClass:[FSTNumericIncrementFieldValue class]]) {
|
|
FSTNumericIncrementFieldValue *numericIncrementFieldValue =
|
|
(FSTNumericIncrementFieldValue *)fieldValue;
|
|
FieldValue operand = [self parsedQueryValue:numericIncrementFieldValue.operand];
|
|
NumericIncrementTransform numeric_increment(std::move(operand));
|
|
|
|
context.AddToFieldTransforms(*context.path(), std::move(numeric_increment));
|
|
|
|
} else {
|
|
HARD_FAIL("Unknown FIRFieldValue type: %s", NSStringFromClass([fieldValue class]));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Helper to parse a scalar value (i.e. not an NSDictionary, NSArray, or FIRFieldValue).
|
|
*
|
|
* Note that it handles all NSNumber values that are encodable as int64_t or doubles
|
|
* (depending on the underlying type of the NSNumber). Unsigned integer values are handled though
|
|
* any value outside what is representable by int64_t (a signed 64-bit value) will throw an
|
|
* exception.
|
|
*
|
|
* @return The parsed value.
|
|
*/
|
|
- (absl::optional<FieldValue>)parseScalarValue:(nullable id)input context:(ParseContext &&)context {
|
|
if (!input || [input isMemberOfClass:[NSNull class]]) {
|
|
return FieldValue::Null();
|
|
|
|
} else if ([input isKindOfClass:[NSNumber class]]) {
|
|
// Recover the underlying type of the number, using the method described here:
|
|
// http://stackoverflow.com/questions/2518761/get-type-of-nsnumber
|
|
const char *cType = [input objCType];
|
|
|
|
// Type Encoding values taken from
|
|
// https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/
|
|
// Articles/ocrtTypeEncodings.html
|
|
switch (cType[0]) {
|
|
case 'q':
|
|
return FieldValue::FromInteger([input longLongValue]);
|
|
|
|
case 'i': // Falls through.
|
|
case 's': // Falls through.
|
|
case 'l': // Falls through.
|
|
case 'I': // Falls through.
|
|
case 'S':
|
|
// Coerce integer values that aren't long long. Allow unsigned integer types that are
|
|
// guaranteed small enough to skip a length check.
|
|
return FieldValue::FromInteger([input longLongValue]);
|
|
|
|
case 'L': // Falls through.
|
|
case 'Q':
|
|
// Unsigned integers that could be too large. Note that the 'L' (long) case is handled here
|
|
// because when compiled for LP64, unsigned long is 64 bits and could overflow int64_t.
|
|
{
|
|
unsigned long long extended = [input unsignedLongLongValue];
|
|
|
|
if (extended > LLONG_MAX) {
|
|
ThrowInvalidArgument("NSNumber (%s) is too large%s", [input unsignedLongLongValue],
|
|
context.FieldDescription());
|
|
|
|
} else {
|
|
return FieldValue::FromInteger(static_cast<int64_t>(extended));
|
|
}
|
|
}
|
|
|
|
case 'f':
|
|
return FieldValue::FromDouble([input doubleValue]);
|
|
|
|
case 'd':
|
|
// Double values are already the right type, so just reuse the existing boxed double.
|
|
//
|
|
// Note that NSNumber already performs NaN normalization to a single shared instance
|
|
// so there's no need to treat NaN specially here.
|
|
return FieldValue::FromDouble([input doubleValue]);
|
|
|
|
case 'B': // Falls through.
|
|
case 'c': // Falls through.
|
|
case 'C':
|
|
// Boolean values are weird.
|
|
//
|
|
// On arm64, objCType of a BOOL-valued NSNumber will be "c", even though @encode(BOOL)
|
|
// returns "B". "c" is the same as @encode(signed char). Unfortunately this means that
|
|
// legitimate usage of signed chars is impossible, but this should be rare.
|
|
//
|
|
// Additionally, for consistency, map unsigned chars to bools in the same way.
|
|
return FieldValue::FromBoolean([input boolValue]);
|
|
|
|
default:
|
|
// All documented codes should be handled above, so this shouldn't happen.
|
|
HARD_FAIL("Unknown NSNumber objCType %s on %s", cType, input);
|
|
}
|
|
|
|
} else if ([input isKindOfClass:[NSString class]]) {
|
|
return FieldValue::FromString(util::MakeString(input));
|
|
|
|
} else if ([input isKindOfClass:[NSDate class]]) {
|
|
NSDate *inputDate = input;
|
|
return FieldValue::FromTimestamp(api::MakeTimestamp(inputDate));
|
|
|
|
} else if ([input isKindOfClass:[FIRTimestamp class]]) {
|
|
FIRTimestamp *inputTimestamp = input;
|
|
Timestamp timestamp = TimestampInternal::Truncate(api::MakeTimestamp(inputTimestamp));
|
|
return FieldValue::FromTimestamp(timestamp);
|
|
|
|
} else if ([input isKindOfClass:[FIRGeoPoint class]]) {
|
|
return FieldValue::FromGeoPoint(api::MakeGeoPoint(input));
|
|
|
|
} else if ([input isKindOfClass:[NSData class]]) {
|
|
NSData *inputData = input;
|
|
return FieldValue::FromBlob(MakeByteString(inputData));
|
|
|
|
} else if ([input isKindOfClass:[FSTDocumentKeyReference class]]) {
|
|
FSTDocumentKeyReference *reference = input;
|
|
if (reference.databaseID != _databaseID) {
|
|
const DatabaseId &other = reference.databaseID;
|
|
ThrowInvalidArgument(
|
|
"Document Reference is for database %s/%s but should be for database %s/%s%s",
|
|
other.project_id(), other.database_id(), _databaseID.project_id(),
|
|
_databaseID.database_id(), context.FieldDescription());
|
|
}
|
|
return FieldValue::FromReference(_databaseID, reference.key);
|
|
|
|
} else {
|
|
ThrowInvalidArgument("Unsupported type: %s%s", NSStringFromClass([input class]),
|
|
context.FieldDescription());
|
|
}
|
|
}
|
|
|
|
- (std::vector<FieldValue>)parseArrayTransformElements:(NSArray<id> *)elements {
|
|
ParseAccumulator accumulator{UserDataSource::Argument};
|
|
|
|
std::vector<FieldValue> values;
|
|
for (NSUInteger i = 0; i < elements.count; i++) {
|
|
id element = elements[i];
|
|
// Although array transforms are used with writes, the actual elements being unioned or removed
|
|
// are not considered writes since they cannot contain any FieldValue sentinels, etc.
|
|
ParseContext context = accumulator.RootContext();
|
|
|
|
absl::optional<FieldValue> parsedElement = [self parseData:element
|
|
context:context.ChildContext(i)];
|
|
HARD_ASSERT(parsedElement && accumulator.field_transforms().size() == 0,
|
|
"Failed to properly parse array transform element: %s", element);
|
|
values.push_back(*parsedElement);
|
|
}
|
|
return values;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|