Giter Club home page Giter Club logo

Comments (4)

codefromthecrypt avatar codefromthecrypt commented on July 21, 2024

I could use this. currently

ByteString.decodeBase64(reader.nextString()).toByteArray()

and

new Buffer().write(value.value).readByteString().base64Url()

from moshi.

bjdodson avatar bjdodson commented on July 21, 2024

We are using this on Android:

    Moshi moshi = new Moshi.Builder()
            .add(new JsonAdapter.Factory() {
                @Override
                public JsonAdapter<?> create(Type type, Set<? extends Annotation> annotations, Moshi moshi) {
                    Class<?> raw = Types.getRawType(type);
                    if (raw == byte[].class) {
                        return new Base64Adapter().nullSafe();
                    }

                    return null;
                }
            })
            .build();

    class Base64Adapter extends JsonAdapter<byte[]>  {
        @Override
        public byte[] fromJson(JsonReader reader) throws IOException {
            String string = reader.nextString();
            return Base64.decode(string, Base64.NO_WRAP);
        }

        @Override
        public void toJson(JsonWriter writer, byte[] bytes) throws IOException {
            String string = Base64.encodeToString(bytes, Base64.NO_WRAP);
            writer.value(string);
        }
    }

The factory seems like boilerplate that may be unneeded for similar adapters. Perhaps a new builder.add() that fetches the raw type:

   Moshi moshi = new Moshi.Builder()
       .add(byte[].class, new Base64Adapter().nullSafe(), true)
       .build()

from moshi.

swankjesse avatar swankjesse commented on July 21, 2024

There is an overload that bypasses the factory. But even better is to use annotations:

  Moshi moshi = new Moshi.Builder()
      .add(new Base64Adapter())
      .build();

  class Base64Adapter {
    @FromJson byte[] fromJson(String string) {
      return Base64.decode(string, Base64.NO_WRAP);
    }

    @ToJson public String toJson(byte[] bytes) {
      return Base64.encodeToString(bytes, Base64.NO_WRAP);
    }
  }

from moshi.

bjdodson avatar bjdodson commented on July 21, 2024

Clean! But this still fails for me when the byte[] is used as the value of a Map, for example. Conversion using Types.getRawType(type) in the Factory was my fix.

class ClusterIdentities {
    ...

    @Json(name = "ClusterKeys")
    public Map<String, byte[]> clusterKeys;
}
E/AndroidRuntime(14763): com.squareup.moshi.JsonDataException: Expected BEGIN_ARRAY but was STRING at path $.ClusterKeys.ONE
E/AndroidRuntime(14763):    at com.squareup.moshi.JsonReader.beginArray(JsonReader.java:346)
E/AndroidRuntime(14763):    at com.squareup.moshi.ArrayJsonAdapter.fromJson(ArrayJsonAdapter.java:53)
E/AndroidRuntime(14763):    at com.squareup.moshi.JsonAdapter$1.fromJson(JsonAdapter.java:68)
E/AndroidRuntime(14763):    at com.squareup.moshi.MapJsonAdapter.fromJson(MapJsonAdapter.java:68)
E/AndroidRuntime(14763):    at com.squareup.moshi.MapJsonAdapter.fromJson(MapJsonAdapter.java:29)
E/AndroidRuntime(14763):    at com.squareup.moshi.JsonAdapter$1.fromJson(JsonAdapter.java:68)
E/AndroidRuntime(14763):    at com.squareup.moshi.ClassJsonAdapter$FieldBinding.read(ClassJsonAdapter.java:183)
E/AndroidRuntime(14763):    at com.squareup.moshi.ClassJsonAdapter.fromJson(ClassJsonAdapter.java:144)
E/AndroidRuntime(14763):    at com.squareup.moshi.JsonAdapter$1.fromJson(JsonAdapter.java:68)
E/AndroidRuntime(14763):    at com.squareup.moshi.JsonAdapter.fromJson(JsonAdapter.java:33)
E/AndroidRuntime(14763):    at com.squareup.moshi.JsonAdapter.fromJson(JsonAdapter.java:37)
E/AndroidRuntime(14763):    at mobisocial.serialization.SerializationUtils.fromJson(SerializationUtils.java:48)
E/AndroidRuntime(14763):    at mobisocial.longdan.ClusterIdentities.getConfiguration(ClusterIdentities.java:85)
E/AndroidRuntime(14763):    at mobisocial.omlib.client.LongdanClient.configureIdpConnection(LongdanClient.java:327)
E/AndroidRuntime(14763):    at mobisocial.omlib.client.LongdanClient.<init>(LongdanClient.java:152)
E/AndroidRuntime(14763):    at mobisocial.omlib.service.LongdanClientHelper.resetInstance(LongdanClientHelper.java:46)
E/AndroidRuntime(14763):    at mobisocial.omlib.service.LongdanClientHelper.getInstance(LongdanClientHelper.java:34)
E/AndroidRuntime(14763):    at mobisocial.omlib.service.OmlibService.getLdClient(OmlibService.java:279)
E/AndroidRuntime(14763):    at mobisocial.omlib.service.OmlibService$3.run(OmlibService.java:165)
E/AndroidRuntime(14763):    at java.lang.Thread.run(Thread.java:818)

from moshi.

Related Issues (20)

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.