选型(CLAUDE.md ADR-006「SPM 优先 + Vendor xcframework 兜底」): - 微信 → SPM(Tencent 官方 https://github.com/Tencent/WechatOpenSDK-XCFramework); 项目方下载的 WechatOpenSDK-NoPay.xcframework 已撤出 Vendor,docs/res 内副本作离线备份 - 高德 → Vendor 手动(官方未提供 SPM;Vendor/AMap/{AMapFoundationKit,AMapLocationKit}.framework 随仓库分发,fat .framework 同时含 x86_64 + arm64,Do Not Embed) - 七牛 → SPM(https://github.com/qiniu/objc-sdk v8.9.x) 代码侧(全部 #if canImport 守卫,Xcode 加 SDK 前编译为 no-op): - Source/SDK/WeChat/WeChatSDK.swift:WXApi.registerApp + handleOpenURL(沿用 msext AppID wx586a9b321e56efb7,universalLink 空字符串走非 ULAPI 路径) - Source/SDK/WeChat/WeChatManager.swift:WXApiDelegate + state UUID 配对的 authorize + FIFO 串行 share async/await wrapper - Source/Login/WeChatAuth.swift:客户端直拼 sns/oauth2/access_token + sns/userinfo → 7 字段(Province 大写 P / city 经 danbian 去单引号),沿用 msext 同款路径 - Source/SDK/AMap/AMapWrapper.swift:iOS 14+ 隐私合规 3 步 + apiKey 注入 - Source/Location/LocationService.swift:actor + AMapLocationManager 异步包装 + 9 字段 - Source/Network/QiniuConfig.swift:4 项常量沿用 msext(AccessKey/SecretKey/Bucket/Domain) - Source/Network/QiniuTokenSigner.swift:纯 Swift CryptoKit HMAC-SHA1 + Base64URL 自签 token(与 msext QiniuManager.m:200-230 等价,不依赖 Qiniu SDK 工作) - Source/Network/QiniuUploader.swift:actor 包 QNUploadManager async/await Handler 升级: - AccreditLoginHandler:拉起授权 → 反向 callback sharelogin 7 字段 - WechatShare:真实链接分享(type=2/3 截图待 Phase 4.F) - StartLocationHandler:真实定位 → 9 字段(latitude/longitude string, province 小写 p) 生命周期: - AppDelegate.didFinishLaunchingWithOptions:WeChatSDK.register + AMapWrapper.bootstrap - SceneDelegate.openURLContexts:WeChatSDK.handleOpenURL 接入回调 - BackGameDataHandler:子游戏 backgameData pop 时 WXApi.delegate=nil + LocationService.stop() Info.plist:CFBundleURLTypes 加 wx586a9b321e56efb7;LSApplicationQueriesSchemes 追加 weixin/weixinULAPI/weixinURLParamsAPI;NSLocationWhenInUseUsageDescription + NSMicrophoneUsageDescription(gamehallname 中文文案)。 .gitignore:排除 docs/res/{AMap_iOS_Loc_ALL,objc-sdk-8.9.2}/(235MB 项目方下载副本, 已走 SPM/Vendor 接入不需要副本)。 文档:docs/SDK-Integration-Guide.md 重写 §A 用户手动 Xcode UI 三步(SPM × 2 + Add Files × 2);Vendor/{AMap,WechatSDK}/README.md 记录各自接入路径选型。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
261 lines
7.3 KiB
Modula-2
261 lines
7.3 KiB
Modula-2
//===--- AMapDemangleNodes.def - Demangling Tree Metaprogramming ----*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines macros useful for macro-metaprogramming with nodes in
|
|
// the demangling tree.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// NODE(ID)
|
|
/// The node's enumerator value is Node::Kind::ID.
|
|
|
|
/// CONTEXT_NODE(ID)
|
|
/// Nodes that can serve as contexts for other entities.
|
|
#ifndef CONTEXT_NODE
|
|
#define CONTEXT_NODE(ID) NODE(ID)
|
|
#endif
|
|
|
|
CONTEXT_NODE(Allocator)
|
|
CONTEXT_NODE(AnonymousContext)
|
|
NODE(AnyProtocolConformanceList)
|
|
NODE(ArgumentTuple)
|
|
NODE(AssociatedType)
|
|
NODE(AssociatedTypeRef)
|
|
NODE(AssociatedTypeMetadataAccessor)
|
|
NODE(DefaultAssociatedTypeMetadataAccessor)
|
|
NODE(AssociatedTypeWitnessTableAccessor)
|
|
NODE(BaseWitnessTableAccessor)
|
|
NODE(AutoClosureType)
|
|
NODE(BoundGenericClass)
|
|
NODE(BoundGenericEnum)
|
|
NODE(BoundGenericStructure)
|
|
NODE(BoundGenericProtocol)
|
|
NODE(BoundGenericOtherNominalType)
|
|
NODE(BoundGenericTypeAlias)
|
|
NODE(BoundGenericFunction)
|
|
NODE(BuiltinTypeName)
|
|
NODE(CFunctionPointer)
|
|
CONTEXT_NODE(Class)
|
|
NODE(ClassMetadataBaseOffset)
|
|
NODE(ConcreteProtocolConformance)
|
|
CONTEXT_NODE(Constructor)
|
|
NODE(CoroutineContinuationPrototype)
|
|
CONTEXT_NODE(Deallocator)
|
|
NODE(DeclContext)
|
|
CONTEXT_NODE(DefaultArgumentInitializer)
|
|
NODE(DependentAssociatedConformance)
|
|
NODE(DependentAssociatedTypeRef)
|
|
NODE(DependentGenericConformanceRequirement)
|
|
NODE(DependentGenericParamCount)
|
|
NODE(DependentGenericParamType)
|
|
NODE(DependentGenericSameTypeRequirement)
|
|
NODE(DependentGenericLayoutRequirement)
|
|
NODE(DependentGenericSignature)
|
|
NODE(DependentGenericType)
|
|
NODE(DependentMemberType)
|
|
NODE(DependentPseudogenericSignature)
|
|
NODE(DependentProtocolConformanceRoot)
|
|
NODE(DependentProtocolConformanceInherited)
|
|
NODE(DependentProtocolConformanceAssociated)
|
|
CONTEXT_NODE(Destructor)
|
|
CONTEXT_NODE(DidSet)
|
|
NODE(Directness)
|
|
NODE(DynamicAttribute)
|
|
NODE(DirectMethodReferenceAttribute)
|
|
NODE(DynamicSelf)
|
|
NODE(DynamicallyReplaceableFunctionImpl)
|
|
NODE(DynamicallyReplaceableFunctionKey)
|
|
NODE(DynamicallyReplaceableFunctionVar)
|
|
CONTEXT_NODE(Enum)
|
|
NODE(EnumCase)
|
|
NODE(ErrorType)
|
|
NODE(EscapingAutoClosureType)
|
|
NODE(NoEscapeFunctionType)
|
|
NODE(ExistentialMetatype)
|
|
CONTEXT_NODE(ExplicitClosure)
|
|
CONTEXT_NODE(Extension)
|
|
NODE(FieldOffset)
|
|
NODE(FullTypeMetadata)
|
|
CONTEXT_NODE(Function)
|
|
NODE(FunctionSignatureSpecialization)
|
|
NODE(FunctionSignatureSpecializationParam)
|
|
NODE(FunctionSignatureSpecializationParamKind)
|
|
NODE(FunctionSignatureSpecializationParamPayload)
|
|
NODE(FunctionType)
|
|
NODE(GenericPartialSpecialization)
|
|
NODE(GenericPartialSpecializationNotReAbstracted)
|
|
NODE(GenericProtocolWitnessTable)
|
|
NODE(GenericProtocolWitnessTableInstantiationFunction)
|
|
NODE(ResilientProtocolWitnessTable)
|
|
NODE(GenericSpecialization)
|
|
NODE(GenericSpecializationNotReAbstracted)
|
|
NODE(GenericSpecializationParam)
|
|
NODE(InlinedGenericFunction)
|
|
NODE(GenericTypeMetadataPattern)
|
|
CONTEXT_NODE(Getter)
|
|
NODE(Global)
|
|
CONTEXT_NODE(GlobalGetter)
|
|
NODE(Identifier)
|
|
NODE(Index)
|
|
CONTEXT_NODE(IVarInitializer)
|
|
CONTEXT_NODE(IVarDestroyer)
|
|
NODE(ImplEscaping)
|
|
NODE(ImplConvention)
|
|
NODE(ImplFunctionAttribute)
|
|
NODE(ImplFunctionType)
|
|
CONTEXT_NODE(ImplicitClosure)
|
|
NODE(ImplParameter)
|
|
NODE(ImplResult)
|
|
NODE(ImplErrorResult)
|
|
NODE(InOut)
|
|
NODE(InfixOperator)
|
|
CONTEXT_NODE(Initializer)
|
|
NODE(KeyPathGetterThunkHelper)
|
|
NODE(KeyPathSetterThunkHelper)
|
|
NODE(KeyPathEqualsThunkHelper)
|
|
NODE(KeyPathHashThunkHelper)
|
|
NODE(LazyProtocolWitnessTableAccessor)
|
|
NODE(LazyProtocolWitnessTableCacheVariable)
|
|
NODE(LocalDeclName)
|
|
CONTEXT_NODE(MaterializeForSet)
|
|
NODE(MergedFunction)
|
|
NODE(Metatype)
|
|
NODE(MetatypeRepresentation)
|
|
NODE(Metaclass)
|
|
NODE(MethodLookupFunction)
|
|
NODE(ObjCMetadataUpdateFunction)
|
|
CONTEXT_NODE(ModifyAccessor)
|
|
CONTEXT_NODE(Module)
|
|
CONTEXT_NODE(NativeOwningAddressor)
|
|
CONTEXT_NODE(NativeOwningMutableAddressor)
|
|
CONTEXT_NODE(NativePinningAddressor)
|
|
CONTEXT_NODE(NativePinningMutableAddressor)
|
|
NODE(NominalTypeDescriptor)
|
|
NODE(NonObjCAttribute)
|
|
NODE(Number)
|
|
NODE(ObjCAttribute)
|
|
NODE(ObjCBlock)
|
|
CONTEXT_NODE(OtherNominalType)
|
|
CONTEXT_NODE(OwningAddressor)
|
|
CONTEXT_NODE(OwningMutableAddressor)
|
|
NODE(PartialApplyForwarder)
|
|
NODE(PartialApplyObjCForwarder)
|
|
NODE(PostfixOperator)
|
|
NODE(PrefixOperator)
|
|
NODE(PrivateDeclName)
|
|
NODE(PropertyDescriptor)
|
|
CONTEXT_NODE(Protocol)
|
|
CONTEXT_NODE(ProtocolSymbolicReference)
|
|
NODE(ProtocolConformance)
|
|
NODE(ProtocolConformanceRefInTypeModule)
|
|
NODE(ProtocolConformanceRefInProtocolModule)
|
|
NODE(ProtocolConformanceRefInOtherModule)
|
|
NODE(ProtocolDescriptor)
|
|
NODE(ProtocolConformanceDescriptor)
|
|
NODE(ProtocolList)
|
|
NODE(ProtocolListWithClass)
|
|
NODE(ProtocolListWithAnyObject)
|
|
NODE(ProtocolSelfConformanceDescriptor)
|
|
NODE(ProtocolSelfConformanceWitness)
|
|
NODE(ProtocolSelfConformanceWitnessTable)
|
|
NODE(ProtocolWitness)
|
|
NODE(ProtocolWitnessTable)
|
|
NODE(ProtocolWitnessTableAccessor)
|
|
NODE(ProtocolWitnessTablePattern)
|
|
NODE(ReabstractionThunk)
|
|
NODE(ReabstractionThunkHelper)
|
|
CONTEXT_NODE(ReadAccessor)
|
|
NODE(RelatedEntityDeclName)
|
|
NODE(RetroactiveConformance)
|
|
NODE(ReturnType)
|
|
NODE(Shared)
|
|
NODE(Owned)
|
|
NODE(SILBoxType)
|
|
NODE(SILBoxTypeWithLayout)
|
|
NODE(SILBoxLayout)
|
|
NODE(SILBoxMutableField)
|
|
NODE(SILBoxImmutableField)
|
|
CONTEXT_NODE(Setter)
|
|
NODE(SpecializationPassID)
|
|
NODE(IsSerialized)
|
|
CONTEXT_NODE(Static)
|
|
CONTEXT_NODE(Structure)
|
|
CONTEXT_NODE(Subscript)
|
|
NODE(Suffix)
|
|
NODE(ThinFunctionType)
|
|
NODE(Tuple)
|
|
NODE(TupleElement)
|
|
NODE(TupleElementName)
|
|
NODE(Type)
|
|
CONTEXT_NODE(TypeSymbolicReference)
|
|
CONTEXT_NODE(TypeAlias)
|
|
NODE(TypeList)
|
|
NODE(TypeMangling)
|
|
NODE(TypeMetadata)
|
|
NODE(TypeMetadataAccessFunction)
|
|
NODE(TypeMetadataCompletionFunction)
|
|
NODE(TypeMetadataInstantiationCache)
|
|
NODE(TypeMetadataInstantiationFunction)
|
|
NODE(TypeMetadataSingletonInitializationCache)
|
|
NODE(TypeMetadataLazyCache)
|
|
NODE(UncurriedFunctionType)
|
|
#define REF_STORAGE(Name, ...) NODE(Name)
|
|
#include "AMapReferenceStorage.def"
|
|
CONTEXT_NODE(UnsafeAddressor)
|
|
CONTEXT_NODE(UnsafeMutableAddressor)
|
|
NODE(ValueWitness)
|
|
NODE(ValueWitnessTable)
|
|
CONTEXT_NODE(Variable)
|
|
NODE(VTableThunk)
|
|
NODE(VTableAttribute) // note: old mangling only
|
|
CONTEXT_NODE(WillSet)
|
|
NODE(ReflectionMetadataBuiltinDescriptor)
|
|
NODE(ReflectionMetadataFieldDescriptor)
|
|
NODE(ReflectionMetadataAssocTypeDescriptor)
|
|
NODE(ReflectionMetadataSuperclassDescriptor)
|
|
NODE(GenericTypeParamDecl)
|
|
NODE(CurryThunk)
|
|
NODE(DispatchThunk)
|
|
NODE(MethodDescriptor)
|
|
NODE(ProtocolRequirementsBaseDescriptor)
|
|
NODE(AssociatedConformanceDescriptor)
|
|
NODE(DefaultAssociatedConformanceAccessor)
|
|
NODE(BaseConformanceDescriptor)
|
|
NODE(AssociatedTypeDescriptor)
|
|
NODE(ThrowsAnnotation)
|
|
NODE(EmptyList)
|
|
NODE(FirstElementMarker)
|
|
NODE(VariadicMarker)
|
|
NODE(OutlinedBridgedMethod)
|
|
NODE(OutlinedCopy)
|
|
NODE(OutlinedConsume)
|
|
NODE(OutlinedRetain)
|
|
NODE(OutlinedRelease)
|
|
NODE(OutlinedInitializeWithTake)
|
|
NODE(OutlinedInitializeWithCopy)
|
|
NODE(OutlinedAssignWithTake)
|
|
NODE(OutlinedAssignWithCopy)
|
|
NODE(OutlinedDestroy)
|
|
NODE(OutlinedVariable)
|
|
NODE(AssocTypePath)
|
|
NODE(LabelList)
|
|
NODE(ModuleDescriptor)
|
|
NODE(ExtensionDescriptor)
|
|
NODE(AnonymousDescriptor)
|
|
NODE(AssociatedTypeGenericParamRef)
|
|
NODE(SugaredOptional)
|
|
NODE(SugaredArray)
|
|
NODE(SugaredDictionary)
|
|
NODE(SugaredParen)
|
|
#undef CONTEXT_NODE
|
|
#undef NODE
|