-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
296 lines (240 loc) · 9.03 KB
/
main.cpp
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
/*
* Author: Nader Nabil
* Date: 23/01/2016
* Description: A Script for wrapping data from MS Access
* database around html code to be put in e-commerce website
* using template.html as header containing CSS code and
* DataFile.txt as a final data
*/
#include <QCoreApplication>
#include <QtSql>
void CreateFileWithHTMLCode(QString ProductName);
bool MatchFolderName(QString folderName);
void setColumnNames();
/*
* Globle variables
* for files and folders path
*
* FolderPath: folder that containe images data
* and will put the generated files into them
*
* DatabasePath: the path of the database that will
* extract from it the data
*
* TemplatePath: the header or the head of the wrapping file
*
* TemplateName and DataFileName for the file names
*
* Every thing stand for it self, hope so
*/
//#define PRODUCTION
#define DEVELOPMENT
#ifdef PRODUCTION
#define DataFileName "DataFile.txt"
#define ProductPath ""
#define DbFolderPath ""
#endif
#ifdef DEVELOPMENT
#define DataFileName "DataFile.html"
#define ProductPath ""
#define DbFolderPath ""
#endif
//folder path for the product name
QString FolderPath = ProductPath;
//folder path for the database
QString DatabasePath = DbFolderPath;
QString TemplatePath = DatabasePath;
QString TemplateName = "template.html";
QString DatabaseName = "{Name}.accdb";
QString DatabaseFullPath = DatabasePath + DatabaseName;
QList<QString> ColumnNames;
int RecordEnd = 13;
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
/*
* Activating this stupid code
* for setting all the table names
*/
setColumnNames();
/*
* Database Connection
* Database Name: {name}.accdb
*/
QString DSN = "Driver={Microsoft Access Driver (*.mdb, *.accdb)};FIL={MS Access};DSN='';DBQ=" + DatabaseFullPath;
QSqlDatabase db = QSqlDatabase::addDatabase("QODBC");
db.setDatabaseName(DSN);
if (!db.open()) {
qDebug() << "MS Access Database Connection Error! " << db.lastError().text();
return false;
}
else {
qDebug() << "Connection Success!;";
/*
* Colums Name:
* ID = 0, Product Name = 1, Network = 2, Launch = 3
* Body = 4, Display = 5, Platform = 6, Memory = 7
* Camera = 8, Sound = 9, Comms = 10, Features = 11
* Battery = 12, MISC = 13, Tests = 14
*/
QSqlQuery query;
QString qry = "SELECT * FROM {Table Name}";
query.exec(qry);
while(query.next()) {
if(MatchFolderName(query.value(1).toString()) == true) {
QString ProductName = query.value(1).toString();
// if return true
// get full path
qDebug() << "Folder is OK!";
qDebug() << "Writing html code...";
/*
* loop data from database
* get regex for brack line in receved data
* stream it to file with html code
*/
QFile DataFile(DatabasePath+"Data & Photos/"+ProductName+"/"+DataFileName);
if (DataFile.open(QFile::WriteOnly | QFile::Text | QIODevice::Append)) {
/*
* Starting the template file for stream in
*/
QTextStream StreamToFile(&DataFile);
/*
* Writing start of the file schema
* in html form from another file
*/
QFile HeaderFile(TemplatePath+TemplateName);
if(HeaderFile.open((QIODevice::ReadOnly | QIODevice::Text))) {
QTextStream StreamFromFile(&HeaderFile);
while(!StreamFromFile.atEnd()) {
StreamToFile << StreamFromFile.readLine();
}
HeaderFile.flush();
HeaderFile.close();
}
/*
* Starting schama afer the template header
*/
StreamToFile << "<table border='0'>";
/*
* Starting schama for the Data from the Database
*/
/*
* Geting every \n brake line from all data
* and sterating it for each <tr><td>
*/
int RecordStart = 0;
while(RecordStart != RecordEnd) {
int checkItems = 0;
QList<QString> trtdList;
QRegularExpression reA("([A-Za-z0-9:\\s,/.&)(~\"\\n\\r][^$\\r\\n])+[^$\\r\\n]+");
// RecordStart+1 for avoiding ID section in database
QRegularExpressionMatchIterator i = reA.globalMatch(query.value(RecordStart+1).toString());
while (i.hasNext()) {
QRegularExpressionMatch match = i.next();
if (match.hasMatch()) {
//qDebug() << "<tr><td>" << match.captured(0) << "<tr><td>";
trtdList.push_back(match.captured(0));
checkItems++;
}
}
StreamToFile << "<tr>"
<< "<th rowspan='" << checkItems+1 << "'>"
<< ColumnNames.at(RecordStart) << "</th>";
for(int j=0;j<trtdList.count();j++)
{
StreamToFile << "<tr><td>" << trtdList.at(j) << "</td></tr>";
}
StreamToFile << "</tr>";
RecordStart++;
}
/*
* Writing end of file schema
* in html form
*/
StreamToFile << "</table>";
// Flushing the file
// and closing it
DataFile.flush();
DataFile.close();
qDebug() << "Writing done!";
}
}
else {
qDebug() << "Folder dose not exist!";
}
}
return true;
}
return a.exec();
}
bool MatchFolderName(QString folderName) {
/*
* Check if folder exist or not
* if exist return true else false
*/
QString DirFullPath = FolderPath + folderName;
if(QDir(DirFullPath).exists()) {
return true;
}
else { return false; }
}
void CreateFileWithHTMLCode(QString ProductName) {
/*
* This will be refactored later
* will streem file data from a loop
*/
/*
* Read head file that
* Contain CSS data
* and put it in data.txt
* file in the same proudct
* folder name
*/
QString filename = TemplatePath + ProductName + "/" + DataFileName;
/*
* Append DataFile.txt file
* then put the data from db
* in it around the HTML code
*/
QFile file(filename);
// Trying to open in WriteOnly and Text mode
if(!file.open(QFile::WriteOnly |
QFile::Text))
{
qDebug() << "Could not open file for writing";
return;
}
/*
* To write text, we use operator<<(),
* which is overloaded to take
* a QTextStream on the left
* and data types (including QString) on the right
*/
QTextStream out(&file);
out << "QFile";
if(!EOF) {
file.flush();
file.close();
}
}
void setColumnNames()
{
/*
* Staticlly added to avoid lots of codes
* will be modifyed later
*/
ColumnNames.push_front("TESTS");
ColumnNames.push_front("MISC");
ColumnNames.push_front("Battery");
ColumnNames.push_front("Features");
ColumnNames.push_front("COMMS");
ColumnNames.push_front("Sound");
ColumnNames.push_front("Camera");
ColumnNames.push_front("Memory");
ColumnNames.push_front("Platform");
ColumnNames.push_front("Display");
ColumnNames.push_front("Body");
ColumnNames.push_front("Launch");
ColumnNames.push_front("Network");
ColumnNames.push_front("Product Name");
}