Fork me on GitHub
#chlorine-clover
<
2020-03-10
>
seancorfield00:03:54

@mauricio.szabo If it helps with debugging that issue, the new tab that is opened is named filename... for an original file filename.clj -- note the ... -- so I'm wondering if whatever logic is finding the location of the definition is returning an invalid filename now sometimes?

seancorfield00:03:08

(I only just noticed that behavior)

seancorfield00:03:11

(I have repro'd it on both Adopt OpenJDK 11 which I was using before and (Oracle) OpenJDK 14 which I'm using now -- so it's not related to the JDK)

seancorfield00:03:02

(and it's the same behavior on 0.4.13 and 0.4.14)

mauricio.szabo00:03:52

Yes, I don't think that it's an issue with the JDK. Java is only involved when the var is inside a jar file, and it opens a read-only editor...

mauricio.szabo01:03:47

If you could, can you tell me the filename that's giving problems? Or, maybe try to save the empty file and see what filename appears... I'm out of ideas (because I'm not seeing this issue on Linux and, as far as I remember, I just copy-pasted the code from a place to another)

mauricio.szabo01:03:08

I'll diff the code and see if I can find anything strange.

seancorfield01:03:10

It does seem to be just in certain files, which is weird, and I've just discovered that if I attempt 'go to def' in another file on one of the symbols in this notifications.clj file, I get the same weird notifications... behavior. So I'll try to narrow it down within this file.

seancorfield01:03:31

So I saved the file and it is, indeed, called notifications... and it saves to the same folder as the original notifications.clj file.

seancorfield01:03:19

I renamed it to notification_file.clj (and updated the ns to worldsingles.notification-file) and eval'd it, and I see the same wrong behavior: it opens a new, empty notification_f... file which saves to the same folder. Note that the filename is truncated: it's not notification_file...

seancorfield01:03:16

OK, I experimented with a bunch of filenames... We have several files in different parts of the monorepo that have notification in their names and all of these seem to behave the same weird way. If I rename them to pretty much anything that doesn't have notification in it, things work as expected.

mauricio.szabo01:03:16

Ok, I'll look at it. Thanks, I think you helped a lot already :)

seancorfield01:03:04

notificatio triggers the behavior, notificati is fine.

mauricio.szabo01:03:21

Ok, the issue is... UNREPL elisions. I didn't copy-paste the old code correctly. I'll issue a fix right now 🙂

seancorfield01:03:52

Pesky old unrepl! 🙂

mauricio.szabo01:03:14

Yes, it helped me a lot in the beginning of the project, but currently is giving me trouble. I'll look into a way to not get in the way, there are some new features I want to add on Chlorine and UNREPL is currently on the way of these too.

seancorfield01:03:47

I think the main "benefits" it brings, over having just a bare prepl, are: chunking of results so you don't crash the system by eval'ing a very, very large data structure; the ability to interrupt execution. Anything else?

mauricio.szabo01:03:31

Ability to parse (keyword "foo bar") and non-edn results (like Java objects) is another. It's harder than it seems (I'm trying to replicate it in ClojureScript, and it's kinda complicated).

mauricio.szabo01:03:53

Also, some java objects behave like EDN structures but are not (for example, Datomic query results)

mauricio.szabo01:03:39

Just published a new version. This version fixes the error (I was able to replicate it here on my machine after your help debugging). I hope I didn't miss anything 🙂

seancorfield02:03:35

Confirmed fixed! Thank you!

parrot 8
mauricio.szabo02:03:55

Great, thanks for helping me debug the problem!

seancorfield02:03:05

So why was it just that one filename pattern seemingly?

mauricio.szabo13:03:12

Probably because the path of that filename was too large - then when Chlorine runs (meta #'var-name), it'll give a filename path too large, and UNREPL will cut it to:

#unrepl/string ["/path/to/filename/too-la" #unrepl/... (some-function <some-id)]

mauricio.szabo13:03:23

To be able to parse it, Chlorine will generate a type IncompleteStr that reimplements toString to "/path/to/filename/too-la..."

seancorfield16:03:53

I'm surprised I haven't tripped over it with other files then since we have quite a few things with longer paths. Anyways, good to know the cause (and have the fix so quickly -- thank you!).

mauricio.szabo17:03:47

Well, the bug happened at version 0.4.13 and 0.4.14. Older versions were using another structure. I'm trying to unify everything so it becomes easier to test (and also to migrate to VSCode, for example)

seancorfield18:03:40

Ah, yeah, that's a small enough window I might just have missed it on other files. I've been working hard on a new notification-related feature for the last week or so 🙂