forked from znframework/znframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
216 lines (187 loc) · 12.1 KB
/
index.php
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
<?php
//----------------------------------------------------------------------------------------------------
// ZERONEED PHP WEB FRAMEWORK
//----------------------------------------------------------------------------------------------------
//
// Yazar : Ozan UYKUN <[email protected]> | <[email protected]>
// Site : www.zntr.net
// Lisans : The MIT License
// Telif Hakkı: Copyright (c) 2012-2016, zntr.net
//
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Uygulama Ayarları Başlangıç
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Benchmarking Test
//----------------------------------------------------------------------------------------------------
//
// Bu ayarın true olarak seçilmesi durumunda sistemin açılış hızını
// ve yüklenme zamanını gösteren bir tablo gösterilir.
//
//----------------------------------------------------------------------------------------------------
$application['benchmark'] = false;
//----------------------------------------------------------------------------------------------------
// Application Mode
//----------------------------------------------------------------------------------------------------
//
// Uygulama modu belirtilir. Kullanılabilir modlar: publicaton, restoration, development
//
//----------------------------------------------------------------------------------------------------
$application['mode'] = 'Development';
//----------------------------------------------------------------------------------------------------
// Application Directory
//----------------------------------------------------------------------------------------------------
//
// Uygulamanın çalışcağı dizini belirtilir.
//
//----------------------------------------------------------------------------------------------------
$application['directory'] = 'Application';
//----------------------------------------------------------------------------------------------------
// Restoration
//----------------------------------------------------------------------------------------------------
//
// Uygulamanın restore edileceği dizini belirtilir.
//
//----------------------------------------------------------------------------------------------------
$application['restoration'] = array
(
// Uygulamanın restore edileceği dizini belirtilir.
'directory' => 'Restoration',
// Uygulama üzerinde restore işlemlerinin yapıldığı makinelere ait ip adresleri belirtilir.
'machinesIP' => array(),
// Çalışmayan, hata oluşmuş kullanıcıların karşılasması istenmeyen sayfalar belirtilir.
'pages' => array(),
// Restoration Pages ayarına belirtilmiş sayfalarından herhangi birine istek yapıldığında
// bu ayarın belirtildiği sayfaya yönlendirilir.
'routePage' => ''
);
//----------------------------------------------------------------------------------------------------
// Uygulama Ayarları Bitiş
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Uygulama Türü
//----------------------------------------------------------------------------------------------------
define('APPMODE', strtolower($application['mode']));
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Kullanılabilir Uygulama Seçenekleri
//----------------------------------------------------------------------------------------------------
switch( APPMODE )
{
//------------------------------------------------------------------------------------------------
// Publication Yayın Modu
// Tüm hatalar kapalıdır.
// Projenin tamamlanmasından sonra bu modun kullanılması önerilir.
//------------------------------------------------------------------------------------------------
case 'publication' :
error_reporting(0);
break;
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Restoration Onarım Modu
// Hataların görünümü görecelidir.
//------------------------------------------------------------------------------------------------
case 'restoration' :
//------------------------------------------------------------------------------------------------
// Development Geliştirme Modu
// Tüm hatalar açıktır.
//------------------------------------------------------------------------------------------------
case 'development' :
error_reporting(-1);
break;
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Farklı bir kullanım hatası
//------------------------------------------------------------------------------------------------
default: echo 'Invalid Application Mode! Available Options: development, restoration or publication'; exit;
//------------------------------------------------------------------------------------------------
}
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Ön Yüklenenler
//----------------------------------------------------------------------------------------------------
require_once 'System/Core/Preloading.php';
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Uygulama Dizini
//----------------------------------------------------------------------------------------------------
define('APPDIR', suffix($application['directory']));
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Restorasyon Dizini
//----------------------------------------------------------------------------------------------------
define('RESDIR', suffix($application['restoration']['directory']));
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
// Benchmarking Test
//----------------------------------------------------------------------------------------------------
$benchmark = $application['benchmark'];
//----------------------------------------------------------------------------------------------------
if( $benchmark === true )
{
//------------------------------------------------------------------------------------------------
// Sisteminin Açılış Zamanını Hesaplamayı Başlat
//------------------------------------------------------------------------------------------------
$start = microtime();
//------------------------------------------------------------------------------------------------
}
//----------------------------------------------------------------------------------------------------
// Sistem Hiyerarşisi -- System/Core/Hierarchy.php
//----------------------------------------------------------------------------------------------------
require_once HIERARCHY_DIR;
//----------------------------------------------------------------------------------------------------
if( $benchmark === true )
{
//------------------------------------------------------------------------------------------------
// Sistemin Açılış Zamanını Hesaplamayı Bitir
//------------------------------------------------------------------------------------------------
$finish = microtime();
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// System Elapsed Time Calculating
//------------------------------------------------------------------------------------------------
$elapsedTime = $finish - $start;
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Sistemin Bellek Kullanımını Hesapla
//------------------------------------------------------------------------------------------------
$memoryUsage = memory_get_usage();
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Sistemin Maksimum Bellek Kullanımını Hesapla
//------------------------------------------------------------------------------------------------
$maxMemoryUsage = memory_get_peak_usage();
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Benchmark Performans Sonuç Tablosu
//------------------------------------------------------------------------------------------------
$benchmarkData = array
(
'elapsedTime' => $elapsedTime,
'memoryUsage' => $memoryUsage,
'maxMemoryUsage' => $maxMemoryUsage
);
$benchResult = Import::template('BenchmarkTable', $benchmarkData, true);
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Benchmark Performans Sonuç Tablosu Yazdırılıyor
//------------------------------------------------------------------------------------------------
echo $benchResult;
//------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------
// Sistem benchmark performans test sonuçlarını raporla.
//------------------------------------------------------------------------------------------------
report('Benchmarking Test Result', $benchResult, 'BenchmarkTestResults');
//------------------------------------------------------------------------------------------------
}