aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall/source/DetectAction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'heimdall/source/DetectAction.cpp')
-rw-r--r--heimdall/source/DetectAction.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/heimdall/source/DetectAction.cpp b/heimdall/source/DetectAction.cpp
new file mode 100644
index 0000000..319433f
--- /dev/null
+++ b/heimdall/source/DetectAction.cpp
@@ -0,0 +1,64 @@
+/* Copyright (c) 2010-2012 Benjamin Dobell, Glass Echidna
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.*/
+
+// Heimdall
+#include "Arguments.h"
+#include "BridgeManager.h"
+#include "DetectAction.h"
+#include "Heimdall.h"
+#include "Interface.h"
+
+using namespace Heimdall;
+
+const char *DetectAction::usage = "Action: detect\n\
+Arguments: [--verbose] [--stdout-errors]\n\
+Description: Indicates whether or not a download mode device can be detected.\n";
+
+int DetectAction::Execute(int argc, char **argv)
+{
+ // Handle arguments
+
+ map<string, ArgumentType> argumentTypes;
+ argumentTypes["verbose"] = kArgumentTypeFlag;
+ argumentTypes["stdout-errors"] = kArgumentTypeFlag;
+
+ Arguments arguments(argumentTypes);
+
+ if (!arguments.ParseArguments(argc, argv, 2))
+ {
+ Interface::Print(DetectAction::usage);
+ return (0);
+ }
+
+ bool verbose = arguments.GetArgument("verbose") != nullptr;
+
+ if (arguments.GetArgument("stdout-errors") != nullptr)
+ Interface::SetStdoutErrors(true);
+
+ // Download PIT file from device.
+
+ BridgeManager *bridgeManager = new BridgeManager(verbose);
+
+ bool detected = bridgeManager->DetectDevice();
+
+ delete bridgeManager;
+
+ return ((detected) ? 0 : 1);
+}