Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Unified Diff: ui/events/ozone/evdev/libgestures_glue/gesture_feedback.cc

Issue 893753002: Dump touchpad event logs for touch log source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change functions to Chromium counterparts and cleanup stuff Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/events/ozone/evdev/libgestures_glue/gesture_feedback.cc
diff --git a/ui/events/ozone/evdev/libgestures_glue/gesture_feedback.cc b/ui/events/ozone/evdev/libgestures_glue/gesture_feedback.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c9e219534a573f82b73367f1d19b82aca41921d7
--- /dev/null
+++ b/ui/events/ozone/evdev/libgestures_glue/gesture_feedback.cc
@@ -0,0 +1,219 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/events/ozone/evdev/libgestures_glue/gesture_feedback.h"
+
+#include <time.h>
+
+#include "base/bind.h"
+#include "base/command_line.h"
+#include "base/location.h"
+#include "base/logging.h"
+#include "base/process/launch.h"
+#include "base/strings/string_number_conversions.h"
+#include "base/strings/string_util.h"
+#include "base/strings/stringprintf.h"
+#include "base/threading/worker_pool.h"
+#include "ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.h"
+
+namespace ui {
+
+namespace {
+
+// Binary paths.
+const char kGzipCommand[] = "/bin/gzip";
+const char kDateCommand[] = "/bin/date";
+
+const size_t kTouchLogTimestampMaxSize = 80;
+
+// Return the values in an array in one string. Used for touch logging.
+template <typename T>
+std::string DumpArrayProperty(const std::vector<T>& value, const char* format) {
+ std::string ret;
+ for (size_t i = 0; i < value.size(); ++i) {
+ if (i > 0)
+ ret.append(", ");
+ ret.append(base::StringPrintf(format, value[i]));
+ }
+ return ret;
+}
+
+// Return the values in a gesture property in one string. Used for touch
+// logging.
+std::string DumpGesturePropertyValue(GesturesProp* property) {
+ switch (property->type()) {
+ case GesturePropertyProvider::PT_INT:
+ return DumpArrayProperty(property->GetIntValue(), "%d");
+ break;
+ case GesturePropertyProvider::PT_SHORT:
+ return DumpArrayProperty(property->GetShortValue(), "%d");
+ break;
+ case GesturePropertyProvider::PT_BOOL:
+ return DumpArrayProperty(property->GetBoolValue(), "%d");
+ break;
+ case GesturePropertyProvider::PT_STRING:
+ return "\"" + property->GetStringValue() + "\"";
+ break;
+ case GesturePropertyProvider::PT_REAL:
+ return DumpArrayProperty(property->GetDoubleValue(), "%lf");
+ break;
+ default:
+ NOTREACHED();
+ break;
+ }
+ return std::string();
+}
+
+// Compress dumped event logs in place.
+void CompressDumpedLog(scoped_ptr<std::vector<std::string>> log_paths) {
+ for (size_t i = 0; i < log_paths->size(); ++i) {
+ // Zip the file.
+ base::CommandLine command = base::CommandLine(base::FilePath(kGzipCommand));
+ command.AppendArg("-f");
+ command.AppendArg((*log_paths)[i]);
+ std::string output;
+ base::GetAppOutput(command, &output);
+
+ // Replace the original file with the zipped one.
+ base::Move(base::FilePath((*log_paths)[i] + ".gz"),
+ base::FilePath((*log_paths)[i]));
+ }
+}
+
+// Get the current time in a string.
+std::string GetCurrentTimeForLogging() {
+ time_t rawtime;
+ struct tm timeinfo;
+ char buffer[kTouchLogTimestampMaxSize];
+
+ time(&rawtime);
+ if (!localtime_r(&rawtime, &timeinfo)) {
+ PLOG(ERROR) << "localtime_r failed";
+ return "";
+ }
+ strftime(buffer, kTouchLogTimestampMaxSize, "%Y%m%d-%H%M%S", &timeinfo);
spang 2015/02/12 18:10:38 It looks like buffer may not be NULL terminated if
Shecky Lin 2015/02/13 05:12:22 Done.
+ return std::string(buffer);
+}
+
+// Canonize the device name for logging.
+std::string GetCanonicalDeviceName(const std::string& name) {
+ std::string ret(name);
+ for (size_t i = 0; i < ret.size(); ++i)
+ if (!IsAsciiAlpha(ret[i]))
+ ret[i] = '_';
+ return ret;
+}
+
+// Name event logs in a way that is compatible with existing toolchain.
+std::string GenerateEventLogName(GesturePropertyProvider* provider,
+ const base::FilePath& out_dir,
+ const std::string& prefix,
+ const std::string& now,
+ int id) {
+ return out_dir.value() + "/" + prefix + now + "." + base::IntToString(id) +
+ "." + GetCanonicalDeviceName(provider->GetDeviceNameById(id));
+}
+
+// Set the logging properties to dump event logs.
+void StartToDumpEventLog(GesturePropertyProvider* provider,
+ const int device_id) {
+ // Dump gesture log.
+ GesturesProp* property = provider->GetProperty(device_id, "Log Path");
+ property->SetStringValue(kTouchpadGestureLogPath);
+ property = provider->GetProperty(device_id, "Logging Notify");
+ property->SetIntValue(std::vector<int>(1, 1));
+
+ // Dump evdev log.
+ property = provider->GetProperty(device_id, "Dump Debug Log");
+ property->SetBoolValue(std::vector<bool>(1, true));
+}
+
+} // namespace
+
+// Dump touch device property values to a string.
+void DumpTouchDeviceStatus(GesturePropertyProvider* provider,
+ std::string* status) {
+ // We use DT_ALL since we want gesture property values for all devices that
+ // run with the gesture library, not just mice or touchpads.
+ std::vector<int> ids;
+ provider->GetDeviceIdsByType(DT_ALL, &ids);
+
+ // Dump the property names and values for each device.
+ for (size_t i = 0; i < ids.size(); ++i) {
+ std::vector<std::string> names = provider->GetPropertyNamesById(ids[i]);
+ status->append("\n");
+ status->append(base::StringPrintf("ID %d:\n", ids[i]));
+ status->append(base::StringPrintf(
+ "Device \'%s\':\n", provider->GetDeviceNameById(ids[i]).c_str()));
+
+ // Note that, unlike X11, we don't maintain the "atom" concept here.
+ // Therefore, the property name indices we output here shouldn't be treated
+ // as unique identifiers of the properties.
+ std::sort(names.begin(), names.end());
+ for (size_t j = 0; j < names.size(); ++j) {
+ status->append(base::StringPrintf("\t%s (%zu):", names[j].c_str(), j));
+ GesturesProp* property = provider->GetProperty(ids[i], names[j]);
+ status->append("\t" + DumpGesturePropertyValue(property) + '\n');
+ }
+ }
+}
+
+// Dump touch event logs.
+void DumpTouchEventLog(GesturePropertyProvider* provider,
+ const base::FilePath& out_dir,
+ scoped_ptr<std::vector<base::FilePath>> log_paths,
+ const GetTouchEventLogReply& reply) {
+ // Get device ids.
+ std::vector<int> ids;
+ provider->GetDeviceIdsByType(DT_ALL, &ids);
+
+ // Get current time stamp.
+ std::string now = GetCurrentTimeForLogging();
+
+ // Dump event logs for gesture devices.
+ scoped_ptr<std::vector<std::string>> log_paths_to_be_compressed(
+ new std::vector<std::string>);
+ for (size_t i = 0; i < ids.size(); ++i) {
+ // First, see if the device actually uses the gesture library by checking
+ // if it has any gesture property.
+ std::vector<std::string> names = provider->GetPropertyNamesById(ids[i]);
+ if (names.size() == 0)
+ continue;
+
+ // Set the logging properties to dump event logs. This needs to be done
+ // synchronously for now or we might have race conditions on the debug
+ // buffer. If the performance becomes a concern then, we can fork and
+ // synchronize it.
+ //
+ // TODO(sheckylin): Make sure this has no performance impact for user
+ // feedbacks.
+ StartToDumpEventLog(provider, ids[i]);
+
+ // Rename/move the file to another place since each device's log is
+ // always dumped using the same name.
+ std::string gesture_log_filename = GenerateEventLogName(
+ provider, out_dir, "touchpad_activity_", now, ids[i]);
+ base::Move(base::FilePath(kTouchpadGestureLogPath),
+ base::FilePath(gesture_log_filename));
+ std::string evdev_log_filename = GenerateEventLogName(
+ provider, out_dir, "cmt_input_events_", now, ids[i]);
+ base::Move(base::FilePath(kTouchpadEvdevLogPath),
+ base::FilePath(evdev_log_filename));
+
+ // Historically, we compress touchpad/mouse logs with gzip before tarring
+ // them up. We DONT compress touchscreen logs though.
+ log_paths_to_be_compressed->push_back(gesture_log_filename);
+ log_paths->push_back(base::FilePath(gesture_log_filename));
+ log_paths_to_be_compressed->push_back(evdev_log_filename);
+ log_paths->push_back(base::FilePath(evdev_log_filename));
+ }
+
+ // Compress touchpad/mouse logs on another thread and return.
+ base::WorkerPool::PostTaskAndReply(
+ FROM_HERE,
+ base::Bind(&CompressDumpedLog, base::Passed(&log_paths_to_be_compressed)),
+ base::Bind(reply, base::Passed(&log_paths)), true /* task_is_slow */);
+}
+
+} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698