CGI圖文說明教程(7)解碼數(shù)據(jù)發(fā)送給CGI腳本之一
發(fā)表時間:2023-12-26 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]解碼數(shù)據(jù)發(fā)送給CGI腳本 當使用表單的時候,收集在表單的信息給發(fā)送給CGI腳本用于處理。這個信息被放置在環(huán)境變量QUERY_STRING中! 榱饲宄貙⑿畔鬟f給環(huán)境變量QUERY_STRING,被修改錨標簽的表單將被使用。在這個被修改的錨標簽中,傳遞給環(huán)境變量QUERY_STRING的數(shù)據(jù)...
解碼數(shù)據(jù)發(fā)送給CGI腳本
當使用表單的時候,收集在表單的信息給發(fā)送給CGI腳本用于處理。這個信息被放置在環(huán)境變量QUERY_STRING中。
為了清除地將信息傳遞給環(huán)境變量QUERY_STRING,被修改錨標簽的表單將被使用。在這個被修改的錨標簽中,傳遞給環(huán)境變量QUERY_STRING的數(shù)據(jù)是在指示CGI腳本的URL之后附上的。字符”?”被用來分隔指定CGI腳本以及發(fā)送給腳本的數(shù)據(jù)的URL。比如:
<A HREF="/cgi-bin/script?name=Your+name&action=find"> Link </A>
其中數(shù)據(jù)"name=Your+name&action=find"被放置在環(huán)境變量QUERY_STRING中并且CGI腳本被執(zhí)行。
下面給出一個例子:由C++編寫一個類,具體文件parse.h 和parse.cpp被用于在QUERY_STRING中提取個別的組件,其中的頭文件t99_type.h在上節(jié)教程已經(jīng)提到,它是包含了一些定義。具體代碼如下:
//以下是parse.h文件
#ifndef CLASS_PARSE
#define CLASS_PARSE
//#define NO_MAP // 定義沒有用戶處理
#include "t99_type.h"http://這個文件在前面教程中有
class Parse
{
public:
Parse( char [] );
~Parse();
void set( char [] );
char *get_item( char [], int pos=1, bool=false );
char *get_item_n( char [], int pos=1, bool=false );
protected:
void remove_escape(char []);
int hex( char ); //返回十六進制數(shù)
char *map_uname( char [] );
private:
enum { SEP = '&' }; // 使用&分隔字符
char *the_str; // 字符部分
int the_length; // 字符長度
};
#endif
//以下是parse.cpp文件
#ifndef CLASS_PARSE_IMP
#define CLASS_PARSE_IMP
#include "parse.h"
#include
#include
#ifndef NO_MAP
# include
#endif
Parse::Parse( char list[] )
{
the_str = NULL;
set( list );
}
Parse::~Parse()
{
if ( the_str != NULL ) { // 釋放存儲器
delete [] the_str;
}
}
void Parse::set( char list[] )
{
if ( the_str != NULL ) { // 釋放存儲器
delete [] the_str;
}
the_length = strlen( list ); // 字符長度
the_str = new char[the_length+1]; // 分配空間
strcpy( the_str, list ); // 復制
}
char *Parse::get_item( char name[], int pos, bool file )
{
int len = strlen( name );
int cur_tag = 1;
for( int i=0; i
{
if ( the_str[i] == name[0] &&
strncmp( &the_str[i], name, len ) == 0 )
{
if ( the_str[i+len] == '=' )
{
if ( cur_tag == pos )
{
int start = i+len+1; int j = start;
while ( the_str[j] != SEP && the_str[j] != '\0' ) j++;
int str_len = j-start;
char *mes = new char[ str_len+1 ];
strncpy( mes, &the_str[start], str_len );
mes[str_len] = '\0';
remove_escape( mes );
# ifndef NO_MAP
return file ? map_uname(mes) : mes;
# else
return file ? mes : mes;
# endif
} else {
cur_tag++;
}
}
}
}
return NULL;
}
char *Parse::get_item_n( char name[], int pos, bool file )
{
char *res = get_item( name, pos, file );
return res == NULL ? (char*)"----" : res;
}
void Parse::remove_escape(char str[])
{
char * from = &str[0];
char * to = &str[0];
while ( *from != '\0' )
{
char ch = *from++;
switch ( ch )
{
case '%' :
ch = (hex(*from++)><4) hex(*from++);
break;
case '+' :
ch = ' '; break;
}
*to++ = ch;
}
*to = '\0';
}
int Parse::hex( char c )
{
if ( isdigit( c ) )
return c-'0';
if ( isalpha( c ) )
return tolower(c)-'a'+10;
return 0;
}
char* Parse::map_uname( char *path )
{
#ifndef NO_MAP
if ( path[0] == '~' )
{
char uname[255]; // 容納用戶名字的變量
char *rest = &path[1];
char *p = &uname[0];
while ( *rest != '/' && *rest != '\0' )
{
*p++ = *rest++;
}
*p = '\0'; // 結(jié)束標識
char *root = uname;
passwd *pw = getpwnam( uname );
if ( pw != NULL )
{
root = pw->pw_dir; // 用戶的主目錄
}
int len_root = strlen(root);
int len_path = len_root + strlen(rest);
char *new_path = new char[len_path+1]; // 動態(tài)字符
strcpy( &new_path[0], root ); // 復制用戶路徑
strcpy( &new_path[len_root], rest ); // 其余部分
return new_path;
} else {
return path;
}
#endif
return path;
}
#endif