• Stars
    star
    141
  • Rank 259,971 (Top 6 %)
  • Language
    Swift
  • License
    MIT License
  • Created almost 9 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Import CSV files line by line with ease

Build Status Codebeat Status Version: 1.9.1 Swift: 5.0 Platforms: iOS | tvOS | macOS | Linux License: MIT
PayPal: Donate GitHub: Become a sponsor Patreon: Become a patron

Installation β€’ Usage β€’ Donation β€’ Issues β€’ Contributing β€’ License

CSVImporter

Import CSV files line by line with ease.

Rationale

"Why yet another CSVImporter" you may ask. "There is already SwiftCSV and CSwiftV" you may say. The truth is that these frameworks work well for smaller CSV files. But once you have a really large CSV file (or could have one, because you let the user import whatever CSV file he desires to) then those solutions will probably cause delays and memory issues for some of your users.

CSVImporter on the other hand works both asynchronously (prevents delays) and reads your CSV file line by line instead of loading the entire String into memory (prevents memory issues). On top of that it is easy to use and provides beautiful callbacks for indicating failure, progress, completion and even data mapping if you desire to.

Installation

Currently the recommended way of installing this library is via Carthage on macOS or Swift Package Manager on Linux. Cocoapods might work, too, but is not tested.

You can of course also just include this framework manually into your project by downloading it or by using git submodules.

Usage

Please have a look at the UsageExamples.playground and the Tests/CSVImporterTests/CSVImporterSpec.swift files for a complete list of features provided. Open the Playground from within the .xcworkspace in order for it to work.

Basic CSV Import

First create an instance of CSVImporter and specify the type the data within a line from the CSV should have. The default data type is an array of String objects which would look like this:

let path = "path/to/your/CSV/file"
let importer = CSVImporter<[String]>(path: path)
importer.startImportingRecords { $0 }.onFinish { importedRecords in
    for record in importedRecords {
        // record is of type [String] and contains all data in a line
    }
}

Note that you can specify an alternative delimiter when creating a CSVImporter object alongside the path. The delimiter defaults to , if you don't specify any.

Asynchronous with Callbacks

CSVImporter works asynchronously by default and therefore doesn't block the main thread. As you can see the onFinish method is called once it finishes for using the results. There is also onFail for failure cases (for example when the given path doesn't contain a CSV file), onProgress which is regularly called and provides the number of lines already processed (e.g. for progress indicators). You can chain them as follows:

importer.startImportingRecords { $0 }.onFail {

    print("The CSV file couldn't be read.")

}.onProgress { importedDataLinesCount in

    print("\(importedDataLinesCount) lines were already imported.")

}.onFinish { importedRecords in

    print("Did finish import with \(importedRecords.count) records.")

}

By default the real importing work is done in the .utility global background queue and callbacks are called on the main queue. This way the hard work is done asynchronously but the callbacks allow you to update your UI. If you need a different behavior, you can customize the queues when creating a CSVImporter object like so:

let path = "path/to/your/CSV/file"
let importer = CSVImporter<[String]>(path: path, workQosClass: .background, callbacksQosClass: .utility)

Import Synchronously

If you know your file is small enough or blocking the UI is not a problem, you can also use the synchronous import methods to import your data. Simply call importRecords instead of startImportingRecords and you will receive the end result (the same content as in the onFinish closure when using startImportingRecords) directly:

let importedRecords = importer.importRecords { $0 }

Note that this method doesn't have any option to get notified about progress or failure – you just get the result. Check if the resulting array is empty to recognize potential failures.

Easy data mapping

As stated above the default type is a [String] but you can provide whatever type you like. For example, let's say you have a class like this

class Student {
  let firstName: String, lastName: String
  init(firstName: String, lastName: String) {
    self.firstName = firstName
    self.lastName = lastName
  }
}

and your CSV file looks something like the following

Harry,Potter
Hermione,Granger
Ron,Weasley

