Skip to content

Commit ff131e6

Browse files
committed
Remove boost dependency and custom logger library
1 parent a4e0a53 commit ff131e6

12 files changed

+76
-83
lines changed

.gitmodules

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[submodule "logging"]
2-
path = logging
3-
url = https://github.com/artemis-beta/cpp-logger.git
4-
branch = master
1+
[submodule "external/spdlog"]
2+
path = external/spdlog
3+
url = https://github.com/gabime/spdlog.git

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# [v2.0.0](https://github.com/artemis-beta/enigma-cpp/releases/tag/v2.0.0)
2+
* Requires C++23.
3+
* Removed use of deprecated cpplogger, replacing it with spdlog.
4+
* Removed use of Boost for formatting and upper case letters, replacing with standard library.
5+
6+
# [v1.2.2](https://github.com/artemis-beta/enigma-cpp/releases/tag/v1.2.2)
7+
* Improved restructured build for CMake.
8+
9+
# [v1.2.1](https://github.com/artemis-beta/enigma-cpp/releases/tag/v1.2.1)
10+
* Fixed issues with GCC builds, this version should work for GCC and Clang in both macOS and Linux operating systems

CMakeLists.txt

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,41 @@
11
cmake_minimum_required( VERSION 3.20 )
22

33
set( ENIGMA EnigmaCLI )
4-
set( ENIGMA_VERSION 1.2.2 )
4+
set( ENIGMA_VERSION 2.0.0 )
55
set( ENIGMA_LIBRARY enigma )
6-
set( CPPLOGGER cpplogger )
76

87
project( ${ENIGMA} VERSION ${ENIGMA_VERSION} LANGUAGES CXX )
98

109
set( BETA 0 )
1110

12-
set( CMAKE_CXX_STANDARD 17 )
11+
set( CMAKE_CXX_STANDARD 20 )
1312
set( CMAKE_CXX_STANDARD_REQUIRED ON )
1413
file( GLOB SRC_FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cxx )
1514
set( CMAKE_THREAD_LIBS_INIT "-lpthread" )
16-
option( BUILD_TESTS "Build Tests" OFF )
15+
option( ENIGMA_BUILD_TESTS "Build Tests" OFF )
1716
option( CODE_COVERAGE "Enable Coverage" OFF )
1817

19-
if( BUILD_TESTS )
18+
if( ENIGMA_BUILD_TESTS )
2019
message( STATUS "Will build unit tests" )
21-
endif( BUILD_TESTS )
20+
endif( ENIGMA_BUILD_TESTS )
2221

2322
if( CODE_COVERAGE )
24-
set( BUILD_TESTS ON )
23+
set( ENIGMA_BUILD_TESTS ON )
2524
message( STATUS "Including Code Coverage" )
2625
set( COVERAGE_COMPILER_FLAGS "-g -fprofile-arcs -ftest-coverage" )
2726
set( CMAKE_CXX_FLAGS "-Wall -Wextra ${COVERAGE_COMPILER_FLAGS} ${CMAKE_CXX_FLAGS}" )
2827
endif()
2928

3029
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DVERSION=\\\"${PROJECT_VERSION}\\\" -DBETA=${BETA} " )
3130

32-
find_package( Boost REQUIRED )
31+
set( SPDLOG_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/spdlog/include )
3332

34-
add_subdirectory( logging )
33+
add_subdirectory( external/spdlog )
3534

3635
add_library( ${ENIGMA_LIBRARY} ${SRC_FILES} )
37-
target_link_libraries( ${ENIGMA_LIBRARY} PUBLIC ${Boost_LIBRARIES} )
38-
target_link_libraries( ${ENIGMA_LIBRARY} PUBLIC ${CPPLOGGER} )
39-
target_include_directories( ${ENIGMA_LIBRARY} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include
40-
${ENIGMA_LIBRARY} PUBLIC ${Boost_INCLUDE_DIRS} )
36+
target_link_libraries( ${ENIGMA_LIBRARY} PUBLIC ${SPDLOG} )
37+
target_include_directories( ${ENIGMA_LIBRARY} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/include )
38+
target_include_directories( ${ENIGMA_LIBRARY} PUBLIC ${SPDLOG_INCLUDE_DIR} )
4139

