]> Creatis software - bbtk.git/blob - packages/std/src/bbstdDateTime.cxx
b38127923a31fe11148287145c7568a2fe419738
[bbtk.git] / packages / std / src / bbstdDateTime.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbstdDateTime.h"
5 #include "bbstdPackage.h"
6 #include <ctime>
7 namespace bbstd
8 {
9
10 BBTK_ADD_BLACK_BOX_TO_PACKAGE(std,DateTime)
11 BBTK_BLACK_BOX_IMPLEMENTATION(DateTime,bbtk::AtomicBlackBox);
12 //===== 
13 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
14 //===== 
15 void DateTime::Process()
16 {
17
18 // THE MAIN PROCESSING METHOD BODY
19 //   Here we simply set the input 'In' value to the output 'Out'
20 //   And print out the output value
21 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
22 //    void bbSet{Input|Output}NAME(const TYPE&)
23 //    const TYPE& bbGet{Input|Output}NAME() const 
24 //    Where :
25 //    * NAME is the name of the input/output
26 //      (the one provided in the attribute 'name' of the tag 'input')
27 //    * TYPE is the C++ type of the input/output
28 //      (the one provided in the attribute 'type' of the tag 'input')
29 //    bbSetOutputOut( bbGetInputIn() );
30 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
31   
32     std::time_t t = std::time(nullptr);
33     std::tm tm = *std::localtime(&t);
34
35     std::stringstream ssDate;
36     ssDate << std::put_time(&tm, "%Y/%m/%d");
37     std::string date = ssDate.str();
38     
39     std::stringstream ssTime;
40     ssTime << std::put_time(&tm, "%H:%M");
41     std::string time = ssTime.str();
42     bbSetOutputDate( date );
43     bbSetOutputTime( time );
44 }
45 //===== 
46 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
47 //===== 
48 void DateTime::bbUserSetDefaultValues()
49 {
50
51 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
52 //    Here we initialize the input 'In' to 0
53 //   bbSetInputIn(0);
54   
55 }
56 //===== 
57 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
58 //===== 
59 void DateTime::bbUserInitializeProcessing()
60 {
61
62 //  THE INITIALIZATION METHOD BODY :
63 //    Here does nothing 
64 //    but this is where you should allocate the internal/output pointers 
65 //    if any 
66
67   
68 }
69 //===== 
70 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
71 //===== 
72 void DateTime::bbUserFinalizeProcessing()
73 {
74
75 //  THE FINALIZATION METHOD BODY :
76 //    Here does nothing 
77 //    but this is where you should desallocate the internal/output pointers 
78 //    if any
79   
80 }
81 }
82 // EO namespace bbstd
83
84