then you can specify a mapper as the closure instead of the { $0 } from the examples above like this:

let path = "path/to/Hogwarts/students"
let importer = CSVImporter<Student>(path: path)
importer.startImportingRecords { recordValues -> Student in

    return Student(firstName: recordValues[0], lastName: recordValues[1])

}.onFinish { importedRecords in

    for student in importedRecords {
        // Now importedRecords is an array of Students
    }

}

Header Structure Support

Last but not least some CSV files have the structure of the data specified within the first line like this:

firstName,lastName
Harry,Potter
Hermione,Granger
Ron,Weasley

In that case CSVImporter can automatically provide each record as a dictionary like this:

let path = "path/to/Hogwarts/students"
let importer = CSVImporter<[String: String]>(path: path)
importer.startImportingRecords(structure: { (headerValues) -> Void in

    print(headerValues) // => ["firstName", "lastName"]

}) { $0 }.onFinish { importedRecords in

    for record in importedRecords {
        print(record) // => e.g. ["firstName": "Harry", "lastName": "Potter"]
        print(record["firstName"]) // prints "Harry" on first, "Hermione" on second run
        print(record["lastName"]) // prints "Potter" on first, "Granger" on second run
    }

}

Note: If a records values count doesn't match that of the first lines values count then the record will be ignored.

Donation

BartyCrouch was brought to you by Cihat GΓΌndΓΌz in his free time. If you want to thank me and support the development of this project, please make a small donation on PayPal. In case you also like my other open source contributions and articles, please consider motivating me by becoming a sponsor on GitHub or a patron on Patreon.

Thank you very much for any donation, it really helps out a lot! πŸ’―

Contributing

See the file CONTRIBUTING.md.

License

This library is released under the MIT License. See LICENSE for details.

More Repositories

1

BartyCrouch

Localization/I18n: Incrementally update/translate your Strings files from .swift, .h, .m(m), .storyboard or .xib files.
Swift
1,321
star
2

HandySwift

Handy Swift features that didn't make it into the Swift standard library.
Swift
439
star
3

HandyUIKit

Handy UI features that should have been part of UIKit in the first place.
Swift
124
star
4

AnyLint

Lint anything by combining the power of scripts & regular expressions.
Swift
119
star
5

Imperio

Keep the screen flow and data handling logic out of your view controllers – let them handle view-stuff only.
Swift
57
star
6

Microya

Micro version of the Moya network abstraction layer written in Swift.
Swift
45
star
7

RemafoX

Report issues, request features or ask for help for the ReMafoX app here.
31
star
8

Prayer

Simple app to help understanding the spoken text in islamic prayers.
Swift
30
star
9

ReviewKit

Request reviews only from users with enough recent positive activity and only at appropriate times.
Swift
23
star
10

FitnessTracker-Android

Track your workouts & weight and calculate your BMI and ABSI over time! No ads.
Kotlin
10
star
11

NewFrameworkTemplate

A preconfigured template for new framework projects with batteries included.
Swift
9
star
12

PublicHolidays

An offline database with APIs to check if a given date is on a public holiday for a given region.
Swift
7
star
13

swift-evolution

Proposal Summaries of the Swift Evolution Monthly newsletter (https://swiftevolution.substack.com)
6
star
14

AnyMenu

An easy to use menu framework for any styling use case.
Swift
6
star
15

HandySwiftUI

Handy SwiftUI features that didn't make it into SwiftUI (yet).
Swift
6
star
16

Anything-GO

PokΓ©mon Go inspired augmented reality game concepts for any franchise / community.
6
star
17

JapanizationClassroom

CSS
1
star
18

LaserFocusKit-Swift

Utility library for calculations for applying the "Laser Focus" priority strategy.
Swift
1
star
19

Bitrise-Templates

1
star
20

CapExis

A modern, Swift-native persistance framework for all Apple platforms.
Swift
1
star