Compare commits
No commits in common. "lesson_6" and "master" have entirely different histories.
|
@ -1,3 +0,0 @@
|
||||||
Паттерн "Команда" инкапсулирует запрос в виде объекта, делая возможной параметризацию клиентский объектов с другими запросами, организацию очереди или регистрацию запросов, а также поддержку отмены операций.
|
|
||||||
|
|
||||||
Паттерн "Команда" отделяет объект, выдающий запросы, от объекта, который умеет эти запросы выполнять. Объект команды инкапсулирует получателя с операцией (или набором операций). Инициатор вызывает метод *execute()* объекта команды, что приводит к выполнению соответствующих операций с получателем. Возможна параметризация инициаторов командами. Команды могут поддерживать механизмы отмены, восстанавливающий объект в состояние до последнего вызова метода *execute()*. Макрокоманды - простое расширение паттерна "Команда", позволяющее выполнять цепочки из нескольких команд.
|
|
|
@ -1,19 +0,0 @@
|
||||||
/*
|
|
||||||
* Application.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "Document.hpp"
|
|
||||||
|
|
||||||
class Application
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
void Add(Document *doc)
|
|
||||||
{
|
|
||||||
std::cout << "Документ " << doc->getName() << " был добавлен!" << std::endl;
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,15 +0,0 @@
|
||||||
/*
|
|
||||||
* Command.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
class Command
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void Execute() = 0;
|
|
||||||
virtual ~Command() {};
|
|
||||||
};
|
|
|
@ -1,19 +0,0 @@
|
||||||
/*
|
|
||||||
* Control.cpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "Control.hpp"
|
|
||||||
|
|
||||||
void Control::setCommand(Command* command)
|
|
||||||
{
|
|
||||||
_command = command;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Control::run()
|
|
||||||
{
|
|
||||||
_command->Execute();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
/*
|
|
||||||
* Control.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "Command.hpp"
|
|
||||||
|
|
||||||
class Control
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
Command* _command;
|
|
||||||
public:
|
|
||||||
void setCommand(Command*);
|
|
||||||
void run();
|
|
||||||
};
|
|
|
@ -1,32 +0,0 @@
|
||||||
/*
|
|
||||||
* Document.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
class Document
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
std::string _name;
|
|
||||||
public:
|
|
||||||
Document(const std::string name) : _name(name)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Open()
|
|
||||||
{
|
|
||||||
std::cout << "Документ " << _name << " открыт!" << std::endl;
|
|
||||||
}
|
|
||||||
void Paste()
|
|
||||||
{
|
|
||||||
std::cout << "Вставлено в документ " << _name << std::endl;
|
|
||||||
}
|
|
||||||
std::string getName() const
|
|
||||||
{
|
|
||||||
return _name;
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,31 +0,0 @@
|
||||||
/*
|
|
||||||
* OpenCommand.cpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "OpenCommand.hpp"
|
|
||||||
#include "Document.hpp"
|
|
||||||
|
|
||||||
OpenCommand::OpenCommand(Application *a) : _application(a)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void OpenCommand::Execute()
|
|
||||||
{
|
|
||||||
std::string name = AskUser();
|
|
||||||
if (!name.empty())
|
|
||||||
{
|
|
||||||
Document *document = new Document(name);
|
|
||||||
_application->Add(document);
|
|
||||||
document->Open();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string OpenCommand::AskUser()
|
|
||||||
{
|
|
||||||
std::string name;
|
|
||||||
std::cin >> name;
|
|
||||||
return name;
|
|
||||||
}
|
|
|
@ -1,24 +0,0 @@
|
||||||
/*
|
|
||||||
* OpenCommand.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "Command.hpp"
|
|
||||||
#include "Application.hpp"
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
class OpenCommand: public Command
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
Application *_application;
|
|
||||||
std::string _response;
|
|
||||||
protected:
|
|
||||||
virtual std::string AskUser();
|
|
||||||
public:
|
|
||||||
OpenCommand(Application*);
|
|
||||||
virtual void Execute();
|
|
||||||
};
|
|
|
@ -1,17 +0,0 @@
|
||||||
/*
|
|
||||||
* PasteCommand.cpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "PasteCommand.hpp"
|
|
||||||
|
|
||||||
PasteCommand::PasteCommand(Document *doc) : _document(doc)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void PasteCommand::Execute()
|
|
||||||
{
|
|
||||||
_document->Paste();
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
/*
|
|
||||||
* PasteCommand.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "Command.hpp"
|
|
||||||
#include "Document.hpp"
|
|
||||||
|
|
||||||
class PasteCommand: public Command
|
|
||||||
{
|
|
||||||
private:
|
|
||||||
Document* _document;
|
|
||||||
public:
|
|
||||||
PasteCommand(Document*);
|
|
||||||
virtual void Execute();
|
|
||||||
};
|
|
|
@ -1,15 +0,0 @@
|
||||||
/*
|
|
||||||
* SimpleCommand.cpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "SimpleCommand.hpp"
|
|
||||||
|
|
||||||
template<class Receiver>
|
|
||||||
void SimpleCommand<Receiver>::Execute()
|
|
||||||
{
|
|
||||||
(_receiver->*_action)();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
/*
|
|
||||||
* SimpleCommand.hpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "Command.hpp"
|
|
||||||
|
|
||||||
template<class Receiver>
|
|
||||||
class SimpleCommand: public Command
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
typedef void (Receiver::*Action)();
|
|
||||||
SimpleCommand(Receiver *r, Action a) : _receiver(r), _action(a)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
virtual void Execute();
|
|
||||||
private:
|
|
||||||
Action _action;
|
|
||||||
Receiver *_receiver;
|
|
||||||
};
|
|
|
@ -1,22 +0,0 @@
|
||||||
/*
|
|
||||||
* main.cpp
|
|
||||||
*
|
|
||||||
* Created on: 4 нояб. 2021 г.
|
|
||||||
* Author: alexander
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "Control.hpp"
|
|
||||||
#include "Application.hpp"
|
|
||||||
#include "OpenCommand.hpp"
|
|
||||||
#include "PasteCommand.hpp"
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
Control control;
|
|
||||||
Application app;
|
|
||||||
OpenCommand openCommand(&app);
|
|
||||||
control.setCommand(&openCommand);
|
|
||||||
control.run();
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
Reference in New Issue