325098ac07
Previously, mosh used extensive -I flags and all of the mosh-local makes it really hard to tell what the proper dependency graph is, so instead remove the -I arguments in favvor of $(top_srcdir) and qualify the paths wherever they are used.
139 lines
4.5 KiB
C++
139 lines
4.5 KiB
C++
/*
|
|
Mosh: the mobile shell
|
|
Copyright 2012 Keith Winstein
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
In addition, as a special exception, the copyright holders give
|
|
permission to link the code of portions of this program with the
|
|
OpenSSL library under certain conditions as described in each
|
|
individual source file, and distribute linked combinations including
|
|
the two.
|
|
|
|
You must obey the GNU General Public License in all respects for all
|
|
of the code used other than OpenSSL. If you modify file(s) with this
|
|
exception, you may extend this exception to your version of the
|
|
file(s), but you are not obligated to do so. If you do not wish to do
|
|
so, delete this exception statement from your version. If you delete
|
|
this exception statement from all source files in the program, then
|
|
also delete it here.
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <typeinfo>
|
|
|
|
#include "src/statesync/user.h"
|
|
#include "src/util/fatal_assert.h"
|
|
#include "src/protobufs/userinput.pb.h"
|
|
|
|
using namespace Parser;
|
|
using namespace Network;
|
|
using namespace ClientBuffers;
|
|
|
|
void UserStream::subtract( const UserStream *prefix )
|
|
{
|
|
// if we are subtracting ourself from ourself, just clear the deque
|
|
if ( this == prefix ) {
|
|
actions.clear();
|
|
return;
|
|
}
|
|
for ( deque<UserEvent>::const_iterator i = prefix->actions.begin();
|
|
i != prefix->actions.end();
|
|
i++ ) {
|
|
assert( this != prefix );
|
|
assert( !actions.empty() );
|
|
assert( *i == actions.front() );
|
|
actions.pop_front();
|
|
}
|
|
}
|
|
|
|
string UserStream::diff_from( const UserStream &existing ) const
|
|
{
|
|
deque<UserEvent>::const_iterator my_it = actions.begin();
|
|
|
|
for ( deque<UserEvent>::const_iterator i = existing.actions.begin();
|
|
i != existing.actions.end();
|
|
i++ ) {
|
|
assert( my_it != actions.end() );
|
|
assert( *i == *my_it );
|
|
my_it++;
|
|
}
|
|
|
|
ClientBuffers::UserMessage output;
|
|
|
|
while ( my_it != actions.end() ) {
|
|
switch ( my_it->type ) {
|
|
case UserByteType:
|
|
{
|
|
char the_byte = my_it->userbyte.c;
|
|
/* can we combine this with a previous Keystroke? */
|
|
if ( (output.instruction_size() > 0)
|
|
&& (output.instruction( output.instruction_size() - 1 ).HasExtension( keystroke )) ) {
|
|
output.mutable_instruction( output.instruction_size() - 1 )->MutableExtension( keystroke )->mutable_keys()->append( string( &the_byte, 1 ) );
|
|
} else {
|
|
Instruction *new_inst = output.add_instruction();
|
|
new_inst->MutableExtension( keystroke )->set_keys( &the_byte, 1 );
|
|
}
|
|
}
|
|
break;
|
|
case ResizeType:
|
|
{
|
|
Instruction *new_inst = output.add_instruction();
|
|
new_inst->MutableExtension( resize )->set_width( my_it->resize.width );
|
|
new_inst->MutableExtension( resize )->set_height( my_it->resize.height );
|
|
}
|
|
break;
|
|
default:
|
|
assert( !"unexpected event type" );
|
|
break;
|
|
}
|
|
|
|
my_it++;
|
|
}
|
|
|
|
return output.SerializeAsString();
|
|
}
|
|
|
|
void UserStream::apply_string( const string &diff )
|
|
{
|
|
ClientBuffers::UserMessage input;
|
|
fatal_assert( input.ParseFromString( diff ) );
|
|
|
|
for ( int i = 0; i < input.instruction_size(); i++ ) {
|
|
if ( input.instruction( i ).HasExtension( keystroke ) ) {
|
|
string the_bytes = input.instruction( i ).GetExtension( keystroke ).keys();
|
|
for ( unsigned int loc = 0; loc < the_bytes.size(); loc++ ) {
|
|
actions.push_back( UserEvent( UserByte( the_bytes.at( loc ) ) ) );
|
|
}
|
|
} else if ( input.instruction( i ).HasExtension( resize ) ) {
|
|
actions.push_back( UserEvent( Resize( input.instruction( i ).GetExtension( resize ).width(),
|
|
input.instruction( i ).GetExtension( resize ).height() ) ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
const Parser::Action &UserStream::get_action( unsigned int i ) const
|
|
{
|
|
switch( actions[ i ].type ) {
|
|
case UserByteType:
|
|
return actions[ i ].userbyte;
|
|
case ResizeType:
|
|
return actions[ i ].resize;
|
|
default:
|
|
assert( !"unexpected action type" );
|
|
static const Parser::Ignore nothing = Parser::Ignore();
|
|
return nothing;
|
|
}
|
|
}
|