how to get a "hash" of the validator?

for TanStack Start server functions, I try to find out whether a input validator changed from one deployment to another. Is there a way in arktype (or ideally in standard schema) to get a hash or stringified version of the whole validator that I can use for that?
28 Replies
ssalbdivad
ssalbdivad•4w ago
.expression in ArkType is TS syntax representation of the type that will get you most of the way there but wouldn't include all metadata The property you really want is called hash, but I don't expose it by default. You can access it with myType.internal.hash. However, if your schema includes non-serializable conditions, it could change from one build to the next even if the schema itself didn't change
Manuel Schiller
Manuel SchillerOP•4w ago
and I suppose there is nothing in the standard about this either?
ssalbdivad
ssalbdivad•4w ago
No. I do see the utility but it's quite a big ask, I doubt valibot would be able to implement something like that without a significant impact on bundle size At best it would be an optional prop
Manuel Schiller
Manuel SchillerOP•4w ago
optional would be better than nothing 😄 is there any way I could build this myself through some AST traversal? or stringifying a TS type?
ssalbdivad
ssalbdivad•4w ago
In ArkType or what?
Manuel Schiller
Manuel SchillerOP•4w ago
for example yes
ssalbdivad
ssalbdivad•4w ago
.internal.hash is exactly what you are looking for
Manuel Schiller
Manuel SchillerOP•4w ago
oh nice
ssalbdivad
ssalbdivad•4w ago
What I mentioned about non-serializable conditions is true inherently
Manuel Schiller
Manuel SchillerOP•4w ago
what does the hash look like?
ssalbdivad
ssalbdivad•4w ago
Looks like a stringified version of the normalized JSON representation of the type
Manuel Schiller
Manuel SchillerOP•4w ago
cool
ssalbdivad
ssalbdivad•4w ago
If you think about e.g. if you have an anonymous predicate like foo.narrow(() => true), all we can do is generate an id for that like $ark.anonymousFn1 that we store in memory. However, that is not guaranteed to be stable because if e.g. another function is referenced somewhere unrelated, that might end up as anonymousFn2 and the hash would change Maybe an important aspect of the problem more broadly, but not something that you could create a robust workaround for if you had to try and detect that case
Manuel Schiller
Manuel SchillerOP•4w ago
so we could detect changes but not detect whether it is stable
ssalbdivad
ssalbdivad•4w ago
You could always reliably for detect changes for anything serializable. Exceptions to that would be e.g. symbols, custom narrowing or transform functions, === someObject etc. But for any of those things, you could get false negatives, and technically even false positives although the circumstances around that would be very convoluted
Manuel Schiller
Manuel SchillerOP•4w ago
custom functions could be stringifed though ?
ssalbdivad
ssalbdivad•4w ago
You could try to use the function's stringified representation but there's no way to make it robust because you can't encode its scope
Manuel Schiller
Manuel SchillerOP•4w ago
ok so I might not be looking for a hash of the validator but more of the types input and output so the goal is to provide skew protection for server functions.
ssalbdivad
ssalbdivad•4w ago
If you had rules about functions needing to be pure etc. you could cover more cases that way potentially but that is also messy of course
Manuel Schiller
Manuel SchillerOP•4w ago
if the input type changed, a newly deployed version of the backend is not compatible with the old client
ssalbdivad
ssalbdivad•4w ago
A validator (custom predicate) is considered part of the input type in ArkType though Only transformations are not part of an input/output
Manuel Schiller
Manuel SchillerOP•4w ago
yeah I would not care about transforms as long as the client input would be accepted
ssalbdivad
ssalbdivad•4w ago
What is an example of a function like this and how it would change If I can see the exact scope of what you're trying to capture change in and how it fits into the broader project I might be able to give better guarantees
Manuel Schiller
Manuel SchillerOP•4w ago
Server Functions | TanStack Start React Docs
What are Server Functions? Server functions allow you to specify logic that can be invoked almost anywhere (even the client), but run only on the server. In fact, they are not so different from an API...
Manuel Schiller
Manuel SchillerOP•4w ago
if the required shape of Person changed, it would not be compatible anymore
ssalbdivad
ssalbdivad•4w ago
What about a change like this though: Before:
const type({
name: type.number.narrow(n => n % 2 === 1)
})
const type({
name: type.number.narrow(n => n % 2 === 1)
})
const isOdd = (n: number) => n % 2 === 1

const type({
name: type.number.narrow(isOdd)
})
const isOdd = (n: number) => n % 2 === 1

const type({
name: type.number.narrow(isOdd)
})
I think the problem is these questions are not possible to answer in a general sense
Manuel Schiller
Manuel SchillerOP•4w ago
right so maybe the signal really is just "if the input validator fails, it might be cause of version skew" thanks for discussing this with me, it definitely helped to clear my naivety here 😉
ssalbdivad
ssalbdivad•4w ago
Haha I'm glad it was helpful. Definitely the kind of thing you don't think about until you're trying to precompile arbitrary value references and it becomes painfully clear how messy it all is 🫠

Did you find this page helpful?