gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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 
53  : SimObject(p), keyboard(NULL), mouse(NULL),
54  fb(&FrameBuffer::dummy),
55  _videoWidth(fb->width()), _videoHeight(fb->height()),
56  captureEnabled(p.frame_capture),
57  captureCurrentFrame(0), captureLastHash(0),
58  imgFormat(p.img_format)
59 {
60  if (captureEnabled) {
61  // remove existing frame output directory if it exists, then create a
62  // clean empty directory
63  const std::string FRAME_OUTPUT_SUBDIR = "frames_" + name();
64  simout.remove(FRAME_OUTPUT_SUBDIR, true);
66  FRAME_OUTPUT_SUBDIR);
67  }
68 }
69 
70 void
72 {
73  if (!rfb)
74  panic("Trying to VNC frame buffer to NULL!");
75 
76  fb = rfb;
77 
78  // Create the Image Writer object in charge of dumping
79  // the frame buffer raw data into a file in a specific format.
80  if (captureEnabled) {
82  }
83 
84  // Setting a new frame buffer means that we need to send an update
85  // to the client. Mark the internal buffers as dirty to do so.
86  setDirty();
87 }
88 
89 void
91 {
92  const unsigned width(fb->width());
93  const unsigned height(fb->height());
94 
95  if (_videoWidth != width || _videoHeight != height) {
96  DPRINTF(VNC, "Updating video params: width: %d height: %d\n",
97  width, height);
98 
100  _videoHeight = height;
101 
103  }
104 
105  if (captureEnabled)
107 }
108 
109 void
111 {
112  assert(captureImage);
113 
114  // skip identical frames
115  uint64_t new_hash = fb->getHash();
116  if (captureLastHash == new_hash)
117  return;
118  captureLastHash = new_hash;
119 
120  // get the filename for the current frame
121  char frameFilenameBuffer[64];
122  snprintf(frameFilenameBuffer, 64, "fb.%06d.%lld.%s.gz",
123  captureCurrentFrame, static_cast<long long int>(curTick()),
124  captureImage->getImgExtension());
125  const std::string frameFilename(frameFilenameBuffer);
126 
127  // create the compressed framebuffer file
128  OutputStream *fb_out(captureOutputDirectory->create(frameFilename, true));
129  captureImage->write(*fb_out->stream());
130  captureOutputDirectory->close(fb_out);
131 
133 }
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:207
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:280
output.hh
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:90
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:237
OutputDirectory::close
void close(OutputStream *file)
Closes an output file and free the corresponding OutputFile.
Definition: output.cc:144
VncInput::setFrameBuffer
virtual void setFrameBuffer(const FrameBuffer *rfb)
Set the address of the frame buffer we are going to show.
Definition: vncinput.cc:71
VncInput::captureFrameBuffer
void captureFrameBuffer()
Captures the current frame buffer to a file.
Definition: vncinput.cc:110
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:182
VncInput::VncInput
VncInput(const Params &p)
Definition: vncinput.cc:52
VncInput::captureCurrentFrame
int captureCurrentFrame
Current frame number being captured to a file.
Definition: vncinput.hh:218
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
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
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:59
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:293
VncInput::frameBufferResized
virtual void frameBufferResized()
Definition: vncinput.hh:197
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17