User:Antigng-bot/cleanupdup

维基百科,自由的百科全书
#include <stdio.h>
#include <string.h>
#include <process.h>
#include <windows.h>
#include "mem.h"
#include "network.h"
#include "convert.h"
#include "auth.h"
#include "struct.h"
#include "wikitemplate.h"
struct problemlist
{
	unsigned long pageid;
	struct problemlist *next;
};
struct neditargv
{
	const char *id;
	HTTP newtext;
	const char *time;
};
int threadc[1024];
SRWLOCK rwcs;
CRITICAL_SECTION tcs;
CRITICAL_SECTION hcs;
CRITICAL_SECTION fcs;
int threadnumber=0;
int action=0;
struct hashlist *hl=NULL;
struct problemlist *pbl=NULL;
const char *username=NULL;
const char *passwd=NULL;
const char *searchstring=NULL;
const char *ns=NULL;
int maxthread=256;
int doallpage=0;
struct problemlist *pbl;
static void displayerr(unsigned int code)
{
	if(!(code&0x1))
	{
		printf(
			"\tNo username.\n"
			"\t\tA valid username must be specified via \"-u\".\n"
			);
	}
	if(code&0x2)
	{
		printf(
			"\tUsername too long.\n"
			"\t\tThe username should not be longer than 64 bytes.\n"
			);
	}
	if(!(code&0x4))
	{
		printf(
			"\tNo query.\n"
			"\t\tEither a search string (via \"-s\") or \"-a\" should be set.\n"
			);
	}
	if(code&0x8)
	{
		printf(
			"\tPassword too long.\n"
			"\t\tThe password should not be longer than 64 bytes.\n"
			);
	}
	if(!(code&0x10))
	{
		printf(
			"\tNo password.\n"
			"\t\tA valid password must be specified via \"-p\".\n"
			);
	}
	if(code&0x20)
	{
		printf(
			"\tSearch string too long.\n"
			"\t\tThe search string should not be longer than 128 bytes.\n"
			);
	}
	if(code&0x40)
	{
		printf(
			"\tns string too long.\n"
			"\t\tThe ns string should not be longer than 32 bytes.\n"
			);
	}
	return;
}
static int parsearg(int argc,const char *argv[])
{
	int cur_arg=0;
	unsigned int err=0;
	doallpage=0;
	for(cur_arg=1;cur_arg<argc;cur_arg++)
	{
		if(argv[cur_arg][0]=='-'&&((argv[cur_arg+1]&&argv[cur_arg+1][0]!='-')||argv[cur_arg][1]=='a'))
		{
			switch(argv[cur_arg][1])
			{
			case 'u':
				username=G2U(argv[cur_arg+1]);
				if(strlen(username)>64)
				{
					err|=0x2;
				}
				else
				{
					err|=0x1;
				}
				cur_arg++;
				break;
			case 'a':
				err|=0x4;
				doallpage=1;
				break;
			case 'p':
				passwd=argv[cur_arg+1];
				if(strlen(passwd)>64)
				{
					err|=0x8;
				}
				else
				{
					err|=0x10;
				}
				cur_arg++;
				break;
			case 's':
				searchstring=G2U(argv[cur_arg+1]);
				if(strlen(searchstring)>128)
				{
					err|=0x20;
				}
				else
				{
					err|=0x4;
				}
				cur_arg++;
				break;
			case 'n':
				ns=argv[cur_arg+1];
				if(strlen(ns)>32)
				{
					err|=0x40;
				}
				cur_arg++;
				break;
			case 'T':
				maxthread=atoi(argv[cur_arg+1]);
				if(maxthread<1||maxthread>1024) maxthread=32;
				cur_arg++;
				break;
			}
		}
	}
	if(!ns) ns="0";
	if(0x1+0x4+0x10==err) return 0;
	else
	{
		printf("Error code 0x%x:\n",err);
		displayerr(err);
		return 1;
	}
}
static int smartedit(struct neditargv *p,const char *reason, const char *tags)
{
	HTTP res;
	char line[2048],url[4096]={0};
	char reason_e[512];
	char tags_e[256];
	char aft[1024],statusline[128];
	char cur_token[128];
	char err_type[8192];
	char *erm[]={"code"};
	char *erv[1];
	int find=0;
	int has_err=0,token_err=0,filtered=0;
	int retry=0;
	erv[0]=err_type;
	if(reason) URLEncode(reason,strlen(reason),reason_e,510);
	if(tags) URLEncode(tags,strlen(tags),tags_e,254);
	sprintf(url,"/w/api.php?action=edit&pageid=%s&basetimestamp=%s",p->id,p->time);
	find=sprintf(aft,"%s%s&summary=%s&bot=1&minor=1&nocreate=1&format=xml&token=",tags?"&tags=":"",tags?tags_e:"",reason_e);
	if(find<0) return -4;
	do
	{
		res=hopen();;
		while(1)
		{
			AcquireSRWLockShared(&rwcs);
			if(hastoken) break;
			else ReleaseSRWLockShared(&rwcs);
			Sleep(100);
		}		
		aft[find]=0;
		strcat(aft,token);
		ReleaseSRWLockShared(&rwcs);
		hrewind(p->newtext);
		if(smartpost(url,p->newtext,aft,8888,1,res))
		{
			hclose(res);
			return -1;
		}
		hgets(statusline,127,res);
		if(!strstr(statusline," 200"))
		{
			hclose(res);
			return -2;
		}
		skipresponseheader(res);
		filtered=token_err=has_err=0;
		while(!heof(res))
		{
			if(xmlparsetag(res,line)==XML_HAS_VALUE)
			{
				if(!strcmp(line,"error"))
				{
					has_err=1;
					xmlparsearg(res,1,erm,erv);
					if((!strcmp(err_type,"notoken"))||(!strcmp(err_type,"badtoken")))
					{
						token_err=1;
					}
					else if(!strcmp(err_type,"abusefilter-warning"))
					{
						filtered=1;
					}
					break;
				}
			}
		}
		if(token_err)
		{
			AcquireSRWLockExclusive(&rwcs);
			if(!strcmp(aft+find,cur_token)) hastoken=0;
			ReleaseSRWLockExclusive(&rwcs);
		}
		retry++;
		hclose(res);
	}while((token_err||filtered)&&(retry<3));
	if(has_err) return -3;
	else return 0;
}
static int query(const char *target,const char *ns)
{
	HTTP f;
	char target_e[512],line[2048]={0},url[4096]={0},snd[4096]={0},id[512]={0},title[512]={0},sroffset[2048]={0},offseto[512]={0};
	char statusline[128]={0};
	int next=0,retry=0,pageid=0;
	struct problemlist *temp=0;
	char *ctm[]={"gsroffset"};
	char *ctv[1];
	char *idm[]={"pageid","title"};
	char *idv[2];
	int count=0;
	ctv[0]=offseto;
	idv[0]=id;
	idv[1]=title;
	if(strlen(target)>128)
	{
		printf("Search string too long!\n");
		return -1;
	}
	URLEncode(target,strlen(target),target_e,511);
	sprintf(url,"/w/api.php?action=query&format=xml&generator=search&prop=info&gsrlimit=500&gsrnamespace=%s&gsrsearch=%s",ns,target_e);
	do
	{
		strcpy(snd,url);
		if(next)
		{
			strcat(snd,"&gsroffset=");
			strcat(snd,sroffset);
		}
		f=hopen();
		retry=0;
		do
		{
			if(get(snd,8888,1,f))
			{
				hclose(f);
				f=hopen();
			}
			else
			{
				hgets(statusline,127,f);
				if(strstr(statusline,"200")) break;
				else
				{
					hclose(f);
					f=hopen();
				}
			}
			retry++;
		}while(retry<20);
		if(retry==20)
		{
			hclose(f);
			return 1;
		}
		skipresponseheader(f);
		next=0;
		do
		{
			xmlparsetag(f,line);
			if(!next)
			{
				if(!strcmp(line,"continue"))
				{
					xmlparsearg(f,1,ctm,ctv);
					URLEncode(offseto,strlen(offseto),sroffset,990);
					next=1;
				}
			}
			if(!strcmp(line,"page"))
			{
				xmlparsearg(f,2,idm,idv);								
				if((pageid=atoi(id))>0)
				{
					temp=(struct problemlist *)s_malloc(sizeof(struct problemlist));
					temp->pageid=pageid;
					temp->next=pbl;
					pbl=temp;
				}
			}
		}while(!heof(f));
		hclose(f);
		count++;
	}while(next&&count);
	return 0;
}
static int allpagequery(const char *ns)
{
	HTTP f;
	char line[2048]={0},url[4096]={0},snd[4096]={0},id[512]={0},title[512]={0},sroffset[2048]={0},offseto[512]={0};
	char statusline[128];
	int next=0,retry=0,pageid=0;
	struct problemlist *temp=0;
	char *ctm[]={"apcontinue"};
	char *ctv[1];
	char *idm[]={"pageid","title"};
	char *idv[2];
	ctv[0]=offseto;
	idv[0]=id;
	idv[1]=title;
	sprintf(url,"/w/api.php?action=query&format=xml&list=allpages&apnamespace=%s&aplimit=5000",ns);
	do
	{
		strcpy(snd,url);
		if(next)
		{
			strcat(snd,"&apcontinue=");
			strcat(snd,sroffset);
		}
		f=hopen();
		for(retry=0;retry<20;retry++)
		{
			if(get(snd,8888,1,f))
			{
				hclose(f);
				f=hopen();
			}
			else
			{
				hgets(statusline,127,f);
				if(strstr(statusline,"200")) break;
				else
				{
					hclose(f);
					f=hopen();
				}
			}
		}
		if(retry==20)
		{
			hclose(f);
			return 1;
		}
		skipresponseheader(f);
		next=0;
		do
		{
			xmlparsetag(f,line);
			if(!next)
			{
				if(!strcmp(line,"continue"))
				{
					xmlparsearg(f,1,ctm,ctv);
					URLEncode(offseto,strlen(offseto),sroffset,2047);
					next=1;
				}
			}
			if(!strcmp(line,"p"))
			{
				xmlparsearg(f,2,idm,idv);
				if((pageid=atoi(id))>0)
				{
					temp=(struct problemlist *)s_malloc(sizeof(struct problemlist));
					temp->pageid=pageid;
					temp->next=pbl;
					pbl=temp;
				}
			}
		}while(!heof(f));
		hclose(f);
	}while(next);
	return 0;
}
static void fix_name(const char *name,char *name_fixed)
{
	char ch=0;
	int mute=0;
	int count=0,fixed_count=0;
	while(ch=name[count])
	{
		if((ch!=' ')&&(ch!='\n')&&(ch!='\r')&&(ch!='\t')) break;
		count++;
	}
	while(ch=name[count])
	{
		if(((ch=='<')&&name[count+1]=='!')&&!mute) mute=1;
		else if((ch=='>')&&mute) mute=0;
		else
		{
			if(!mute)
			{
				if(ch=='_') name_fixed[fixed_count++]=' ';
				else name_fixed[fixed_count++]=((ch>='A')&&(ch<='Z'))?ch+'a'-'A':ch;
			}
		}
		count++;
	}
	name_fixed[fixed_count]=0;
	while(fixed_count>0)
	{
		if((name_fixed[fixed_count-1]==' ')||(name_fixed[fixed_count-1]=='\n')||(name_fixed[fixed_count-1]=='\r')||(name_fixed[fixed_count-1]=='\t')) fixed_count--;
		else break;
	}
	name_fixed[fixed_count]=0;
	return;
}
static void fix_name_nocap(const char *name,char *name_fixed)
{
	char ch=0;
	int mute=0;
	int count=0,fixed_count=0;
	while(ch=name[count])
	{
		if((ch!=' ')&&(ch!='\n')&&(ch!='\r')&&(ch!='\t')) break;
		count++;
	}
	while(ch=name[count])
	{
		if(((ch=='<')&&name[count+1]=='!')&&!mute) mute=1;
		else if((ch=='>')&&mute) mute=0;
		else
		{
			if(!mute)
			{
				name_fixed[fixed_count++]=ch;
			}
		}
		count++;
	}
	name_fixed[fixed_count]=0;
	while(fixed_count>0)
	{
		if((name_fixed[fixed_count-1]==' ')||(name_fixed[fixed_count-1]=='\n')||(name_fixed[fixed_count-1]=='\r')||(name_fixed[fixed_count-1]=='\t')) fixed_count--;
		else break;
	}
	name_fixed[fixed_count]=0;
	return;
}

