-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmt_templates.py
1526 lines (1336 loc) · 54.3 KB
/
mt_templates.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""File for templates"""
# various templates for the file creation system, modifying these would require
# substantial changes to code in ct.py
TEMPLATES = {}
# Template for template class header files
TEMPLATES["template_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
/*!
* @brief
{template_parameter_doxygen:s}
*/
template <{template_parameter_list:s}>
class {class_name:s}
{{
public:
private:
}};
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# Template for class header files
TEMPLATES["class_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
/*!
* @brief
*/
class {class_name:s}
{{
public:
private:
}};
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# Template for class cpp files
TEMPLATES["class_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#include"{header_path:s}"
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{namespace_close:s}
"""
# Template for library header files
TEMPLATES["lib_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# Template for library class files
TEMPLATES["lib_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#include"{header_path:s}"
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{namespace_close:s}
"""
# Template for plain header files
TEMPLATES["plain_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# Template for plain cpp files
TEMPLATES["plain_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{namespace_close:s}
"""
# Template for DirData.cmake files
TEMPLATES["cmake"] =\
"""# pull the subdirectory information if it is needed{inc_lines:s}
# Source files from this directory
list(APPEND {srcs_name:s} {src_files:s})
# Header files from this directory
list(APPEND {hdrs_name:s} {hdr_files:s})
"""
# template for factory headers
TEMPLATES["factory_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
#include<string> //for string
#include<map> //for map
// includes from other libraries
// includes from {project_name:s}
#include"{internal_header_path}"
{namespace_open:s}
//forward declare the base class
class {base_class:s};
/*!
* @brief A convenience function to make the appropriate {factory_type:s} class from the passed name
* @param name The name of the object type to be created
* @return A pointer to the newly constructed object
*/
{base_class:s}* construct{factory_type:s}(const std::string& name);
/*!
* @brief A class that is used to register and construct {base_class:s}
* derived objects that are needed
*/
class {factory_type:s}Factory
{{
public:
/*!
* @brief Deleted copy constructor to prevent breaks in the singleton behaviour
*/
{factory_type:s}Factory(const {factory_type:s}Factory&) = delete;
/*!
* @brief Deleted move constructor to prevent breaks in the singleton behaviour
*/
{factory_type:s}Factory(const {factory_type:s}Factory&&) = delete;
/*!
* @brief Delete copy assignment to prevent breaks in the singleton behaviour
*/
{factory_type:s}Factory& operator=(const {factory_type:s}Factory &) = delete;
/*!
* @brief Delete move assignment to prevent breaks in the singleton behaviour
*/
{factory_type:s}Factory& operator=(const {factory_type:s}Factory &&) = delete;
/*!
* @brief Default destuctor
*/
~{factory_type:s}Factory() = default;
/*!
* @brief Returns the instance of the singleton, which is created on the first call
* @return The singleton instance
*/
static {factory_type:s}Factory& getInstance();
/*!
* @brief Used to register a new builder with the factory by the recorder
* @param name the lookup name of the class
* @param bb a pointer to the builder that will make the class as needed
*/
void register{factory_type:s}(const std::string& name, {factory_type:s}FactoryInternal::{factory_type:s}BuilderBase* bb);
/*!
* @brief makes a new instance of the named {factory_type:s}
* @param name The name to lookup the {factory_type:s} by
* @return The newly created {factory_type:s} object, if the name was found, nullptr otherwise
*/
{base_class:s}* make{factory_type:s}(const std::string& name);
private:
/*!
* @brief Private constructor to prevent anything other than the class itself from making an instance
*/
{factory_type:s}Factory() = default;
std::map<std::string, {factory_type:s}FactoryInternal::{factory_type:s}BuilderBase* > builderList; ///<List of names and their builders
}};
/*!
* @brief A struct that is used to register a class with the Factory
* @tparam {factory_type}Type the type to be registered by this classes instatiation
*
* To register your {base_class:s} derived class with the Factory as the final step
* to allowing it to be looked up and created at need via string, use the following line
* at the top of your source file
*
* static {namespace_name:s}::{factory_type:s}FactoryRegistrar<YourClassName> YourClassRegistration("NameForClass");
*/
template <class {factory_type}Type>
struct {factory_type:s}FactoryRegistrar
{{
/*!
* @brief Constructor for the registrar which registers the {factory_type}Type class in the Factory
* @param name The name that the {factory_type}Type class is registered under, full namespace listing and the classname
* is a recommended form so that all names are unique and there are no collisions
*/
explicit {factory_type:s}FactoryRegistrar(const std::string& name)
{{
{factory_type:s}Factory::getInstance().register{factory_type:s}(name,
new {factory_type:s}FactoryInternal::{factory_type:s}Builder<{factory_type}Type>());
}}
}};
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# template for factory source files
TEMPLATES["factory_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#include"{header_path:s}"
// includes for C system headers
// includes for C++ system headers
#include<sstream>
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{base_class:s}* construct{factory_type:s}(const std::string& name)
{{
return ({factory_type:s}Factory::getInstance().make{factory_type:s}(name));
}}
{factory_type:s}Factory& {factory_type:s}Factory::getInstance()
{{
static {factory_type:s}Factory instance;
return instance;
}}
void {factory_type:s}Factory::register{factory_type:s}(const std::string& name,
{factory_type:s}FactoryInternal::{factory_type:s}BuilderBase* bb)
{{
auto iter = builderList.find(name);
if(iter != builderList.end())
{{
//Throw an exception if there is an attempt to register two builders under the same name
//since static initialization in the recorder occurs at program start before entry into
//int main(argc, argv) there can be no try catch statements, so this amounts to
//deliberately crashing the program during startup in the case of a conflicting module name
std::ostringstream errorMaker;
errorMaker << "\\nInvalid attempt to register a second {factory_type:s} with the name: \\""<<name<<"\\"!";
throw std::invalid_argument(errorMaker.str());
}}
builderList[name] = bb;
}}
{base_class:s}* {factory_type:s}Factory::make{factory_type:s}(const std::string& name)
{{
auto iter = builderList.find(name);
if(iter != builderList.end())
{{//if we could find the desired type builder set the retVal to a created instance
return iter->second->make{factory_type:s}();
}}
return nullptr;
}}
{namespace_close:s}
"""
# Template for the factory's internal header file
TEMPLATES["factory_internal_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
class {base_class:s};
namespace {factory_type:s}FactoryInternal
{{
struct {factory_type}BuilderBase
{{
/*!
* @brief Abstract base class does need much of a destructor
*/
virtual ~{factory_type}BuilderBase() = default;
/*!
* @brief pure virtual function to make {factory_type:s} on demand
* @return a pointer to the created object base class
*/
virtual {base_class:s}* make{factory_type}() const = 0;
}};
template <class {factory_type}Type>
struct {factory_type}Builder : public {factory_type}BuilderBase
{{
/*!
* @brief Class does need much of a destructor
*/
~{factory_type}Builder() final = default;
/*!
* @brief Concrete implementation to generate correct {factory_type:s} at the right time
* @return A pointer to the created {factory_type:s} object
*/
{base_class:s}* make{factory_type}() const final {{return new {factory_type}Type();}}
}};
}}// namespace {factory_type:s}FactoryInternal
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# template for registry header
TEMPLATES["registry_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
#include<string> //for string
#include<map> //for map
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
//forward declare the base class
class {base_class:s};
/*!
* @brief A convenience function to retrieve a registered object by its name
* @param name The name of the object to be retrieved
* @return A pointer to the retrieved object
*/
{base_class:s}* retrieve{registry_type:s}(const std::string& name);
/*!
* @brief A convenience function to register an object under a given name
* @param name The name of the object to be registered
*/
void register{registry_type:s}({base_class:s}* object, const std::string& name);
/*!
* @brief A convenience function to register an object under a given name
* @param name The name of the object to be unregistered
*/
void unregister{registry_type:s}(const std::string& name);
/*!
* @brief A class that is used to register and retrieve {base_class:s}
* derived objects as needed
*/
class {registry_type:s}Registry
{{
public:
/*!
* @brief Deleted copy constructor to prevent breaks in the singleton behaviour
*/
{registry_type:s}Registry(const {registry_type:s}Registry&) = delete;
/*!
* @brief Deleted move constructor to prevent breaks in the singleton behaviour
*/
{registry_type:s}Registry(const {registry_type:s}Registry&&) = delete;
/*!
* @brief Delete copy assignment to prevent breaks in the singleton behaviour
*/
{registry_type:s}Registry& operator=(const {registry_type:s}Registry &) = delete;
/*!
* @brief Delete move assignment to prevent breaks in the singleton behaviour
*/
{registry_type:s}Registry& operator=(const {registry_type:s}Registry &&) = delete;
/*!
* @brief Default destuctor
*/
~{registry_type:s}Registry() = default;
/*!
* @brief Returns the instance of the singleton, which is created on the first call
* @return The singleton instance
*/
static {registry_type:s}Registry& getInstance();
/*!
* @brief Used to register a new object with the registry, if an object is already present, it is overwritten
* @param name the lookup name of the object
* @param objPtr a base class pointer of the object to be retrieved
*/
void register{registry_type:s}(const std::string& name, {base_class:s}* objPtr);
/*!
* @brief Used to remove a the named object from the registry
* @param name the lookup name of the object
*/
void unregister{registry_type:s}(const std::string& name);
/*!
* @brief finds the object registered to the name and retrieves it and returns a pointer to {registry_type:s}
* @param name The name to lookup the {registry_type:s} by
* @return A pointer to the registered {registry_type:s} object, if the name was found, nullptr otherwise
*/
{base_class:s}* find{registry_type:s}(const std::string& name);
private:
/*!
* @brief Private constructor to prevent anything other than the class itself from making an instance
*/
{registry_type:s}Registry() = default;
std::map<std::string, {base_class:s}* > objectList; ///<List of names and their pointers
}};
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# template for registry source file
TEMPLATES["registry_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#include"{header_path:s}"
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{base_class:s}* retrieve{registry_type:s}(const std::string& name)
{{
return ({registry_type:s}Registry::getInstance().find{registry_type:s}(name));
}}
void register{registry_type:s}({base_class:s}* object, const std::string& name)
{{
{registry_type:s}Registry::getInstance().register{registry_type:s}(name, object);
}}
void unregister{registry_type:s}(const std::string& name)
{{
{registry_type:s}Registry::getInstance().unregister{registry_type:s}(name);
}}
{registry_type:s}Registry& {registry_type:s}Registry::getInstance()
{{
static {registry_type:s}Registry instance;
return instance;
}}
void {registry_type:s}Registry::register{registry_type:s}(const std::string& name, {base_class:s}* objPtr)
{{
objectList[name] = objPtr;
}}
void {registry_type:s}Registry::unregister{registry_type:s}(const std::string& name)
{
auto iter = objectList.find(name);
if(iter != objectList.end())
{
objectList.erase(iter);
}
}
{base_class:s}* {registry_type:s}Registry::find{registry_type:s}(const std::string& name)
{{
auto iter = objectList.find(name);
if(iter != objectList.end())
{{
return iter->second;
}}
return nullptr;
}}
{namespace_close:s}
"""
# template for main source file
TEMPLATES["main_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
// includes for C system headers
// includes for C++ system headers
#include<iostream>
// includes from other libraries
// includes from {project_name:s}
#include"{build_config_header_name:s}"
int main(int argc, char* argv[])
{{
std::cout << "\\n{project_name:s}\\n{project_title:s}"
<< "\\n Version: " << {project_name_cap:s}_VERSION
<< "\\n Build Type: " << {project_name_cap:s}_BUILD
<< "\\n Git Commit: " << {project_name_cap:s}_COMMIT_SHA << std::endl;
return 0;
}}
"""
# Template for class header files
TEMPLATES["singleton_header"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#ifndef {macro_guard_name:s}
#define {macro_guard_name:s}
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
/*!
* @brief
*/
class {class_name:s}
{{
public:
~{class_name:s}();
/*!
* @brief Deleted copy constructor to prevent breaks in the singleton behaviour
*/
{class_name:s}(const {class_name:s}&) = delete;
/*!
* @brief Deleted move constructor to prevent breaks in the singleton behaviour
*/
{class_name:s}(const {class_name:s}&&) = delete;
/*!
* @brief Delete copy assignment to prevent breaks in the singleton behaviour
*/
{class_name:s}& operator=(const {class_name:s}&) = delete;
/*!
* @brief Delete move assignment to prevent breaks in the singleton behaviour
*/
{class_name:s}& operator=(const {class_name:s}&&) = delete;
/*!
* @brief Function to get the singleton instance, forcing construction/initialization
* @return Reference to the instance
*/
static {class_name:s}& getInstance();
private:
/*!
* @brief private constructor for singleton behavior
*/
{class_name:s}();
}};
{namespace_close:s}
#endif // {macro_guard_name:s}
"""
# Template for class cpp files
TEMPLATES["singleton_source"] =\
"""/***************************************************************************//**
********************************************************************************
**
** @author {author_name:s}
** @date {day:s} {month_abbrev:s}, {year:s}
**
** @copyright Copyright (C) {year:s} {copyright_holder:s}
**
********************************************************************************
*******************************************************************************/
#include"{header_path:s}"
// includes for C system headers
// includes for C++ system headers
// includes from other libraries
// includes from {project_name:s}
{namespace_open:s}
{class_name:s}::{class_name:s}()
{{
}}
{class_name:s}::~{class_name:s}()
{{
}}
{class_name:s}& {class_name:s}::getInstance()
{{
static {class_name:s} instance;
return instance;
}}
{namespace_close:s}
"""
# template for main CMakeLists file
TEMPLATES["cmakelists_source"] =\
"""cmake_minimum_required(VERSION 3.1)
###########################################################
## Setup Project
###########################################################
project({project_name:s})
execute_process(COMMAND "git" "rev-parse" "-q" "HEAD" WORKING_DIRECTORY ${{CMAKE_CURRENT_SOURCE_DIR}} OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE {project_name_cap:s}_VERSION_SHA)
# The version number.
set({project_name_cap:s}_VERSION_MAJOR 0)
set({project_name_cap:s}_VERSION_MINOR 0)
set({project_name_cap:s}_VERSION_PATCH 0)
set({project_name_cap:s}_VERSION ${{{project_name_cap:s}_VERSION_MAJOR}}.${{{project_name_cap:s}_VERSION_MINOR}}.${{{project_name_cap:s}_VERSION_PATCH}})
message(STATUS "Version is: " ${{{project_name_cap:s}_VERSION}})
message(STATUS "Git revision is: " ${{{project_name_cap:s}_VERSION_SHA}})
message(STATUS "Src dir is: " ${{CMAKE_CURRENT_SOURCE_DIR}})
# Set the version number and build type in the header /Utility/OrchidConfig.h
configure_file("./src/BuildConfig/{build_config_header_input_name:s}"
"${{PROJECT_BINARY_DIR}}/src/BuildConfig/{build_config_header_name:s}"
@ONLY)
###########################################################
## Setup C++ options
###########################################################
# set for c++ 14
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF) # whether we want the gnu / clang extensions
###########################################################
## Setup External Library Dependencies
###########################################################
# Add sub-directory for containing find module scripts that are not already provided
# for instance, the libUSB people do not bother providing a FindLibUSB file, claiming
# that cmake is a solution looking for a problem, ironically they provide xcode project
# files, visual studio project files, and auto-tools bindings... oh well, screw them
# I can put other files in here as well, like findTBB
list(APPEND CMAKE_MODULE_PATH "${{CMAKE_SOURCE_DIR}}/cmake/")
###########################################################
## Setup Build Options
###########################################################
include(./cmake/BldOpt.cmake)
###########################################################
## Setup Source Analysis Helpers Like Clang-Tidy
###########################################################
include(./cmake/Analyzers.cmake)
###########################################################
## Setup include directories
###########################################################
# Add this root directory as an include directory so that we can reference
# our include files relative to it (less ../../../ business)
include_directories(./src)
# Add the generated file header directory in this way to allow files in the
# utility directory to access the generated file as if it was in their directory
include_directories("${{PROJECT_BINARY_DIR}}/src/BuildConfig")
###########################################################
## Grab all the sub-directory file data
###########################################################
include(./DirData.cmake)
list(APPEND SRCS ${{{project_name_cap:s}_SRCS}})
list(APPEND HDRS ${{{project_name_cap:s}_HDRS}})
###########################################################
## Override Source Groups
###########################################################
# So things look nice in QtCreator
SOURCE_GROUP("" FILES ${{SRCS}} ${{HDRS}})
###########################################################
## Target Setup
###########################################################
# Add the executable and link it up
add_executable({exec_name:s} ${{SRCS}} ${{HDRS}})
if(CLANG_TIDY_EXE)
set_target_properties({exec_name:s} PROPERTIES CXX_CLANG_TIDY "${{DO_CLANG_TIDY}}")
endif()
###########################################################
## Install setup
###########################################################
get_filename_component(ABS_BIN_INSTALL_DIR "./.." ABSOLUTE)
install(TARGETS {exec_name:s} RUNTIME DESTINATION ${{ABS_BIN_INSTALL_DIR}})
"""
TEMPLATES["cmake_analyzers_with_checks"] =\
"""###########################################################
## Setup clang tidy for lots of warnings and src analysis
###########################################################
set(CMAKE_EXPORT_COMPILE_COMMANDS "ON")
find_program(
CLANG_TIDY_EXE NAMES clang-tidy clang-tidy-12 clang-tidy-13 clang-tidy-14
DOC "Path to clang-tidy executable")
find_program(
RUN_CLANG_TIDY_PYTHON "${CMAKE_CURRENT_SOURCE_DIR}/tooling/run-clang-tidy.py"
DOC "Path to python script to run clang-tidy on build database")
list(APPEND CLANG_TIDY_CHECKS_LIST
"abseil-*,"
"-abseil-string-find-str-contains," # most abseil warnings have been useful even without the lib, not this one though
# "altera-*," # not writing for an FPGA here so only here for posterity
"android-*,"
"boost-*,"
"bugprone-*,"
"cert-*,"
"-cert-err58-cpp," # if there is a thrown exception while initting static storage members, I want a throw
"clang-*,"
"concurency-*,"
"cppcoreguidelines-*,"
"-cppcoreguidelines-macro-usage," # nolint is not killing complaints about my warning silencing macros, so screw it
"-cppcoreguidelines-avoid-c-arrays," # c-style arrays are too useful for purposes of having a pointer
"-cppcoreguidelines-owning-memory," # I am NOT using the core guidelines gsl
"-cppcoreguidelines-pro-bounds-pointer-arithmetic," # pointers are numbers and sometimes you have to use them as such
"-cppcoreguidelines-avoid-magic-numbers," # 5 is not a flipping magic number when it is a static index into an array
"-cppcoreguidelines-pro-bounds-constant-array-index," # OMG indexing with an expression is fine wtf
"-cppcoreguidelines-no-malloc," # if I want aligned memory I want malloc so screw this"
"-cppcoreguidelines-non-private-member-variables-in-classes," # making classes have all private members is ridiculous, if a member is accessed trivially, screw getters and setters
"-cppcoreguidelines-pro-bounds-array-to-pointer-decay," # ARRAYS __ARE__ POINTERS!!!!!!!!!!!!!!!!!!!!!!
"-cppcoreguidelines-pro-type-reinterpret-cast," # avoid the hell out of it, but sometimes you _have_ to
"darwin-*,"
"fuchsia-*"
"google-*,"
"hicpp-*,"
"-hicpp-avoid-c-arrays," # I see no simple way to force alignment of Non-C arrays, so screw this
"-hicpp-no-array-decay," # look, arrays _are_ pointers, I will decay them if I want to
"-hicpp-no-malloc," # sometimes you _have_ to manage memory manually, especially with aligned allocation
"linuxkernel-*,"
"llvm-*,"
"-llvm-include-order," # I have my own include ordering that I prefer
"-llvm-header-guard," # I have my own header guard style that I prefer
"misc-*,"
"-misc-non-private-member-variables-in-classes," # I will not be screamed at for having structs for mass freight of data, but they have a "reset" member function
"modernize-*,"
"-modernize-avoid-c-arrays," # I see no simple way to force alignment of Non-C arrays, so screw this
"-modernize-use-trailing-return-type," # I personally dislike this style because I visually search by return type, then by function name
# "mpi-*," # not using MPI here so this is only in the list for posterity that the options are available
"performance-*,"
"portability-*,"
"zircon-*")
list(JOIN CLANG_TIDY_CHECKS_LIST "" CLANG_TIDY_CHECKS)
list(APPEND RUN_CLANG_TIDY_BIN_ARGS
-clang-tidy-binary ${CLANG_TIDY_EXE}
-header-filter="${CMAKE_CURRENT_SOURCE_DIR}"
-checks=${CLANG_TIDY_CHECKS})
add_custom_target(tidy
COMMAND ${RUN_CLANG_TIDY_PYTHON} ${RUN_CLANG_TIDY_BIN_ARGS}
COMMENT "Running `clang-tidy`")
"""
TEMPLATES["cmake_build_options"] =\
"""# Set list of build types
set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;Warn;WarnWithOpt")
# Lists of flags for various build types
if (CMAKE_CXX_COMPILER_ID MATCHES "AppleClang")
if (CMAKE_SYSTEM_PROCESSOR MATCHES arm64)
set(RELEASE_FLAGS "-O3 -mtune=native -mcpu=apple-m1 -DNDEBUG")
else()
set(RELEASE_FLAGS "-O3 -mtune=native -march=native -DNDEBUG")
endif()
else()
set(RELEASE_FLAGS "-O3 -mtune=native -march=native -DNDEBUG")
endif()
#set(RELEASE_FLAGS "-O3 -mtune=native -march=native -DNDEBUG")
#set(RELEASE_FLAGS "-O3 -mtune=native -march=native")
set(DEBUG_FLAG "-g")
set(WARN_FLAGS_CLANG "-Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic")
#set(WARN_FLAGS_GCC "-Wall -Wextra -Wpedantic -Weffc++ -Wno-c++98-compat -Wno-c++98-compat-pedantic")
set(WARN_FLAGS_GCC "-Wall -Wextra -Wpedantic -Wno-c++98-compat -Wno-c++98-compat-pedantic")
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# using Clang
set(WARN_FLAGS ${WARN_FLAGS_CLANG})
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
# using Clang
set(WARN_FLAGS ${WARN_FLAGS_CLANG})
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# using gcc
set(WARN_FLAGS ${WARN_FLAGS_GCC})
else()
# Unsupported compiler
# If you are are windows, whelp... I got 99 problems but M$ ain't one of them
# If you are using the Intel compiler, well... that decision is between you and your deity
set(WARN_FLAGS "")
message(SEND_ERROR "Compilers other than `clang` and `gcc` are not supported.")
endif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
###########################################################
## Setup Flag To Tell Code The Compiler (Simplifying Checks)
###########################################################
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# using Clang
set(COMPILER_NAME_FLAG "-DCLANG_COMPILER=1")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
# using Clang
set(COMPILER_NAME_FLAG "-DCLANG_COMPILER=1")
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(COMPILER_NAME_FLAG "-DGCC_COMPILER=1")
else()
# Unsupported compiler
endif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# Handle if the user set things to use a sanitizer
if(SANITIZER STREQUAL "Address")
set(SANITIZER_CXX_FLAGS "-fsanitize=address -DBOOST_USE_ASAN=1")
set(SANITIZER_LINKER_FLAGS "-fsanitize=address")
elseif(SANITIZER STREQUAL "Thread")
set(SANITIZER_CXX_FLAGS "-fsanitize=thread")
set(SANITIZER_LINKER_FLAGS "-fsanitize=thread")
elseif(SANITIZER STREQUAL "Memory")
set(SANITIZER_CXX_FLAGS "-fsanitize=memory")
set(SANITIZER_LINKER_FLAGS "-fsanitize=memory")
elseif(SANITIZER STREQUAL "UndefinedBehavior")
set(SANITIZER_CXX_FLAGS "-fsanitize=undefined")
set(SANITIZER_LINKER_FLAGS "-fsanitize=undefined")
elseif(SANITIZER STREQUAL "Leak")
set(SANITIZER_CXX_FLAGS "-fsanitize=leak")
set(SANITIZER_LINKER_FLAGS "-fsanitize=leak")
endif(SANITIZER STREQUAL "Address")
# set up for the plain build type
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COMPILER_NAME_FLAG} ${SANITIZER_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${SANITIZER_LINKER_FLAGS}")
# set up debug flags
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS} ${COMPILER_NAME_FLAG} ${DEBUG_FLAG} ${SANITIZER_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS} ${DEBUG_FLAG} ${SANITIZER_LINKER_FLAGS}")
# set up release flags
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} ${COMPILER_NAME_FLAG} ${RELEASE_FLAGS} ${SANITIZER_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS} ${RELEASE_FLAGS} ${SANITIZER_LINKER_FLAGS}")
# set up release with debug flags
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS} ${COMPILER_NAME_FLAG} ${DEBUG_FLAG} ${RELEASE_FLAGS} ${SANITIZER_CXX_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO "${CMAKE_EXE_LINKER_FLAGS} ${DEBUG_FLAG} ${RELEASE_FLAGS} ${SANITIZER_LINKER_FLAGS}")
# set up warn flags
set(CMAKE_CXX_FLAGS_WARN "${CMAKE_CXX_FLAGS} ${COMPILER_NAME_FLAG} ${WARN_FLAGS} ${SANITIZER_CXX_FLAGS}")