CGI圖文說明教程(8)記錄用戶記錄腳本之二 發(fā)表時(shí)間:2023-12-26 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣: [摘要]記錄用戶記錄腳本//以下是mas_res程序#include "t99_type.h"#include #include #include #include #include #include #include #include "parse.h"#incl... 記錄用戶記錄腳本 //以下是mas_res程序 #include "t99_type.h" #include
#include
#include
#include
#include
#include
#include
#include "parse.h"
#include "parse.cpp"
#include "mas_cvo.cpp"
void write_log_entry( char[], char[] );
void cgi_var_output();
char* getenv_n( char [] );
void gif_output( char [] );
int main()
{
char *query_str = getenv("QUERY_STRING");
Parse list( query_str == 0 ?
(char*)"file=mas&page=Test&" : query_str );
if ( list.get_item( "file" ) != NULL )
{
write_log_entry( list.get_item_n( "file", 1, true ),
list.get_item_n( "page" ) );
}
if ( list.get_item( "img" ) != NULL )
{
gif_output( list.get_item_n("img", 1, true) );
} else {
html("Content-type: text/html"); html("");
cgi_var_output(); // debug option
}
return 0;
}
void write_log_entry( char file[], char page[] )
{
//cout << "File = [" << file << "] page = [" << page << "]" << "\n";
//cout.flush();
ofstream inf( file, ios::app );
//inf.open( file, ios::out );
if ( !inf.fail() )
{
time_t t;
time( &t);
char *str = ctime( &t ); str[24] = '\0';
inf << setiosflags( ios::left );
inf << setw(24) << str << " " <<
setw(10) << (page!=NULL? page : (char*)"Unknown" ) << " " <<
setw(18) << getenv_n("REMOTE_ADDR") << " " <<
setw(20) << getenv_n("REMOTE_HOST") << "\n";
// setw(20) << getenv_n("REMOTE_USER") << "\n";
}
}
void gif_output( char gif[] )
{
char square [] = {
'G', 'I', 'F', '8', '9', 'a',
0002, 0000, 0002, 0000, 0263, 0000, 0000, 0000, 0000, 0000,
0277, 0000, 0000, 0000, 0277, 0000, 0277, 0277,
0000, 0000, 0000, 0277, 0277, 0000, 0277, 0000,
0277, 0277, 0300, 0300, 0300, 0200, 0200, 0200,
0377, 0000, 0000, 0000, 0377, 0000, 0377, 0377,
0000, 0000, 0000, 0377, 0377, 0000, 0377, 0000,
0377, 0377, 0377, 0377, 0377, 0054, 0000, 0000,
0000, 0000, 0002, 0000, 0002, 0000, 0100, 0004,
0003, 0020, 0200, 0010, 0000, 0073 };
html("Content-type: image/gif"); html("");
if ( gif[0] != '\0' ) // 輸出GIF文件
{
ifstream in( gif );
if ( !in.fail() )
{
char c;
in.read( &c, 1 );
while ( !in.eof() )
{
cout.write( &c, 1 );
in.read( &c, 1 );
}
return; // 結(jié)束
}
}
cout.write( square, (int) sizeof( square ) );
}
當(dāng)然,網(wǎng)頁的瀏覽器必須是支持瀏覽圖片以及裝載圖片的。幾個(gè)不能裝載圖片的理由是:
瀏覽器不支持圖片瀏覽;
用戶已經(jīng)取消對瀏覽圖片的選項(xiàng),因?yàn)橐訅K連接網(wǎng)絡(luò)服務(wù)器的速度;
服務(wù)器件接收到返回圖片的請求。
| |