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

[ji] support converting Ruby File -> Java File #4756

Merged
merged 1 commit into from
Aug 28, 2017
Merged

Conversation

kares
Copy link
Member

@kares kares commented Aug 28, 2017

... with file.to_java java.io.File

@kares kares added this to the JRuby 9.2.0.0 milestone Aug 28, 2017
@kares kares merged commit 7a5a14b into master Aug 28, 2017
@kares kares deleted the ji-to-java-file branch August 28, 2017 10:14
@enebo
Copy link
Member

enebo commented Aug 28, 2017

@kares I have thought about this conversion in the past and was never really sure if this was reasonable or not. Firstly, Ruby File is more than the path but also it's openess (whereas in Java those are different objects) which leads to the second issue is if we ever make a IO.to_java then how will these two methods compare? I am not saying I am against this going in but I have never felt very solid on this behavior.

@kares
Copy link
Member Author

kares commented Aug 28, 2017

@enebo have given it thought as well, but either case for the common case it seemed to make still sense.
its for sure a different style of thinking Ruby's File.new vs Java new File() but having an object that you could easily "convert" and pass to a Java API seems reasonable -> probably won't get used much thought.

RubyFile has a getPath() so it seemed natural that users might assume its something of a 'plain-old' path (which is only one step away from new java.io.File( rubyFile.getPath() )).

as for IO -> there's to_input_stream and to_output_stream (they check on readability/writeability respectively) which I think means that it makes sense to have io.to_java(java.io.InpuStream) part of the supported conversion as well (setting up a second PR).
IO's don't convert to java.io.File only Ruby's File (and Tempfile)

do I make sense?

@enebo
Copy link
Member

enebo commented Aug 28, 2017

@kares yeah if to_java can accept the stream types then the no arg being path does make a lot more sense and it will be compatible with IO having the same sort of logic.

@kares
Copy link
Member Author

kares commented Aug 28, 2017

exactly + the conversion isn't auto-matic ... compatibility first, users have to request it (or JI has to run into a Java File method signature): file.to_java same as before but now file.to_java(java.io.File) works ...

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

Successfully merging this pull request may close these issues.

None yet

2 participants