Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding auto generated toString method for structs #2169

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

gtebrean
Copy link
Contributor

What does this PR do?

required

Where should the reviewer start?

required

Why is it needed?

required

Checklist

  • I've read the contribution guidelines.
  • I've added tests (if applicable).
  • I've added a changelog entry if necessary.

@aceppaluni
Copy link

What does this PR do?

  • This PR aims to address issue Auto generated toString method for structs #2151, adding in auto generated toString() method for structs.
    Where should the reviewer start?
  • The review should begin with testing the generateToStringMethod() for any errors. Currently there is an assertion error within the testing suit.
    Why is it needed?
  • The method is needed so as to retrieve objects and assist with prototyping and logging.

//String actualMethodBody = toStringMethod.toString();
//assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"' }\";"));
//assertTrue(actualMethodBody.contains(expectedFormat), "The toString method was not generated correctly.");
assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"' }\";"),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"' }\";"),
assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"', }\";"),

This will fix the current test.

However I have some points about the current approach.

  1. If this is just a dreft is fine, else copy /pasting the code in this class in a private method to test it is not the right thing.
  2. For the moment I will stop do any changes on Solidity wrapper generator and have a look at what we have right now in this file you can find how to generate smart contracts with stucts https://blog.web3labs.com/hyperledger-web3j-truly-decode-support-for-dynamic-solidity-structs/.
  3. There are 2 ways to do it, first I would recommend to check what to string returns on a TypeReference struct and if we can update only that class.
  4. 2nd check the final wrapper where exactly should be the to string written when there is a struct (in both cases TypeReference and Struct class type),
    By covering this we can make a plan and start implementing.

Copy link

@aceppaluni aceppaluni Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, @gtebrean Thank you!

  1. I corrected the issues with the code and test code.
  2. Sounds good, if I can help please let me know.
  3. I will take a look at TypeRefrence to see what is returned.
  4. Ill double check and see where this should be placed.

@@ -519,6 +519,7 @@ private List<TypeSpec> buildStructTypes(final List<AbiDefinition> functionDefini
final TypeSpec.Builder builder =
TypeSpec.classBuilder(structName)
.addModifiers(Modifier.PUBLIC, Modifier.STATIC);
builder.addMethod(generateToStringMethod(namedType.getComponents())); // ADDED THIS LINE
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @aceppaluni,
I guess you wont need a comment here

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @Julius278 That was my mistake. They were left behind from when I was testing. Ill be sure to remove then, thank you!

@@ -602,6 +603,7 @@ private List<TypeSpec> buildStructTypes(final List<AbiDefinition> functionDefini

builder.superclass(namedType.isDynamic() ? DynamicStruct.class : StaticStruct.class);
builder.addMethod(constructorBuilder.build());
builder.addMethod(generateToStringMethod(namedType.getComponents())); // Added this line
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here, no comment needed

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Julius278 Will remove :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants