Coder Social home page Coder Social logo

Unable to read List<String> about hive HOT 10 CLOSED

isar avatar isar commented on July 3, 2024
Unable to read List

from hive.

Comments (10)

Afsar-Pasha avatar Afsar-Pasha commented on July 3, 2024 2

From the docs

Lists returned by get() are always of type List (Maps of type Map<dynamic, dynamic>). Use list.cast() to cast them to a specific type.

from hive.

bolasim avatar bolasim commented on July 3, 2024 1

Hive version:

Hive

hive: ^0.5.0

from hive.

bolasim avatar bolasim commented on July 3, 2024

Do you have an example? I tried casting in the read function itself and it still fails.

from hive.

bolasim avatar bolasim commented on July 3, 2024

I got it to work by changing the read code in the generator to the following:

        case 3:
          obj.sectionTitles =
              reader.read()?.cast<String>();

Would it be worth changing the generator to have this as the default case for processing list in Adapters?

from hive.

simc avatar simc commented on July 3, 2024

Which version of hive_generator are you using? The newest version should cast automatically...

from hive.

bolasim avatar bolasim commented on July 3, 2024

hive_generator: ^0.4.0+1

It was trying to cast like this


          obj.verses = reader.read()?.map((dynamic e) => e as String)?.toList();

but would still throw the same error.

from hive.

simc avatar simc commented on July 3, 2024

Thanks, I'll investigate that.

Edit: Which hive version are you using?

from hive.

simc avatar simc commented on July 3, 2024

Could you please share the output of hive_generator?

from hive.

bolasim avatar bolasim commented on July 3, 2024
// GENERATED CODE - DO NOT MODIFY BY HAND

part of 'chapter.dart';

// **************************************************************************
// TypeAdapterGenerator
// **************************************************************************

class ChapterAdapter extends TypeAdapter<Chapter> {
  @override
  Chapter read(BinaryReader reader) {
    var obj = Chapter();
    var numOfFields = reader.readByte();
    for (var i = 0; i < numOfFields; i++) {
      switch (reader.readByte()) {
        case 0:
          obj.number = reader.read() as int;
          break;
        case 1:
          obj.numVerses = reader.read() as int;
          break;
        case 2:
          obj.numSections = reader.read() as int;
          break;
        case 3:
          obj.sectionTitles =
              reader.read()?.map((dynamic e) => e as String)?.toList();
          break;
        case 4:
          obj.sectionStartVerses =
              reader.read()?.map((dynamic e) => e as int)?.toList();
          break;
        case 5:
          obj.verses = reader.read()?.map((dynamic e) => e as String)?.toList();
          break;
      }
    }
    return obj;
  }

  @override
  void write(BinaryWriter writer, Chapter obj) {
    writer.writeByte(6);
    writer.writeByte(0);
    writer.write(obj.number);
    writer.writeByte(1);
    writer.write(obj.numVerses);
    writer.writeByte(2);
    writer.write(obj.numSections);
    writer.writeByte(3);
    writer.write(obj.sectionTitles);
    writer.writeByte(4);
    writer.write(obj.sectionStartVerses);
    writer.writeByte(5);
    writer.write(obj.verses);
  }
}

from hive.

simc avatar simc commented on July 3, 2024

This is fixed with hive_generator: 0.4.0+2

from hive.

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.