4240
# Expose headers for Enigma library to other targets
4341
target_include_directories( ${ENIGMA_LIBRARY} PUBLIC

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@
33

44
This is a small application written in C++ which simulates both the M3 and M4, 3 and 4 rotor variants of the Enigma machine which was utilised by German forces during WWII to encode information. It is a copy of the Python version found [here](https://github.com/artemis-beta/enigma).
55

6-
## Prerequisites
7-
8-
Enigma uses the [Boost C++ library](https://www.boost.org/users/history/version_1_72_0.html) which should be installed first. It also makes use of a custom logging class that I have written and is automatically fetched and installed.
9-
106
## App
117

12-
Included within this package is a demo application which provides a terminal based user interface. The application is built with `CMake>=3.10`:
8+
Included within this package is a demo application which provides a terminal based user interface. The application is built with `CMake>=3.20`:
139

1410
```
1511
mkdir build

applications/enigma_app.cxx

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "Enigma.hxx"
22

33
#include <iostream>
4-
5-
#include "boost/algorithm/string.hpp"
4+
#include <algorithm>
5+
#include <cctype>
66

77
void apply_rsg(const std::vector<int> ringstellung, Enigma& eg)
88
{
@@ -52,8 +52,8 @@ int main(int argc, char** argv)
5252
std::cout << "Set key? [y/n] ";
5353
std::cin >> choice;
5454
std::cout << std::endl;
55-
56-
boost::to_upper(choice);
55+
56+
std::transform(choice.begin(), choice.end(), choice.begin(), [](const char c){ return std::toupper(c);});
5757

5858
safety_count++;
5959
if(safety_count > 10)
@@ -91,7 +91,7 @@ int main(int argc, char** argv)
9191
std::cin >> choice;
9292
std::cout << std::endl;
9393

94-
boost::to_upper(choice);
94+
std::transform(choice.begin(), choice.end(), choice.begin(), [](const char c){ return std::toupper(c);});
9595

9696
safety_count++;
9797
if(safety_count > 10)
@@ -140,7 +140,7 @@ int main(int argc, char** argv)
140140
std::cin >> choice;
141141
std::cout << std::endl;
142142

143-
boost::to_upper(choice);
143+
std::transform(choice.begin(), choice.end(), choice.begin(), [](const char c){ return std::toupper(c);});
144144

145145
safety_count++;
146146
if(safety_count > 10)

external/spdlog

Submodule spdlog added at 3335c38

include/Enigma.hxx

+3-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99
#include <stdlib.h>
1010
#include <time.h>
1111

12-
#include "boost/algorithm/string.hpp"
13-
1412
#include "Rotor.hxx"
1513
#include "Plugboard.hxx"
1614
#include "Reflector.hxx"
17-
#include "cpplogger/logger.hxx"
15+
#include "spdlog/spdlog.h"
1816

1917
#ifndef VERSION
2018
#error Macro VERSION must be defined
@@ -40,15 +38,14 @@ class _enigma_impl
4038
RotorLabels _rotor_labels;
4139
const std::vector<int> _rotor_ids;
4240
RotorMap _rotors;
43-
Logger _logger;
4441
const char _reflector_type;
4542
bool _debug = false;
4643
Reflector* _reflector;
4744
Plugboard* _plugboard = new Plugboard;
4845

4946
_enigma_impl(const std::vector<int> rotor_list, const char reflector, const std::string enigma_type, const bool debug) :
50-
_enigma_type(enigma_type), _rotor_ids(rotor_list), _logger(Logger("ENIGMA "+enigma_type)),
51-
_reflector_type(reflector), _debug(debug), _reflector(Reflectors(reflector))
47+
_enigma_type(enigma_type), _rotor_ids(rotor_list), _reflector_type(reflector),
48+
_debug(debug), _reflector(Reflectors(reflector))
5249
{
5350
_init();
5451
}

logging

-1
This file was deleted.

src/Enigma.cxx

+21-24
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#include "Enigma.hxx"
2+
#include <algorithm>
23

34
int Enigma::rotor_index(const std::string label) const
45
{
56
RotorLabels::iterator it = std::find(_impl->_rotor_labels.begin(), _impl->_rotor_labels.end(), label);
67
if(it == _impl->_rotor_labels.end())
78
{
8-
_impl->_logger.Critical("Could not find Rotor, '"+label+"' in rotor list");
9+
spdlog::critical("Could not find Rotor, '{}' in rotor list", label);
910

1011
std::string rotor_list = " ";
1112

@@ -14,7 +15,7 @@ int Enigma::rotor_index(const std::string label) const
1415
rotor_list += label+" ";
1516
}
1617

17-
_impl->_logger.Critical("Rotor List is [%1%]", rotor_list);
18+
spdlog::critical("Rotor List is [{}]", rotor_list);
1819
}
1920
return std::distance(_impl->_rotor_labels.begin(), it);
2021
}
@@ -23,14 +24,12 @@ void _enigma_impl::_init()
2324
{
2425
srand(time(NULL));
2526

26-
setLoggerLevel( (_debug) ? "DEBUG" : "INFO" );
27-
2827
if(_enigma_type == "M3")
2928
{
3029
_rotor_labels = {"left", "middle", "right"};
3130
if(_rotor_ids.size() != 3)
3231
{
33-
_logger.Error("Three rotor types only must be provided for Enigma machine 'M3'");
32+
spdlog::error("Three rotor types only must be provided for Enigma machine 'M3'");
3433
exit(EXIT_FAILURE);
3534
}
3635

@@ -40,7 +39,7 @@ void _enigma_impl::_init()
4039

4140
if(std::distance(_temp.begin(), it) != 3)
4241
{
43-
_logger.Error("All chosen rotor IDs must be unique");
42+
spdlog::error("All chosen rotor IDs must be unique");
4443
exit(EXIT_FAILURE);
4544
}
4645

@@ -53,7 +52,7 @@ void _enigma_impl::_init()
5352
{
5453
if(_rotor_ids.size() != 4)
5554
{
56-
_logger.Error("Four rotor types only must be provided for Enigma machine 'M4'");
55+
spdlog::error("Four rotor types only must be provided for Enigma machine 'M4'");
5756
exit(EXIT_FAILURE);
5857
}
5958

@@ -64,7 +63,7 @@ void _enigma_impl::_init()
6463

6564
if(std::distance(_temp.begin(), it) != 4)
6665
{
67-
_logger.Error("All chosen rotor IDs must be unique");
66+
spdlog::error("All chosen rotor IDs must be unique");
6867
exit(EXIT_FAILURE);
6968
}
7069
_rotors[_rotor_labels[0]] = Rotors(_rotor_ids[0]);
@@ -75,14 +74,14 @@ void _enigma_impl::_init()
7574

7675
else
7776
{
78-
_logger.Error("Unrecognised Enigma type '%1%'", _enigma_type);
77+
spdlog::error("Unrecognised Enigma type '%1%'", _enigma_type);
7978
exit(EXIT_FAILURE);
8079
}
8180
}
8281

8382
void _enigma_impl::_move_rotor(const std::string rotor, const int amount)
8483
{
85-
_logger.Debug("Rotating rotor %1% by %2%", rotor, std::to_string(amount));
84+
spdlog::debug("Rotating rotor %1% by %2%", rotor, std::to_string(amount));
8685
for(int i{0}; i < amount; ++i)
8786
{
8887
_rotors[rotor]->rotate_rotor();
@@ -92,23 +91,22 @@ void _enigma_impl::_move_rotor(const std::string rotor, const int amount)
9291
void Enigma::ringstellung(const std::string name, const int amount)
9392
{
9493
RotorMap rotors = static_cast<RotorMap>(_impl->_rotors);
95-
Logger logger = static_cast<Logger>(_impl->_logger);
9694
for(int i{0}; i < amount; ++i)
9795
{
9896
char letter = 'A';
99-
logger.Debug("Ringstellung: Conversion for rotor %1% was %2% to %3%",
97+
spdlog::debug("Ringstellung: Conversion for rotor %1% was %2% to %3%",
10098
name, std::string(1, letter),
10199
std::string(1, rotors[name]->get_rotor_conversion(letter)));
102100
rotors[name]->rotate_inner_ring();
103-
logger.Debug("Ringstellung: Conversion for rotor %1% now %2% to %3%",
101+
spdlog::debug("Ringstellung: Conversion for rotor %1% now %2% to %3%",
104102
name, std::string(1, letter),
105103
std::string(1, rotors[name]->get_rotor_conversion(letter)));
106104
}
107105
}
108106

109107
void _enigma_impl::_set_rotor(const std::string name, const char letter)
110108
{
111-
_logger.Debug("Setting rotor %1% to %2%", name, std::string(1, letter));
109+
spdlog::debug("Setting rotor %1% to %2%", name, std::string(1, letter));
112110

113111
while(_rotors[name]->get_face_letter() != letter)
114112
{
@@ -119,15 +117,15 @@ void _enigma_impl::_set_rotor(const std::string name, const char letter)
119117
char _enigma_impl::_get_rotor_conv(const std::string name, const char letter)
120118
{
121119
const char converted_letter = _rotors[name]->get_rotor_conversion(letter);
122-
_logger.Debug("Rotor %1% conversion: %2% to %3%", name, std::string(1, letter),
120+
spdlog::debug("Rotor %1% conversion: %2% to %3%", name, std::string(1, letter),
123121
std::string(1, converted_letter));
124122
return converted_letter;
125123
}
126124

127125
char _enigma_impl::_get_rotor_conv_inv(const std::string name, const char letter)
128126
{
129127
const char converted_letter = _rotors[name]->get_rotor_conversion_inv(letter);
130-
_logger.Debug("Rotor %1% conversion: %2% to %3%", name, std::string(1, letter),
128+
spdlog::debug("Rotor %1% conversion: %2% to %3%", name, std::string(1, letter),
131129
std::string(1, converted_letter));
132130
return converted_letter;
133131
}
@@ -158,7 +156,7 @@ char _enigma_impl::_get_inter_rotor_conv(const std::string name_1,
158156

159157
const char output = _rotors[name_2]->get_letters_dict()[n];
160158

161-
_logger.Debug("Rotor %1% rotor to %2% rotor conversion: %3% to %4%",
159+
spdlog::debug("Rotor %1% rotor to %2% rotor conversion: %3% to %4%",
162160
name_1, name_2, std::string(1, letter),
163161
std::string(1, output));
164162

@@ -168,13 +166,12 @@ char _enigma_impl::_get_inter_rotor_conv(const std::string name_1,
168166
char Enigma::type_letter(const char letter)
169167
{
170168
const char l = std::toupper(letter);
171-
Logger logger = static_cast<Logger>(_impl->_logger);
172169
const RotorLabels rotor_labels = static_cast<RotorLabels>(_impl->_rotor_labels);
173170
RotorMap rotors = static_cast<RotorMap>(_impl->_rotors);
174-
logger.Debug("-----------------------");
171+
spdlog::debug("-----------------------");
175172
Plugboard* plug_board = static_cast<Plugboard*>(_impl->_plugboard);
176173
char cipher = plug_board->plugboard_conversion(l);
177-
logger.Debug("Plugboard conversion: %1% to %2%", std::string(1, l), std::string(1, cipher));
174+
spdlog::debug("Plugboard conversion: %1% to %2%", std::string(1, l), std::string(1, cipher));
178175
// Move the rightmost rotor
179176

180177
_impl->_move_rotor(rotor_labels[rotor_labels.size()-1], 1);
@@ -237,16 +234,16 @@ char Enigma::type_letter(const char letter)
237234
}
238235

239236
const char cipher_out = plug_board->plugboard_conversion_inv(cipher);
240-
logger.Debug("Plugboard conversion: %1% to %2%", std::string(1, cipher), std::string(1, cipher_out));
241-
logger.Debug("-----------------------");
237+
spdlog::debug("Plugboard conversion: %1% to %2%", std::string(1, cipher), std::string(1, cipher_out));
238+
spdlog::debug("-----------------------");
242239

243240
return cipher_out;
244241
}
245242

246243
char _enigma_impl::_get_reflector_conv(const char letter)
247244
{
248245
const char out = _reflector->reflector_conversion(letter);
249-
_logger.Debug("Reflector conversion: %1% to %2%", std::string(1, letter), std::string(1, out));
246+
spdlog::debug("Reflector conversion: %1% to %2%", std::string(1, letter), std::string(1, out));
250247
return out;
251248
}
252249

@@ -289,7 +286,7 @@ void Enigma::set_key(const std::string user_key)
289286
throw std::invalid_argument("Key length must match no. of rotors.");
290287
}
291288

292-
boost::to_upper(key);
289+
std::transform(key.begin(), key.end(), key.begin(), [](const char c) {return std::toupper(c);});
293290

294291
for(unsigned int i{0}; i < rotor_labels.size(); ++i)
295292
{

tests/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
include( FetchContent )
22
find_package( Threads REQUIRED )
3+
cmake_policy(SET CMP0135 NEW)
34

45
FetchContent_Declare(
56
googletest
6-
URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
7+
URL https://github.com/google/googletest/releases/download/v1.16.0/googletest-1.16.0.tar.gz
78
)
89

910
# For Windows: Prevent overriding the parent project's compiler/linker settings

tests/unit_tests/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set( UNIT_TESTS ${ENIGMA_LIBRARY}-unit-tests )
55
add_executable( ${UNIT_TESTS} ${SRC_UNIT} )
66
add_compile_options( ${UNIT_TESTS} ${BUILD_TYPE_COMPILE_FLAGS} )
77

8-
target_include_directories( ${UNIT_TESTS} PUBLIC ${Boost_INCLUDE_DIRS} )
8+
target_include_directories( ${UNIT_TESTS} PUBLIC ${SPDLOG_INCLUDE_DIR} )
99

1010
target_link_libraries( ${UNIT_TESTS} PUBLIC gtest_main )
1111
target_link_libraries( ${UNIT_TESTS} PUBLIC ${Boost_LIBRARIES} )

0 commit comments

Comments
 (0)