-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CoreData] Add support for Xcode 13 beta 3. #12183
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -232,6 +232,10 @@ interface NSAttributeDescription { | |
[Watch (6, 0), TV (13, 0), Mac (10, 15), iOS (13, 0)] | ||
[Export ("preservesValueInHistoryOnDeletion")] | ||
bool PreservesValueInHistoryOnDeletion { get; set; } | ||
|
||
[Watch (8, 0), TV (15, 0), Mac (12, 0), iOS (15, 0), MacCatalyst (15,0)] | ||
[Export ("allowsCloudEncryption")] | ||
bool AllowsCloudEncryption { get; set; } | ||
} | ||
|
||
[BaseType (typeof (NSObject))] | ||
|
@@ -1667,14 +1671,26 @@ interface NSPersistentHistoryTransaction : NSCopying | |
[DisableDefaultCtor] // NSInternalInconsistencyException Reason: NSCoreDataCoreSpotlightDelegate requires the use of the initializer initForStoreWithDescription:model: | ||
interface NSCoreDataCoreSpotlightDelegate | ||
{ | ||
|
||
[Notification] | ||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Field ("NSCoreDataCoreSpotlightDelegateIndexDidUpdateNotification")] | ||
NSString IndexDidUpdateNotification { get; } | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("initForStoreWithDescription:coordinator:")] | ||
[DesignatedInitializer] | ||
IntPtr Constructor (NSPersistentStoreDescription description, NSPersistentStoreCoordinator psc); | ||
|
||
[Export ("domainIdentifier")] | ||
string DomainIdentifier { get; } | ||
|
||
[NullAllowed, Export ("indexName")] | ||
string IndexName { get; } | ||
|
||
[Deprecated (PlatformName.iOS, 15,0, message: "Use the constructor that takes a NSPersistentStoreCoordinator instead.")] | ||
[Deprecated (PlatformName.MacOSX, 12,0, message: "Use the constructor that takes a NSPersistentStoreCoordinator instead.")] | ||
[Export ("initForStoreWithDescription:model:")] | ||
[DesignatedInitializer] | ||
IntPtr Constructor (NSPersistentStoreDescription description, NSManagedObjectModel model); | ||
|
||
[Export ("attributeSetForObject:")] | ||
|
@@ -1686,6 +1702,23 @@ interface NSCoreDataCoreSpotlightDelegate | |
|
||
[Export ("searchableIndex:reindexSearchableItemsWithIdentifiers:acknowledgementHandler:")] | ||
void ReindexSearchableItems (CSSearchableIndex searchableIndex, string[] identifiers, Action acknowledgementHandler); | ||
|
||
[Async] | ||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("deleteSpotlightIndexWithCompletionHandler:")] | ||
void DeleteSpotlightIndex (Action<NSError> completionHandler); | ||
|
||
[NoWatch, NoTV, Mac (12, 0), iOS (15, 0), MacCatalyst (15,0)] | ||
[Export ("indexingEnabled")] | ||
bool IndexingEnabled { [Bind ("isIndexingEnabled")] get; } | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("startSpotlightIndexing")] | ||
void StartSpotlightIndexing (); | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0)] | ||
[Export ("stopSpotlightIndexing"), MacCatalyst (15,0)] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's legit - but it's confusing to mix availability and |
||
void StopSpotlightIndexing (); | ||
} | ||
#endif | ||
|
||
|
@@ -2640,6 +2673,21 @@ interface NSDerivedAttributeDescription : NSSecureCoding { | |
NSExpression DerivationExpression { get; set; } | ||
} | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
delegate void NSPersistentCloudKitContainerShareManagedObjectsHandler (NSSet<NSManagedObjectID> sharedObjectIds, CKShare share, CKContainer container, NSError error); | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
delegate void NSPersistentCloudKitContainerFetchParticipantsMatchingLookupInfosHandler (NSArray<CKShareParticipant> fetchedParticipants, NSError error); | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
delegate void NSPersistentCloudKitContainerPersistUpdatedShareHandler (CKShare persistedShare, NSError error); | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
delegate void NSPersistentCloudKitContainerPurgeObjectsAndRecordsInZoneHandler (CKRecordZoneID purgedZoneId, NSError error); | ||
|
||
[NoWatch, NoTV, Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
delegate void NSPersistentCloudKitContainerAcceptShareInvitationsHandler (NSArray<CKShareMetadata> acceptedShareMetadatas, NSError error); | ||
|
||
[Watch (6,0), TV (13,0), Mac (10,15), iOS (13,0)] | ||
[BaseType (typeof(NSPersistentContainer))] | ||
[DisableDefaultCtor] | ||
|
@@ -2677,6 +2725,43 @@ interface NSPersistentCloudKitContainer { | |
[Watch (7,0), TV (14,0), Mac (11,0), iOS (14,0)] | ||
[Export ("canModifyManagedObjectsInStore:")] | ||
bool CanModifyManagedObjects (NSPersistentStore store); | ||
|
||
// NSPersistentCloudKitContainer_Sharing | ||
[Async (ResultTypeName = "NSPersistentCloudKitContainerAcceptShareInvitationsResult")] | ||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("acceptShareInvitationsFromMetadata:intoPersistentStore:completion:")] | ||
void AcceptShareInvitations (CKShareMetadata[] metadata, NSPersistentStore persistentStore, [NullAllowed] NSPersistentCloudKitContainerAcceptShareInvitationsHandler handler); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the |
||
|
||
[Async (ResultTypeName = "NSPersistentCloudKitContainerPurgeObjectsAndRecordsInZone")] | ||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("purgeObjectsAndRecordsInZoneWithID:inPersistentStore:completion:")] | ||
void PurgeObjectsAndRecordsInZone (CKRecordZoneID zoneId, [NullAllowed] NSPersistentStore persistentStore, [NullAllowed] NSPersistentCloudKitContainerPurgeObjectsAndRecordsInZoneHandler handler); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
|
||
[Async (ResultTypeName = "NSPersistentCloudKitContainerPersistUpdatedShareResult")] | ||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("persistUpdatedShare:inPersistentStore:completion:")] | ||
void PersistUpdatedShare (CKShare share, NSPersistentStore persistentStore, [NullAllowed] NSPersistentCloudKitContainerPersistUpdatedShareHandler handler); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
|
||
[Async (ResultTypeName = "NSPersistentCloudKitContainerFetchParticipantsMatchingLookupInfosResult")] | ||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("fetchParticipantsMatchingLookupInfos:intoPersistentStore:completion:")] | ||
void FetchParticipantsMatchingLookupInfos (CKUserIdentityLookupInfo[] lookupInfos, NSPersistentStore persistentStore, NSPersistentCloudKitContainerFetchParticipantsMatchingLookupInfosHandler handler); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same |
||
|
||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("fetchSharesMatchingObjectIDs:error:")] | ||
[return: NullAllowed] | ||
NSDictionary<NSManagedObjectID, CKShare> FetchSharesMatchingObjectIds (NSManagedObjectID[] objectIDs, [NullAllowed] out NSError error); | ||
|
||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("fetchSharesInPersistentStore:error:")] | ||
[return: NullAllowed] | ||
CKShare[] FetchSharesInPersistentStore ([NullAllowed] NSPersistentStore persistentStore, [NullAllowed] out NSError error); | ||
|
||
[Async (ResultTypeName = "NSPersistentCloudKitContainerShareManagedObjectsResult")] | ||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst (15,0)] | ||
[Export ("shareManagedObjects:toShare:completion:")] | ||
void ShareManagedObjects (NSManagedObject[] managedObjects, [NullAllowed] CKShare share, NSPersistentCloudKitContainerShareManagedObjectsHandler handler); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All these methods, I got the first interface wrong and forgot to update the delegates, updated in a9c9067 |
||
|
||
} | ||
|
||
[Watch (6,0), TV (13,0), Mac (10,15), iOS (13,0)] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
# NSInternalInconsistencyException Reason: -init results in undefined behavior for NSBatchInsertRequest | ||
!missing-selector! NSBatchInsertRequest::init not bound | ||
|
||
# ignored as well in macOS | ||
!missing-field! NSBinaryExternalRecordType not bound | ||
!missing-field! NSEntityNameInPathKey not bound | ||
!missing-field! NSExternalRecordExtensionOption not bound | ||
!missing-field! NSExternalRecordsDirectoryOption not bound | ||
!missing-field! NSExternalRecordsFileFormatOption not bound | ||
!missing-field! NSModelPathKey not bound | ||
!missing-field! NSObjectURIKey not bound | ||
!missing-field! NSStorePathKey not bound | ||
!missing-field! NSStoreUUIDInPathKey not bound | ||
!missing-field! NSValidateXMLStoreOption not bound | ||
!missing-field! NSXMLExternalRecordType not bound | ||
!missing-field! NSXMLStoreType not bound |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[NoWatch]
and[NoTV]
are already present on the type declaration and does not need to be repeated on members