User:Antigng-bot/unreferenced

维基百科,自由的百科全书
#include <stdio.h>
#include <string.h>
#include <process.h>
#include <windows.h>
#include "mem.h"
#include "network.h"
#include "struct.h"
#include "convert.h"
#include "auth.h"
#include "wikitemplate.h"
struct problemlist
{
	int pageid;
	struct problemlist *next;
};
struct neditargv
{
	HTTP newtext;
	const char *time;
	const char *id;
};
int threadc[1024];
char *threads[1024];
HANDLE threadpool[1024];
SRWLOCK rwcs;
CRITICAL_SECTION tcs;
CRITICAL_SECTION hcs;
int threadnumber=0;
unsigned char action=0;
struct problemlist *pbl=0;
const char *username=NULL;
const char *passwd=NULL;
const char *searchstring=NULL;
const char *ns=NULL;
int maxthread=256;
int doallpage=0;
int dodefault=0;
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\"), \"-d\" 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'||argv[cur_arg][1]=='d'))
		{
			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;
			case 'd':
				dodefault=1;
				err|=0x4;
				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];
	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);
	}while(next);
	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;
}
struct hashlist *source_temp=NULL;
const char *zh_temp_hans=NULL;
const char *zh_temp_hant=NULL;
const char *zh_quote_left=NULL;
const char *zh_quote_right=NULL;
const char *zh_colon=NULL;
static void ini_marks()
{
	source_temp=hashini();
	/*unreferenced*/
	str_hashadd(source_temp,"unreferenced",NULL);
	str_hashadd(source_temp,"reference",NULL);
	str_hashadd(source_temp,"noreferences",NULL);
	str_hashadd(source_temp,"unref",NULL);
	str_hashadd(source_temp,"noref",NULL);
	str_hashadd(source_temp,"unreference",NULL);
	str_hashadd(source_temp,"noreference",NULL);
	str_hashadd(source_temp,"no reference",NULL);
	str_hashadd(source_temp,"no references",NULL);
	str_hashadd(source_temp,G2U("缺少來源的條目"),NULL);
	str_hashadd(source_temp,G2U("來源"),NULL);
	str_hashadd(source_temp,G2U("沒有來源"),NULL);
	str_hashadd(source_temp,G2U("無來源"),NULL);
	str_hashadd(source_temp,G2U("沒來源"),NULL);
	str_hashadd(source_temp,G2U("缺來源"),NULL);
	str_hashadd(source_temp,G2U("缺乏來源"),NULL);
	str_hashadd(source_temp,G2U("缺少來源"),NULL);
	str_hashadd(source_temp,G2U("缺少来源的条目"),NULL);
	str_hashadd(source_temp,G2U("来源"),NULL);
	str_hashadd(source_temp,G2U("沒有来源"),NULL);
	str_hashadd(source_temp,G2U("无来源"),NULL);
	str_hashadd(source_temp,G2U("沒来源"),NULL);
	str_hashadd(source_temp,G2U("缺来源"),NULL);
	str_hashadd(source_temp,G2U("缺乏来源"),NULL);
	str_hashadd(source_temp,G2U("缺少来源"),NULL);
	/*blp unsourced*/
	str_hashadd(source_temp,"blpunsourced",NULL);
	str_hashadd(source_temp,"blp unsourced",NULL);
	str_hashadd(source_temp,G2U("生者傳記來源"),NULL);
	str_hashadd(source_temp,G2U("生者传记来源"),NULL);
	str_hashadd(source_temp,"no footnotes",NULL);
	str_hashadd(source_temp,"nofootnotes",NULL);
	str_hashadd(source_temp,G2U("缺乏註腳"),NULL);
	str_hashadd(source_temp,G2U("缺乏腳註"),NULL);
	str_hashadd(source_temp,G2U("缺少腳註"),NULL);
	str_hashadd(source_temp,G2U("缺乏注脚"),NULL);
	str_hashadd(source_temp,G2U("缺乏脚注"),NULL);
	str_hashadd(source_temp,G2U("缺少脚注"),NULL);
	str_hashadd(source_temp,"inline",NULL);
	zh_temp_hans=G2U("模板");
	zh_quote_left=G2U("《");
	zh_quote_right=G2U("》");
	zh_temp_hant=G2U("様板");
	zh_colon=G2U(":");
	return;
}
static int checktype(const char *name)
{
	char *fixed_name=(char *)s_calloc(sizeof(char)*8192,1);
	char *ptoquery=fixed_name;
	void *p;
	int res=0;
	fix_name(name,fixed_name);
	if(!strncmp(fixed_name,"template:",9)) ptoquery+=9;
	else if(!strncmp(fixed_name,zh_temp_hans,7)||!strncmp(fixed_name,zh_temp_hant,7)) ptoquery+=7;
	res=str_hashquery(source_temp,ptoquery,&p);
	s_free(fixed_name);
	return res;
}
static int outputtemp(struct _templatehead *temp, HTTP newtext,int flag)
{
	int count=0;
	char ch=0;
	int ret_value=0;
	int res=0;
	struct _template *cur_content,*pre_content;
	struct _value *pre_value,*cur_value;
	if(!flag)
	{
		if(!temp->rot&&checktype(temp->tempname))
		{
			flag=1;
			ret_value=1;
		}
	}
	if(!flag)
	{
		smartURLEncode('{',newtext);
		smartURLEncode('{',newtext);
	}
	while(ch=(temp->tempname[count]))
	{
		if(!flag) smartURLEncode(ch,newtext);
		count++;
	}
	if(temp->content)
	{
		cur_content=temp->content;
		while(cur_content)
		{
			if(!flag) smartURLEncode('|',newtext);
			if(cur_content->name)
			{
				cur_value=cur_content->name;
				while(cur_value)
				{
					if(cur_value->type)
					{
						res=outputtemp(cur_value->elem.temp,newtext,flag);
						if(res) ret_value=2;
					}
					else
					{
						for(count=0;ch=cur_value->elem.ch[count];count++)
						{
							if(!flag) 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;
				if(!flag) smartURLEncode('=',newtext);
				while(cur_value)
				{
					if(cur_value->type)
					{
						res=outputtemp(cur_value->elem.temp,newtext,flag);
						if(res) ret_value=2;
					}
					else
					{
						for(count=0;ch=cur_value->elem.ch[count];count++)
						{
							if(!flag) 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&&!flag)
	{
		smartURLEncode('}',newtext);
		smartURLEncode('}',newtext);
	}
	s_free(temp);
	return ret_value;
}
static int pagecheck(const char *pageid,const char *basetime,HTTP txt)
{
	HTTP newtext;
	char ch=0,cht='\n';
	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;
	int hascite=0;
	int res=0;
	char citebuffer[8192]={0};
	int citepos=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);
				cht=ch;
				if(!pstate.commentstate&&(ch!=' ')&&(ch!='\r')&&(ch!='\t')&&(ch!='\n')) state=3;
			}
			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;
				}
				res=outputtemp(temp,newtext,0);
				if(res==0)
				{
					state=0;
				}
				else if(res==1)
				{
					todo=1;
					if(cht=='\n') state=2;
					else state=0;
				}
				else if(res==2)
				{
					todo=1;
					state=0;
				}
				cht='}';
			}
			else
			{
				smartURLEncode('{',newtext);
				smartURLEncode(ch,newtext);
				cht=ch;
				if(!pstate.commentstate&&(ch!=' ')&&(ch!='\r')&&(ch!='\t')&&(ch!='\n')) state=3;
				else state=0;
			}
			break;
		case 2:
			if((ch=='{')&&!nowiki&&!comment&&!link)
			{
				state=1;
			}
			else
			{
				if((ch!=' ')&&(ch!='\r')&&(ch!='\t')&&(ch!='\n'))
				{
					smartURLEncode(ch,newtext);
					if(!pstate.commentstate) state=3;
					else state=0;
				}
				cht=ch;
			}
			break;
		case 3:
			if(todo&&ref&&!hascite)
			{
				citepos=0;
				citebuffer[0]=(ch>='A'&&ch<='Z')?ch+'a'-'A':ch;
				state=4;
			}
			smartURLEncode(ch,newtext);
			break;
		case 4:
			if(!ref)
			{
				citebuffer[citepos]=0;
				if(strstr(citebuffer,"[http")||strstr(citebuffer,"cite")||strstr(citebuffer,"isbn ")||strstr(citebuffer,"issn "))
				{
					hascite=1;
				}
				/*
				else
				{
					char *pos1=strstr(citebuffer,zh_quote_left);
					char *pos2=strstr(citebuffer,zh_quote_right);
					char *pos3=strstr(citebuffer,zh_colon);
					char *pos4=strstr(citebuffer,":");
					if((pos1>0)&&(pos2>pos1)&&((pos3>pos2)))
					{
						hascite=1;
					}
				}*/
				state=3;
			}
			else if(citepos>4096)
			{
				state=5;
			}
			else citebuffer[citepos++]=(ch>='A'&&ch<='Z')?ch+'a'-'A':ch;
			smartURLEncode(ch,newtext);
			break;
		case 5:
			if(!ref) state=3;
			smartURLEncode(ch,newtext);
			break;
		}
	}
	parsestatefinal(&pstate,&nowiki,&comment,&link,&ref);
	if(xmlpulltext(txt,&ch)!=XML_TEXT_END) todo=0;
	if(comment||nowiki||link||rot||ref)
	{
		/*
		do something
		*/
	}
	else if(todo&&hascite)
	{
		struct neditargv point;
		point.newtext=newtext;
		point.id=pageid;
		point.time=basetime;
		smartedit(&point,"bot: remove useless unreferenced, blpunsourced, nofootnotes template NG","unreferenced template removed");
	}
	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 i=*(int *)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=(count==0?1:2);
				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;
}
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 -d defaultsearch -n namespace]\n");
		return -1;
	}
	InitializeSRWLock(&rwcs);
	InitializeCriticalSection(&tcs);
	InitializeCriticalSection(&hcs);
	buckini(20);
	ini_marks();
	if(login(username,passwd))
	{
		printf("Login error!\n");
		return -2;
	}
	hastoken=0;
	printf("Login complete.\n");
	fflush(stdout);
	ini_marks();
	tk_thread=(HANDLE)_beginthread(tokenmanage,0,0);
	if(doallpage)
	{
		allpagequery(ns);
	}
	else if(dodefault)
	{
		query("insource:/\\<\\/ref\\>/ hastemplate:Unreferenced","0");
		query("insource:/\\<\\/ref\\>/ hastemplate:BLP_unsourced","0");
		query("insource:/\\<\\/ref\\>/ hastemplate:No_footnotes","0");
	}
	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;
}