Code Monkey home page Code Monkey logo

Comments (20)

danielsteward avatar danielsteward commented on August 18, 2024

Hi Yanokwa. I am a newbie looking to get involved with a good project.
I am in the middle of a computing degree with the Open University in the UK but have recently finished a small project for TNS, the network company, which was a simple database product using Java.
I have put my degree on pause and am doing the Oracle Java exams as I need to earn money but would also like to get involved in a project such as this to improve my skills.
Would this issue be something good to start on?

from briefcase.

yanokwa avatar yanokwa commented on August 18, 2024

Hi @danielsteward! This is a great issue to start on because it mostly requires you to go looking through the code. Give it a try, and if you get stuck, ask in the #briefcase-code channel on http://slack.opendatakit.org!

from briefcase.

batkinson avatar batkinson commented on August 18, 2024

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

Great. Let me look at it and I'm sure I'll have some queries.........and hopefully answers for you.
Dan.

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

Hi Team. I have the software working and have set everything up and have used it a little. I am now looking through the code and trying to replicate the problem that the issue was inspired by: #5. Anything springs to mind please let me know otherwise no need to answer this post.
Dan.

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

Hi Team. It's hard to replicate the original issue as Collect converts any image to a jpeg file type whatever the original. Is this right or am I making a mistake?

from briefcase.

lognaturel avatar lognaturel commented on August 18, 2024

@danielsteward I have noticed that behavior! To be honest with you, I'm not sure whether or not it's intentional. I have a vague memory of quickly looking into it and seeing that pngs were just renamed to have .jpg extensions but of course I didn't write it down anywhere. It would be a good thing to understand better if you're up for identifying where that happens in Collect, whether there are any comments around it and/or any helpful commit messages. You'll probably want to file an issue on the Collect side with your findings.

from briefcase.

yanokwa avatar yanokwa commented on August 18, 2024

@lognaturel's suggestion is a good one. And if you want to continue with Briefcase, that would be a good path to follow as well!

It would seem that the file types that Briefcase uploads are here: https://github.com/opendatakit/briefcase/blob/HEAD/src/org/opendatakit/briefcase/util/AggregateUtils.java#L693, but given the sometimes unexpected behavior of ODK tools, it'd be good to confirm that the uploads actually happen for those file types.

Once we know that, then we can compare with what we find on the Collect side and document both.

from briefcase.

batkinson avatar batkinson commented on August 18, 2024

Hi Team. It's hard to replicate the original issue as Collect converts any image to a jpeg file type whatever the original. Is this right or am I making a mistake?

Daniel, I think you are seeing what I experienced during my own testing. I used the Birds sample form to attach a PNG image I had stored on the device and was able to submit it (using Collect). However, it was submitted (in my case, to a custom endpoint) as a file with a jpg file extension. This is one, but perhaps not the only, oddities of current multimedia file handling.

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

Right, thanks for those replies. I'll crack on........

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

Hi Team. Sorry for my slow speed here. Have a divorce on my hands and it's getting tricky ;<.
However I have been using the software and searching through the code trying to get a handle on how things work.
Some of the aggregate code is well commented and I found this interesting remark on Line 601 in the class aggregate\src\main\java\org\opendatakit\aggregate\parser\SubmissionParser.java saying

  // TODO: problem since we don't know how to tell what type of
  // binary without content type, defaulting to JPG 

So I am now looking at the classes that use this parser which seems to be the servlets.
I will/am looking at the other issues you all have suggested though maybe if someone could focus my task list? I have to admit the code base is intimidating!
Cheers
Dan.

from briefcase.

yanokwa avatar yanokwa commented on August 18, 2024

The archaeology of the code is part of the challenge of this project, so take the time you need, @danielsteward! If it becomes a blocker we'll let you know.

I just talked with @lognaturel and she said she believes that the problem is likely before the submission hits Aggregate. That is, when she was working on Google Drive support, she noticed that her Android device saves images as .png, but Collect renames it to .jpg and just sends that.

I've searched from ".jpg" in the Collect code and it looks like that's is indeed the behavior. So I'd start there because that's a bug! File an issue first with that bug, then suggest an approach to fix it.

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

Great, that sounds like a good first step. I'm nervous about interacting with Git and screwing things up but filing the bug in Collect and then sorting it sounds like a good first step.
I'll keep in mind all the other stuff and still look at it and try to suggest solutions.
Thanks Yanokwa.

from briefcase.

danielsteward avatar danielsteward commented on August 18, 2024

What is a blocker?

from briefcase.

yanokwa avatar yanokwa commented on August 18, 2024

Sorry about the terrible delay, @danielsteward.

A blocker is something that prevents work (e.g., the next release) on Briefcase from proceeding. Blockers are often just bugs, but sometimes a work is blocked because of cookie licking. Lots of fun lingo!

from briefcase.

ggalmazor avatar ggalmazor commented on August 18, 2024

I don't know if this issue is still relevant. It had some activity from Dec'16 to Jul'17 and then it stopped.

from briefcase.

yanokwa avatar yanokwa commented on August 18, 2024

I think this is still relevant because we have three tools (Aggregate, Collect, Briefcase) that have a separate whitelist of extensions to mime type mappings. I'm confident that these lists will eventually fall out of sync and that seems fragile. Perhaps we can use a library for this?

from briefcase.

ggalmazor avatar ggalmazor commented on August 18, 2024

OK! Let's analyze this.

The table we need to maintain is this:

extension mime type
xml text/xml
jpg image/jpeg
3gpp audio/3gpp
3gp video/3gpp
mp4 video/mp4
csv text/csv
xls application/vnd.ms-excel

These mappings must be the same in Collect, Briefcase, and Aggregate.

I believe that adding a third-party library would let us replace the magic strings for the mime types with some static constants, but we would still need to ensure the mappings are the same, which can still go out of sync:

  • different list of mapped file extensions
  • different mapped mime types for a given file extension

The insight here is that the problem that needs to be solved is the mapping, not the mime type strings, right?

I think that we could either:

  • create a new dependency (maintained by us) with the allowed mappings (which seems like an overkill)
  • add the mappings to JR (which seems out of JR's scope).

from briefcase.

yanokwa avatar yanokwa commented on August 18, 2024

Just to bring this topic back from the dead.

I think the initial reason is that Aggregate doesn't know how to display files if there are no MIME types, but I'm not sure why we need to keep a list of the various MIME types. That is, why can't we just use some library that has an extension to MIME mapping.

On Collect, we can use https://developer.android.com/reference/android/webkit/MimeTypeMap. And Aggregate/Briefcase could use https://docs.oracle.com/javase/7/docs/api/java/nio/file/Files.html#probeContentType%28java.nio.file.Path%29 (which according to https://stackoverflow.com/a/8973468/152938 isn't perfect, but prob better than what we have).

from briefcase.

ggalmazor avatar ggalmazor commented on August 18, 2024

Thanks for the links, @yanokwa!

Unfortunately, Java8 removed Path.probeContentType(Path path). In the SO you've linked, they mention URLConnection.guessContentTypeFromName() and file.toURL().openConnection().getContentType(), but both rely on a content type table distributed in the JRE that doesn't include most of the file extensions we need to track.

In Java8u181 (Oracle) we can match only xml and jpg, and nobody can assure that changing the JRE will maintain the same entries on the table.

Users can extend the table by running our JAR with a -Dcontent.types.user.table=path_to_extra_entries.properties but it doesn't seem very practical.

from briefcase.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.