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

[Deprecation] remove storage getters in FRAME #223

Open
kianenigma opened this issue Jan 28, 2023 · 34 comments · May be fixed by paritytech/substrate#13365
Open

[Deprecation] remove storage getters in FRAME #223

kianenigma opened this issue Jan 28, 2023 · 34 comments · May be fixed by paritytech/substrate#13365
Labels
C2-good-first-issue A task for a first time contributor to become familiar with the Polkadot-SDK. D0-easy Can be fixed primarily by duplicating and adapting code by an intermediate coder. T1-FRAME This PR/Issue is related to core FRAME, the framework. T13-deprecation The current issue/pr is, or should be, part of a deprecation process.

Comments

@kianenigma
Copy link
Contributor

kianenigma commented Jan 28, 2023

... or for now mark them as deprecated, and just remove all usage in substrate.

Tracking issue: #3326

@kianenigma kianenigma changed the title remove storage getters` remove storage getters in FRAME Jan 28, 2023
@bkchr
Copy link
Member

bkchr commented Jan 28, 2023

Which storage getters? You mean the get(fn something) attribute?

@bkchr
Copy link
Member

bkchr commented Jan 28, 2023

If yes, what you expect as replacement? Just a normal function?

@kianenigma
Copy link
Contributor Author

Yes, manually implemented if needed. getters are one of the last pieces of "magic code" that FRAME macros generate and the less of that we have, the better.

@kianenigma
Copy link
Contributor Author

@muraca will work on this.

@kianenigma kianenigma assigned kianenigma and unassigned kianenigma Jan 30, 2023
@shawntabrizi
Copy link
Member

I have also found it easier to audit storage access by searching for StorageName::<T>::. This getter pattern can obfuscate that.

I think the world would be better without it.

@ruseinov
Copy link
Contributor

I have also found it easier to audit storage access by searching for StorageName::<T>::. This getter pattern can obfuscate that.

I think the world would be better without it.

Arguably it's just a matter of adding #[pallet::getter( pattern into the mix, but tbh I totally agree that the micro-convenience of this is probably not worth it. If there's too much bloat - implementing this is quite easy. The cool thing about this macro though is that allows for not supplying the type, because even if we implement this by hand, it'd still need to be something like get_blah::<T>. That said, visibility is more important.

@muraca
Copy link
Contributor

muraca commented Jan 31, 2023

Hi folks! I have two questions:

  1. What should the deprecation message look like? At the moment, I put "#[pallet::getter] is deprecated and will be unavailable in future versions.".
  2. Should I manually implement getters for all the Storage items which don't have a pub identifier? I think the auto-generated getters are set as public to be reachable from other pallets. Inside the pallet itself, I'll use the StorageName::<T>:: syntax anyway.
    edit: There are lots of storage items which have getters used by other pallets. At this point, I think it would make sense to manually implement all the getters I'm removing, because giving pub access to storage items implies that external pallets could also write on them.

@bkchr
Copy link
Member

bkchr commented Feb 6, 2023

I have also found it easier to audit storage access by searching for StorageName::<T>::

That will not bring you that much as you can also do <StorageName<T>>::get() :P

@kianenigma
Copy link
Contributor Author

I have also found it easier to audit storage access by searching for StorageName::<T>::

That will not bring you that much as you can also do <StorageName<T>>::get() :P

Needing to keep an eye for 2 patterns is still less than 3 🙈

@bkchr
Copy link
Member

bkchr commented Feb 6, 2023

I don't wanted to argue against this issue :P

@kianenigma
Copy link
Contributor Author

kianenigma commented Apr 20, 2023

I have been having a lot of second doubt about this given some recent discussions elsewhere.

I can see two arguments against getters:

  1. Code that is generated, which you don't write yourself, going against "explicitness". This also means more things that we have to "teach".
  2. Harder audit. I think it is a mental help for reading FRAME code to actually distinguish between a function that reads storage with a slightly different syntax, directly referring the storage struct rather than a function.

The former is not a particularly strong argument, and if you really want to go down that rabbit whole, there is a lot of such code in FRAME and it is futile to pursue explicit-ness in an absolutist manner.

The latter is a stronger argument, but I am having a hard time convincing myself that is is the right fit for everyone. If I/some Parity developers don't like getters, we can simply not use them internally. Reviewing external code would still be a pain for me, but that would be my problem. But, IFF we could gather the data to argue that majority of FRAME developers think similar to me, then we could argue that the readability of code improves across the ecosystem if we agree on one paradigm.

@gavofyork
Copy link
Member

FWIW I originally introduced this and I no longer use it prefering instead consistency of the ::get() API. I'm happy to mark as deprecated and remove usages.

@KiChjang
Copy link
Contributor

I believe that there is a use case for getters, and that is that of publicity -- you may have a storage item that is private or crate-public, but you also want people to be able to publicly get the value under the storage item, so you expose the getter. In short, the getter attribute is useful when you only want to expose the read functionality, but nothing else.

@muraca
Copy link
Contributor

muraca commented Apr 20, 2023

@KiChjang for that you can manually implement a getter function.

@xlc
Copy link
Contributor

xlc commented Apr 20, 2023

@KiChjang for that you can manually implement a getter function.

That's not a good argement. Many languages offers syntax sugar to generate getter and you can't just say those features should be removed because it is possible to manually write the equivalent code. I don't want to write those code.

The fact that this feature is used in many places means people wants to use them. So why be the bad guy taking away a feature used by people?

@gavofyork
Copy link
Member

@xlc Having the feature does not come for free. Compared to using the Item::get() API (rather than Self::get_item()) It's extra code both in Substrate (to support the macro) and in pallets (the attribute macro).

So the question is not "people are using it; why remove it?" (though admittedly this can reasonably place a time limit on the deprecation timeline). It's instead "what is the benefit of the feature, and what cost does it bring?"; in this case the only real benefit appears to be the ability to have a public getter with all other access of the item (e.g. mutating) being restricted.

The cost is code inconsistency:

  • the same operation can be done in two ways - a pallet might use Item::<T>::get(), Self::get_item() or a mix of the two;
  • you might assume that Self::get_item() is exactly equivalent to Item::<T>::get() however this is not necessarily the case. This might lead to errors in review or audit.

As well as additional complexity in the pallet and substrate to support the feature.

Personally, I'm unconvinced that the benefit outweighs the cost. Perhaps there are other unspecified benefits (if so it would be good to bring these up). If the feature is determined to be not worth the cost, then the points of deprecation and final removal (as well as a possible compatibility path like perhaps a frame_compat crate with a macro to do something similar) should be properly discussed and have a timeline of length corresponding to the community's dependence on the feature.

@xlc
Copy link
Contributor

xlc commented Apr 20, 2023

Compatibility path will be very helpful.

I can live without this feature. It is mostly I prefer to not touch code that aren’t broken. Proper deprecation is a must and more discussion with wider audiences will be great.

@kianenigma
Copy link
Contributor Author

I can live without this feature. It is mostly I prefer to not touch code that aren’t broken. Proper deprecation is a must and more discussion with wider audiences will be great.

We can make this be a pilot for learning a mature deprecation path. I know that this has also been discussed internally recently, @ggwpez might be able to chime in. At the moment, our communication is solely based on PRs and the note_worthy label. Usually, we mark a feature as deprecated in substrate and remove usage within our codebase to satisfy the CI. Other teams will see the warning and will have time to remove it. Within a few months, we actually remove the code. At the moment, I can see two issues in this pipeline:

What else we can do?

One thing that comes to mind is making sure such PRs make it into the Substate Developer Newsletter, maintained by @sacha-l, although I am sure he already takes all the PRs that are note-worthy labeled.


Moreover, while we have a few experts in this thread, it would be good to get a few more opinions. This could be a good task for @juangirini and @aaronbassett to take over: find the right means to do some kind of soft-voting within FRAME developers in the ecosystem to see what the sentiment is.

@ggwpez
Copy link
Member

ggwpez commented Apr 21, 2023

Yea I think we can move the creation of this deprecation-process into its own issue @kianenigma, or?

@juangirini
Copy link
Contributor

Yea I think we can move the creation of this deprecation-process into its own issue @kianenigma, or?

@ggwpez @kianenigma @aaronbassett I moved this conversation to a separate issue #182

serban300 pushed a commit to serban300/polkadot-sdk that referenced this issue Apr 9, 2024
serban300 pushed a commit to serban300/polkadot-sdk that referenced this issue Apr 9, 2024
serban300 pushed a commit to serban300/polkadot-sdk that referenced this issue Apr 9, 2024
serban300 pushed a commit to serban300/polkadot-sdk that referenced this issue Apr 9, 2024
serban300 pushed a commit to serban300/polkadot-sdk that referenced this issue Apr 10, 2024
serban300 pushed a commit to serban300/polkadot-sdk that referenced this issue Apr 10, 2024
jonathanudd pushed a commit to jonathanudd/polkadot-sdk that referenced this issue Apr 10, 2024
@ggwpez
Copy link
Member

ggwpez commented Jun 19, 2024

Am not so convinced of this anymore. We are doing breaking changes to all our pallets for no obvious gain.

@xlc
Copy link
Contributor

xlc commented Jun 19, 2024

Am not so convinced of this anymore. We are doing breaking changes to all our pallets for no obvious gain.

100%

we can do this is there are no other work left, which is clearly not the case. there are many CRITICAL open issues and people choose to break code and add more workload to everyone else instead

@shawntabrizi
Copy link
Member

shawntabrizi commented Jun 20, 2024

  • There is nothing breaking about these changes if done right.
    • Just as a pub fn get_variable in impl Pallet
  • It prevents more macro magic and needing to explain people how frame does stuff
  • It prevents confusion for many people in the contract space which think these getters are needed to "read storage"
  • It is a great open issue for brand new contributors to make their first pr
    • so it think it is not in conflict at all with people who actually work on critical open issues

AFAIK, we took the path of deprecation notice for this feature. I don't see how any pallet takes more than 15 min to update.

@xlc
Copy link
Contributor

xlc commented Jun 20, 2024

yeah sure except people are making breaking changes and the breaking changes are merged

@shawntabrizi
Copy link
Member

Sounds like a problem of developers and reviewers. Let's point out those problems, not point fingers at a good initiative.

@kianenigma
Copy link
Contributor Author

kianenigma commented Jul 1, 2024

@xlc

Going forward, we should merge these without breaking change. The new CI warning you about it being a breaking change is enough deterrant to not want to break things needlessly.

There is no one working on this who could have solved anything more important. This initiaitve is a simple one for juniors to get their first contributions into Polkadot, and our support and review of it is value. Putting a stop gap on this is also not going to solve anything. I spend a few minutes every week reviewing this, and other should do the same.

In fact, the same CI system and semver-based release is one of those CRITICAL things that we have indeed solved ;)

github-merge-queue bot pushed a commit that referenced this issue Jul 1, 2024
As per #3326 , removes pallet::getter macro usage from
pallet-membership. The syntax StorageItem::<T, I>::get() should be used
instead. Also converts some syntax to turbo and reimplements the removed
getters, following #223

cc @muraca

---------

Co-authored-by: Dónal Murray <[email protected]>
Co-authored-by: Kian Paimani <[email protected]>
github-merge-queue bot pushed a commit that referenced this issue Jul 3, 2024
…4839)

As per #3326, removes pallet::getter macro usage from the
pallet-insecure-randomness-collective-flip. The syntax `StorageItem::<T,
I>::get()` should be used instead.

Explicitly implements the getters that were removed as well, following
#223

Also makes the storage values public and converts some syntax to turbo

cc @muraca

---------

Co-authored-by: Bastian Köcher <[email protected]>
Co-authored-by: Oliver Tale-Yazdi <[email protected]>
TomaszWaszczyk pushed a commit to TomaszWaszczyk/polkadot-sdk that referenced this issue Jul 7, 2024
As per paritytech#3326 , removes pallet::getter macro usage from
pallet-membership. The syntax StorageItem::<T, I>::get() should be used
instead. Also converts some syntax to turbo and reimplements the removed
getters, following paritytech#223

cc @muraca

---------

Co-authored-by: Dónal Murray <[email protected]>
Co-authored-by: Kian Paimani <[email protected]>
TomaszWaszczyk pushed a commit to TomaszWaszczyk/polkadot-sdk that referenced this issue Jul 7, 2024
…aritytech#4839)

As per paritytech#3326, removes pallet::getter macro usage from the
pallet-insecure-randomness-collective-flip. The syntax `StorageItem::<T,
I>::get()` should be used instead.

Explicitly implements the getters that were removed as well, following
paritytech#223

Also makes the storage values public and converts some syntax to turbo

cc @muraca

---------

Co-authored-by: Bastian Köcher <[email protected]>
Co-authored-by: Oliver Tale-Yazdi <[email protected]>
TarekkMA pushed a commit to moonbeam-foundation/polkadot-sdk that referenced this issue Aug 2, 2024
As per paritytech#3326 , removes pallet::getter macro usage from
pallet-membership. The syntax StorageItem::<T, I>::get() should be used
instead. Also converts some syntax to turbo and reimplements the removed
getters, following paritytech#223

cc @muraca

---------

Co-authored-by: Dónal Murray <[email protected]>
Co-authored-by: Kian Paimani <[email protected]>
TarekkMA pushed a commit to moonbeam-foundation/polkadot-sdk that referenced this issue Aug 2, 2024
…aritytech#4839)

As per paritytech#3326, removes pallet::getter macro usage from the
pallet-insecure-randomness-collective-flip. The syntax `StorageItem::<T,
I>::get()` should be used instead.

Explicitly implements the getters that were removed as well, following
paritytech#223

Also makes the storage values public and converts some syntax to turbo

cc @muraca

---------

Co-authored-by: Bastian Köcher <[email protected]>
Co-authored-by: Oliver Tale-Yazdi <[email protected]>
LGLO added a commit to input-output-hk/partner-chains that referenced this issue Aug 9, 2024
LGLO added a commit to input-output-hk/partner-chains that referenced this issue Aug 9, 2024
LGLO added a commit to input-output-hk/partner-chains that referenced this issue Aug 9, 2024
LGLO added a commit to input-output-hk/partner-chains that referenced this issue Aug 13, 2024
LGLO added a commit to input-output-hk/partner-chains that referenced this issue Aug 13, 2024
@kianenigma kianenigma added the C2-good-first-issue A task for a first time contributor to become familiar with the Polkadot-SDK. label Oct 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C2-good-first-issue A task for a first time contributor to become familiar with the Polkadot-SDK. D0-easy Can be fixed primarily by duplicating and adapting code by an intermediate coder. T1-FRAME This PR/Issue is related to core FRAME, the framework. T13-deprecation The current issue/pr is, or should be, part of a deprecation process.
Projects
Status: Draft
Status: In Progress
Development

Successfully merging a pull request may close this issue.