gem5  v20.1.0.0
vncinput.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 2015, 2017 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
42 #include "base/vnc/vncinput.hh"
43 
44 #include <sys/types.h>
45 
46 #include "base/logging.hh"
47 #include "base/output.hh"
48 
49 #include "base/trace.hh"
50 #include "debug/VNC.hh"
51 
52 using namespace std;
53 
55  : SimObject(p), keyboard(NULL), mouse(NULL),
56  fb(&FrameBuffer::dummy),
57  _videoWidth(fb->width()), _videoHeight(fb->height()),
58  captureEnabled(p->frame_capture),
59  captureCurrentFrame(0), captureLastHash(0),
60  imgFormat(p->img_format)
61 {
62  if (captureEnabled) {
63  // remove existing frame output directory if it exists, then create a
64  // clean empty directory
65  const string FRAME_OUTPUT_SUBDIR = "frames_" + name();
66  simout.remove(FRAME_OUTPUT_SUBDIR, true);
68  FRAME_OUTPUT_SUBDIR);
69  }
70 }
71 
72 void
74 {
75  if (!rfb)
76  panic("Trying to VNC frame buffer to NULL!");
77 
78  fb = rfb;
79 
80  // Create the Image Writer object in charge of dumping
81  // the frame buffer raw data into a file in a specific format.
82  if (captureEnabled) {
84  }
85 
86  // Setting a new frame buffer means that we need to send an update
87  // to the client. Mark the internal buffers as dirty to do so.
88  setDirty();
89 }
90 
91 void
93 {
94  const unsigned width(fb->width());
95  const unsigned height(fb->height());
96 
97  if (_videoWidth != width || _videoHeight != height) {
98  DPRINTF(VNC, "Updating video params: width: %d height: %d\n",
99  width, height);
100 
101  _videoWidth = width;
102  _videoHeight = height;
103 
105  }
106 
107  if (captureEnabled)
109 }
110 
111 void
113 {
114  assert(captureImage);
115 
116  // skip identical frames
117  uint64_t new_hash = fb->getHash();
118  if (captureLastHash == new_hash)
119  return;
120  captureLastHash = new_hash;
121 
122  // get the filename for the current frame
123  char frameFilenameBuffer[64];
124  snprintf(frameFilenameBuffer, 64, "fb.%06d.%lld.%s.gz",
125  captureCurrentFrame, static_cast<long long int>(curTick()),
126  captureImage->getImgExtension());
127  const string frameFilename(frameFilenameBuffer);
128 
129  // create the compressed framebuffer file
130  OutputStream *fb_out(captureOutputDirectory->create(frameFilename, true));
131  captureImage->write(*fb_out->stream());
132  captureOutputDirectory->close(fb_out);
133 
135 }
136 
137 // create the VNC Replayer object
138 VncInput *
139 VncInputParams::create()
140 {
141  return new VncInput(this);
142 }
VncInput::VncInput
VncInput(const Params *p)
Definition: vncinput.cc:54
ArmISA::width
Bitfield< 4 > width
Definition: miscregs_types.hh:68
vncinput.hh
VncInput::_videoWidth
uint16_t _videoWidth
the width of the frame buffer we are sending to the client
Definition: vncinput.hh:209
OutputDirectory::create
OutputStream * create(const std::string &name, bool binary=false, bool no_gz=false)
Creates a file in this directory (optionally compressed).
Definition: output.cc:209
VncInput::captureOutputDirectory
OutputDirectory * captureOutputDirectory
Directory to store captured frames to.
Definition: vncinput.hh:221
VncInput::Params
VncInputParams Params
Definition: vncinput.hh:154
VncInput::captureImage
std::unique_ptr< ImgWriter > captureImage
Cached ImgWriter object for writing out frame buffers to file.
Definition: vncinput.hh:227
OutputDirectory::createSubdirectory
OutputDirectory * createSubdirectory(const std::string &name)
Creates a subdirectory within this directory.
Definition: output.cc:282
output.hh
VncInput
Definition: vncinput.hh:85
VncInput::captureEnabled
bool captureEnabled
Flag indicating whether to capture snapshots of frame buffer or not.
Definition: vncinput.hh:215
VncInput::setDirty
virtual void setDirty()
The frame buffer uses this call to notify the vnc server that the frame buffer has been updated and a...
Definition: vncinput.cc:92
VncInput::_videoHeight
uint16_t _videoHeight
the height of the frame buffer we are sending to the client
Definition: vncinput.hh:212
createImgWriter
std::unique_ptr< ImgWriter > createImgWriter(Enums::ImageFormat type, const FrameBuffer *fb)
Factory Function which allocates a ImgWriter object and returns a smart pointer to it.
Definition: imgwriter.cc:50
OutputStream::stream
std::ostream * stream() const
Get the output underlying output stream.
Definition: output.hh:59
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:234
OutputDirectory::close
void close(OutputStream *file)
Closes an output file and free the corresponding OutputFile.
Definition: output.cc:146
VncInput::setFrameBuffer
virtual void setFrameBuffer(const FrameBuffer *rfb)
Set the address of the frame buffer we are going to show.
Definition: vncinput.cc:73
VncInput::captureFrameBuffer
void captureFrameBuffer()
Captures the current frame buffer to a file.
Definition: vncinput.cc:112
VncInput::captureLastHash
uint64_t captureLastHash
Computed hash of the last captured frame.
Definition: vncinput.hh:224
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:133
VncInput::captureCurrentFrame
int captureCurrentFrame
Current frame number being captured to a file.
Definition: vncinput.hh:218
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
OutputStream
Definition: output.hh:53
FrameBuffer
Internal gem5 representation of a frame buffer.
Definition: framebuffer.hh:65
VncInput::fb
const FrameBuffer * fb
pointer to the actual data that is stored in the frame buffer device
Definition: vncinput.hh:206
logging.hh
FrameBuffer::getHash
uint64_t getHash() const
Create a hash of the image that can be used for quick comparisons.
Definition: framebuffer.cc:122
trace.hh
VncInput::imgFormat
Enums::ImageFormat imgFormat
image format
Definition: vncinput.hh:230
FrameBuffer::width
unsigned width() const
Frame buffer width in pixels.
Definition: framebuffer.hh:96
simout
OutputDirectory simout
Definition: output.cc:61
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
FrameBuffer::height
unsigned height() const
Frame buffer height in pixels.
Definition: framebuffer.hh:98
ArmISA::fb
Bitfield< 9 > fb
Definition: miscregs_types.hh:271
OutputDirectory::remove
void remove(const std::string &name, bool recursive=false)
Removes a specified file or subdirectory.
Definition: output.cc:295
VncInput::frameBufferResized
virtual void frameBufferResized()
Definition: vncinput.hh:197
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
curTick
Tick curTick()
The current simulated tick.
Definition: core.hh:45
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:92

Generated on Wed Sep 30 2020 14:02:08 for gem5 by doxygen 1.8.17