static int tempgroom(struct _templatehead *temp)
{
	int groomed=0;
	struct _template *cur_content=0,*pre_content=0,*query_content=0;
	if(!temp) return groomed;
	cur_content=temp->content;
	while(cur_content)
	{
		if(cur_content->nameflag)
		{
			struct _value *cur_value=cur_content->name;
			while(cur_value)
			{
				if(cur_value->type)
				{
					if(tempgroom(cur_value->elem.temp)) groomed=1;
				}
				cur_value=cur_value->next;
			}
		}
		if(cur_content->valueflag)
		{
			struct _value *cur_value=cur_content->value;
			while(cur_value)
			{
				if(cur_value->type)
				{
					if(tempgroom(cur_value->elem.temp)) groomed=1;
				}
				cur_value=cur_value->next;
			}
		}
		cur_content=cur_content->next;
	}
	if(temp->rot) return groomed;
	else
	{
		char *fixed_name=(char *)s_calloc(sizeof(char)*8192,1);
		struct hashlist *hsh=hashini();
		cur_content=temp->content;
		while(cur_content)
		{
			if(!(cur_content->nameflag)&&!(cur_content->valueflag)&&cur_content->value)
			{
				fix_name_nocap(cur_content->name->elem.ch,fixed_name);
				if(fixed_name[0])
				{
					if(str_hashquery(hsh,fixed_name,&query_content))
					{
						if(!cur_content->value->elem.ch[0])
						{
							pre_content->next=cur_content->next;
							s_free(cur_content->name->elem.ch);
							s_free(cur_content->value->elem.ch);
							s_free(cur_content->name);
							s_free(cur_content->value);
							s_free(cur_content);
							cur_content=pre_content;
							groomed=1;
						}
						else
						{
							char *fixed_new_content=(char *)s_calloc(sizeof(char)*8192,1);
							fix_name_nocap(cur_content->value->elem.ch,fixed_new_content);
							if(!fixed_new_content[0])
							{
								char *fixed_old_content=(char *)s_calloc(sizeof(char)*8192,1);
								fix_name_nocap(query_content->value->elem.ch,fixed_old_content);
								if(!fixed_old_content[0])
								{
									query_content->valueflag++;
									cur_content->value->next=query_content->value->next;
									query_content->value->next=cur_content->value;
									pre_content->next=cur_content->next;
									s_free(cur_content->name);
									s_free(cur_content);
									cur_content=pre_content;
									groomed=1;									
								}
								else
								{
									pre_content->next=cur_content->next;
									s_free(cur_content->name->elem.ch);
									s_free(cur_content->value->elem.ch);
									s_free(cur_content->name);
									s_free(cur_content->value);
									s_free(cur_content);
									cur_content=pre_content;
									groomed=1;
								}
								s_free(fixed_old_content);
							}
							else
							{
								char *fixed_old_content=(char *)s_calloc(sizeof(char)*8192,1);
								fix_name_nocap(query_content->value->elem.ch,fixed_old_content);
								if(!fixed_old_content[0])
								{
									strcpy(query_content->value->elem.ch,cur_content->value->elem.ch);
									pre_content->next=cur_content->next;
									s_free(cur_content->name->elem.ch);
									s_free(cur_content->value->elem.ch);
									s_free(cur_content->name);
									s_free(cur_content->value);
									s_free(cur_content);
									cur_content=pre_content;
									groomed=1;
								}
								else if(!strcmp(fixed_new_content,fixed_old_content))
								{
									pre_content->next=cur_content->next;
									s_free(cur_content->name->elem.ch);
									s_free(cur_content->value->elem.ch);
									s_free(cur_content->name);
									s_free(cur_content->value);
									s_free(cur_content);
									cur_content=pre_content;
									groomed=1;
								}
								s_free(fixed_old_content);
							}
							s_free(fixed_new_content);
						}
					}
					else
					{
						str_hashadd(hsh,fixed_name,cur_content);
					}
				}
			}
			pre_content=cur_content;
			cur_content=cur_content->next;
		}
		str_hashdestroy(hsh);
		s_free(fixed_name);
	}
	return groomed;
}
static void outputtemp(struct _templatehead *temp, HTTP newtext)
{
	int count=0;
	char ch=0;
	struct _template *cur_content,*pre_content;
	struct _value *pre_value,*cur_value;
	smartURLEncode('{',newtext);
	smartURLEncode('{',newtext);
	while(ch=(temp->tempname[count]))
	{
		smartURLEncode(ch,newtext);
		count++;
	}
	if(temp->content)
	{
		cur_content=temp->content;
		while(cur_content)
		{
			smartURLEncode('|',newtext);
			if(cur_content->name)
			{
				cur_value=cur_content->name;
				while(cur_value)
				{
					if(cur_value->type)
					{
						outputtemp(cur_value->elem.temp,newtext);
					}
					else
					{
						for(count=0;ch=cur_value->elem.ch[count];count++)
						{
							smartURLEncode(ch,newtext);
						}
						s_free(cur_value->elem.ch);
					}
					pre_value=cur_value;
					cur_value=cur_value->next;
					s_free(pre_value);
				}
			}
			if(cur_content->value)
			{
				cur_value=cur_content->value;
				smartURLEncode('=',newtext);
				while(cur_value)
				{
					if(cur_value->type)
					{
						outputtemp(cur_value->elem.temp,newtext);
					}
					else
					{
						for(count=0;ch=cur_value->elem.ch[count];count++)
						{
							smartURLEncode(ch,newtext);
						}
						s_free(cur_value->elem.ch);
					}
					pre_value=cur_value;
					cur_value=cur_value->next;
					s_free(pre_value);
				}
			}
			pre_content=cur_content;
			cur_content=cur_content->next;
			s_free(pre_content);
		}
	}
	if(!temp->rot)
	{
		smartURLEncode('}',newtext);
		smartURLEncode('}',newtext);
	}
	s_free(temp);
	return;
}
static int pagecheck(const char *pageid,const char *basetime,HTTP txt)
{
	HTTP newtext;
	char ch=0;
	int nowiki=0;
	int comment=0;
	int link=0;
	int ref=0;
	struct _parsestate pstate;
	int state=0;
	struct _templatehead *temp;
	int todo=0;
	int rot=0;
	int overflow=0;
	memset(&pstate,0,sizeof(struct _parsestate));
	newtext=hopen();
	hputs("&text=",6,newtext);
	while(xmlpulltext(txt,&ch)==XML_TEXT_CONTINUE)
	{
		checkparsestate(ch,&pstate,&nowiki,&comment,&link,&ref);
		switch(state)
		{
		case 0:
			if((ch=='{')&&!nowiki&&!comment&&!link)
			{
				state=1;
			}
			else
			{
				smartURLEncode(ch,newtext);
			}
			break;
		case 1:
			if(ch=='{')
			{
				temp=(struct _templatehead *)s_calloc(sizeof(struct _templatehead),1);
				if(tempprocess(temp,&nowiki,&comment,&link,&ref,&pstate,txt,0)==TEMPLATE_ROTTEN)
				{
					rot=1;
					if(temp->overflow) overflow=1;
				}
				if(tempgroom(temp)) todo=1;
				outputtemp(temp,newtext);
				state=0;
			}
			else
			{
				smartURLEncode('{',newtext);
				smartURLEncode(ch,newtext);
				state=0;
			}
			break;
		}
	}
	parsestatefinal(&pstate,&nowiki,&comment,&link,&ref);
	if(xmlpulltext(txt,&ch)!=XML_TEXT_END) todo=0;
	if(comment||nowiki||link||rot||ref)
	{
		/*
		EnterCriticalSection(&fcs);
		fprintf(fp1,"pageid=%s comment=%d nowiki=%d link=%d rot=%d overflow=%d ref=%d\n",pageid,comment,nowiki,link,rot,overflow,ref);
		fflush(fp1);
		LeaveCriticalSection(&fcs);*/
	}
	else if(todo)
	{
		struct neditargv point;
		point.newtext=newtext;
		point.id=pageid;
		point.time=basetime;
		smartedit(&point,"bot: cleanup \'duplicate-args-category\'","CleanupDuplicateArgs (Antigng)");
	}
	hclose(newtext);
	return 0;
}
static int proceedchild(const char *ids)
{
	char url[4096];
	char buf[8192];
	char pageid[256];
	char timestamp[256];
	char contentmodel[64],contentformat[64];
	const char *ttm[]={"pageid"};
	const char *tmm[]={"timestamp"};
	const char *cmm[]={"contentmodel","contentformat"};
	char *ttv[1];
	char *tmv[1];
	char *cmv[2];
	int result;
	int status;
	HTTP h;
	ttv[0]=pageid;
	tmv[0]=timestamp;
	cmv[0]=contentmodel;
	cmv[1]=contentformat;
	if(!ids)
	{
		return -1;
	}
	sprintf(url,"/w/api.php?action=query&format=xml&prop=revisions&rvprop=content|timestamp&pageids=%s&rvslots=main",ids);
	h=hopen();
	if(get(url,8888,1,h))
	{
		hclose(h);
		return -2;
	}
	hgets(buf,4096,h);
	if(!strstr(buf," 200"))
	{
		hclose(h);
		return -3;
	}
	if(skipresponseheader(h))
	{
		hclose(h);
		return -3;
	}
	status=0;
	while(!heof(h))
	{
		result=xmlparsetag(h,buf);
		if(result==XML_HAS_VALUE)
		{
			switch(status)
			{
			case 0:
				if(!strcmp(buf,"page")&&(xmlparsearg(h,1,ttm,ttv)==XML_HAS_VALUE))
				{
					if(atoi(pageid)>0) status=1;
				}
				break;
			case 1:
				if(!strcmp(buf,"rev"))
				{
					if(xmlparsearg(h,1,tmm,tmv)!=XML_HAS_VALUE)
					{
						status=3;
						goto _cleanup;
					}
					status=2;
				}
				else goto _cleanup;
				break;
			case 2:
				if(!strcmp(buf,"slot"))
				{
					if(xmlparsearg(h,2,cmm,cmv)!=XML_HAS_VALUE)
					{
						status=3;
						goto _cleanup;
					}
					if(!strcmp(contentmodel,"wikitext")&&!strcmp(contentformat,"text/x-wiki"))
					{
						pagecheck(pageid,timestamp,h);
					}
					status=0;
				}
				else goto _cleanup;
				break;
			}
		}
		else if(result==XML_PARSE_ERROR)
		{
			status=3;
			goto _cleanup;
		}
	}
_cleanup:
	hclose(h);
	return status?-4:0;
}
static void threadfunc(void *c)
{
	int ext=0;
	char pageid[10][64];
	int count=0;
	char ids[4096];
	int result=0;
	struct problemlist *temp;
	while(!action) Sleep(1);
	while(1)
	{
		EnterCriticalSection(&hcs);
		for(count=0;count<10;count++)
		{
			if(pbl)
			{
				temp=pbl;
				pbl=pbl->next;
				sprintf(pageid[count],"%d",temp->pageid);
				s_free(temp);
			}
			else
			{
				ext=2-(!count);
				count++;
				break;				
			}
		}
		count--;
		if(count>=0)
		{
			strcpy(ids,pageid[count]);
			count--;
			while(count>=0)
			{
				strcat(ids,"|");
				strcat(ids,pageid[count]);
				count--;
			}
		}
		LeaveCriticalSection(&hcs);
		if(ext==1) break;
		else
		{
			result=proceedchild(ids);
			if(ext==2) break;
		}
	}
	EnterCriticalSection(&tcs);
	threadnumber--;
	LeaveCriticalSection(&tcs);
	return ;
} 
static int threadini(int count)
{
	int i=0;
	int flag=0;
	threadnumber=0;
	for(i=0;i<count;i++)
	{
		threadc[i]=i;
		flag=_beginthread(threadfunc,0,(void *)(threadc+i));
		if(flag>0) threadnumber++;
	}
	return 0;
}
#ifndef _DEBUG
int main(int argc,char *argv[])
{
	int count=0;
	HANDLE tk_thread;
	if(parsearg(argc,argv))
	{
		printf("usage: -u username -p passwd [-T concurrency -s searchstring -a allpagequery -n namespace]\n");
		return -1;
	}
	InitializeSRWLock(&rwcs);
	InitializeCriticalSection(&tcs);
	InitializeCriticalSection(&hcs);
	InitializeCriticalSection(&fcs);
	buckini(20);
	if(login(username,passwd))
	{
		printf("Login error!\n");
		return -2;
	}
	hastoken=0;
	printf("Login complete.\n");
	fflush(stdout);
	tk_thread=(HANDLE)_beginthread(tokenmanage,0,0);
	if(doallpage)
	{
		allpagequery(ns);
	}
	else query(searchstring,ns);
	if(pbl==NULL)
	{
		printf("No page!\n");
		return -3;
	}
	printf("Query complete.\n");
	action=0;
	threadini(maxthread);
	action=1;
	while(1)
	{
		EnterCriticalSection(&hcs);
		if(pbl!=NULL)
		{
			LeaveCriticalSection(&hcs);
			Sleep(1000);
		}
		else
		{
			LeaveCriticalSection(&hcs);
			break;
		}
	}
	count=0;
	while(count<150)
	{
		count++;
		EnterCriticalSection(&tcs);
		if(threadnumber>0)
		{
			printf("Waiting for all threads to exit. Current thread number: %d\n",threadnumber);
			LeaveCriticalSection(&tcs);
		}
		else
		{
			LeaveCriticalSection(&tcs);
			break;
		}
		fflush(stdout);
		Sleep(1000);
	}
	if(!threadnumber)
	{
		printf("Cleanup..\n");
		DeleteCriticalSection(&tcs);
		DeleteCriticalSection(&hcs);
		AcquireSRWLockExclusive(&rwcs);
		hastoken=-1;
		ReleaseSRWLockExclusive(&rwcs);
		WaitForSingleObject(tk_thread,INFINITE);
		buckdestroy();
	}
	printf("---------------Ok done.---------------\n");
	fflush(stdout);
	return 0;
}
#else
int main(int argc,char **argv)
{
	int count=0;
	if(parsearg(argc,argv))
	{
		printf("usage: -u username -p passwd [-T concurrency -s searchstring -a allpagequery -n namespace -i inputfile -o outputfile]\n");
		return -1;
	}
	InitializeSRWLock(&rwcs);
	InitializeCriticalSection(&tcs);
	InitializeCriticalSection(&hcs);
	buckini(20);
	if(login(username,passwd))
	{
		printf("Login error!\n");
		return -2;
	}
	hastoken=0;
	printf("Login complete.\n");
	fflush(stdout);
	_beginthread(tokenmanage,0,0);
	system("PAUSE\n");
	printf("ready!\n");
	printf("res=%d\n",proceedchild("5157328"));
	return 0;
}
#endif