NsdHelper


Source link: https://github.com/rafakob/NsdHelper

NsdHelper

NsdHelper is a wrapper/helper library for Android Network Service Discovery. I've created it for my own purpose (mostly for discovering HTTP services in LAN) to simplify the whole NSD process. I also added couple of nice features (timeout, detailed log) and fixed a #71367 using simple FIFO queue. All public methods are well documented so it should be pretty straightforward to use.

Important!

Please note that it still under development and needs couple of tests. If you find any bugs please post an issue or create a pull request.

Install

Add it in your root build.gradle at the end of repositories:

allprojects {
  repositories {

...
maven {
 url "https://jitpack.io" 
}
  
}
 
}

Add the dependency:

dependencies {

compile 'com.github.rafakob:NsdHelper:VERSION' 
}

How to use it

Setup and config

Class NsdHelper requires activity context in order to create NsdManager instance. There is only one listener ( NsdListener) for all NSD actions (registration, discovery, resolve):

public class MainActivity extends AppCompatActivity implements NsdListener {

  NsdHelper nsdHelper;

 @Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_login);

 nsdHelper = new NsdHelper(this, this);

nsdHelper.setLogEnabled(true);

nsdHelper.setAutoResolveEnabled(true);

nsdHelper.setDiscoveryTimeout(30);

...
  
}

  ... 
}

Configuration methods:

  • setLogEnabled(boolean enabled) - enable logcat messages (default: false)
  • setAutoResolveEnabled(boolean enabled) - resolve service immediately after it was discovered (default: true)
  • setDiscoveryTimeout(int seconds) - if no new service has been discovered for a timeout interval, discovering will be stopped

Dont forget about internet permissions:

<uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

Registration

nsdHelper.registerService("Chat", NsdType.HTTP);
 ... nsdHelper.unregisterService();

Discovery

nsdHelper.startDiscovery(NsdType.HTTP);
 ... nsdHelper.stopDiscovery();

Resolve

nsdHelper.resolveService(nsdService);

Listeners

There is only one listener common for all actions. Implement NsdListener interface:

@Override public void onNsdRegistered(NsdService registeredService) {
 
}
  @Override public void onNsdDiscoveryFinished() {
 
}
  @Override public void onNsdServiceFound(NsdService foundService) {
 
}
  @Override public void onNsdServiceResolved(NsdService resolvedService) {
 
}
  @Override public void onNsdServiceLost(NsdService lostService) {
 
}
  @Override public void onNsdError(String errorMessage, int errorCode, String errorSource) {
 
}

Example logcat output

D/NsdHelper: Service discovery started. D/NsdHelper: Service found -> Kodi (OpenELEC) D/NsdHelper: Service found -> ds115 D/NsdHelper: Service resolved -> Kodi (OpenELEC), OpenElec.lan/192.168.1.110, port 80, ._http._tcp D/NsdHelper: Service resolved -> ds115, DS115.lan/192.168.1.102, port 5000, ._http._tcp D/NsdHelper: Registered -> Chat D/NsdHelper: Service discovery stopped. D/NsdHelper: Unregistered -> Chat 

License

Copyright 2016 Rafa? Koby?ko  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

FeedFire is a project to help developers integrate with Google Firebase.

Customizable Android Particles Drawable and View.

KPoet is a Kotlin extensions library on top of JavaPoet that helps you write code generators / annotation processors that feel like actually writing Java code directly. It provides a Kotlin DSL syntax that resembles real java code as much as possible. Also it attempts to make the code generator writing clear as writing native java code itself.

A lightweight iOS switch view style for Android.

Skygear Server is a cloud backend for making web and mobile app development easier https://skygear.io.

The Skygear Android SDK library that gives you access to the Skygear Server from your Android app.

Expansion pack for Android Volley Framework.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes