Giter Site home page Giter Site logo

browserlauncher's Introduction

XPC Service with Swift

Running an XPC service with an app can support useful features with a lightweight process outside of the main process. One advantage is that a service can be started and stopped without having to restart the main app. It will allow for reducing the memory footprint and increasing stability.

Special access to resources can also be implemented in XPC so critical features are not implemented in the main process which could potentially include a unknown compromise. Services are typically a small amount of code and can be safer because they can be hardened more than the main process and the limited amount of of code can be audited with less effort.

One key resource is the system keychain. Accessing credentials using a service which passes just back what the main process needs is a good way to harden a Mac app. When a service has not been used after a timeout period it could be released. When needed again a new connection can be made to access the service.

Swift Implementation

The default template provided with Xcode only offers Objective-C code. It is possible to do everything with Swift instead. This Gist shows how this can be done.

The Mac app would include the Client while the rest is in the XPC service target.

References

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.