blob: bff87ed494b6f64e0177973cfc4e12a54d8765cc [file] [log] [blame]
[email protected]1248a40e2011-02-14 09:24:361// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commitd7cae122008-07-26 21:49:384
5#ifndef BASE_EVENT_RECORDER_H_
6#define BASE_EVENT_RECORDER_H_
7
[email protected]0bea7252011-08-05 15:34:008#include "base/base_export.h"
initial.commitd7cae122008-07-26 21:49:389#include "base/basictypes.h"
[email protected]2edc2862011-04-04 18:04:3710#include "build/build_config.h"
11
12#if defined(OS_WIN)
13#include <stdio.h>
14#include <string.h>
15#include <windows.h>
16#endif
initial.commitd7cae122008-07-26 21:49:3817
18namespace base {
19
[email protected]a3ef4832013-02-02 05:12:3320class FilePath;
21
initial.commitd7cae122008-07-26 21:49:3822// A class for recording and playing back keyboard and mouse input events.
23//
24// Note - if you record events, and the playback with the windows in
25// different sizes or positions, the playback will fail. When
26// recording and playing, you should move the relevant windows
27// to constant sizes and locations.
28// TODO(mbelshe) For now this is a singleton. I believe that this class
29// could be easily modified to:
30// support two simultaneous recorders
31// be playing back events while already recording events.
32// Why? Imagine if the product had a "record a macro" feature.
33// You might be recording globally, while recording or playing back
34// a macro. I don't think two playbacks make sense.
[email protected]0bea7252011-08-05 15:34:0035class BASE_EXPORT EventRecorder {
initial.commitd7cae122008-07-26 21:49:3836 public:
37 // Get the singleton EventRecorder.
38 // We can only handle one recorder/player at a time.
39 static EventRecorder* current() {
40 if (!current_)
41 current_ = new EventRecorder();
42 return current_;
43 }
44
45 // Starts recording events.
46 // Will clobber the file if it already exists.
47 // Returns true on success, or false if an error occurred.
[email protected]4f093932009-05-01 04:31:2248 bool StartRecording(const FilePath& filename);
initial.commitd7cae122008-07-26 21:49:3849
50 // Stops recording.
51 void StopRecording();
52
53 // Is the EventRecorder currently recording.
54 bool is_recording() const { return is_recording_; }
55
56 // Plays events previously recorded.
57 // Returns true on success, or false if an error occurred.
[email protected]4f093932009-05-01 04:31:2258 bool StartPlayback(const FilePath& filename);
initial.commitd7cae122008-07-26 21:49:3859
60 // Stops playback.
61 void StopPlayback();
62
63 // Is the EventRecorder currently playing.
64 bool is_playing() const { return is_playing_; }
65
[email protected]238a20d2009-01-26 16:33:2966#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:3867 // C-style callbacks for the EventRecorder.
68 // Used for internal purposes only.
69 LRESULT RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam);
70 LRESULT PlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam);
[email protected]238a20d2009-01-26 16:33:2971#endif
initial.commitd7cae122008-07-26 21:49:3872
73 private:
74 // Create a new EventRecorder. Events are saved to the file filename.
75 // If the file already exists, it will be deleted before recording
76 // starts.
[email protected]f3c697c52013-01-15 10:52:1177 EventRecorder()
initial.commitd7cae122008-07-26 21:49:3878 : is_recording_(false),
79 is_playing_(false),
[email protected]238a20d2009-01-26 16:33:2980#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:3881 journal_hook_(NULL),
[email protected]c7f4b6272008-09-30 20:50:5182 file_(NULL),
[email protected]238a20d2009-01-26 16:33:2983#endif
[email protected]c7f4b6272008-09-30 20:50:5184 playback_first_msg_time_(0),
85 playback_start_time_(0) {
[email protected]1248a40e2011-02-14 09:24:3686#if defined(OS_WIN)
87 memset(&playback_msg_, 0, sizeof(playback_msg_));
88#endif
initial.commitd7cae122008-07-26 21:49:3889 }
90 ~EventRecorder();
91
92 static EventRecorder* current_; // Our singleton.
93
94 bool is_recording_;
95 bool is_playing_;
[email protected]238a20d2009-01-26 16:33:2996#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:3897 HHOOK journal_hook_;
98 FILE* file_;
99 EVENTMSG playback_msg_;
[email protected]238a20d2009-01-26 16:33:29100#endif
initial.commitd7cae122008-07-26 21:49:38101 int playback_first_msg_time_;
102 int playback_start_time_;
103
[email protected]fc29bc702010-06-04 16:13:51104 DISALLOW_COPY_AND_ASSIGN(EventRecorder);
initial.commitd7cae122008-07-26 21:49:38105};
106
107} // namespace base
108
109#endif // BASE_EVENT_RECORDER_H_