From dee89db630949afc9b32c2d2cf9b4971f415fe99 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Mon, 11 Nov 2024 09:05:37 -0800 Subject: [PATCH] wip --- 0302-sqlite-pt2/README.md | 5 + .../project.pbxproj | 471 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 35 ++ .../Assets.xcassets/Contents.json | 6 + .../SQLiteExplorations/ContentView.swift | 17 + .../SQLiteExplorations/Models.swift | 15 + .../SQLiteExplorationsApp.swift | 156 ++++++ .../SQLiteExplorationsTests.swift | 17 + README.md | 1 + 11 files changed, 741 insertions(+) create mode 100644 0302-sqlite-pt2/README.md create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.pbxproj create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/Contents.json create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/ContentView.swift create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Models.swift create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/SQLiteExplorationsApp.swift create mode 100644 0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorationsTests/SQLiteExplorationsTests.swift diff --git a/0302-sqlite-pt2/README.md b/0302-sqlite-pt2/README.md new file mode 100644 index 00000000..ce89ccda --- /dev/null +++ b/0302-sqlite-pt2/README.md @@ -0,0 +1,5 @@ +## [Point-Free](https://www.pointfree.co) + +> #### This directory contains code from Point-Free Episode: [SQLite: GRDB](https://www.pointfree.co/episodes/ep302-sqlite-grdb) +> +> Interfacing with SQLite's C library from Swift is possible, but clunky. Luckily there are friendlier, "Swiftier" interfaces the community has built, so let's take a look at the most popular: GRDB. We'll explore how it can help us avoid pitfalls and boilerplate required to use the C library, and how its typed SQL helpers can even help us avoid runtime issues at compile time. diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.pbxproj b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.pbxproj new file mode 100644 index 00000000..665f3951 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.pbxproj @@ -0,0 +1,471 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXBuildFile section */ + 2AA9B3BD2CDAB9BD00BB83C0 /* GRDB in Frameworks */ = {isa = PBXBuildFile; productRef = 2AA9B3BC2CDAB9BD00BB83C0 /* GRDB */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 2A2D2A8A2CD2BAD00071022C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2A2D2A712CD2BACC0071022C /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2A2D2A782CD2BACC0071022C; + remoteInfo = SQLiteExplorations; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 2A2D2A792CD2BACC0071022C /* SQLiteExplorations.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SQLiteExplorations.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 2A2D2A892CD2BAD00071022C /* SQLiteExplorationsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SQLiteExplorationsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + 2A2D2A7B2CD2BACC0071022C /* SQLiteExplorations */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = SQLiteExplorations; + sourceTree = ""; + }; + 2A2D2A8C2CD2BAD00071022C /* SQLiteExplorationsTests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = SQLiteExplorationsTests; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + 2A2D2A762CD2BACC0071022C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2AA9B3BD2CDAB9BD00BB83C0 /* GRDB in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2A2D2A862CD2BAD00071022C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 2A2D2A702CD2BACC0071022C = { + isa = PBXGroup; + children = ( + 2A2D2A7B2CD2BACC0071022C /* SQLiteExplorations */, + 2A2D2A8C2CD2BAD00071022C /* SQLiteExplorationsTests */, + 2A2D2A7A2CD2BACC0071022C /* Products */, + ); + sourceTree = ""; + }; + 2A2D2A7A2CD2BACC0071022C /* Products */ = { + isa = PBXGroup; + children = ( + 2A2D2A792CD2BACC0071022C /* SQLiteExplorations.app */, + 2A2D2A892CD2BAD00071022C /* SQLiteExplorationsTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 2A2D2A782CD2BACC0071022C /* SQLiteExplorations */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2A2D2A9D2CD2BAD00071022C /* Build configuration list for PBXNativeTarget "SQLiteExplorations" */; + buildPhases = ( + 2A2D2A752CD2BACC0071022C /* Sources */, + 2A2D2A762CD2BACC0071022C /* Frameworks */, + 2A2D2A772CD2BACC0071022C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + 2A2D2A7B2CD2BACC0071022C /* SQLiteExplorations */, + ); + name = SQLiteExplorations; + packageProductDependencies = ( + 2AA9B3BC2CDAB9BD00BB83C0 /* GRDB */, + ); + productName = SQLiteExplorations; + productReference = 2A2D2A792CD2BACC0071022C /* SQLiteExplorations.app */; + productType = "com.apple.product-type.application"; + }; + 2A2D2A882CD2BAD00071022C /* SQLiteExplorationsTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2A2D2AA02CD2BAD00071022C /* Build configuration list for PBXNativeTarget "SQLiteExplorationsTests" */; + buildPhases = ( + 2A2D2A852CD2BAD00071022C /* Sources */, + 2A2D2A862CD2BAD00071022C /* Frameworks */, + 2A2D2A872CD2BAD00071022C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 2A2D2A8B2CD2BAD00071022C /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + 2A2D2A8C2CD2BAD00071022C /* SQLiteExplorationsTests */, + ); + name = SQLiteExplorationsTests; + packageProductDependencies = ( + ); + productName = SQLiteExplorationsTests; + productReference = 2A2D2A892CD2BAD00071022C /* SQLiteExplorationsTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 2A2D2A712CD2BACC0071022C /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1610; + LastUpgradeCheck = 1610; + TargetAttributes = { + 2A2D2A782CD2BACC0071022C = { + CreatedOnToolsVersion = 16.1; + }; + 2A2D2A882CD2BAD00071022C = { + CreatedOnToolsVersion = 16.1; + TestTargetID = 2A2D2A782CD2BACC0071022C; + }; + }; + }; + buildConfigurationList = 2A2D2A742CD2BACC0071022C /* Build configuration list for PBXProject "SQLiteExplorations" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 2A2D2A702CD2BACC0071022C; + minimizedProjectReferenceProxies = 1; + packageReferences = ( + 2AA9B3BB2CDAB9BD00BB83C0 /* XCRemoteSwiftPackageReference "GRDB" */, + ); + preferredProjectObjectVersion = 77; + productRefGroup = 2A2D2A7A2CD2BACC0071022C /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 2A2D2A782CD2BACC0071022C /* SQLiteExplorations */, + 2A2D2A882CD2BAD00071022C /* SQLiteExplorationsTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 2A2D2A772CD2BACC0071022C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2A2D2A872CD2BAD00071022C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 2A2D2A752CD2BACC0071022C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2A2D2A852CD2BAD00071022C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 2A2D2A8B2CD2BAD00071022C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 2A2D2A782CD2BACC0071022C /* SQLiteExplorations */; + targetProxy = 2A2D2A8A2CD2BAD00071022C /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 2A2D2A9B2CD2BAD00071022C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.1; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 6.0; + }; + name = Debug; + }; + 2A2D2A9C2CD2BAD00071022C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.1; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_VERSION = 6.0; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 2A2D2A9E2CD2BAD00071022C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SQLiteExplorations; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 2A2D2A9F2CD2BAD00071022C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SQLiteExplorations; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 2A2D2AA12CD2BAD00071022C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.1; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SQLiteExplorationsTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SQLiteExplorations.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/SQLiteExplorations"; + }; + name = Debug; + }; + 2A2D2AA22CD2BAD00071022C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.1; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = co.pointfree.SQLiteExplorationsTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SQLiteExplorations.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/SQLiteExplorations"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2A2D2A742CD2BACC0071022C /* Build configuration list for PBXProject "SQLiteExplorations" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2A2D2A9B2CD2BAD00071022C /* Debug */, + 2A2D2A9C2CD2BAD00071022C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2A2D2A9D2CD2BAD00071022C /* Build configuration list for PBXNativeTarget "SQLiteExplorations" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2A2D2A9E2CD2BAD00071022C /* Debug */, + 2A2D2A9F2CD2BAD00071022C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2A2D2AA02CD2BAD00071022C /* Build configuration list for PBXNativeTarget "SQLiteExplorationsTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2A2D2AA12CD2BAD00071022C /* Debug */, + 2A2D2AA22CD2BAD00071022C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCRemoteSwiftPackageReference section */ + 2AA9B3BB2CDAB9BD00BB83C0 /* XCRemoteSwiftPackageReference "GRDB" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "http://github.com/groue/GRDB.swift"; + requirement = { + branch = "v7.0.0-beta.6"; + kind = branch; + }; + }; +/* End XCRemoteSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 2AA9B3BC2CDAB9BD00BB83C0 /* GRDB */ = { + isa = XCSwiftPackageProductDependency; + package = 2AA9B3BB2CDAB9BD00BB83C0 /* XCRemoteSwiftPackageReference "GRDB" */; + productName = GRDB; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 2A2D2A712CD2BACC0071022C /* Project object */; +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AccentColor.colorset/Contents.json b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 00000000..eb878970 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AppIcon.appiconset/Contents.json b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..23058801 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,35 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/Contents.json b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/Contents.json new file mode 100644 index 00000000..73c00596 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/ContentView.swift b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/ContentView.swift new file mode 100644 index 00000000..f6a40a67 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/ContentView.swift @@ -0,0 +1,17 @@ +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundStyle(.tint) + Text("Hello, world!") + } + .padding() + } +} + +#Preview { + ContentView() +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Models.swift b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Models.swift new file mode 100644 index 00000000..e453a5ec --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/Models.swift @@ -0,0 +1,15 @@ +import Foundation +import GRDB + +struct Player: TableRecord, EncodableRecord, Encodable, MutablePersistableRecord { + static let databaseTableName = "players" + + var id: Int64? + var name = "" + var createdAt: Date + var isInjured = false + + mutating func didInsert(_ inserted: InsertionSuccess) { + id = inserted.rowID + } +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/SQLiteExplorationsApp.swift b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/SQLiteExplorationsApp.swift new file mode 100644 index 00000000..2d49dbe0 --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorations/SQLiteExplorationsApp.swift @@ -0,0 +1,156 @@ +import GRDB +import SQLite3 +import SwiftUI +import Synchronization + +@main +struct SQLiteExplorationsApp: App { + init() { + do { + let databasePath = URL.documentsDirectory.appending(path: "db.sqlite") + .path() + print("open", databasePath) + var config = Configuration() + config.prepareDatabase { + $0.trace { print($0) } + } + let databaseQueue = try DatabaseQueue( + path: databasePath, + configuration: config + ) + var migrator = DatabaseMigrator() + #if DEBUG + migrator.eraseDatabaseOnSchemaChange = true + #endif + migrator.registerMigration("Create 'players' table") { db in + try db.create(table: Player.databaseTableName) { table in + table.autoIncrementedPrimaryKey("id") + table.column("name", .text).notNull() + table.column("createdAt", .datetime).notNull() + } + } + migrator.registerMigration("Add 'isInjured' to 'players'") { db in + try db.alter(table: Player.databaseTableName) { table in + table.add(column: "isInjured", .boolean).defaults(to: false) + } + } + try migrator.migrate(databaseQueue) + + try databaseQueue.write { db in + var insertedPlayer = try Player(name: "Blob", createdAt: Date(), isInjured: true) + .inserted(db) + insertedPlayer.name += " Jr." + try insertedPlayer.update(db) + } + } catch { + fatalError(error.localizedDescription) + } + } + + var body: some Scene { + WindowGroup { + ContentView() + } + } +} + +func sqlite3() { + let databasePath = URL.documentsDirectory.appending(path: "db.sqlite") + .path() + print("open", databasePath) + var db: OpaquePointer? + guard + sqlite3_open_v2( + databasePath, + &db, + SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, + nil + ) == SQLITE_OK + else { + fatalError("Could not open database at \(databasePath)") + } + print( + "Create table", + sqlite3_exec( + db, + """ + CREATE TABLE IF NOT EXISTS "players" ( + "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE, + "name" TEXT NOT NULL, + "createdAt" DATETIME NOT NULL + ) + """, + nil, + nil, + nil + ) == SQLITE_OK + ) + let name = "Blob" + let createdAt = Date() + var statement: OpaquePointer? + sqlite3_prepare_v2( + db, + """ + INSERT INTO "players" + ("name", "createdAt") + VALUES + (?, ?) + """, + -1, + &statement, + nil + ) + let SQLITE_TRANSIENT = unsafeBitCast(-1, to: sqlite3_destructor_type.self) + print( + "Binding name", + sqlite3_bind_text( + statement, + 1, + name, + -1, + SQLITE_TRANSIENT + ) == SQLITE_OK + ) + print( + "Binding createdAt", + sqlite3_bind_int64( + statement, + 2, + Int64(createdAt.timeIntervalSince1970) + ) == SQLITE_OK + ) + print( + "Insert Blob", + sqlite3_step(statement) == SQLITE_DONE + ) + print( + "Finalize insert", + sqlite3_finalize(statement) == SQLITE_OK + ) + statement = nil + sqlite3_prepare_v2( + db, + """ + SELECT * FROM "players" WHERE "createdAt" > ? + """, + -1, + &statement, + nil + ) + sqlite3_bind_int64( + statement, 1, Int64(Date().addingTimeInterval(-10).timeIntervalSince1970)) + while sqlite3_step(statement) == SQLITE_ROW { + struct Player { + let id: Int64 + let name: String + let createdAt: Date + } + let id: Int64 = sqlite3_column_int64(statement, 0) + let name = String(cString: sqlite3_column_text(statement, 1)) + let createdAt = Date( + timeIntervalSince1970: Double(sqlite3_column_int64(statement, 2))) + let player = Player(id: id, name: name, createdAt: createdAt) + print(player) + } + sqlite3_finalize(statement) +} diff --git a/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorationsTests/SQLiteExplorationsTests.swift b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorationsTests/SQLiteExplorationsTests.swift new file mode 100644 index 00000000..eca431bc --- /dev/null +++ b/0302-sqlite-pt2/SQLiteExplorations/SQLiteExplorationsTests/SQLiteExplorationsTests.swift @@ -0,0 +1,17 @@ +// +// SQLiteExplorationsTests.swift +// SQLiteExplorationsTests +// +// Created by Point-Free on 10/30/24. +// + +import Testing +@testable import SQLiteExplorations + +struct SQLiteExplorationsTests { + + @Test func example() async throws { + // Write your test here and use APIs like `#expect(...)` to check expected conditions. + } + +} diff --git a/README.md b/README.md index f2a77a8d..f6795cf8 100644 --- a/README.md +++ b/README.md @@ -303,3 +303,4 @@ This repository is the home of code written on episodes of [Point-Free](https:// 1. [Back to Basics: Hashable References](0299-back-to-basics-equatable-pt3) 1. [Back to Basics: Advanced Hashable](0300-back-to-basics-equatable-pt4) 1. [SQLite: The C Library](0301-sqlite-pt1) +1. [SQLite: GRDB](0302-sqlite-pt2)