Giter VIP home page Giter VIP logo

pinglet's Introduction

Pinglet

A little ping package written in modern swift.

This project is based on SwiftyPing: https://github.com/samiyr/SwiftyPing

Added features

  • Background pings: all network activity can be offloaded to a background thread.
  • Includes support for pinging when the app is inactive on iOS.
  • Conforms to ObservableObject and publishers for SwiftUI and Combine pipelines.
  • Multithreaded: Pings are sent and received independently of each other (i.e. you can send another ping before any previous pings have returned).

Usage

// Ping indefinitely with closure callback
let pinglet = try? Pinglet(host: "1.1.1.1", configuration: PingConfiguration(interval: 0.5, with: 5), queue: DispatchQueue.global())
pinglet?.responseObserver = { (response) in
    let duration = response.duration
    print(duration)
}
try? pinglet?.startPinging()

// Ping once with closure callback
let once = try? Pinglet(host: "1.1.1.1", configuration: PingConfiguration(interval: 0.5, with: 5), queue: DispatchQueue.global())
once?.responseObserver = { (response) in
    let duration = response.duration
    print(duration)
}
once?.targetCount = 1
try? once?.startPinging()

// Ping indefinitely with combine publishers
let pinglet = try? Pinglet(host: "1.1.1.1", configuration: PingConfiguration(interval: 0.5, with: 5), queue: DispatchQueue.global())
pinglet.$responses
       .sink { (pings: [PingResponse]) in
           print("ping count: \(pings.count)")
       }
       .store(in: &subscriptions)

pinglet.responsePublisher
        .sink(receiveCompletion: { completion in  },
                receiveValue: { response in
                    print("response: \(response.duration)")
                })
        .store(in: &subscriptions)

Installation

Swift Package Manager:

.Package(url: "https://github.com/CocoaBeans/Pinglet.git", branch: "main")

Future development and contributions

I made this project based on what I need for PingPoint, so I probably won't be adding any features unless I really need them. I will maintain it (meaning bug fixes and support for new Swift versions) for some time at least. However, you can submit a pull request and I'll take a look. Please try to keep the overall coding style.

Original Caveat Emptor

This is low-level code, basically C code translated to Swift. This means that there are unsafe casts from raw bytes to Swift structs, for which Swift's usual type safety checks no longer apply. These can fail ungracefully (throwing an exception), and may even be used as an exploit (I'm not a security researcher and thus don't have the expertise to say for sure), so use with caution, especially if pinging untrusted hosts.

Also, while I think that the API is now stable, I don't make any guarantees โ€“ some new version might break old stuff.

License

Licensed under MIT.

pinglet's People

Contributors

cocoabeans avatar

Stargazers

 avatar  avatar

Watchers

 avatar

pinglet's Issues

High CPU Usage When Called from Background

My iOS app experiences occasional high CPU usage, which sometimes occurs after two background calls to the Pinglet service and may, at times, take longer to manifest. even when the app is not actively in the foreground. The elevated CPU usage can impact the overall performance of the device and potentially result in reduced battery life.

I try with DispatchQueue.global() and
let SERIAL_QUEUE = DispatchQueue(label: "PINGER_SERIAL_QUEUE", qos: .background)
but same result.
Screenshot 2023-09-03 at 8 52 08

Screenshot 2023-09-03 at 8 43 36

Crash - Socket2Me._openNetworkSocket() EXC_BAD_ACCESS (KERN_INVALID_ADDRESS)

Socket2Me._openNetworkSocket()
EXC_BAD_ACCESS (KERN_INVALID_ADDRESS)

Crashed: Thread
0 CoreFoundation 0x81968 _CFGetNonObjCTypeID + 92
1 CoreFoundation 0xd44ac CFSocketCreateRunLoopSource + 76
2 Saverone 0x13505c Socket2Me._openNetworkSocket() + 148 (Socket2Me.swift:148)
3 Saverone 0x134dc4 @objc Socket2Me.createSocketDetached() + 75 (Socket2Me.swift:75)
4 Foundation 0x5b808 NSThread__start + 716
5 libsystem_pthread.dylib 0x16cc _pthread_start + 148
6 libsystem_pthread.dylib 0xba4 thread_start + 8

Screenshot 2023-09-21 at 14 21 01

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.