From 7d3414192c455a4474278197939288a8ef83d849 Mon Sep 17 00:00:00 2001 From: Dmitry Isaenko Date: Wed, 10 Jul 2019 04:37:52 +0300 Subject: [PATCH] First commit --- .gitignore | 13 + .idea/encodings.xml | 4 + .idea/gradle.xml | 15 + .idea/markdown-navigator.xml | 86 +++ .../markdown-navigator/profiles_settings.xml | 3 + .idea/misc.xml | 9 + .idea/runConfigurations.xml | 12 + .idea/vcs.xml | 6 + LICENSE | 674 ++++++++++++++++++ README.md | 68 ++ app/.gitignore | 1 + app/build.gradle | 37 + app/proguard-rules.pro | 21 + .../ns_usbloader/ExampleInstrumentedTest.java | 27 + app/src/main/AndroidManifest.xml | 80 +++ app/src/main/ic_launcher-web.png | Bin 0 -> 20249 bytes .../ns_usbloader/AboutActivity.java | 34 + .../ns_usbloader/LoperHelpers.java | 39 + .../ns_usbloader/MainActivity.java | 535 ++++++++++++++ .../ns_usbloader/Model/NsResultReciever.java | 28 + .../ns_usbloader/NsBroadcastReceiver.java | 77 ++ .../developersu/ns_usbloader/NsConstants.java | 20 + .../ns_usbloader/NsNotificationPopUp.java | 21 + .../developersu/ns_usbloader/PFS/NCAFile.java | 25 + .../ns_usbloader/PFS/PFSProvider.java | 180 +++++ .../Service/CommunicationsService.java | 582 +++++++++++++++ .../ns_usbloader/View/NSPElement.java | 67 ++ .../ns_usbloader/View/NspItemsAdapter.java | 94 +++ app/src/main/res/color/textview_colors.xml | 11 + .../drawable-v24/ic_launcher_foreground.xml | 23 + app/src/main/res/drawable/ic_cancel.xml | 17 + .../main/res/drawable/ic_file_select_file.xml | 41 ++ .../res/drawable/ic_fullsize_logo_android.xml | 12 + app/src/main/res/drawable/ic_info.xml | 9 + .../res/drawable/ic_launcher_background.xml | 24 + .../res/drawable/ic_launcher_foreground.xml | 23 + app/src/main/res/drawable/ic_logo_android.xml | 35 + app/src/main/res/drawable/ic_net.xml | 9 + app/src/main/res/drawable/ic_notification.xml | 10 + app/src/main/res/drawable/ic_upload_btn.xml | 25 + app/src/main/res/drawable/ic_usb.xml | 9 + app/src/main/res/drawable/side_nav_bar.xml | 9 + app/src/main/res/font/play.ttf | Bin 0 -> 183256 bytes app/src/main/res/layout/activity_about.xml | 25 + app/src/main/res/layout/activity_main.xml | 29 + app/src/main/res/layout/app_bar_main.xml | 37 + app/src/main/res/layout/content_about.xml | 73 ++ app/src/main/res/layout/content_main.xml | 79 ++ app/src/main/res/layout/nav_header_main.xml | 38 + app/src/main/res/layout/nsp_item.xml | 47 ++ .../main/res/menu/activity_main_drawer.xml | 40 ++ .../main/res/menu/activity_main_toolbar.xml | 8 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 1960 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 3861 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 1384 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2470 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 2522 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 5508 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 3874 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 8377 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 4983 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 12166 bytes app/src/main/res/values-ru/strings.xml | 34 + app/src/main/res/values/colors.xml | 6 + app/src/main/res/values/dimens.xml | 8 + app/src/main/res/values/strings.xml | 37 + app/src/main/res/values/styles.xml | 27 + app/src/main/res/xml/device_filter.xml | 9 + .../ns_usbloader/ExampleUnitTest.java | 17 + build.gradle | 27 + gradle.properties | 20 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 54329 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 172 +++++ gradlew.bat | 84 +++ settings.gradle | 1 + 78 files changed, 3849 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/encodings.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/markdown-navigator.xml create mode 100644 .idea/markdown-navigator/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/vcs.xml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/com/blogspot/developersu/ns_usbloader/ExampleInstrumentedTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/ic_launcher-web.png create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/AboutActivity.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/LoperHelpers.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/MainActivity.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/Model/NsResultReciever.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/NsBroadcastReceiver.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/NsConstants.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/NsNotificationPopUp.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/NCAFile.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/PFSProvider.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/Service/CommunicationsService.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NSPElement.java create mode 100644 app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NspItemsAdapter.java create mode 100644 app/src/main/res/color/textview_colors.xml create mode 100644 app/src/main/res/drawable-v24/ic_launcher_foreground.xml create mode 100644 app/src/main/res/drawable/ic_cancel.xml create mode 100644 app/src/main/res/drawable/ic_file_select_file.xml create mode 100644 app/src/main/res/drawable/ic_fullsize_logo_android.xml create mode 100644 app/src/main/res/drawable/ic_info.xml create mode 100644 app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 app/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 app/src/main/res/drawable/ic_logo_android.xml create mode 100644 app/src/main/res/drawable/ic_net.xml create mode 100644 app/src/main/res/drawable/ic_notification.xml create mode 100644 app/src/main/res/drawable/ic_upload_btn.xml create mode 100644 app/src/main/res/drawable/ic_usb.xml create mode 100644 app/src/main/res/drawable/side_nav_bar.xml create mode 100644 app/src/main/res/font/play.ttf create mode 100644 app/src/main/res/layout/activity_about.xml create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/layout/app_bar_main.xml create mode 100644 app/src/main/res/layout/content_about.xml create mode 100644 app/src/main/res/layout/content_main.xml create mode 100644 app/src/main/res/layout/nav_header_main.xml create mode 100644 app/src/main/res/layout/nsp_item.xml create mode 100644 app/src/main/res/menu/activity_main_drawer.xml create mode 100644 app/src/main/res/menu/activity_main_toolbar.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/values-ru/strings.xml create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/dimens.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 app/src/main/res/xml/device_filter.xml create mode 100644 app/src/test/java/com/blogspot/developersu/ns_usbloader/ExampleUnitTest.java create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b75303 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..15a15b2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..2996d53 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,15 @@ + + + + + + \ No newline at end of file diff --git a/.idea/markdown-navigator.xml b/.idea/markdown-navigator.xml new file mode 100644 index 0000000..f2aa065 --- /dev/null +++ b/.idea/markdown-navigator.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/markdown-navigator/profiles_settings.xml b/.idea/markdown-navigator/profiles_settings.xml new file mode 100644 index 0000000..db06266 --- /dev/null +++ b/.idea/markdown-navigator/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..7bfef59 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9cecc1d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..3cde6af --- /dev/null +++ b/README.md @@ -0,0 +1,68 @@ +# NS-USBloader mobile + +![License](https://img.shields.io/badge/License-GPLv3-blue.svg) [![Releases](https://img.shields.io/github/downloads/developersu/ns-usbloader-mobile/total.svg)]() [![LatestVer](https://img.shields.io/github/release/developersu/ns-usbloader-mobile.svg)]() + +NS-USBloader mobile is Android implementation of the [original NS-USBloader](https://github.com/developersu/ns-usbloader). + +Sometimes I add new posts about this project [on my home page](https://developersu.blogspot.com/search/label/NS-USBloader). + +![Screenshot](https://live.staticflickr.com/65535/48244373567_d447630001_o.png) + +#### License + +Source code license [GNU General Public License v3](https://github.com/developersu/ns-usbloader-mobile/blob/master/LICENSE) + +Logo font: [Play](https://fonts.google.com/specimen/Play) by Jonas Hecksher. Open Font License distribution. + + +### System requirements + +* Minimum: Android 4.0 (Ice Cream Sandwich) + +* Maximum: Android 9.0 (Q) + +* USB-OTG support + +### Usage + +1. Open TinFoil/GoldLeaf +2. Connect NS to Android device using OTG cable. +3. Allow interaction request. Application opens. +4. Click 'hamburger' menu-button and select application you'd like to use. +5. Select NSP on your device. One-by-one each time clicking on button (I know it's not perfect) +6. Click upload button. + +Note: use short usb cable. + +#### Bugs + +If you're Samsung owner, it would be better to not rotating your phone during transfer. Or minimizing. Well, on my elder device it causes application failure. But you can try if you're curious, and report/update a bug. Please mention your device model. + +### Other notes + +'Status' = 'Uploaded' that appears in the table does not mean that file has been installed. It means that it has been sent to NS without any issues! That's what this app about. +Handling successful/failed installation is a purpose of the other side application: TinFoil/GoldLeaf. And they don't provide any feedback interfaces so I can't detect success/failure. + +#### Translators! + +Wait a bit. + +#### TODO: + +- [ ] Tinfoil NET transfer support +- [ ] Better UI +- [ ] Multi-select files (if possible) + + +#### Support this app + +If you like this app, just give a star. + +If you want to make a donation*, refer to this page: + +[Yandex.Money](https://money.yandex.ru/to/410014301951665) + +PayPal: To-be-done. One day. Thank you if you reading till this moment. + +* [EN] Please note! This is non-commercial application. Any received money considered as a gift. +* [RU] Пожалуйста обратите внимание! Это некоммерческое приложение. Перечисленные средства расцениваются как подарок. \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..498c927 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,37 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 29 + buildToolsVersion "29.0.0" + defaultConfig { + applicationId "com.blogspot.developersu.ns_usbloader" + minSdkVersion 15 + targetSdkVersion 29 + versionCode 1 + versionName "0.1" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + android.defaultConfig.vectorDrawables.useSupportLibrary = true + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility = '1.8' + targetCompatibility = '1.8' + } +} + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation 'androidx.appcompat:appcompat:1.0.2' + implementation 'androidx.constraintlayout:constraintlayout:1.1.3' + testImplementation 'junit:junit:4.12' + androidTestImplementation 'androidx.test:runner:1.2.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + implementation 'androidx.recyclerview:recyclerview:1.0.0' + implementation 'androidx.cardview:cardview:1.0.0' + implementation 'com.google.android.material:material:1.0.0' +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..f1b4245 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/app/src/androidTest/java/com/blogspot/developersu/ns_usbloader/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/blogspot/developersu/ns_usbloader/ExampleInstrumentedTest.java new file mode 100644 index 0000000..04770ad --- /dev/null +++ b/app/src/androidTest/java/com/blogspot/developersu/ns_usbloader/ExampleInstrumentedTest.java @@ -0,0 +1,27 @@ +package com.blogspot.developersu.ns_usbloader; + +import android.content.Context; + +import androidx.test.InstrumentationRegistry; +import androidx.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("com.blogspot.developersu.ns_usbloader", appContext.getPackageName()); + } +} diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..feca2da --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/ic_launcher-web.png b/app/src/main/ic_launcher-web.png new file mode 100644 index 0000000000000000000000000000000000000000..017fa3917da37f75e39e37a7b0e8c44f0e1dd6a9 GIT binary patch literal 20249 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 mDataset; + + private BroadcastReceiver innerBroadcastReceiver; + + private UsbDevice usbDevice; + private boolean isUsbDeviceAccessible; + + private Button selectBtn; + private Button uploadToNsBtn; + private ProgressBar progressBarMain; + + private NavigationView drawerNavView; + + private NsResultReciever nsResultReciever; + + @Override + protected void onSaveInstanceState(Bundle outState) { + super.onSaveInstanceState(outState); + outState.putParcelableArrayList("DATASET_LIST", mDataset); + outState.putParcelable("USB_DEVICE", usbDevice); + outState.putBoolean("IS_USB_DEV_ACCESSIBLE", isUsbDeviceAccessible); + if (drawerNavView.getCheckedItem() != null) + outState.putInt("PROTOCOL", drawerNavView.getCheckedItem().getItemId()); + else + outState.putInt("PROTOCOL", R.id.nav_tf_usb); + outState.putParcelable("RECEIVER", nsResultReciever); + } + + @Override + protected void onResume() { + super.onResume(); + // Configure intent to receive attached NS + innerBroadcastReceiver = new InnerBroadcastReceiver(); + IntentFilter intentFilter = new IntentFilter(); + intentFilter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED); + intentFilter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED); + intentFilter.addAction(NsConstants.REQUEST_NS_ACCESS_INTENT); + intentFilter.addAction(NsConstants.SERVICE_TRANSFER_TASK_FINISHED_INTENT); + registerReceiver(innerBroadcastReceiver, intentFilter); + nsResultReciever.setReceiver(this); + blockUI(CommunicationsService.isServiceActive()); + } + + @Override + protected void onPause() { + super.onPause(); + unregisterReceiver(innerBroadcastReceiver); + SharedPreferences.Editor preferencesEditor = getSharedPreferences("NSUSBloader", MODE_PRIVATE).edit(); + if (drawerNavView.getCheckedItem() != null){ + switch (drawerNavView.getCheckedItem().getItemId()){ + case R.id.nav_tf_usb: + preferencesEditor.putInt("PROTOCOL", NsConstants.PROTO_TF_USB); + break; + case R.id.nav_tf_net: + preferencesEditor.putInt("PROTOCOL", NsConstants.PROTO_TF_NET); + break; + case R.id.nav_gl: + preferencesEditor.putInt("PROTOCOL", NsConstants.PROTO_GL_USB); + break; + } + } + else + preferencesEditor.putInt("PROTOCOL", NsConstants.PROTO_TF_USB); + preferencesEditor.apply(); + nsResultReciever.setReceiver(null); + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + getMenuInflater().inflate(R.menu.activity_main_toolbar, menu); + MenuItem selectAllBtn = menu.findItem(R.id.select_all); + selectAllBtn.setOnMenuItemClickListener(menuItem -> { + if (drawerNavView.getCheckedItem() != null) { + if (drawerNavView.getCheckedItem().getItemId() == R.id.nav_gl) + Snackbar.make(findViewById(android.R.id.content), getString(R.string.one_item_for_gl_notification), Snackbar.LENGTH_LONG).show(); + else { + if (mDataset.isEmpty()) + return true; + for (NSPElement element: mDataset){ + element.setSelected(true); + } + mAdapter.notifyDataSetChanged(); + } + } + return true; + }); + return true; + } + //*/ + // Handle back button push when drawer opened + @Override + public void onBackPressed() { + DrawerLayout drawer = findViewById(R.id.drawer_layout); + if (drawer.isDrawerOpen(GravityCompat.START)) { + drawer.closeDrawer(GravityCompat.START); + } else { + super.onBackPressed(); + } + } + // Drawer actions + @Override + public boolean onNavigationItemSelected(MenuItem item) { + // Handle navigation view item clicks here. + int id = item.getItemId(); + + if (id == R.id.nav_tf_usb) { + // TODO: make something useful + } + else if (id == R.id.nav_tf_net) { + // TODO: implement + } + else if (id == R.id.nav_gl) { // TODO: SET LISTENER + if (! mDataset.isEmpty()){ + for (NSPElement element: mDataset){ + element.setSelected(false); + } + mAdapter.notifyDataSetChanged(); + } + } + else if (id == R.id.nav_about) { + //Log.i("LPR", "ABOUT"); + startActivity(new Intent(this, AboutActivity.class)); + } + + DrawerLayout drawer = findViewById(R.id.drawer_layout); + drawer.closeDrawer(GravityCompat.START); + return true; + } + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + // Initialize ToolBar + Toolbar toolbar = findViewById(R.id.toolbar); + setSupportActionBar(toolbar); + + DrawerLayout drawer = findViewById(R.id.drawer_layout); + drawerNavView = findViewById(R.id.nav_view); + ActionBarDrawerToggle toggle = new ActionBarDrawerToggle( + this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); + drawer.addDrawerListener(toggle); + toggle.syncState(); + drawerNavView.setNavigationItemSelectedListener(this); + + // Initialize Progress Bar + progressBarMain = findViewById(R.id.mainProgressBar); + // Configure data set in case it's restored from screen rotation or something + if (savedInstanceState != null){ + //Log.i("LPR", "NOT EMPTY INSTANCE-"+getIntent().getAction()); + mDataset = savedInstanceState.getParcelableArrayList("DATASET_LIST"); + // Restore USB device information + usbDevice = savedInstanceState.getParcelable("USB_DEVICE"); + isUsbDeviceAccessible = savedInstanceState.getBoolean("IS_USB_DEV_ACCESSIBLE", false); + drawerNavView.setCheckedItem(savedInstanceState.getInt("PROTOCOL", R.id.nav_tf_usb)); + nsResultReciever = savedInstanceState.getParcelable("RECEIVER"); + } + else { + mDataset = new ArrayList<>(); + usbDevice = getIntent().getParcelableExtra(UsbManager.EXTRA_DEVICE); // If it's started initially, then check if it's started from notification. + if (usbDevice != null){ + UsbManager usbManager = (UsbManager) getSystemService(Context.USB_SERVICE); + // If somehow we can't get system service + if (usbManager == null) { + NsNotificationPopUp.getAlertWindow(this, getResources().getString(R.string.popup_error), "Internal issue: getSystemService(Context.USB_SERVICE) returned null"); + return; // ??? HOW ??? + } + isUsbDeviceAccessible = usbManager.hasPermission(usbDevice); + } + else + isUsbDeviceAccessible = false; + switch (getSharedPreferences("NSUSBloader", MODE_PRIVATE).getInt("PROTOCOL", NsConstants.PROTO_TF_USB)){ + case NsConstants.PROTO_TF_USB: + drawerNavView.setCheckedItem(R.id.nav_tf_usb); + break; + case NsConstants.PROTO_TF_NET: + drawerNavView.setCheckedItem(R.id.nav_tf_net); + break; + case NsConstants.PROTO_GL_USB: + drawerNavView.setCheckedItem(R.id.nav_gl); + break; + default: + } + nsResultReciever = new NsResultReciever(new Handler()); // We will set callback in onResume and unset onPause + } + + recyclerView = findViewById(R.id.recyclerView); + RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(this); + recyclerView.setLayoutManager(layoutManager); + mAdapter = new NspItemsAdapter(mDataset); + recyclerView.setAdapter(mAdapter); + ItemTouchHelper.Callback ithCallBack = new ItemTouchHelper.Callback() { + @Override + public int getMovementFlags(@NonNull RecyclerView recyclerView, @NonNull RecyclerView.ViewHolder viewHolder) { + return makeMovementFlags(ItemTouchHelper.UP | ItemTouchHelper.DOWN, ItemTouchHelper.LEFT | ItemTouchHelper.RIGHT); + } + + @Override + public boolean onMove(@NonNull RecyclerView recyclerView, @NonNull RecyclerView.ViewHolder viewHolder, @NonNull RecyclerView.ViewHolder target) { + mAdapter.move(viewHolder.getAdapterPosition(), target.getAdapterPosition()); + return true; + } + + @Override + public void onSwiped(@NonNull RecyclerView.ViewHolder viewHolder, int direction) { + NspItemsAdapter.NspViewHolder nspViewHolder = (NspItemsAdapter.NspViewHolder) viewHolder; + mDataset.remove(nspViewHolder.getData()); + mAdapter.notifyDataSetChanged(); + updateUploadBtnState(); + } + }; + ItemTouchHelper itemTouchHelper = new ItemTouchHelper(ithCallBack); + itemTouchHelper.attachToRecyclerView(recyclerView); + // Select files button + selectBtn = findViewById(R.id.buttonSelect); + selectBtn.setOnClickListener(e->{ + Intent fileChooser = new Intent(Intent.ACTION_GET_CONTENT); + //fileChooser.setType("*/*"); + fileChooser.setType("application/octet-stream"); + + if (fileChooser.resolveActivity(getPackageManager()) != null) + startActivityForResult( + Intent.createChooser(fileChooser, getString(R.string.select_file_btn)) + , ADD_NSP_INTENT_CODE); + else + NsNotificationPopUp.getAlertWindow(this, getResources().getString(R.string.popup_error), getResources().getString(R.string.install_file_explorer)); + }); + // Upload to NS button + uploadToNsBtn = findViewById(R.id.buttonUpload); + + updateUploadBtnState(); + } + + private void updateUploadBtnState(){ + if (mAdapter.getItemCount() > 0) + uploadToNsBtn.setEnabled(true); + else + uploadToNsBtn.setEnabled(false); + } + + @Override + protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { + //Snackbar.make(findViewById(android.R.id.content), requestCode+" "+resultCode, Snackbar.LENGTH_SHORT).show(); + if (requestCode != ADD_NSP_INTENT_CODE || data == null) + return; + + Uri uri = data.getData(); + + if (uri == null) + return; + if (uri.getScheme() == null || ! uri.getScheme().equals("content")) + return; + + String fileName = LoperHelpers.getFileNameFromUri(uri, this); + long fileSize = LoperHelpers.getFileSizeFromUri(uri, this); + + if (fileName == null || fileSize < 0) { + NsNotificationPopUp.getAlertWindow(this, getResources().getString(R.string.popup_error), getResources().getString(R.string.popup_not_supported)); + return; + } + + if (! fileName.endsWith(".nsp")){ + NsNotificationPopUp.getAlertWindow(this, getResources().getString(R.string.popup_error), getResources().getString(R.string.popup_wrong_file)); + return; + } + + boolean shouldBeAdded = true; + for (NSPElement element: mDataset){ + if (element.getFilename().equals(fileName)) { + shouldBeAdded = false; + break; + } + } + + NSPElement element; + if (shouldBeAdded){ + element = new NSPElement(uri, fileName, fileSize); + if (drawerNavView.getCheckedItem() != null && drawerNavView.getCheckedItem().getItemId() != R.id.nav_gl) + element.setSelected(true); + mDataset.add(element); + } + else + return; + mAdapter.notifyDataSetChanged(); + // Enable upload button + updateUploadBtnState(); + } + /* + private void uploadFilesTemp(){ + ArrayList toSentArray = new ArrayList<>(); + for (NSPElement element: mDataset){ + if (element.isSelected()) + toSentArray.add(element); + } + if (toSentArray.isEmpty()) { + Snackbar.make(findViewById(android.R.id.content), getString(R.string.nothing_selected_message), Snackbar.LENGTH_LONG).show(); + return; + } + Intent serviceStartIntent = new Intent(this, CommunicationsService.class); + serviceStartIntent.putExtra(NsConstants.NS_RESULT_RECEIVER, nsResultReciever); + serviceStartIntent.putParcelableArrayListExtra(NsConstants.SERVICE_CONTENT_NSP_LIST, toSentArray); + if (drawerNavView.getCheckedItem() == null) { + Snackbar.make(findViewById(android.R.id.content), getString(R.string.no_protocol_selected_message), Snackbar.LENGTH_LONG).show(); + return; + } + switch (drawerNavView.getCheckedItem().getItemId()){ + case R.id.nav_tf_usb: + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, NsConstants.PROTO_TF_USB); + break; + case R.id.nav_tf_net: + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, NsConstants.PROTO_TF_NET); + break; + case R.id.nav_gl: + if (toSentArray.size() > 1){ + Snackbar.make(findViewById(android.R.id.content), getString(R.string.one_item_for_gl_notification), Snackbar.LENGTH_LONG).show(); + return; + } + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, NsConstants.PROTO_GL_USB); + break; + } + + startService(serviceStartIntent); + blockUI(true); + } + */ + private void uploadFiles(){ + //************************************************************************************************************************************** + try{ + int id = drawerNavView.getCheckedItem().getItemId(); + if (id == R.id.nav_tf_net) { + Toast.makeText(getApplicationContext(), "Not supported yet", Toast.LENGTH_SHORT).show(); + return; + } + } + catch (NullPointerException npe){ + Snackbar.make(findViewById(android.R.id.content), getString(R.string.no_protocol_selected_message), Snackbar.LENGTH_LONG).show(); + } + //************************************************************************************************************************************** + UsbManager usbManager = (UsbManager) getSystemService(Context.USB_SERVICE); + // If somehow we can't get system service + if (usbManager == null) { + NsNotificationPopUp.getAlertWindow(this, getResources().getString(R.string.popup_error), "Internal issue: getSystemService(Context.USB_SERVICE) returned null"); + return; // ??? HOW ??? + } + // If device not connected + if (usbDevice == null){ + HashMap deviceHashMap; + + deviceHashMap = usbManager.getDeviceList(); + + for (UsbDevice device : deviceHashMap.values()) { + if (device.getVendorId() == 1406 && device.getProductId() == 12288) { + usbDevice = device; + } + } + // If it's still not connected then it's really not connected. + if (usbDevice == null) { + NsNotificationPopUp.getAlertWindow(this, getResources().getString(R.string.popup_error), getResources().getString(R.string.ns_not_found_in_connected)); + return; + } + // If we have NS connected check for permissions + if (! usbManager.hasPermission(usbDevice)){ + usbManager.requestPermission(usbDevice, PendingIntent.getBroadcast(this, 0, new Intent(NsConstants.REQUEST_NS_ACCESS_INTENT), 0)); + return; + } + } + if (! isUsbDeviceAccessible){ + usbManager.requestPermission(usbDevice, PendingIntent.getBroadcast(this, 0, new Intent(NsConstants.REQUEST_NS_ACCESS_INTENT), 0)); + return; + } + + Intent serviceStartIntent; + ArrayList toSentArray = new ArrayList<>(); + for (NSPElement element: mDataset){ + if (element.isSelected()) + toSentArray.add(element); + } + if (toSentArray.isEmpty()) { + Snackbar.make(findViewById(android.R.id.content), getString(R.string.nothing_selected_message), Snackbar.LENGTH_LONG).show(); + return; + } + serviceStartIntent = new Intent(this, CommunicationsService.class); + serviceStartIntent.putExtra(NsConstants.NS_RESULT_RECEIVER, nsResultReciever); + serviceStartIntent.putParcelableArrayListExtra(NsConstants.SERVICE_CONTENT_NSP_LIST, toSentArray); + if (drawerNavView.getCheckedItem() == null) { + Snackbar.make(findViewById(android.R.id.content), getString(R.string.no_protocol_selected_message), Snackbar.LENGTH_LONG).show(); + return; + } + switch (drawerNavView.getCheckedItem().getItemId()){ + case R.id.nav_tf_usb: + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, NsConstants.PROTO_TF_USB); + break; + case R.id.nav_tf_net: + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, NsConstants.PROTO_TF_NET); + break; + case R.id.nav_gl: + if (toSentArray.size() > 1){ + Snackbar.make(findViewById(android.R.id.content), getString(R.string.one_item_for_gl_notification), Snackbar.LENGTH_LONG).show(); + return; + } + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, NsConstants.PROTO_GL_USB); + break; + } + serviceStartIntent.putExtra(NsConstants.SERVICE_CONTENT_NS_DEVICE, usbDevice); + startService(serviceStartIntent); + blockUI(true); + } + + private void blockUI(boolean shouldBeBlocked){ + if (shouldBeBlocked){ + selectBtn.setEnabled(false); + recyclerView.setLayoutFrozen(true); + uploadToNsBtn.setCompoundDrawablesWithIntrinsicBounds(null, getResources().getDrawable(R.drawable.ic_cancel), null, null); + uploadToNsBtn.setText(R.string.interrupt_btn); + uploadToNsBtn.setOnClickListener(e -> { + CommunicationsService.cancel(); + }); + progressBarMain.setVisibility(ProgressBar.VISIBLE); + progressBarMain.setIndeterminate(true);//TODO + } + else { + selectBtn.setEnabled(true); + recyclerView.setLayoutFrozen(false); + uploadToNsBtn.setCompoundDrawablesWithIntrinsicBounds(null, getResources().getDrawable(R.drawable.ic_upload_btn), null, null); + uploadToNsBtn.setText(R.string.upload_btn); + uploadToNsBtn.setOnClickListener(e -> { + //this.uploadFiles(); + this.uploadFiles(); + }); + progressBarMain.setVisibility(ProgressBar.INVISIBLE); + } + } + // Handle service updates + @Override + public void onRecieveResults(int code, Bundle bundle) { + if (code == NsConstants.NS_RESULT_PROGRESS_INDETERMINATE) + progressBarMain.setIndeterminate(true); + else{ // Else NsConstants.NS_RESULT_PROGRESS_VALUE ; ALSO THIS PART IS FULL OF SHIT + if (progressBarMain.isIndeterminate()) + progressBarMain.setIndeterminate(false); + progressBarMain.setProgress(bundle.getInt("POSITION")); + } + } + // Deal with global broadcast intents + private class InnerBroadcastReceiver extends BroadcastReceiver{ + @Override + public void onReceive(Context context, Intent intent) { + if (intent.getAction() == null) + return; + switch (intent.getAction()) { + case UsbManager.ACTION_USB_DEVICE_ATTACHED: + usbDevice = intent.getParcelableExtra(UsbManager.EXTRA_DEVICE); + UsbManager usbManager = (UsbManager) context.getSystemService(Context.USB_SERVICE); + if (usbManager == null) + break; // ??? + if (usbManager.hasPermission(usbDevice)) + isUsbDeviceAccessible = true; + else { + isUsbDeviceAccessible = false; + usbManager.requestPermission(usbDevice, PendingIntent.getBroadcast(context, 0, new Intent(NsConstants.REQUEST_NS_ACCESS_INTENT), 0)); + } + break; + case NsConstants.REQUEST_NS_ACCESS_INTENT: + isUsbDeviceAccessible = intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false); + break; + case UsbManager.ACTION_USB_DEVICE_DETACHED: + usbDevice = null; + isUsbDeviceAccessible = false; + CommunicationsService.cancel(); + break; + case NsConstants.SERVICE_TRANSFER_TASK_FINISHED_INTENT: + ArrayList nspElements = intent.getParcelableArrayListExtra(NsConstants.SERVICE_CONTENT_NSP_LIST); + for (int i=0; i < mDataset.size(); i++){ + for (NSPElement recievedNSPe : nspElements) + if (recievedNSPe.getFilename().equals(mDataset.get(i).getFilename())) + mDataset.get(i).setStatus(recievedNSPe.getStatus()); + } + mAdapter.notifyDataSetChanged(); + blockUI(false); + break; + } + //Log.i("LPR", "INTERNAL BR REC: " + intent.getAction()+" "+isUsbDeviceAccessible); + } + } +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/Model/NsResultReciever.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/Model/NsResultReciever.java new file mode 100644 index 0000000..2829f78 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/Model/NsResultReciever.java @@ -0,0 +1,28 @@ +package com.blogspot.developersu.ns_usbloader.Model; + +import android.os.Bundle; +import android.os.Handler; +import android.os.ResultReceiver; + +public class NsResultReciever extends ResultReceiver { + + public interface Receiver{ + void onRecieveResults(int code, Bundle bundle); + } + + private Receiver mReceiver; + + public NsResultReciever(Handler handler) { + super(handler); + } + + public void setReceiver(Receiver receiver){ + this.mReceiver = receiver; + } + + @Override + protected void onReceiveResult(int resultCode, Bundle resultData) { + if (mReceiver != null) + mReceiver.onRecieveResults(resultCode, resultData); + } +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsBroadcastReceiver.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsBroadcastReceiver.java new file mode 100644 index 0000000..f83e0f5 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsBroadcastReceiver.java @@ -0,0 +1,77 @@ +package com.blogspot.developersu.ns_usbloader; + +import android.app.NotificationChannel; +import android.app.NotificationManager; +import android.app.PendingIntent; +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbManager; +import android.os.Build; +import android.widget.Toast; + +import androidx.core.app.NotificationCompat; +import androidx.core.app.NotificationManagerCompat; + +public class NsBroadcastReceiver extends BroadcastReceiver { + + private static final String NOTIFICATION_NS_CONNECTED_CHAN_ID = "com.blogspot.developersu.ns_usbloader.CHAN_ID_NS_CONNECTED"; + private static final int NOTIFICATION_NS_CONNECTED_ID = 42; + + @Override + public synchronized void onReceive(Context context, Intent intent) { + if (intent.getAction() == null) + return; + switch (intent.getAction()) { + case UsbManager.ACTION_USB_DEVICE_ATTACHED: { + showNotification(context, intent.getParcelableExtra(UsbManager.EXTRA_DEVICE)); + break; + } + case UsbManager.ACTION_USB_DEVICE_DETACHED: { + hideNotification(context); + break; + } + case NsConstants.SERVICE_TRANSFER_TASK_FINISHED_INTENT: + String issues = intent.getStringExtra("ISSUES"); + if (issues != null) { + Toast.makeText(context, context.getString(R.string.transfers_service_stopped) + " " + issues, Toast.LENGTH_LONG).show(); + break; + } + Toast.makeText(context, context.getString(R.string.transfers_service_stopped), Toast.LENGTH_SHORT).show(); + break; + } + } + + private void showNotification(Context context, UsbDevice usbDevice){ + NotificationCompat.Builder notification = new NotificationCompat.Builder(context, NOTIFICATION_NS_CONNECTED_CHAN_ID); + notification.setSmallIcon(R.drawable.ic_notification) + .setContentTitle(context.getString(R.string.ns_connected_info)) + //.setAutoCancel(true) + .setOngoing(true) // Prevent swipe-notification-to-remove + .setPriority(NotificationCompat.PRIORITY_DEFAULT) + .setContentIntent(PendingIntent.getActivity(context, 0, new Intent(context, MainActivity.class).putExtra(UsbManager.EXTRA_DEVICE, usbDevice), 0)); + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + CharSequence notificationChanName = context.getString(R.string.notification_channel_name); + String notificationChanDesc = context.getString(R.string.notification_channel_description); + + NotificationChannel channel = new NotificationChannel( + NOTIFICATION_NS_CONNECTED_CHAN_ID, + notificationChanName, + NotificationManager.IMPORTANCE_DEFAULT); + channel.setDescription(notificationChanDesc); + // Register the channel with the system; you can't change the importance + // or other notification behaviors after this + NotificationManager notificationManager = context.getSystemService(NotificationManager.class); + notificationManager.createNotificationChannel(channel); + notificationManager.notify(NOTIFICATION_NS_CONNECTED_ID, notification.build()); + } + else { + NotificationManagerCompat.from(context).notify(NOTIFICATION_NS_CONNECTED_ID, notification.build()); // TODO: 42 is shit + } + } + + private void hideNotification(Context context){ + NotificationManagerCompat.from(context).cancel(NOTIFICATION_NS_CONNECTED_ID); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsConstants.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsConstants.java new file mode 100644 index 0000000..1490e16 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsConstants.java @@ -0,0 +1,20 @@ +package com.blogspot.developersu.ns_usbloader; + +public class NsConstants { + public static final String NS_RESULT_RECEIVER = "RECEIVER"; + // Request permissions to access NS USB device + public static final String REQUEST_NS_ACCESS_INTENT = "com.blogspot.developersu.ns_usbloader.ACTION_USB_PERMISSION"; + // Get in BroadcastReceiver and MainActivity's broadcastReceiver information regarding finished process + public static final String SERVICE_TRANSFER_TASK_FINISHED_INTENT = "com.blogspot.developersu.ns_usbloader.SERVICE_TRANSFER_TASK_FINISHED"; + // To get data inside IntentService + public static final String SERVICE_CONTENT_NSP_LIST = "NSP_LIST"; + public static final String SERVICE_CONTENT_PROTOCOL = "PROTOCOL"; + public static final String SERVICE_CONTENT_NS_DEVICE = "DEVICE"; + // Result Reciever possible codes + public static final int NS_RESULT_PROGRESS_INDETERMINATE = -1; // upper limit would be 0; value would be 0 + public static final int NS_RESULT_PROGRESS_VALUE = 0; + // Declare TF/GL names + public static final int PROTO_TF_USB = 10; + public static final int PROTO_TF_NET = 20; + public static final int PROTO_GL_USB = 30; +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsNotificationPopUp.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsNotificationPopUp.java new file mode 100644 index 0000000..613c6b2 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/NsNotificationPopUp.java @@ -0,0 +1,21 @@ +package com.blogspot.developersu.ns_usbloader; + +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; + +public class NsNotificationPopUp { + public static void getAlertWindow(Context context, String titile, String message){ + AlertDialog.Builder builder = new AlertDialog.Builder(context); + builder.setTitle(titile) + .setMessage(message) + .setCancelable(false) + .setPositiveButton("OK", new DialogInterface.OnClickListener() { + @Override + public void onClick(DialogInterface dialogInterface, int i) { + dialogInterface.dismiss(); + } + }); + builder.create().show(); + } +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/NCAFile.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/NCAFile.java new file mode 100644 index 0000000..b83340e --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/NCAFile.java @@ -0,0 +1,25 @@ +package com.blogspot.developersu.ns_usbloader.PFS; + +import java.nio.ByteBuffer; +import java.nio.ByteOrder; + +/** + * Data class to hold NCA, tik, xml etc. meta-information + * */ +public class NCAFile { + //private int ncaNumber; + private byte[] ncaFileName; + private long ncaOffset; + private long ncaSize; + + //public void setNcaNumber(int ncaNumber){ this.ncaNumber = ncaNumber; } + public void setNcaFileName(byte[] ncaFileName) { this.ncaFileName = ncaFileName; } + public void setNcaOffset(long ncaOffset) { this.ncaOffset = ncaOffset; } + public void setNcaSize(long ncaSize) { this.ncaSize = ncaSize; } + + //public int getNcaNumber() {return this.ncaNumber; } + public byte[] getNcaFileName() { return ncaFileName; } + public byte[] getNcaFileNameLength() { return ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN).putInt(ncaFileName.length).array(); } + public long getNcaOffset() { return ncaOffset; } + public long getNcaSize() { return ncaSize; } +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/PFSProvider.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/PFSProvider.java new file mode 100644 index 0000000..622fb37 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/PFS/PFSProvider.java @@ -0,0 +1,180 @@ +package com.blogspot.developersu.ns_usbloader.PFS; + +import java.io.*; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.util.*; + +/** + * Used in GoldLeaf USB protocol + * */ +public class PFSProvider { + private static final byte[] PFS0 = new byte[]{(byte)0x50, (byte)0x46, (byte)0x53, (byte)0x30}; // PFS0, and what did you think? + + private BufferedInputStream bufferedInStream; + private String nspFileName; + private NCAFile[] ncaFiles; + private long bodySize; + private int ticketID = -1; + + public PFSProvider(InputStream inputStream, String nspFileName){ + if (inputStream == null || nspFileName == null) + return; + this.bufferedInStream = new BufferedInputStream(inputStream); // TODO: refactor? + this.nspFileName = nspFileName; + } + + public boolean init() { + if (nspFileName == null || bufferedInStream == null) + return false; + + int filesCount; + int stringTableSize; + + try { + byte[] fileStartingBytes = new byte[12]; + // Read PFS0, files count, stringTableSize, padding (4 zero bytes) + if (bufferedInStream.read(fileStartingBytes) != 12){ + bufferedInStream.close(); + return false; + } + // Check PFS0 + if (! Arrays.equals(PFS0, Arrays.copyOfRange(fileStartingBytes, 0, 4))){ + bufferedInStream.close(); + return false; + } + // Get files count + filesCount = ByteBuffer.wrap(Arrays.copyOfRange(fileStartingBytes, 4, 8)).order(ByteOrder.LITTLE_ENDIAN).getInt(); + if (filesCount <= 0 ) { + bufferedInStream.close(); + return false; + } + // Get stringTableSize + stringTableSize = ByteBuffer.wrap(Arrays.copyOfRange(fileStartingBytes, 8, 12)).order(ByteOrder.LITTLE_ENDIAN).getInt(); + if (stringTableSize <= 0 ){ + bufferedInStream.close(); + return false; + } + //********************************************************************************************* + // Create NCA set + this.ncaFiles = new NCAFile[filesCount]; + // Collect files from NSP + byte[] ncaInfoArr = new byte[24]; // should be unsigned long, but.. java.. u know my pain man + + HashMap ncaNameOffsets = new LinkedHashMap<>(); + + long nca_offset; + long nca_size; + long nca_name_offset; + + for (int i=0; i < filesCount; i++){ + if (bufferedInStream.read(ncaInfoArr) != 24) { + bufferedInStream.close(); + return false; + } + + nca_offset = ByteBuffer.wrap(Arrays.copyOfRange(ncaInfoArr, 4, 12)).order(ByteOrder.LITTLE_ENDIAN).getLong(); + nca_size = ByteBuffer.wrap(Arrays.copyOfRange(ncaInfoArr, 12, 20)).order(ByteOrder.LITTLE_ENDIAN).getLong(); + nca_name_offset = ByteBuffer.wrap(Arrays.copyOfRange(ncaInfoArr, 20, 24)).order(ByteOrder.LITTLE_ENDIAN).getInt(); // yes, cast from int to long. + + NCAFile ncaFile = new NCAFile(); + ncaFile.setNcaOffset(nca_offset); + ncaFile.setNcaSize(nca_size); + this.ncaFiles[i] = ncaFile; + + ncaNameOffsets.put(i, nca_name_offset); + } + // Final offset + byte[] bufForInt = new byte[4]; + if ((bufferedInStream.read(bufForInt) != 4)) + return false; + + // Calculate position including stringTableSize for body size offset + //bodySize = bufferedInStream.getFilePointer()+stringTableSize; + bodySize = filesCount*24+16+stringTableSize; + //********************************************************************************************* + bufferedInStream.mark(stringTableSize); + // Collect file names from NCAs + List ncaFN; // Temporary + byte[] b = new byte[1]; // Temporary + for (int i=0; i < filesCount; i++){ + ncaFN = new ArrayList<>(); + if (bufferedInStream.skip(ncaNameOffsets.get(i)) != ncaNameOffsets.get(i)) // Files cont * 24(bit for each meta-data) + 4 bytes goes after all of them + 12 bit what were in the beginning + return false; + while ((bufferedInStream.read(b)) != -1){ + if (b[0] == 0x00) + break; + else + ncaFN.add(b[0]); + } + // TODO: CHANGE TO ncaFN.toArray(); + + byte[] exchangeTempArray = new byte[ncaFN.size()]; + for (int j=0; j < ncaFN.size(); j++) + exchangeTempArray[j] = ncaFN.get(j); + // Find and store ticket (.tik) + if (new String(exchangeTempArray, "UTF-8").toLowerCase().endsWith(".tik")) + this.ticketID = i; + this.ncaFiles[i].setNcaFileName(Arrays.copyOf(exchangeTempArray, exchangeTempArray.length)); + + bufferedInStream.reset(); + } + bufferedInStream.close(); + } + catch (IOException ioe){ + return false; + } + return true; + } + /** + * Return file name as byte array + * */ + public byte[] getBytesNspFileName(){ + return nspFileName.getBytes(); + } + /** + * Return file name as String + * */ + /* Legacy code; leave for now + public String getStringNspFileName(){ + return nspFileName; + } + */ + /** + * Return file name length as byte array + * */ + public byte[] getBytesNspFileNameLength(){ + return ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN).putInt(getBytesNspFileName().length).array(); + } + /** + * Return NCA count inside of file as byte array + * */ + public byte[] getBytesCountOfNca(){ + return ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN).putInt(ncaFiles.length).array(); + } + /** + * Return NCA count inside of file as int + * */ + public int getIntCountOfNca(){ + return ncaFiles.length; + } + /** + * Return requested-by-number NCA file inside of file + * */ + public NCAFile getNca(int ncaNumber){ + return ncaFiles[ncaNumber]; + } + /** + * Return bodySize + * */ + public long getBodySize(){ + return bodySize; + } + /** + * Return special NCA file: ticket + * (sugar) + * */ + public int getNcaTicketID(){ + return ticketID; + } +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/Service/CommunicationsService.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/Service/CommunicationsService.java new file mode 100644 index 0000000..fb10d61 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/Service/CommunicationsService.java @@ -0,0 +1,582 @@ +package com.blogspot.developersu.ns_usbloader.Service; + +import android.app.IntentService; +import android.content.Context; +import android.content.Intent; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; +import android.hardware.usb.UsbEndpoint; +import android.hardware.usb.UsbInterface; +import android.hardware.usb.UsbManager; +import android.os.Bundle; +import android.os.ResultReceiver; +import android.util.Log; + +import com.blogspot.developersu.ns_usbloader.NsConstants; +import com.blogspot.developersu.ns_usbloader.PFS.PFSProvider; +import com.blogspot.developersu.ns_usbloader.R; +import com.blogspot.developersu.ns_usbloader.View.NSPElement; + +import java.io.BufferedInputStream; +import java.io.InputStream; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.concurrent.atomic.AtomicBoolean; + +public class CommunicationsService extends IntentService { + private static final String SERVICE_TAG = "com.blogspot.developersu.ns_usbloader.Service.CommunicationsService"; + + private static AtomicBoolean isActive = new AtomicBoolean(false); + private static AtomicBoolean interrupt = new AtomicBoolean(false); + + private ResultReceiver resultReceiver; + + public static boolean isServiceActive(){ + return isActive.get(); + } + public static void cancel(){ + interrupt.set(true); + } + + public CommunicationsService() { + super(SERVICE_TAG); + } + + private ArrayList nspElements; + private UsbDeviceConnection deviceConnection; + private UsbInterface usbInterface; + private UsbEndpoint epIn; + private UsbEndpoint epOut; + + private String status; + private String issueDescription; + + @Override + protected void onHandleIntent(Intent intent) { + isActive.set(true); + interrupt.set(false); + status = getResources().getString(R.string.status_failed_to_upload); + resultReceiver = intent.getParcelableExtra(NsConstants.NS_RESULT_RECEIVER); + nspElements = intent.getParcelableArrayListExtra(NsConstants.SERVICE_CONTENT_NSP_LIST); + final int protocol = intent.getIntExtra(NsConstants.SERVICE_CONTENT_PROTOCOL, -1); // -1 since it's impossible + UsbDevice usbDevice = intent.getParcelableExtra(NsConstants.SERVICE_CONTENT_NS_DEVICE); + UsbManager usbManager = (UsbManager) getSystemService(Context.USB_SERVICE); + if (nspElements == null || usbDevice == null || usbManager == null || protocol < 0) { + reportExecutionFinish(); + return; + } + // Start process + usbInterface = usbDevice.getInterface(0); + epIn = usbInterface.getEndpoint(0); // For bulk read + epOut = usbInterface.getEndpoint(1); // For bulk write + + deviceConnection = usbManager.openDevice(usbDevice); + if ( ! deviceConnection.claimInterface(usbInterface, false)) + return; + + if (protocol == NsConstants.PROTO_TF_USB){ + new TinFoil(); + } + else if (protocol == NsConstants.PROTO_GL_USB){ + new GoldLeaf(); + } + + for (NSPElement e: nspElements) + e.setStatus(status); + /* + Log.i("LPR", "Status " +status); + Log.i("LPR", "issue " +issueDescription); + Log.i("LPR", "Interrupt " +interrupt.get()); + Log.i("LPR", "Active " +isActive.get()); + */ + reportExecutionFinish(); + } + + private void resetProgressBar(){ + resultReceiver.send(NsConstants.NS_RESULT_PROGRESS_INDETERMINATE, Bundle.EMPTY); + } + + private void updateProgressBar(int currentPosition){ + Bundle bundle = new Bundle(); + bundle.putInt("POSITION", currentPosition); + resultReceiver.send(NsConstants.NS_RESULT_PROGRESS_VALUE, bundle); + } + + private void reportExecutionFinish(){ + deviceConnection.releaseInterface(usbInterface); + deviceConnection.close(); + isActive.set(false); + Intent executionFinishIntent = new Intent(NsConstants.SERVICE_TRANSFER_TASK_FINISHED_INTENT); + executionFinishIntent.putExtra(NsConstants.SERVICE_CONTENT_NSP_LIST, nspElements); + if (issueDescription != null) { + executionFinishIntent.putExtra("ISSUES", issueDescription); + } + this.sendBroadcast(executionFinishIntent); + interrupt.set(false); + } + /*============================================================================================*/ + /** + * Sending any byte array to USB device + * @return 'false' if no issues + * 'true' if errors happened + * */ + private boolean writeToUsb(byte[] message){ + int result; + result = deviceConnection.bulkTransfer(epOut, message, message.length, 0); // last one is TIMEOUT. 0 stands for unlimited. Endpoint OUT = 0x01 + //Log.i("LPR", "RES: "+result); + return (result != message.length); + } + /** + * Reading what USB device responded. + * @return byte array if data read successful + * 'null' if read failed + * */ + private byte[] readFromUsb(){ + byte[] readBuffer = new byte[512]; + // We can limit it to 32 bytes, but there is a non-zero chance to got OVERFLOW from libusb. + int result; + result = deviceConnection.bulkTransfer(epIn, readBuffer, 512, 0); // last one is TIMEOUT. 0 stands for unlimited. Endpoint IN = 0x81 + + if (result > 0) + return Arrays.copyOf(readBuffer, result); + return null; + } + /*============================================================================================*/ + private class TinFoil{ + TinFoil(){ + + if (!sendListOfNSP()) + return; + + if (proceedCommands()) // REPORT SUCCESS + status = getResources().getString(R.string.status_uploaded); // Don't change status that is already set to FAILED TODO: FIX + } + // Send what NSP will be transferred + + private boolean sendListOfNSP(){ + // Send list of NSP files: + // Proceed "TUL0" + if (writeToUsb("TUL0".getBytes())) { // new byte[]{(byte) 0x54, (byte) 0x55, (byte) 0x76, (byte) 0x30} //"US-ASCII"? + issueDescription = "TF Send list of files: handshake failure"; + return false; + } + //Collect file names + StringBuilder nspListNamesBuilder = new StringBuilder(); // Add every title to one stringBuilder + for(NSPElement element: nspElements) { + nspListNamesBuilder.append(element.getFilename()); // And here we come with java string default encoding (UTF-16) + nspListNamesBuilder.append('\n'); + } + + byte[] nspListNames = nspListNamesBuilder.toString().getBytes(); // android's .getBytes() default == UTF8 + ByteBuffer byteBuffer = ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN); // integer = 4 bytes; BTW Java is stored in big-endian format + byteBuffer.putInt(nspListNames.length); // This way we obtain length in int converted to byte array in correct Big-endian order. Trust me. + byte[] nspListSize = byteBuffer.array(); + + // Sending NSP list + if (writeToUsb(nspListSize)) { // size of the list we're going to transfer goes... + issueDescription = "TF Send list of files: [send list length]"; + return false; + } + + if (writeToUsb(new byte[8])) { // 8 zero bytes goes... + issueDescription = "TF Send list of files: [send padding]"; + return false; + } + + if (writeToUsb(nspListNames)) { // list of the names goes... + issueDescription = "TF Send list of files: [send list itself]"; + return false; + } + + return true; + } + + // After we sent commands to NS, this chain starts + + private boolean proceedCommands(){ + final byte[] magic = new byte[]{(byte) 0x54, (byte) 0x55, (byte) 0x43, (byte) 0x30}; // eq. 'TUC0' @ UTF-8 (actually ASCII lol, u know what I mean) + + byte[] receivedArray; + + while (true){ + if (interrupt.get()) // Check if user interrupted process. + return false; + receivedArray = readFromUsb(); + if (receivedArray == null) + return false; // catches exception + + if (!Arrays.equals(Arrays.copyOfRange(receivedArray, 0,4), magic)) // Bytes from 0 to 3 should contain 'magic' TUC0, so must be verified like this + continue; + + // 8th to 12th(explicits) bytes in returned data stands for command ID as unsigned integer (Little-endian). Actually, we have to compare arrays here, but in real world it can't be greater then 0/1/2, thus: + // BTW also protocol specifies 4th byte to be 0x00 kinda indicating that that this command is valid. But, as you may see, never happens other situation when it's not = 0. + if (receivedArray[8] == 0x00){ //0x00 - exit + return true; // All interaction with USB device should be ended (expected); + } + else if ((receivedArray[8] == 0x01) || (receivedArray[8] == 0x02)){ //0x01 - file range; 0x02 unknown bug on backend side (dirty hack). + if (!fileRangeCmd()) // issueDescription inside + return false; + } + } + } + /** + * This is what returns requested file (files) + * Executes multiple times + * @return 'true' if everything is ok + * 'false' is error/exception occurs + * */ + + private boolean fileRangeCmd(){ + byte[] receivedArray; + // Here we take information of what other side wants + receivedArray = readFromUsb(); + if (receivedArray == null) { + issueDescription = "TF Unable to get meta information @fileRangeCmd()"; + return false; + } + + // range_offset of the requested file. In the begining it will be 0x10. + long receivedRangeSize = ByteBuffer.wrap(Arrays.copyOfRange(receivedArray, 0,8)).order(ByteOrder.LITTLE_ENDIAN).getLong(); + byte[] receivedRangeSizeRAW = Arrays.copyOfRange(receivedArray, 0,8); + long receivedRangeOffset = ByteBuffer.wrap(Arrays.copyOfRange(receivedArray, 8,16)).order(ByteOrder.LITTLE_ENDIAN).getLong(); + + // Requesting UTF-8 file name required: + receivedArray = readFromUsb(); + if (receivedArray == null) { + issueDescription = "TF Unable to get file name @fileRangeCmd()"; + return false; + } + String receivedRequestedNSP; + try { + receivedRequestedNSP = new String(receivedArray, "UTF-8"); //TODO:FIX + } + catch (java.io.UnsupportedEncodingException uee){ + issueDescription = "TF UnsupportedEncodingException @fileRangeCmd()"; + return false; + } + + // Sending response header + if (!sendResponse(receivedRangeSizeRAW)) // Get receivedRangeSize in 'RAW' format exactly as it has been received. It's simply. + return false; // issueDescription handled by method + + try { + BufferedInputStream bufferedInStream = null; + + for (NSPElement e: nspElements){ + if (e.getFilename().equals(receivedRequestedNSP)){ + InputStream elementIS = getContentResolver().openInputStream(e.getUri()); + if (elementIS == null) { + issueDescription = "TF Unable to obtain InputStream"; + return false; + } + bufferedInStream = new BufferedInputStream(elementIS); // TODO: refactor? + break; + } + } + + if (bufferedInStream == null) { + issueDescription = "TF Unable to create BufferedInputStream"; + return false; + } + + byte[] readBuf ;//= new byte[1048576]; // eq. Allocate 1mb + + if (bufferedInStream.skip(receivedRangeOffset) != receivedRangeOffset){ + issueDescription = "TF Requested skip is out of file size. Nothing to transmit."; + return false; + } + + long readFrom = 0; + // 'End Offset' equal to receivedRangeSize. + int readPice = 16384; // = 8Mb + + while (readFrom < receivedRangeSize){ + if (interrupt.get()) // Check if user interrupted process. + return true; + if ((readFrom + readPice) >= receivedRangeSize ) + readPice = (int)(receivedRangeSize - readFrom); // TODO: Troubles could raise here + + readBuf = new byte[readPice]; // TODO: not perfect moment, consider refactoring. + + if (bufferedInStream.read(readBuf) != readPice) { + issueDescription = "TF Reading of stream suddenly ended"; + return false; + } + //write to USB + if (writeToUsb(readBuf)) { + issueDescription = "TF Failure during NSP transmission."; + return false; + } + readFrom += readPice; + + updateProgressBar((int) ((readFrom+1)/(receivedRangeSize/100+1))); + Log.i("LPR", "CO: "+readFrom+"RRS: "+receivedRangeSize+"RES: "+(readFrom+1/(receivedRangeSize/100+1))); + } + bufferedInStream.close(); + + resetProgressBar(); + } catch (java.io.IOException ioe){ + issueDescription = "TF IOException: "+ioe.getMessage(); + return false; + } + + return true; + } + /** + * Send response header. + * @return true if everything OK + * false if failed + * */ + private boolean sendResponse(byte[] rangeSize){ // This method as separate function itself for application needed as a cookie in the middle of desert. + if (writeToUsb(new byte[] { (byte) 0x54, (byte) 0x55, (byte) 0x43, (byte) 0x30, // 'TUC0' + (byte) 0x01, // CMD_TYPE_RESPONSE = 1 + (byte) 0x00, (byte) 0x00, (byte) 0x00, // kinda padding. Guys, didn't you want to use integer value for CMD semantic? + (byte) 0x01, (byte) 0x00, (byte) 0x00, (byte) 0x00} ) // Send integer value of '1' in Little-endian format. + ){ + issueDescription = "TF Sending response: [1/3]"; + return false; + } + + if(writeToUsb(rangeSize)) { // Send EXACTLY what has been received + issueDescription = "TF Sending response: [2/3]"; + return false; + } + + if(writeToUsb(new byte[12])) { // kinda another one padding + issueDescription = "TF Sending response: [3/3] FAIL"; + return false; + } + return true; + } + + } + /** + * GoldLeaf processing + * */ + private class GoldLeaf{ + // CMD G L U C + private final byte[] CMD_GLUC = new byte[]{0x47, 0x4c, 0x55, 0x43}; + private final byte[] CMD_ConnectionRequest = new byte[]{0x00, 0x00, 0x00, 0x00}; // Write-only command + private final byte[] CMD_NSPName = new byte[]{0x02, 0x00, 0x00, 0x00}; // Write-only command + private final byte[] CMD_NSPData = new byte[]{0x04, 0x00, 0x00, 0x00}; // Write-only command + + private final byte[] CMD_ConnectionResponse = new byte[]{0x01, 0x00, 0x00, 0x00}; + private final byte[] CMD_Start = new byte[]{0x03, 0x00, 0x00, 0x00}; + private final byte[] CMD_NSPContent = new byte[]{0x05, 0x00, 0x00, 0x00}; + private final byte[] CMD_NSPTicket = new byte[]{0x06, 0x00, 0x00, 0x00}; + private final byte[] CMD_Finish = new byte[]{0x07, 0x00, 0x00, 0x00}; + + GoldLeaf(){ + String fileName; + InputStream fileInputStream; + try { + fileInputStream = getContentResolver().openInputStream(nspElements.get(0).getUri()); + fileName = nspElements.get(0).getFilename(); + } + catch (java.io.FileNotFoundException fnfe){ + issueDescription = "GL FileNotFoundException @GoldLeaf()"; + return; + } + + PFSProvider pfsElement = new PFSProvider(fileInputStream, fileName); + if (!pfsElement.init()) { + issueDescription = "GL File provided have incorrect structure and won't be uploaded."; + status = getResources().getString(R.string.status_wrong_file); + return; + } + + if (initGoldLeafProtocol(pfsElement)) + status = getResources().getString(R.string.status_uploaded); // else - no change status that is already set to FAILED + } + + private boolean initGoldLeafProtocol(PFSProvider pfsElement){ + // Go parse commands + byte[] readByte; + + // Go connect to GoldLeaf + if (writeToUsb(CMD_GLUC)){ + issueDescription = "GL Initiating GoldLeaf connection: 1/2"; + return false; + } + + if (writeToUsb(CMD_ConnectionRequest)){ + issueDescription = "GL Initiating GoldLeaf connection: 2/2"; + return false; + } + + while (true) { + readByte = readFromUsb(); + if (readByte == null) + return false; + if (Arrays.equals(readByte, CMD_GLUC)) { + readByte = readFromUsb(); + if (readByte == null) + return false; + if (Arrays.equals(readByte, CMD_ConnectionResponse)) { + if (!handleConnectionResponse(pfsElement)) + return false; + continue; + } + if (Arrays.equals(readByte, CMD_Start)) { + if (!handleStart(pfsElement)) + return false; + continue; + } + if (Arrays.equals(readByte, CMD_NSPContent)) { + if (!handleNSPContent(pfsElement, true)) + return false; + continue; + } + if (Arrays.equals(readByte, CMD_NSPTicket)) { + if (!handleNSPContent(pfsElement, false)) + return false; + continue; + } + if (Arrays.equals(readByte, CMD_Finish)) { // All good + break; + } + } + } + return true; + } + /** + * ConnectionResponse command handler + * */ + private boolean handleConnectionResponse(PFSProvider pfsElement){ + if (writeToUsb(CMD_GLUC)) { + issueDescription = "GL 'ConnectionResponse' command: INFO: [1/4]"; + return false; + } + + if (writeToUsb(CMD_NSPName)) { + issueDescription = "GL 'ConnectionResponse' command: INFO: [2/4]"; + return false; + } + + if (writeToUsb(pfsElement.getBytesNspFileNameLength())) { + issueDescription = "GL 'ConnectionResponse' command: INFO: [3/4]"; + return false; + } + + if (writeToUsb(pfsElement.getBytesNspFileName())) { + issueDescription = "GL 'ConnectionResponse' command: INFO: [4/4]"; + return false; + } + + return true; + } + /** + * Start command handler + * */ + private boolean handleStart(PFSProvider pfsElement){ + + if (writeToUsb(CMD_GLUC)) { + issueDescription = "GL Handle 'Start' command: [Send command prepare]"; + return false; + } + + if (writeToUsb(CMD_NSPData)) { + issueDescription = "GL Handle 'Start' command: [Send command]"; + return false; + } + + if (writeToUsb(pfsElement.getBytesCountOfNca())) { + issueDescription = "GL Handle 'Start' command: [Send length]"; + return false; + } + + int ncaCount = pfsElement.getIntCountOfNca(); + + for (int i = 0; i < ncaCount; i++){ + if (writeToUsb(pfsElement.getNca(i).getNcaFileNameLength())) { + issueDescription = "GL Handle 'Start' command: File # "+i+"/"+ncaCount+" step: [1/4]"; + return false; + } + + if (writeToUsb(pfsElement.getNca(i).getNcaFileName())) { + issueDescription = "GL Handle 'Start' command: File # "+i+"/"+ncaCount+" step: [2/4]"; + return false; + } + + if (writeToUsb(ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN).putLong(pfsElement.getBodySize()+pfsElement.getNca(i).getNcaOffset()).array())) { // offset. real. + issueDescription = "GL Handle 'Start' command: File # "+i+"/"+ncaCount+" step: [3/4]"; + return false; + } + + if (writeToUsb(ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN).putLong(pfsElement.getNca(i).getNcaSize()).array())) { // size + issueDescription = "GL Handle 'Start' command: File # "+i+"/"+ncaCount+" step: [4/4]"; + return false; + } + } + return true; + } + /** + * NSPContent command handler + * isItRawRequest - if True, just ask NS what's needed + * - if False, send ticket + * */ + private boolean handleNSPContent(PFSProvider pfsElement, boolean isItRawRequest){ + int requestedNcaID; + + if (isItRawRequest) { + byte[] readByte = readFromUsb(); + if (readByte == null || readByte.length != 4) { + issueDescription = "GL Handle 'Content' command: [Read requested ID]"; + return false; + } + requestedNcaID = ByteBuffer.wrap(readByte).order(ByteOrder.LITTLE_ENDIAN).getInt(); + } + else { + requestedNcaID = pfsElement.getNcaTicketID(); + } + + long realNcaOffset = pfsElement.getNca(requestedNcaID).getNcaOffset()+pfsElement.getBodySize(); + long realNcaSize = pfsElement.getNca(requestedNcaID).getNcaSize(); + + long readFrom = 0; + + int readPice = 16384; // 8mb NOTE: consider switching to 1mb 1048576 + byte[] readBuf; + + try{ + BufferedInputStream bufferedInStream = new BufferedInputStream(getContentResolver().openInputStream(nspElements.get(0).getUri())); // TODO: refactor? + if (bufferedInStream.skip(realNcaOffset) != realNcaOffset) { + issueDescription = "GL Failed to skip NCA offset"; + return false; + } + + while (readFrom < realNcaSize){ + if (interrupt.get()) // Check if user interrupted process. + return false; + + if (readPice > (realNcaSize - readFrom)) + readPice = (int)(realNcaSize - readFrom); // TODO: Troubles could raise here + readBuf = new byte[readPice]; + if (bufferedInStream.read(readBuf) != readPice) { + issueDescription = "GL Failed to read data from file."; + return false; + } + + if (writeToUsb(readBuf)) { + issueDescription = "GL Failed to write data into NS."; + return false; + } + + readFrom += readPice; + + updateProgressBar((int) ((readFrom+1)/(realNcaSize/100+1))); + } + bufferedInStream.close(); + + resetProgressBar(); + } + catch (java.io.IOException ioe){ + issueDescription = "GL Failed to read NCA ID "+requestedNcaID+". IO Exception: "+ioe.getMessage(); + return false; + } + return true; + } + } +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NSPElement.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NSPElement.java new file mode 100644 index 0000000..5c59a05 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NSPElement.java @@ -0,0 +1,67 @@ +package com.blogspot.developersu.ns_usbloader.View; + +import android.net.Uri; +import android.os.Parcel; +import android.os.Parcelable; + +public class NSPElement implements Parcelable { + private Uri uri; + private String filename; + private long size; + private String status; + private boolean selected; + + public NSPElement(Uri uri, String filename, long size){ + this.uri = uri; + this.filename = filename; + this.size = size; + this.status = ""; + this.selected = false; + } + + public Uri getUri() { return uri; } + public String getFilename() { return filename; } + public long getSize() { return size; } + + public String getStatus() { return status; } + public void setStatus(String status) { this.status = status; } + + public boolean isSelected() { return selected; } + public void setSelected(boolean selected) { this.selected = selected; } + + /*----------------------- + / Parcelable shit next + /-----------------------*/ + private NSPElement(Parcel parcel){ + uri = Uri.parse(parcel.readString()); + filename = parcel.readString(); + size = parcel.readLong(); + status = parcel.readString(); + selected = parcel.readByte() == 0x1; + } + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel outParcel, int flags) { + outParcel.writeString(uri.toString()); + outParcel.writeString(filename); + outParcel.writeLong(size); + outParcel.writeString(status); + outParcel.writeByte((byte) (selected ? 0x1 : 0x0)); + } + + public static final Parcelable.Creator CREATOR + = new Parcelable.Creator() { + public NSPElement createFromParcel(Parcel in) { + return new NSPElement(in); + } + + public NSPElement[] newArray(int size) { + return new NSPElement[size]; + } + }; +} diff --git a/app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NspItemsAdapter.java b/app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NspItemsAdapter.java new file mode 100644 index 0000000..6ad8b03 --- /dev/null +++ b/app/src/main/java/com/blogspot/developersu/ns_usbloader/View/NspItemsAdapter.java @@ -0,0 +1,94 @@ +package com.blogspot.developersu.ns_usbloader.View; + +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CheckedTextView; +import android.widget.TextView; + +import androidx.annotation.NonNull; +import androidx.recyclerview.widget.RecyclerView; + +import com.blogspot.developersu.ns_usbloader.R; + +import java.util.ArrayList; +import java.util.Collections; + +public class NspItemsAdapter extends RecyclerView.Adapter { + private ArrayList mDataset; + + public static class NspViewHolder extends RecyclerView.ViewHolder{ + CheckedTextView nspCTV; + TextView sizeTV; + TextView statusTV; + NSPElement nspElement; + + NspViewHolder(View itemTV) { + super(itemTV); + nspCTV = itemTV.findViewById(R.id.checkedCTV); + sizeTV = itemTV.findViewById(R.id.sizeTV); + statusTV = itemTV.findViewById(R.id.statusTV); + nspCTV.setOnClickListener(e->{ + nspCTV.toggle(); + nspElement.setSelected(nspCTV.isChecked()); + }); + } + + void setData(NSPElement element){ + nspElement = element; + nspCTV.setText(element.getFilename()); + sizeTV.setText(getCuteSize(element.getSize())); + nspCTV.setChecked(element.isSelected()); + statusTV.setText(element.getStatus()); + } + + private String getCuteSize(long byteSize){ + if (byteSize/1024.0/1024.0/1024.0 > 1) + return String.format("%.2f", byteSize/1024.0/1024.0/1024.0)+" GB"; + else if (byteSize/1024.0/1024.0 > 1) + return String.format("%.2f", byteSize/1024.0/1024.0)+" MB"; + else + return String.format("%.2f", byteSize/1024.0)+" kB"; + } + + public NSPElement getData(){ + return nspElement; + } + } + + public NspItemsAdapter(ArrayList mDataset){ + this.mDataset = mDataset; + } + + public void move(int fromPosition, int toPostition){ + if (fromPosition < toPostition){ + int i = fromPosition; + while(i < toPostition) + Collections.swap(mDataset, i, ++i); + } + else { + int i = fromPosition; + while(i > toPostition) + Collections.swap(mDataset, i, --i); + } + notifyItemMoved(fromPosition, toPostition); + } + + @NonNull + @Override + public NspViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { + View tv = LayoutInflater.from(parent.getContext()) + .inflate(R.layout.nsp_item, parent, false); + return new NspViewHolder(tv); + } + + @Override + public void onBindViewHolder(@NonNull NspViewHolder holder, int position) { + holder.setData(mDataset.get(position)); + } + + @Override + public int getItemCount() { + return mDataset.size(); + } +} \ No newline at end of file diff --git a/app/src/main/res/color/textview_colors.xml b/app/src/main/res/color/textview_colors.xml new file mode 100644 index 0000000..6a64935 --- /dev/null +++ b/app/src/main/res/color/textview_colors.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..44a1e04 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/app/src/main/res/drawable/ic_cancel.xml b/app/src/main/res/drawable/ic_cancel.xml new file mode 100644 index 0000000..88c34de --- /dev/null +++ b/app/src/main/res/drawable/ic_cancel.xml @@ -0,0 +1,17 @@ + + + + diff --git a/app/src/main/res/drawable/ic_file_select_file.xml b/app/src/main/res/drawable/ic_file_select_file.xml new file mode 100644 index 0000000..f5ec4b3 --- /dev/null +++ b/app/src/main/res/drawable/ic_file_select_file.xml @@ -0,0 +1,41 @@ + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_fullsize_logo_android.xml b/app/src/main/res/drawable/ic_fullsize_logo_android.xml new file mode 100644 index 0000000..bd2f5cb --- /dev/null +++ b/app/src/main/res/drawable/ic_fullsize_logo_android.xml @@ -0,0 +1,12 @@ + + + + + + diff --git a/app/src/main/res/drawable/ic_info.xml b/app/src/main/res/drawable/ic_info.xml new file mode 100644 index 0000000..cf53e14 --- /dev/null +++ b/app/src/main/res/drawable/ic_info.xml @@ -0,0 +1,9 @@ + + + diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..af3b6c7 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,24 @@ + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..44a1e04 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/app/src/main/res/drawable/ic_logo_android.xml b/app/src/main/res/drawable/ic_logo_android.xml new file mode 100644 index 0000000..b952b72 --- /dev/null +++ b/app/src/main/res/drawable/ic_logo_android.xml @@ -0,0 +1,35 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_net.xml b/app/src/main/res/drawable/ic_net.xml new file mode 100644 index 0000000..69c81f1 --- /dev/null +++ b/app/src/main/res/drawable/ic_net.xml @@ -0,0 +1,9 @@ + + + diff --git a/app/src/main/res/drawable/ic_notification.xml b/app/src/main/res/drawable/ic_notification.xml new file mode 100644 index 0000000..e62034f --- /dev/null +++ b/app/src/main/res/drawable/ic_notification.xml @@ -0,0 +1,10 @@ + + + diff --git a/app/src/main/res/drawable/ic_upload_btn.xml b/app/src/main/res/drawable/ic_upload_btn.xml new file mode 100644 index 0000000..7cf3627 --- /dev/null +++ b/app/src/main/res/drawable/ic_upload_btn.xml @@ -0,0 +1,25 @@ + + + + + + + diff --git a/app/src/main/res/drawable/ic_usb.xml b/app/src/main/res/drawable/ic_usb.xml new file mode 100644 index 0000000..2e7e0dc --- /dev/null +++ b/app/src/main/res/drawable/ic_usb.xml @@ -0,0 +1,9 @@ + + + diff --git a/app/src/main/res/drawable/side_nav_bar.xml b/app/src/main/res/drawable/side_nav_bar.xml new file mode 100644 index 0000000..6ca1e14 --- /dev/null +++ b/app/src/main/res/drawable/side_nav_bar.xml @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/app/src/main/res/font/play.ttf b/app/src/main/res/font/play.ttf new file mode 100644 index 0000000000000000000000000000000000000000..5f4fc9b25853f20c8127d5c6dc66aaf8f76a72a3 GIT binary patch literal 183256 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 + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..081341f --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,29 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/app_bar_main.xml b/app/src/main/res/layout/app_bar_main.xml new file mode 100644 index 0000000..4c2bae3 --- /dev/null +++ b/app/src/main/res/layout/app_bar_main.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/content_about.xml b/app/src/main/res/layout/content_about.xml new file mode 100644 index 0000000..883aa91 --- /dev/null +++ b/app/src/main/res/layout/content_about.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml new file mode 100644 index 0000000..13076d8 --- /dev/null +++ b/app/src/main/res/layout/content_main.xml @@ -0,0 +1,79 @@ + + + + + + + + + + +