Giter Site home page Giter Site logo

smash's Introduction

Build Status

Smash is Volley inspired networking library that's using OkHttp in its core.

Usage

Add Smash library to your project build.gradle

dependencies
{
    compile 'pl.appformation:smash:0.3.0'
}

Instantiate one shared SmashQueue object (e.g. in your Application class):

mSmashQueue = Smash.buildSmashQueue(getApplicationContext());

To request content of server as String do following:

String url = "https://github.com/appformation/smash";
SmashStringRequest request = new SmashStringRequest(SmashRequest.Method.GET, url,
        new SmashResponse.SuccessListener<String>()
        {
            public void onResponse(String response)
            {
                handleMyNiftyResponse(response);
            }
        }, new SmashResponse.FailedListener()
        {
            public void onFailedResponse(SmashError error)
            {
                showImpendingDoomError(error);
            }
        });

Request object looks definitely cooler with Retrolambda library:

SmashStringRequest request = new SmashStringRequest(SmashRequest.Method.GET, url,
    this::handleNiftyResponse, this::showImpendingDoomError);

Constructed request this way we now need to add to our SmashQueue:

mSmashQueue.add(request);

Adding custom headers to request:

SmashStringRequest request = ...
request.setHeaders(Headers.of("CustomHeader", "Value",
                              "AnotherHeader", "AnotherValue"));

Why another library?

Some of us like Volley library, it's easy to use and has superb extensibility with Request class, but recent removal of HttpClient in Marshmalow made library obsolete. We also don't like reactive programming. With this in mind came idea to rewrite Volley to use directly all of the internals of OkIo and OkHttp libraries.

What's different than in Volley

  • URL address can be modified, up to the point of reaching dispatcher queue
  • Source class from OkIo is used instead of InputStream
  • Ability to modify User-Agent field globally for all requests
  • Both listeners are obligatory in request constructor
  • To prevent class names conflicting with OkHttp all smash classes have Smash prefix

Things to do

  • Retry policy (for now default from OkHttp is used)
  • Authentication mechanism in requests
  • Moshi support (thanks to OkIo we can use Source class with Moshi)
  • Support for multipart/form-data upload
  • ... and last but not least, unit tests

Changelog

Current version is 0.3.0

Dependencies of version 0.3.0

  • com.squareup.okhttp3:okhttp 3.5.0
  • com.squareup.okhttp3:okhttp-urlconnection 3.5.0
  • com.android.support:support-annotations 25.1.0

License

Copyright (C) 2015-2017 Appformation Sp. z o.o.

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.

smash's People

Contributors

milek avatar swankjesse avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

smash's Issues

Default headers?

Being able to set default headers would be useful; esp. for things like User-Agent

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.