diff options
Diffstat (limited to 'ext/mnogosearch')
-rw-r--r-- | ext/mnogosearch/CREDITS | 2 | ||||
-rw-r--r-- | ext/mnogosearch/README | 11 | ||||
-rw-r--r-- | ext/mnogosearch/config.m4 | 54 | ||||
-rw-r--r-- | ext/mnogosearch/index.php | 1037 | ||||
-rw-r--r-- | ext/mnogosearch/php_mnogo.c | 2114 | ||||
-rw-r--r-- | ext/mnogosearch/php_mnogo.h | 107 |
6 files changed, 0 insertions, 3325 deletions
diff --git a/ext/mnogosearch/CREDITS b/ext/mnogosearch/CREDITS deleted file mode 100644 index 93dada0a4f..0000000000 --- a/ext/mnogosearch/CREDITS +++ /dev/null @@ -1,2 +0,0 @@ -mnoGoSearch -Alex Barkov, Ramil Kalimullin, Sergey Kartashoff diff --git a/ext/mnogosearch/README b/ext/mnogosearch/README deleted file mode 100644 index 8151c949f7..0000000000 --- a/ext/mnogosearch/README +++ /dev/null @@ -1,11 +0,0 @@ -$Source$ -$Id$ - -mnoGoSearch extension module for PHP4. - -For details please refer to http://www.mnogosearch.org/ - -If used with mysql you should not use bundled mysql library -in the php distribution. You should use native mysql -library. To do this you should compile php with specefying mysql-dir -(for example --with-mysql=/usr, not --with-mysql). diff --git a/ext/mnogosearch/config.m4 b/ext/mnogosearch/config.m4 deleted file mode 100644 index d029412440..0000000000 --- a/ext/mnogosearch/config.m4 +++ /dev/null @@ -1,54 +0,0 @@ -dnl -dnl $Source$ -dnl $Id$ -dnl - -PHP_ARG_WITH(mnogosearch,for mnoGoSearch support, -[ --with-mnogosearch[=DIR] - Include mnoGoSearch support. DIR is the mnoGoSearch - base install directory, defaults to - /usr/local/mnogosearch.]) - - if test "$PHP_MNOGOSEARCH" != "no"; then - - if test "$PHP_MNOGOSEARCH" = "yes"; then - MNOGOSEARCH_BINDIR=/usr/local/mnogosearch/bin - MNOGOSEARCH_INCDIR=/usr/local/mnogosearch/include - MNOGOSEARCH_LIBDIR=/usr/local/mnogosearch/lib - else - MNOGOSEARCH_BINDIR=$PHP_MNOGOSEARCH/bin - MNOGOSEARCH_INCDIR=$PHP_MNOGOSEARCH/include - MNOGOSEARCH_LIBDIR=$PHP_MNOGOSEARCH/lib - fi - - AC_MSG_CHECKING(for mnoGoSearch version) - - if test -x "$MNOGOSEARCH_BINDIR/udm-config"; then - MNOGOSEARCH_VERSION=`$MNOGOSEARCH_BINDIR/udm-config --version` - MNOGOSEARCH_VERSION_ID=`$MNOGOSEARCH_BINDIR/udm-config --version-id` - - if test $? -ne 0; then - AC_MSG_RESULT(<= 3.1.9) - AC_MSG_ERROR(mnoGoSearch 3.1.10 at least required) - fi - - if test "$MNOGOSEARCH_VERSION_ID" -lt 30110; then - AC_MSG_RESULT(<= 3.1.9) - AC_MSG_ERROR(mnoGoSearch 3.1.10 at least required) - fi - - AC_MSG_RESULT($MNOGOSEARCH_VERSION) - - PHP_EVAL_LIBLINE(`$MNOGOSEARCH_BINDIR/udm-config --libs`, MNOGOSEARCH_SHARED_LIBADD) - else - AC_MSG_ERROR(udm-config script not found in $MNOGOSEARCH_BINDIR) - fi - - PHP_ADD_INCLUDE($MNOGOSEARCH_INCDIR) - - AC_DEFINE(HAVE_MNOGOSEARCH,1,[ ]) - - PHP_SUBST(MNOGOSEARCH_SHARED_LIBADD) - PHP_NEW_EXTENSION(mnogosearch, php_mnogo.c, $ext_shared) - - fi diff --git a/ext/mnogosearch/index.php b/ext/mnogosearch/index.php deleted file mode 100644 index b7f5cb19c1..0000000000 --- a/ext/mnogosearch/index.php +++ /dev/null @@ -1,1037 +0,0 @@ -<? - -/* - $Source$ - $Id$ -*/ - -/* mnoGoSearch-php-lite v.1.3 - * for mnoGoSearch ( formely known as UdmSearch ) free web search engine - * (C) 2001-2002 by Sergey Kartashoff <gluke@mail.ru>, - * mnoGoSearch Developers Team <devel@mnogosearch.org> - */ - -if (!extension_loaded('mnogosearch')) { - print "<b>This script requires PHP4.0.5+ with mnoGoSearch extension</b>"; - exit; -} - -// maximal page number to view -$MAX_NP=1000; - -// maximum results per page -$MAX_PS=100; - -// (optional) Enable autowild feature for url limits -// 'yes' - default value, can be 'yes' or 'no' -// $auto_wild='yes'; - -/* variables section */ - -if (Udm_Api_Version() >= 30204) { - $dbaddr='mysql://mnogo:mnogo@/mnogo/?dbmode=single'; -} else { - $dbaddr='mysql://mnogo:mnogo@/mnogo/'; - $dbmode='single'; -} - -$localcharset='koi8-r'; -$browsercharset='utf-8'; -$phrase=$cache=$crosswords='no'; -$ispelluseprefixes=$trackquery='no'; -$spell_host=$vardir=$datadir=''; -$ispellmode='text'; - -$affix_file=array(); -$spell_file=array(); -$stopwordtable_arr=array(); -$stopwordfile_arr=array(); -$synonym_arr=array(); -$searchd_arr=array(); - -// $affix_file['en']='/opt/udm/ispell/en.aff'; -// $affix_file['ru']='/opt/udm/ispell/ru.aff'; -// $spell_file['en']='/opt/udm/ispell/en.dict'; -// $spell_file['ru']='/opt/udm/ispell/ru.dict'; - $stopwordtable_arr[]='stopword'; -// $stopwordfile_arr[]='stopwords.txt'; -// $synonym_arr[]='/opt/udm/synonym/english.syn'; -$searchd_arr[]='localhost'; - -$minwordlength=1; -$maxwordlength=32; - -$storedocurl="/cgi-bin/storedoc.cgi"; - -/* initialisation section */ - -if(isset($HTTP_GET_VARS)){ - while(list($var, $val)=each($HTTP_GET_VARS)){ - $$var=$val; - } -} -if(isset($HTTP_POST_VARS)){ - while(list($var, $val)=each($HTTP_POST_VARS)){ - $$var=$val; - } -} -if(isset($HTTP_COOKIE_VARS)){ - while(list($var, $val)=each($HTTP_COOKIE_VARS)){ - $$var=$val; - } -} -if(isset($HTTP_SERVER_VARS)){ - while(list($var, $val)=each($HTTP_SERVER_VARS)){ - $$var=$val; - } -} - -$self=$PHP_SELF; - -if ($ps=="") $ps=20; -if ($np=="") $np=0; -if ($o=="") $o=0; - -if (($dt!='back') && ($dt!='er') && ($dt!='range')) $dt='back'; -if ($dp=="") $dp=0; -if (($dx!=0) && ($dx!=-1) && ($dx!=1)) $dx=0; -if ($dy<1970) $dy=1970; -if (($dm<0) || ($dm>11)) $dm=0; -if (($dd<=0) || ($dd>31)) $dd="01"; - -$db=urldecode($db); -$de=urldecode($de); - -if ($db=="") $db='01/01/1970'; -if ($de=="") $de='31/12/2020'; - -$storedaddr="localhost"; -$storedocurl='/cgi-bin/storedoc.cgi'; - -if (isset($q)) { - $q=urldecode($q); - $have_query_flag=1; -} else { - $have_query_flag=0; -} - -$ul=urldecode($ul); -$tag=urldecode($t); -$lang=urldecode($lang); - -$query_orig=$q; - -if (isset($CHARSET_SAVED_QUERY_STRING)) { - $q_local=urldecode($CHARSET_SAVED_QUERY_STRING); - if (preg_match('/q=([^&]*)\&/',$q_local,$param)) { - $q_local=urlencode($param[1]); - } elseif (preg_match('/q=(.*)$/',$q_local,$param)) { - $q_local=urlencode($param[1]); - } else { - $q_local=urlencode($q); - } -} else { - $q_local=urlencode($q); -} - -$ul_local=urlencode($ul); -$t_local=urlencode($tag); -$db_local=urlencode($db); -$de_local=urlencode($de); -$lang_local=urlencode($lang); - -if (($MAX_NP > 0) && ($np>$MAX_NP)) $np=$MAX_NP; -if (($MAX_PS > 0) && ($ps>$MAX_PS)) $ps=$MAX_PS; - -// ----------------------------------------------- -// print_bottom() -// ----------------------------------------------- -function print_bottom(){ - print ("<HR><center><img src=\"http://mnogosearch.org/img/mnogo.gif\">\n"); - print ("<font size=\"-1\">Powered by <a href=\"http://mnogosearch.org/\">mnoGoSearch</a></font><br>\n"); - print ("<p></BODY></HTML>\n"); -} - - -// ----------------------------------------------- -// print_error_local($str) -// ----------------------------------------------- -function print_error_local($str){ - print ("<CENTER><FONT COLOR=\"#FF0000\">An error occured!</FONT>\n"); - print ("<P><B>$str</B></CENTER>\n"); - print_bottom(); - exit; -} - -// ----------------------------------------------- -// exit_local() -// ----------------------------------------------- -function exit_local($print_err = 1) { - drop_temp_table($print_err); - exit; -} - -// ----------------------------------------------- -// format_lastmod($lastmod) -// ----------------------------------------------- -function format_lastmod($lastmod) { - $temp=$lastmod; - if (!$temp) $temp = 'undefined'; - else $temp = strftime('%a, %d %b %Y %H:%M:%S %Z',$temp); - - return $temp; -} - -// ----------------------------------------------- -// format_dp($dp) -// ----------------------------------------------- -function format_dp($dp) { - $result=0; - - while ($dp != '') { - if (preg_match('/^([\-\+]?\d+)([sMhdmy]?)/',$dp,$param)) { - switch ($param[2]) { - case 's': $multiplier=1; break; - case 'M': $multiplier=60; break; - case 'h': $multiplier=3600; break; - case 'd': $multiplier=3600*24; break; - case 'm': $multiplier=3600*24*31; break; - case 'y': $multiplier=3600*24*365; break; - default: $multiplier=1; - } - - $result += $param[1]*$multiplier; - $dp=preg_replace("/^[\-\+]?\d+$param[2]/",'',$dp); - } else { - return 0; - } - } - - return $result; -} - -// ----------------------------------------------- -// format_userdate($date) -// ----------------------------------------------- -function format_userdate($date) { - $result=0; - - if (preg_match('/^(\d+)\/(\d+)\/(\d+)$/',$date,$param)) { - $day=$param[1]; - $mon=$param[2]; - $year=$param[3]; - - $result=mktime(0,0,0,$mon,$day,$year); - } - - return $result; -} - -// ----------------------------------------------- -// ParseDocText($text) -// ----------------------------------------------- -function ParseDocText($text){ - global $all_words; - global $hlbeg, $hlend; - - $str=$text; - - if (Udm_Api_Version() < 30200) { - for ($i=0; $i<count($all_words); $i++) { - $word=$all_words[$i]; - $str = preg_replace("/([\s\t\r\n\~\!\@\#\$\%\^\&\*\(\)\-\_\=\+\\\|\{\}\[\]\;\:\'\"\<\>\?\/\,\.]+)($word)/i","\\1$hlbeg\\2$hlend",$str); - $str = preg_replace("/^($word)/i","$hlbeg\\1$hlend",$str); - } - } else { - $str = str_replace("\2",$hlbeg,$str); - $str = str_replace("\3",$hlend,$str); - } - - return $str; -} - -// ----------------------------------------------- -// print_template($t,$echo=1) -// ----------------------------------------------- -function print_template($t,$echo=1){ - global $templates, $udm_agent; - global $first_doc, $last_doc, $found, $query_orig, $error, $self; - global $nav, $wordinfo; - global $url, $ue, $o, $cat; - global $clones, $searchtime; - global $title, $rating, $desc, $contype, $lastmod, $docsize, $ndoc; - global $keyw, $text, $category; - global $crc, $Randoms, $rec_id, $DEBUG; - global $lang_url_translation, $phpver; - - - $str=$templates["$t"][$o]; - if ($str == '') $str=$templates["$t"][0]; - - $str=ereg_replace('\$f', "$first_doc", $str); - $str=ereg_replace('\$l', "$last_doc", $str); - $str=ereg_replace('\$t', "$found", $str); - $str=ereg_replace('\$A', $self, $str); - - $str=ereg_replace('\$Q', HtmlSpecialChars(StripSlashes($query_orig)), $str); - $str=ereg_replace('\$q', urlencode($query_orig), $str); - $str=eregi_replace('\$UE', $ue, $str); - - $str=ereg_replace('\$E', $error, $str); - $str=ereg_replace('\$W', $wordinfo, $str); - - $str=ereg_replace('\$V', $nav, $str); - - if ($lang_url_translation == 'yes') { - $nolangurl = ereg_replace("\.[a-z]{2}\.[a-z]{2,4}$", "", $url); - $str=ereg_replace('\$DU', $nolangurl, $str); - } else { - $str=ereg_replace('\$DU', $url, $str); - } - - $str=ereg_replace('\$DT', $title, $str); - $str=ereg_replace('\$DR', "$rating", $str); - $str=ereg_replace('\$DX', $text, $str); - $str=ereg_replace('\$DE', ($desc != '')?$desc:$text, $str); - $str=ereg_replace('\$DC', $contype, $str); - $str=ereg_replace('\$DM', $lastmod, $str); - $str=ereg_replace('\$DS', "$docsize", $str); - $str=ereg_replace('\$DN', "$ndoc", $str); - $str=ereg_replace('\$DD', $desc, $str); - $str=ereg_replace('\$DK', $keyw, $str); - $str=ereg_replace('\$SearchTime', "$searchtime", $str); - - if ($phpver >= 40006) { - if (ereg('\$CP',$str)) { - if ($temp_cp_arr=Udm_Cat_Path($udm_agent,$cat)) { - reset($temp_cp_arr); - $temp_cp=''; - for ($i=0; $i<count($temp_cp_arr); $i+=2) { - $cp_path=$temp_cp_arr[$i]; - $cp_name=$temp_cp_arr[$i+1]; - $temp_cp .= " > <a href=\"$PHP_SELF?cat=$cp_path\">$cp_name</a> "; - } - $str=ereg_replace('\$CP', $temp_cp, $str); - } else $str=ereg_replace('\$CP', '', $str); - } - - if (ereg('\$CS',$str)) { - if ($temp_cp_arr=Udm_Cat_List($udm_agent,$cat)) { - reset($temp_cp_arr); - $temp_cp=''; - for ($i=0; $i<count($temp_cp_arr); $i+=2) { - $cp_path=$temp_cp_arr[$i]; - $cp_name=$temp_cp_arr[$i+1]; - $temp_cp .= "<a href=\"$PHP_SELF?cat=$cp_path\">$cp_name</a><br>"; - } - $str=ereg_replace('\$CS', $temp_cp, $str); - } else $str=ereg_replace('\$CS', '', $str); - } - - if (ereg('\$DY',$str)) { - if ($temp_cp_arr=Udm_Cat_Path($udm_agent,$category)) { - reset($temp_cp_arr); - $temp_cp=''; - for ($i=0; $i<count($temp_cp_arr); $i+=2) { - $cp_path=$temp_cp_arr[$i]; - $cp_name=$temp_cp_arr[$i+1]; - $temp_cp .= " > <a href=\"$PHP_SELF?cat=$cp_path\">$cp_name</a> "; - } - $str=ereg_replace('\$DY', $temp_cp, $str); - } else $str=ereg_replace('\$DY', '', $str); - } - } else { - $str=ereg_replace('\$CP', '', $str); - $str=ereg_replace('\$CS', '', $str); - $str=ereg_replace('\$DY', '', $str); - } - - $sub=$str; - while($sub=strstr($sub,'$r')){ - $sub=substr($sub,2); - $pos=0; - $num=''; - - while(($sub[$pos]>='0')&&($sub[$pos]<='9')){ - $num.=$sub[$pos++]; - } - - $str=ereg_replace('\$r'.$num, ''.$Randoms[$num], $str); - } - -// if (strstr($str,'$CL')&&($t=='res')) { -// if (strtolower($clones) == 'no') { -// $str=ereg_replace('\$CL', '', $str); -// } elseif ($crc<>'') { -// } - $str=ereg_replace('\$CL', $clon, $str); -// } - - if($echo) echo $str; else return $str; -} - -// ----------------------------------------------- -// make_nav($query_orig) -// ----------------------------------------------- -function make_nav($query_orig){ - global $found,$np,$isnext,$ps,$tag,$ul,$self,$o,$m,$cat; - global $dt, $dp, $dx, $dm, $dy, $dd, $db, $de, $lang, $wm, $wf; - global $q_local,$ul_local,$t_local,$db_local,$de_local,$lang_local; - - if($np>0){ - $prevp=$np-1; - $prev_href="$self?q=$q_local&np=$prevp&m=$m". - ($ps==20?'':"&ps=$ps"). - ($tag==''?'':"&t=$t_local"). - ($ul==''?'':"&ul=$ul_local"). - ($wm==''?'':"&wm=$wm"). - ($wf==''?'':"&wf=$wf"). - (!$o?'':"&o=$o"). - ($dt=='back'?'':"&dt=$dt"). - (!$dp?'':"&dp=$dp"). - (!$dx?'':"&dx=$dx"). - ($dd=='01'?'':"&dd=$dd"). - (!$dm?'':"&dm=$dm"). - ($dy=='1970'?'':"&dy=$dy"). - ($db=='01/01/1970'?'':"&db=$db_local"). - ($de=='31/12/2020'?'':"&de=$de_local"). - ($cat==''?'':"&cat=$cat"). - ($lang==''?'':"&lang=$lang_local"); - - $nav_left="<TD><A HREF=\"$prev_href\">Prev</A></TD>\n"; - } elseif ($np==0) { - $nav_left="<TD><FONT COLOR=\"#707070\">Prev</FONT></TD>\n"; - } - - if($isnext==1) { - $nextp=$np+1; - $next_href="$self?q=$q_local&np=$nextp&m=$m". - ($ps==20?'':"&ps=$ps"). - ($tag==''?'':"&t=$t_local"). - ($ul==''?'':"&ul=$ul_local"). - ($wm==''?'':"&wm=$wm"). - ($wf==''?'':"&wf=$wf"). - (!$o?'':"&o=$o"). - ($dt=='back'?'':"&dt=$dt"). - (!$dp?'':"&dp=$dp"). - (!$dx?'':"&dx=$dx"). - ($dd=='01'?'':"&dd=$dd"). - (!$dm?'':"&dm=$dm"). - ($dy=='1970'?'':"&dy=$dy"). - ($db=='01/01/1970'?'':"&db=$db_local"). - ($de=='31/12/2020'?'':"&de=$de_local"). - ($cat==''?'':"&cat=$cat"). - ($lang==''?'':"&lang=$lang_local"); - - $nav_right="<TD><A HREF=\"$next_href\">Next</TD>\n"; - } else { - $nav_right="<TD><FONT COLOR=\"#707070\">Next</FONT></TD>\n"; - } - - $nav_bar0='<TD>$NP</TD>'; - $nav_bar1='<TD><A HREF="$NH">$NP</A></TD>'; - - $tp=ceil($found/$ps); - - $cp=$np+1; - - if ($cp>5) { - $lp=$cp-5; - } else { - $lp=1; - } - - $rp=$lp+10-1; - if ($rp>$tp) { - $rp=$tp; - $lp=$rp-10+1; - if ($lp<1) $lp=1; - } - - - if ($lp!=$rp) { - for ($i=$lp; $i<=$rp;$i++) { - $realp=$i-1; - - if ($i==$cp) { - $nav_bar=$nav_bar.$nav_bar0; - } else { - $nav_bar=$nav_bar.$nav_bar1; - } - - $href="$self?q=$q_local&np=$realp&m=$m". - ($ps==20?'':"&ps=$ps"). - ($tag==''?'':"&t=$t_local"). - ($ul==''?'':"&ul=$ul_local"). - ($wm==''?'':"&wm=$wm"). - ($wf==''?'':"&wf=$wf"). - (!$o?'':"&o=$o"). - ($dt=='back'?'':"&dt=$dt"). - (!$dp?'':"&dp=$dp"). - (!$dx?'':"&dx=$dx"). - ($dd=='01'?'':"&dd=$dd"). - (!$dm?'':"&dm=$dm"). - ($dy=='1970'?'':"&dy=$dy"). - ($db=='01/01/1970'?'':"&db=$db_local"). - ($de=='31/12/2020'?'':"&de=$de_local"). - ($cat==''?'':"&cat=$cat"). - ($lang==''?'':"&lang=$lang_local"); - - $nav_bar=ereg_replace('\$NP',"$i",$nav_bar); - $nav_bar=ereg_replace('\$NH',"$href",$nav_bar); - } - - $nav="<TABLE BORDER=0><TR>$nav_left $nav_bar $nav_right</TR></TABLE>\n"; - } elseif ($found) { - $nav="<TABLE BORDER=0><TR>$nav_left $nav_right</TR></TABLE>\n"; - } - - return $nav; -} - -// ----------------------------------------------- -// M A I N -// ----------------------------------------------- - - if (preg_match("/^(\d+)\.(\d+)\.(\d+)/",phpversion(),$param)) { - $phpver=$param[1]; - if ($param[2] < 9) { - $phpver .= "0$param[2]"; - } else { - $phpver .= "$param[2]"; - } - if ($param[3] < 9) { - $phpver .= "0$param[3]"; - } else { - $phpver .= "$param[3]"; - } - } else { - print "Cannot determine php version: <b>".phpversion()."</b>\n"; - exit; - } - - $have_spell_flag=0; - - if (Udm_Api_Version() >= 30204) { - $udm_agent=Udm_Alloc_Agent($dbaddr); - } else { - $udm_agent=Udm_Alloc_Agent($dbaddr,$dbmode); - } - - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_PAGE_SIZE,$ps); - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_PAGE_NUM,$np); - - if ($phpver >= 40006) { - if ($temp_cp_arr=Udm_Cat_Path($udm_agent,$cat)) { - reset($temp_cp_arr); - $temp_cp=''; - for ($i=0; $i<count($temp_cp_arr); $i+=2) { - $cp_path=$temp_cp_arr[$i]; - $cp_name=$temp_cp_arr[$i+1]; - $temp_cp .= " > <a href=\"$PHP_SELF?cat=$cp_path\">$cp_name</a> "; - } - $t_CP=$temp_cp; - } - - if ($temp_cp_arr=Udm_Cat_List($udm_agent,$cat)) { - reset($temp_cp_arr); - $temp_cp=''; - for ($i=0; $i<count($temp_cp_arr); $i+=2) { - $cp_path=$temp_cp_arr[$i]; - $cp_name=$temp_cp_arr[$i+1]; - $temp_cp .= "<a href=\"$PHP_SELF?cat=$cp_path\">$cp_name</a><br>"; - } - $t_CS=$temp_cp; - } - - if ($temp_cp_arr=Udm_Cat_Path($udm_agent,$category)) { - reset($temp_cp_arr); - $temp_cp=''; - for ($i=0; $i<count($temp_cp_arr); $i+=2) { - $cp_path=$temp_cp_arr[$i]; - $cp_name=$temp_cp_arr[$i+1]; - $temp_cp .= " > <a href=\"$PHP_SELF?cat=$cp_path\">$cp_name</a> "; - } - $t_DY=$temp_cp; - } - } - - $trackquery=strtolower($trackquery); - if ($trackquery == 'yes') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_TRACK_MODE,UDM_TRACK_ENABLED); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_TRACK_MODE,UDM_TRACK_DISABLED); - } - - $phrase=strtolower($phrase); - if ($phrase == 'yes') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_PHRASE_MODE,UDM_PHRASE_ENABLED); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_PHRASE_MODE,UDM_PHRASE_DISABLED); - } - - $cache=strtolower($cache); - if ($cache == 'yes') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_CACHE_MODE,UDM_CACHE_ENABLED); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_CACHE_MODE,UDM_CACHE_DISABLED); - } - - $ispelluseprefixes=strtolower($ispelluseprefixes); - if ($ispelluseprefixes == 'yes') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_ISPELL_PREFIXES,UDM_PREFIXES_ENABLED); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_ISPELL_PREFIXES,UDM_PREFIXES_DISABLED); - } - - if (Udm_Api_Version() >= 30111) { - $crosswords=strtolower($crosswords); - if ($crosswords == 'yes') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_CROSS_WORDS,UDM_CROSS_WORDS_ENABLED); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_CROSS_WORDS,UDM_CROSS_WORDS_DISABLED); - } - } - - if ($localcharset != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_CHARSET,$localcharset); - } - - if (Udm_Api_Version() >= 30200) { - if ($localcharset == '') Udm_Set_Agent_Param($udm_agent,UDM_PARAM_CHARSET,'utf-8'); - if ($browsercharset != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_BROWSER_CHARSET,$browsercharset); - Header ("Content-Type: text/html; charset=$browsercharset"); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_BROWSER_CHARSET,'utf-8'); - Header ("Content-Type: text/html; charset=utf-8"); - } - if ($hlbeg != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_HLBEG,$hlbeg); - } else { - $hlbeg='<font color="000088"><b>'; - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_HLBEG,'<font color="000088"><b>'); - } - if ($hlend != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_HLEND,$hlend); - } else { - $hlend='</b></font>'; - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_HLEND,'</b></font>'); - } - } - - - for ($i=0; $i < count($stopwordtable_arr); $i++) { - if ($stopwordtable_arr[$i] != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_STOPTABLE,$stopwordtable_arr[$i]); - } - } - - for ($i=0; $i < count($stopwordfile_arr); $i++) { - if ($stopwordfile_arr[$i] != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_STOPFILE,$stopwordfile_arr[$i]); - } - } - - if (Udm_Api_Version() >= 30203) { - for ($i=0; $i < count($synonym_arr); $i++) { - if ($synonym_arr[$i] != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SYNONYM,$synonym_arr[$i]); - } - } - - for ($i=0; $i < count($searchd_arr); $i++) { - if ($searchd_arr[$i] != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCHD,$searchd_arr[$i]); - } - } - - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_QSTRING,$QUERY_STRING); - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_REMOTE_ADDR,$REMOTE_ADDR); - } - - if (Udm_Api_Version() >= 30204) { - if ($have_query_flag)Udm_Set_Agent_Param($udm_agent,UDM_PARAM_QUERY,$query_orig); - } - - if ($m=='any') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCH_MODE,UDM_MODE_ANY); - } elseif ($m=='all') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCH_MODE,UDM_MODE_ALL); - } elseif ($m=='bool') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCH_MODE,UDM_MODE_BOOL); - } elseif ($m=='phrase') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCH_MODE,UDM_MODE_PHRASE); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_SEARCH_MODE,UDM_MODE_ALL); - } - - if ($wm=='wrd') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_WORD_MATCH,UDM_MATCH_WORD); - } elseif ($wm=='beg') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_WORD_MATCH,UDM_MATCH_BEGIN); - } elseif ($wm=='end') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_WORD_MATCH,UDM_MATCH_END); - } elseif ($wm=='sub') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_WORD_MATCH,UDM_MATCH_SUBSTR); - } else { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_WORD_MATCH,UDM_MATCH_WORD); - } - - if ($minwordlength >= 0) { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_MIN_WORD_LEN,$minwordlength); - } - - if ($maxwordlength >= 0) { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_MAX_WORD_LEN,$maxwordlength); - } - - if ($phpver >= 40007) { - if ($vardir != '') Udm_Set_Agent_Param($udm_agent,UDM_PARAM_VARDIR,$vardir); - if ($datadir != '') Udm_Set_Agent_Param($udm_agent,UDM_PARAM_VARDIR,$datadir); - } - - if ($wf != '') { - Udm_Set_Agent_Param($udm_agent,UDM_PARAM_WEIGHT_FACTOR,$wf); - } - - if ($ul != '') { - $auto_wild=strtolower($auto_wild); - if (($auto_wild == 'yes') || - ($auto_wild == '')) { - if ((substr($ul,0,7) == 'http://') || - (substr($ul,0,8) == 'https://') || - (substr($ul,0,7) == 'news://') || - (substr($ul,0,6) == 'ftp://')) { - Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_URL,"$ul%"); - } else { - Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_URL,"%$ul%"); - } - } else { - Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_URL,$ul); - } - } - - if ($tag != '') Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_TAG,$tag); - if ($cat != '') Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_CAT,$cat); - if ($lang != '')Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_LANG,$lang); - - if (($dt == 'back') && ($dp != '0')) { - $recent_time=format_dp($dp); - if ($recent_time != 0) { - $dl=time()-$recent_time; - Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_DATE,">$dl"); - } - } elseif ($dt=='er') { - $recent_time=mktime(0,0,0,($dm+1),$dd,$dy); - if ($dx == -1) { - Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_DATE,"<$recent_time"); - } elseif ($dx == 1) { - Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_DATE,">$recent_time"); - } - } elseif ($dt=='range') { - $begin_time=format_userdate($db); - if ($begin_time) Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_DATE,">$begin_time"); - - $end_time=format_userdate($de); - if ($end_time) Udm_Add_Search_Limit($udm_agent,UDM_LIMIT_DATE,"<$end_time"); - } - -// if ($have_query_flag) $q=ParseQ($q); - -?> - -<HTML> -<HEAD> - <TITLE>mnoGoSearch: <? echo HtmlSpecialChars(StripSlashes($query_orig)); ?></TITLE> -</HEAD> - -<body BGCOLOR="#FFFFFF" LINK="#0050A0" VLINK="#0050A0" ALINK="#0050A0"> -<center> - -<FORM METHOD=GET ACTION="<? echo $self; ?>"> -<table bgcolor=#eeeee0 border=0 width=100%> -<tr><td> -<BR> -<INPUT TYPE="hidden" NAME="ps" VALUE="10"> -Search for: <INPUT TYPE="text" NAME="q" SIZE=50 VALUE="<? echo HtmlSpecialChars(StripSlashes($query_orig)); ?>"> -<INPUT TYPE="submit" VALUE="Search!"><BR> - -Results per page: -<SELECT NAME="ps"> -<OPTION VALUE="10" <? if ($ps==10) echo 'SELECTED';?>>10 -<OPTION VALUE="20" <? if ($ps==20) echo 'SELECTED';?>>20 -<OPTION VALUE="50" <? if ($ps==50) echo 'SELECTED';?>>50 -</SELECT> - -Match: -<SELECT NAME="m"> -<OPTION VALUE="all" <? if ($m=='all') echo 'SELECTED';?>>All -<OPTION VALUE="any" <? if ($m=='any') echo 'SELECTED';?>>Any -<OPTION VALUE="bool" <? if ($m=='bool') echo 'SELECTED';?>>Boolean -<OPTION VALUE="phrase" <? if ($m=='phrase') echo 'SELECTED';?>>Full phrase -</SELECT> - - -Search for: -<SELECT NAME="wm"> -<OPTION VALUE="wrd" <? if ($wm=='wrd') echo 'SELECTED';?>>Whole word -<OPTION VALUE="beg" <? if ($wm=='beg') echo 'SELECTED';?>>Beginning -<OPTION VALUE="end" <? if ($wm=='end') echo 'SELECTED';?>>Ending -<OPTION VALUE="sub" <? if ($wm=='sub') echo 'SELECTED';?>>Substring -</SELECT> - -<br> - -Search through: -<SELECT NAME="ul"> -<OPTION VALUE="" <? if ($ul=='') echo 'SELECTED';?>>Entire site -<OPTION VALUE="/docs/" <? if ($ul=='/docs/') echo 'SELECTED';?>>Docs -<OPTION VALUE="/files/" <? if ($ul=='/files') echo 'SELECTED';?>>Files -<OPTION VALUE="/servers/" <? if ($ul=='/servers/') echo 'SELECTED';?>>Servers -</SELECT> - -in: -<SELECT NAME="wf"> -<OPTION VALUE="222211" <? if ($wf=='222211') echo 'SELECTED';?>>all sections -<OPTION VALUE="220000" <? if ($wf=='220000') echo 'SELECTED';?>>Description -<OPTION VALUE="202000" <? if ($wf=='202000') echo 'SELECTED';?>>Keywords -<OPTION VALUE="200200" <? if ($wf=='200200') echo 'SELECTED';?>>Title -<OPTION VALUE="200010" <? if ($wf=='200010') echo 'SELECTED';?>>Body -</SELECT> - -Language: -<SELECT NAME="lang"> -<OPTION VALUE="" <? if ($lang=='222211') echo 'SELECTED';?>>Any -<OPTION VALUE="en" <? if ($lang=='en') echo 'SELECTED';?>>English -<OPTION VALUE="ru" <? if ($lang=='ru') echo 'SELECTED';?>>Russian -</SELECT> - -Restrict search: -<SELECT NAME="t"> -<OPTION VALUE="" <? if ($t=='') echo 'SELECTED';?>>All sites -<OPTION VALUE="AA" <? if ($t=='AA') echo 'SELECTED';?>>Sport -<OPTION VALUE="BB" <? if ($t=='BB') echo 'SELECTED';?>>Shopping -<OPTION VALUE="CC" <? if ($t=='CC') echo 'SELECTED';?>>Internet -</SELECT> - -</td></tr> - -<!-- 'search with time limits' options --> -<TR><TD> -<TABLE CELLPADDING=2 CELLSPACING=0 BORDER=0> -<CAPTION> -Limit results to pages published within a specified period of time.<BR> -<FONT SIZE=-1><I>(Please select only one option)</I></FONT> -</CAPTION> -<TR> -<TD VALIGN=center><INPUT TYPE=radio NAME="dt" VALUE="back" <? if ($dt=='back') echo 'checked';?>></TD> -<TD><SELECT NAME="dp"> -<OPTION VALUE="0" <? if ($dp=='0') echo 'SELECTED';?>>anytime -<OPTION VALUE="10M" <? if ($dp=='10M') echo 'SELECTED';?>>in the last ten minutes -<OPTION VALUE="1h" <? if ($dp=='1h') echo 'SELECTED';?>>in the last hour -<OPTION VALUE="7d" <? if ($dp=='7d') echo 'SELECTED';?>>in the last week -<OPTION VALUE="14d" <? if ($dp=='14d') echo 'SELECTED';?>>in the last 2 weeks -<OPTION VALUE="1m" <? if ($dp=='1m') echo 'SELECTED';?>>in the last month -</SELECT> -</TD> -</TR> -<TR> -<TD VALIGN=center><INPUT type=radio NAME="dt" VALUE="er" <? if ($dt=='er') echo 'checked';?>> -</TD> -<TD><SELECT NAME="dx"> -<OPTION VALUE="1" <? if ($dx=='1') echo 'SELECTED';?>>After -<OPTION VALUE="-1" <? if ($dx=='-1') echo 'SELECTED';?>>Before -</SELECT> - -or on - -<SELECT NAME="dm"> -<OPTION VALUE="0" <? if ($dm=='0') echo 'SELECTED';?>>January -<OPTION VALUE="1" <? if ($dm=='1') echo 'SELECTED';?>>February -<OPTION VALUE="2" <? if ($dm=='2') echo 'SELECTED';?>>March -<OPTION VALUE="3" <? if ($dm=='3') echo 'SELECTED';?>>April -<OPTION VALUE="4" <? if ($dm=='4') echo 'SELECTED';?>>May -<OPTION VALUE="5" <? if ($dm=='5') echo 'SELECTED';?>>June -<OPTION VALUE="6" <? if ($dm=='6') echo 'SELECTED';?>>July -<OPTION VALUE="7" <? if ($dm=='7') echo 'SELECTED';?>>August -<OPTION VALUE="8" <? if ($dm=='8') echo 'SELECTED';?>>September -<OPTION VALUE="9" <? if ($dm=='9') echo 'SELECTED';?>>October -<OPTION VALUE="10" <? if ($dm=='10') echo 'SELECTED';?>>November -<OPTION VALUE="11" <? if ($dm=='11') echo 'SELECTED';?>>December -</SELECT> -<INPUT TYPE=text NAME="dd" VALUE="<? echo $dd; ?>" SIZE=2 maxlength=2> -, -<SELECT NAME="dy" > -<OPTION VALUE="1999" <? if ($dy=='1999') echo 'SELECTED';?>>1999 -<OPTION VALUE="2000" <? if ($dy=='2000') echo 'SELECTED';?>>2000 -<OPTION VALUE="2001" <? if ($dy=='2001') echo 'SELECTED';?>>2001 -</SELECT> -</TD> -</TR> -<TR> -<TD VALIGN=center><INPUT TYPE=radio NAME="dt" VALUE="range" <? if ($dt=='range') echo 'checked';?>> -</TD> -<TD> -Between -<INPUT TYPE=text NAME="db" VALUE="<? echo $db; ?>" SIZE=11 MAXLENGTH=11> -and -<INPUT TYPE=text NAME="de" VALUE="<? echo $de; ?>" SIZE=11 MAXLENGTH=11> -</TD> -</TR> -</TABLE> - -</TD></TR> -<!-- end of stl options --> - -<!-- categories stuff --> -<tr><td><? echo $t_CP; ?></td></tr> -<tr><td><? echo $t_CS; ?></td></tr> -<input type=hidden name=cat value="<? echo $cat; ?>"> -<!-- categories stuff end --> - -</table> -</form> -</center> - - -<? - - $ispellmode=strtolower($ispellmode); - if ($ispellmode == 'db') { - if (! Udm_Load_Ispell_Data($udm_agent,UDM_ISPELL_TYPE_DB,'','',1)) { - print_error_local(Udm_Error($udm_agent)); - } else $have_spell_flag=1; - } elseif ($ispellmode == 'server') { - if (Udm_Api_Version() >= 30112) { - if (! Udm_Load_Ispell_Data($udm_agent,UDM_ISPELL_TYPE_SERVER,$spell_host,'',1)) { - print_error_local("Error loading ispell data from server $spell_host"); - } else $have_spell_flag=1; - } - } elseif ($ispellmode == 'text') { - reset($affix_file); - while (list($t_lang,$file)=each($affix_file)) { - if (! Udm_Load_Ispell_Data($udm_agent,UDM_ISPELL_TYPE_AFFIX,$t_lang,$file,0)) { - print_error_local("Error loading ispell data from file"); - } else $have_spell_flag=1; - - $temp=$spell_file[$t_lang]; - for ($i=0; $i<count($temp); $i++) { - if (! Udm_Load_Ispell_Data($udm_agent,UDM_ISPELL_TYPE_SPELL,$t_lang,$temp[$i],1)) { - print_error_local("Error loading ispell data from file"); - } else $have_spell_flag=1; - } - } - } - -if (! $have_query_flag) { - print_bottom(); - return; -} elseif ($have_query_flag && ($q=='')) { - print ("<FONT COLOR=red>You should give at least one word to search for.</FONT>\n"); - print_bottom(); - return; -} - -$res=Udm_Find($udm_agent,$q); - -if(($errno=Udm_Errno($udm_agent))>0){ - print_error_local(Udm_Error($udm_agent)); -} else { - $found=Udm_Get_Res_Param($res,UDM_PARAM_FOUND); - $rows=Udm_Get_Res_Param($res,UDM_PARAM_NUM_ROWS); - $wordinfo=Udm_Get_Res_Param($res,UDM_PARAM_WORDINFO); - $searchtime=Udm_Get_Res_Param($res,UDM_PARAM_SEARCHTIME); - $first_doc=Udm_Get_Res_Param($res,UDM_PARAM_FIRST_DOC); - $last_doc=Udm_Get_Res_Param($res,UDM_PARAM_LAST_DOC); - - if (!$found) { - print ("Search Time: $searchtime<br>Search results:\n"); - print ("<small>$wordinfo</small><HR><CENTER>Sorry, but search returned no results.<P>\n"); - print ("<I>Try to produce less restrictive search query.</I></CENTER>\n"); - - print_bottom(); - return; - } - - $from=IntVal($np)*IntVal($ps); - $to=IntVal($np+1)*IntVal($ps); - - if($to>$found) $to=$found; - if (($from+$ps)<$found) $isnext=1; - $nav=make_nav($query_orig); - - print("Search Time: $searchtime<br>Search results: <small>$wordinfo</small><HR>\n"); - print("Displaying documents $first_doc-$last_doc of total <B>$found</B> found.\n"); - - $stored_link=-1; - if ((Udm_Api_Version() == 30203) && ($storedaddr != '')) { - $stored_link=Udm_Open_Stored($udm_agent,$storedaddr); - } - - for($i=0;$i<$rows;$i++){ - $ndoc=Udm_Get_Res_Field($res,$i,UDM_FIELD_ORDER); - $rating=Udm_Get_Res_Field($res,$i,UDM_FIELD_RATING); - $url=Udm_Get_Res_Field($res,$i,UDM_FIELD_URL); - $contype=Udm_Get_Res_Field($res,$i,UDM_FIELD_CONTENT); - $docsize=Udm_Get_Res_Field($res,$i,UDM_FIELD_SIZE); - $lastmod=format_lastmod(Udm_Get_Res_Field($res,$i,UDM_FIELD_MODIFIED)); - - $title=Udm_Get_Res_Field($res,$i,UDM_FIELD_TITLE); - $title=($title) ? htmlspecialChars($title):'No title'; - - $title=ParseDocText($title); - $text=ParseDocText(htmlspecialChars(Udm_Get_Res_Field($res,$i,UDM_FIELD_TEXT))); - $keyw=ParseDocText(htmlspecialChars(Udm_Get_Res_Field($res,$i,UDM_FIELD_KEYWORDS))); - $desc=ParseDocText(htmlspecialChars(Udm_Get_Res_Field($res,$i,UDM_FIELD_DESC))); - - $crc=Udm_Get_Res_Field($res,$i,UDM_FIELD_CRC); - $rec_id=Udm_Get_Res_Field($res,$i,UDM_FIELD_URLID); - - if (Udm_Api_Version() >= 30203) { - $doclang=Udm_Get_Res_Field($res,$i,UDM_FIELD_LANG); - $doccharset=Udm_Get_Res_Field($res,$i,UDM_FIELD_CHARSET); - } - - if ($phpver >= 40006) { - $category=Udm_Get_Res_Field($res,$i,UDM_FIELD_CATEGORY); - } else { - $category=''; - } - - print ("<DL><DT><b>$ndoc.</b><a href=\"$url\" TARGET=\"_blank\"><b>$title</b></a>\n"); - print ("[<b>$rating</b>]<DD>\n"); - print (($desc != '')?$desc:$text."...<BR>$t_DY<UL><li>\n"); - print ("<A HREF=\"$url\" TARGET=\"_blank\">$url</A>\n"); - print ("($contype) $lastmod, $docsize bytes</UL></DL>\n"); - - if (Udm_Api_Version() == 30203) { - if ((($stored_link>0) && (Udm_Check_Stored($udm_agent,$stored_link,Udm_CRC32($udm_agent,$url)))) || - ($stored_link==-1)) { - $storedstr="$storedocurl?rec_id=".Udm_CRC32($udm_agent,$url). - "&DM=".urlencode($lastmod). - "&DS=$docsize". - "&L=$doclang". - "&CS=$doccharset". - "&DU=".urlencode($url). - "&q=".urlencode($query_orig); - print ("<DD><a href=\"$storedstr\">Cached copy</a>\n"); - } - } - } - - if ((Udm_Api_Version() == 30203) && - ($stored_link>0)) { - Udm_Close_Stored($udm_agent, $stored_link); - } - - print("<HR><CENTER> $nav </CENTER>\n"); - print_bottom(); - - // Free result - Udm_Free_Res($res); -} - - if ($have_spell_flag) Udm_Free_Ispell_Data($udm_agent); - Udm_Free_Agent($udm_agent); -?> diff --git a/ext/mnogosearch/php_mnogo.c b/ext/mnogosearch/php_mnogo.c deleted file mode 100644 index 7fb3683e50..0000000000 --- a/ext/mnogosearch/php_mnogo.c +++ /dev/null @@ -1,2114 +0,0 @@ -/* $Source$ */ -/* $Id$ */ - -/* - +----------------------------------------------------------------------+ - | PHP Version 4 | - +----------------------------------------------------------------------+ - | Copyright (c) 1997-2002 The PHP Group | - +----------------------------------------------------------------------+ - | This source file is subject to version 2.02 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available at through the world-wide-web at | - | http://www.php.net/license/2_02.txt. | - | If you did not receive a copy of the PHP license and are unable to | - | obtain it through the world-wide-web, please send a note to | - | license@php.net so we can mail you a copy immediately. | - +----------------------------------------------------------------------+ - | Authors: | - | Initial version by Alex Barkov <bar@izhcom.ru> | - | and Ramil Kalimullin <ram@izhcom.ru> | - | Further development by Sergey Kartashoff <gluke@mail.ru> | - +----------------------------------------------------------------------+ - */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - -#include "php.h" -#include "php_mnogo.h" -#include "ext/standard/php_standard.h" -#include "ext/standard/info.h" -#include "php_globals.h" - -#ifdef HAVE_MNOGOSEARCH - -#define UDMSTRSIZ 1024*5 - -#define UDM_FIELD_URLID 1 -#define UDM_FIELD_URL 2 -#define UDM_FIELD_CONTENT 3 -#define UDM_FIELD_TITLE 4 -#define UDM_FIELD_KEYWORDS 5 -#define UDM_FIELD_DESC 6 -#define UDM_FIELD_TEXT 7 -#define UDM_FIELD_SIZE 8 -#define UDM_FIELD_RATING 9 -#define UDM_FIELD_MODIFIED 10 -#define UDM_FIELD_ORDER 11 -#define UDM_FIELD_CRC 12 -#define UDM_FIELD_CATEGORY 13 -#define UDM_FIELD_LANG 14 -#define UDM_FIELD_CHARSET 15 - -/* udm_set_agent_param constants */ -#define UDM_PARAM_PAGE_SIZE 1 -#define UDM_PARAM_PAGE_NUM 2 -#define UDM_PARAM_SEARCH_MODE 3 -#define UDM_PARAM_CACHE_MODE 4 -#define UDM_PARAM_TRACK_MODE 5 -#define UDM_PARAM_CHARSET 6 -#define UDM_PARAM_STOPTABLE 7 -#define UDM_PARAM_STOPFILE 8 -#define UDM_PARAM_WEIGHT_FACTOR 9 -#define UDM_PARAM_WORD_MATCH 10 -#define UDM_PARAM_PHRASE_MODE 11 -#define UDM_PARAM_MIN_WORD_LEN 12 -#define UDM_PARAM_MAX_WORD_LEN 13 -#define UDM_PARAM_ISPELL_PREFIXES 14 -#define UDM_PARAM_CROSS_WORDS 15 -#define UDM_PARAM_VARDIR 16 -#define UDM_PARAM_LOCAL_CHARSET 17 -#define UDM_PARAM_BROWSER_CHARSET 18 -#define UDM_PARAM_HLBEG 19 -#define UDM_PARAM_HLEND 20 -#define UDM_PARAM_SYNONYM 21 -#define UDM_PARAM_SEARCHD 22 -#define UDM_PARAM_QSTRING 23 -#define UDM_PARAM_REMOTE_ADDR 24 -#define UDM_PARAM_QUERY 25 - -/* udm_add_search_limit constants */ -#define UDM_LIMIT_URL 1 -#define UDM_LIMIT_TAG 2 -#define UDM_LIMIT_LANG 3 -#define UDM_LIMIT_CAT 4 -#define UDM_LIMIT_DATE 5 - -/* word match type */ -#define UDM_MATCH_WORD 0 -#define UDM_MATCH_BEGIN 1 -#define UDM_MATCH_SUBSTR 2 -#define UDM_MATCH_END 3 - -/* track modes */ -#define UDM_TRACK_ENABLED 1 -#define UDM_TRACK_DISABLED 0 - -/* cache modes */ -#define UDM_CACHE_ENABLED 1 -#define UDM_CACHE_DISABLED 0 - -/* phrase modes */ -#define UDM_PHRASE_ENABLED 1 -#define UDM_PHRASE_DISABLED 0 - -/* prefix modes */ -#define UDM_PREFIXES_ENABLED 1 -#define UDM_PREFIXES_DISABLED 0 - -/* crosswords modes */ -#define UDM_CROSS_WORDS_ENABLED 1 -#define UDM_CROSS_WORDS_DISABLED 0 - -/* udm_get_res_param constants */ -#define UDM_PARAM_NUM_ROWS 256 -#define UDM_PARAM_FOUND 257 -#define UDM_PARAM_WORDINFO 258 -#define UDM_PARAM_SEARCHTIME 259 -#define UDM_PARAM_FIRST_DOC 260 -#define UDM_PARAM_LAST_DOC 261 -#define UDM_PARAM_WORDINFO_ALL 262 - -/* udm_load_ispell_data constants */ -#define UDM_ISPELL_TYPE_AFFIX 1 -#define UDM_ISPELL_TYPE_SPELL 2 -#define UDM_ISPELL_TYPE_DB 3 -#define UDM_ISPELL_TYPE_SERVER 4 - -/* True globals, no need for thread safety */ -static int le_link,le_res; - -#include <udm_config.h> -#include <udmsearch.h> - -/* {{{ mnogosearch_functions[] - */ -function_entry mnogosearch_functions[] = { - PHP_FE(udm_api_version, NULL) - -#if UDM_VERSION_ID >= 30200 - PHP_FE(udm_check_charset, NULL) -#if UDM_VERSION_ID == 30203 - PHP_FE(udm_open_stored, NULL) - PHP_FE(udm_check_stored,NULL) - PHP_FE(udm_close_stored,NULL) -#endif -#if UDM_VERSION_ID >= 30203 - PHP_FE(udm_crc32, NULL) -#endif -#if UDM_VERSION_ID >= 30204 - PHP_FE(udm_parse_query_string,NULL) -#endif -#endif - - PHP_FE(udm_alloc_agent, NULL) - PHP_FE(udm_set_agent_param, NULL) - - PHP_FE(udm_load_ispell_data, NULL) - PHP_FE(udm_free_ispell_data, NULL) - - PHP_FE(udm_add_search_limit, NULL) - PHP_FE(udm_clear_search_limits, NULL) - - PHP_FE(udm_errno, NULL) - PHP_FE(udm_error, NULL) - - PHP_FE(udm_find, NULL) - PHP_FE(udm_get_res_param, NULL) - PHP_FE(udm_get_res_field, NULL) - - PHP_FE(udm_cat_list, NULL) - PHP_FE(udm_cat_path, NULL) - - PHP_FE(udm_free_res, NULL) - PHP_FE(udm_free_agent, NULL) - -#if UDM_VERSION_ID > 30110 - PHP_FE(udm_get_doc_count, NULL) -#endif - - {NULL, NULL, NULL} -}; -/* }}} */ - -zend_module_entry mnogosearch_module_entry = { - STANDARD_MODULE_HEADER, - "mnogosearch", - mnogosearch_functions, - PHP_MINIT(mnogosearch), - PHP_MSHUTDOWN(mnogosearch), - PHP_RINIT(mnogosearch), - NULL, - PHP_MINFO(mnogosearch), - NO_VERSION_YET, - STANDARD_MODULE_PROPERTIES -}; - - -#ifdef COMPILE_DL_MNOGOSEARCH -ZEND_GET_MODULE(mnogosearch) -#endif - -static void _free_udm_agent(zend_rsrc_list_entry *rsrc TSRMLS_DC) -{ - UDM_AGENT * Agent = (UDM_AGENT *)rsrc->ptr; -#if UDM_VERSION_ID >= 30204 - UdmEnvFree(Agent->Conf); - UdmAgentFree(Agent); -#else - UdmFreeEnv(Agent->Conf); - UdmFreeAgent(Agent); -#endif -} - -static void _free_udm_res(zend_rsrc_list_entry *rsrc TSRMLS_DC) -{ - UDM_RESULT * Res = (UDM_RESULT *)rsrc->ptr; - -#if UDM_VERSION_ID >= 30204 - UdmResultFree(Res); -#else - UdmFreeResult(Res); -#endif -} - -/* {{{ PHP_MINIT_FUNCTION - */ -DLEXPORT PHP_MINIT_FUNCTION(mnogosearch) -{ - UdmInit(); - le_link = zend_register_list_destructors_ex(_free_udm_agent,NULL,"mnogosearch agent",module_number); - le_res = zend_register_list_destructors_ex(_free_udm_res,NULL,"mnogosearch result",module_number); - - REGISTER_LONG_CONSTANT("UDM_FIELD_URLID", UDM_FIELD_URLID,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_URL", UDM_FIELD_URL,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_CONTENT", UDM_FIELD_CONTENT,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_TITLE", UDM_FIELD_TITLE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_KEYWORDS", UDM_FIELD_KEYWORDS,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_DESC", UDM_FIELD_DESC,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_DESCRIPTION", UDM_FIELD_DESC,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_TEXT", UDM_FIELD_TEXT,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_SIZE", UDM_FIELD_SIZE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_RATING", UDM_FIELD_RATING,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_SCORE", UDM_FIELD_RATING,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_MODIFIED", UDM_FIELD_MODIFIED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_ORDER", UDM_FIELD_ORDER,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_CRC", UDM_FIELD_CRC,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_CATEGORY", UDM_FIELD_CATEGORY,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_LANG", UDM_FIELD_LANG,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_FIELD_CHARSET", UDM_FIELD_CHARSET,CONST_CS | CONST_PERSISTENT); - - /* udm_set_agent_param constants */ - REGISTER_LONG_CONSTANT("UDM_PARAM_PAGE_SIZE", UDM_PARAM_PAGE_SIZE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_PAGE_NUM", UDM_PARAM_PAGE_NUM,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_SEARCH_MODE", UDM_PARAM_SEARCH_MODE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_CACHE_MODE", UDM_PARAM_CACHE_MODE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_TRACK_MODE", UDM_PARAM_TRACK_MODE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_PHRASE_MODE", UDM_PARAM_PHRASE_MODE,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_CHARSET", UDM_PARAM_CHARSET,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_LOCAL_CHARSET",UDM_PARAM_LOCAL_CHARSET,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_BROWSER_CHARSET",UDM_PARAM_BROWSER_CHARSET,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_STOPTABLE", UDM_PARAM_STOPTABLE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_STOP_TABLE", UDM_PARAM_STOPTABLE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_STOPFILE", UDM_PARAM_STOPFILE,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_STOP_FILE", UDM_PARAM_STOPFILE,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_WEIGHT_FACTOR",UDM_PARAM_WEIGHT_FACTOR,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_WORD_MATCH", UDM_PARAM_WORD_MATCH,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_MAX_WORD_LEN",UDM_PARAM_MAX_WORD_LEN,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_MAX_WORDLEN", UDM_PARAM_MAX_WORD_LEN,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_MIN_WORD_LEN",UDM_PARAM_MIN_WORD_LEN,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_MIN_WORDLEN", UDM_PARAM_MIN_WORD_LEN,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_ISPELL_PREFIXES",UDM_PARAM_ISPELL_PREFIXES,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_ISPELL_PREFIX",UDM_PARAM_ISPELL_PREFIXES,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_PREFIXES", UDM_PARAM_ISPELL_PREFIXES,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_PREFIX", UDM_PARAM_ISPELL_PREFIXES,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_CROSS_WORDS", UDM_PARAM_CROSS_WORDS,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_CROSSWORDS", UDM_PARAM_CROSS_WORDS,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_VARDIR", UDM_PARAM_VARDIR,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_DATADIR", UDM_PARAM_VARDIR,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_HLBEG", UDM_PARAM_HLBEG,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_HLEND", UDM_PARAM_HLEND,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_SYNONYM", UDM_PARAM_SYNONYM,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_SEARCHD", UDM_PARAM_SEARCHD,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PARAM_QSTRING", UDM_PARAM_QSTRING,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_REMOTE_ADDR", UDM_PARAM_REMOTE_ADDR,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_QUERY", UDM_PARAM_QUERY,CONST_CS | CONST_PERSISTENT); - - /* udm_add_search_limit constants */ - REGISTER_LONG_CONSTANT("UDM_LIMIT_CAT", UDM_LIMIT_CAT,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_LIMIT_URL", UDM_LIMIT_URL,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_LIMIT_TAG", UDM_LIMIT_TAG,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_LIMIT_LANG", UDM_LIMIT_LANG,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_LIMIT_DATE", UDM_LIMIT_DATE,CONST_CS | CONST_PERSISTENT); - - /* udm_get_res_param constants */ - REGISTER_LONG_CONSTANT("UDM_PARAM_FOUND", UDM_PARAM_FOUND,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_NUM_ROWS", UDM_PARAM_NUM_ROWS,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_WORDINFO", UDM_PARAM_WORDINFO,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_WORDINFO_ALL",UDM_PARAM_WORDINFO_ALL,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_WORD_INFO", UDM_PARAM_WORDINFO,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_SEARCHTIME", UDM_PARAM_SEARCHTIME,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_SEARCH_TIME", UDM_PARAM_SEARCHTIME,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_FIRST_DOC", UDM_PARAM_FIRST_DOC,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PARAM_LAST_DOC", UDM_PARAM_LAST_DOC,CONST_CS | CONST_PERSISTENT); - - /* search modes */ - REGISTER_LONG_CONSTANT("UDM_MODE_ALL", UDM_MODE_ALL,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_MODE_ANY", UDM_MODE_ANY,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_MODE_BOOL", UDM_MODE_BOOL,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_MODE_PHRASE", UDM_MODE_PHRASE,CONST_CS | CONST_PERSISTENT); - - /* search cache params */ - REGISTER_LONG_CONSTANT("UDM_CACHE_ENABLED", UDM_CACHE_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_CACHE_DISABLED", UDM_CACHE_DISABLED,CONST_CS | CONST_PERSISTENT); - - /* track mode params */ - REGISTER_LONG_CONSTANT("UDM_TRACK_ENABLED", UDM_TRACK_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_TRACK_DISABLED", UDM_TRACK_DISABLED,CONST_CS | CONST_PERSISTENT); - - /* phrase mode params */ - REGISTER_LONG_CONSTANT("UDM_PHRASE_ENABLED", UDM_PHRASE_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PHRASE_DISABLED", UDM_PHRASE_DISABLED,CONST_CS | CONST_PERSISTENT); - - /* crosswords mode params */ - REGISTER_LONG_CONSTANT("UDM_CROSS_WORDS_ENABLED",UDM_CROSS_WORDS_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_CROSSWORDS_ENABLED",UDM_CROSS_WORDS_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_CROSS_WORDS_DISABLED",UDM_CROSS_WORDS_DISABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_CROSSWORDS_DISABLED",UDM_CROSS_WORDS_DISABLED,CONST_CS | CONST_PERSISTENT); - - /* prefixes mode params */ - REGISTER_LONG_CONSTANT("UDM_PREFIXES_ENABLED", UDM_PREFIXES_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PREFIX_ENABLED", UDM_PREFIXES_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_PREFIXES_ENABLED",UDM_PREFIXES_ENABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_PREFIX_ENABLED",UDM_PREFIXES_ENABLED,CONST_CS | CONST_PERSISTENT); - - REGISTER_LONG_CONSTANT("UDM_PREFIXES_DISABLED", UDM_PREFIXES_DISABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_PREFIX_DISABLED", UDM_PREFIXES_DISABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_PREFIXES_DISABLED",UDM_PREFIXES_DISABLED,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_PREFIX_DISABLED",UDM_PREFIXES_DISABLED,CONST_CS | CONST_PERSISTENT); - - /* ispell type params */ - REGISTER_LONG_CONSTANT("UDM_ISPELL_TYPE_AFFIX", UDM_ISPELL_TYPE_AFFIX,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_TYPE_SPELL", UDM_ISPELL_TYPE_SPELL,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_TYPE_DB", UDM_ISPELL_TYPE_DB,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_ISPELL_TYPE_SERVER",UDM_ISPELL_TYPE_SERVER,CONST_CS | CONST_PERSISTENT); - -#if UDM_VERSION_ID < 30200 - /* word match mode params */ - REGISTER_LONG_CONSTANT("UDM_MATCH_WORD", UDM_MATCH_WORD,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_MATCH_BEGIN", UDM_MATCH_BEGIN,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_MATCH_SUBSTR", UDM_MATCH_SUBSTR,CONST_CS | CONST_PERSISTENT); - REGISTER_LONG_CONSTANT("UDM_MATCH_END", UDM_MATCH_END,CONST_CS | CONST_PERSISTENT); -#endif - - return SUCCESS; -} -/* }}} */ - -DLEXPORT PHP_MSHUTDOWN_FUNCTION(mnogosearch) -{ - return SUCCESS; -} - - -DLEXPORT PHP_RINIT_FUNCTION(mnogosearch) -{ - return SUCCESS; -} - - -DLEXPORT PHP_MINFO_FUNCTION(mnogosearch) -{ - char buf[32]; - - php_info_print_table_start(); - php_info_print_table_row(2, "mnoGoSearch Support", "enabled" ); - - sprintf(buf,"%d", UDM_VERSION_ID); - php_info_print_table_row(2, "mnoGoSearch library version", buf ); - php_info_print_table_end(); -} - -ssize_t UdmRecvAll(int s, void *buf, size_t len, int flags) { - size_t received = 0, r; - char *b = buf; - while ( (received < len) && ((r = recv(s, &b[received], len - received, flags)) >= 0 ) ) { - received += r; - } - return received; -} - -/* {{{ proto int udm_alloc_agent(string dbaddr [, string dbmode]) - Allocate mnoGoSearch session */ -DLEXPORT PHP_FUNCTION(udm_alloc_agent) -{ - switch(ZEND_NUM_ARGS()){ - - case 1: { - pval **yydbaddr; - char *dbaddr; - UDM_ENV * Env; - UDM_AGENT * Agent; - - if(zend_get_parameters_ex(1,&yydbaddr)==FAILURE){ - RETURN_FALSE; - } - convert_to_string_ex(yydbaddr); - dbaddr = Z_STRVAL_PP(yydbaddr); - -#if UDM_VERSION_ID >= 30204 - Env=UdmEnvInit(NULL); - UdmVarListReplaceStr(&Env->Vars,"SyslogFacility","local7"); - UdmSetLogLevel(Env,0); - UdmOpenLog("mnoGoSearch-php",Env,0); - - if(!memcmp(dbaddr,"searchd:",8)){ - UDM_URL Url; - UdmURLParse(&Url,dbaddr); - UdmDBListAdd(&Env->sdcl,Url.hostinfo); - } - UdmVarListReplaceStr(&Env->Vars,"DBAddr",dbaddr); - if(UDM_OK!=UdmDBSetAddr(Env->db,dbaddr,UDM_OPEN_MODE_READ)){ - sprintf(Env->errstr,"Invalid DBAddr: '%s'",dbaddr); - Env->errcode=1; - php_error(E_WARNING,"%s(): Invalid DBAddr", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - } - Agent=UdmAgentInit(NULL,Env,0); -#elif UDM_VERSION_ID >= 30200 - Env=UdmAllocEnv(); - Env->vars=UdmAllocVarList(); - Env->DBAddr=strdup(dbaddr); - UdmEnvSetDBMode(Env,"single"); - Agent=UdmAllocAgent(Env,0,UDM_OPEN_MODE_READ); -#else - Env=UdmAllocEnv(); - UdmEnvSetDBAddr(Env,dbaddr); - Agent=UdmAllocAgent(Env,0,UDM_OPEN_MODE_READ); -#endif - ZEND_REGISTER_RESOURCE(return_value,Agent,le_link); - } - break; - - case 2: { - pval **yydbaddr; - pval **yydbmode; - char *dbaddr; - char *dbmode; - UDM_ENV * Env; - UDM_AGENT * Agent; - - if(zend_get_parameters_ex(2,&yydbaddr,&yydbmode)==FAILURE){ - RETURN_FALSE; - } - convert_to_string_ex(yydbaddr); - convert_to_string_ex(yydbmode); - dbaddr = Z_STRVAL_PP(yydbaddr); - dbmode = Z_STRVAL_PP(yydbmode); - -#if UDM_VERSION_ID >= 30204 - Env=UdmEnvInit(NULL); - UdmVarListReplaceStr(&Env->Vars,"SyslogFacility","local7"); - UdmSetLogLevel(Env,0); - UdmOpenLog("mnoGoSearch-php",Env,0); - - if(!memcmp(dbaddr,"searchd:",8)){ - UDM_URL Url; - UdmURLParse(&Url,dbaddr); - UdmDBListAdd(&Env->sdcl,Url.hostinfo); - } - UdmVarListReplaceStr(&Env->Vars,"DBAddr",dbaddr); - if(UDM_OK!=UdmDBSetAddr(Env->db,dbaddr,UDM_OPEN_MODE_READ)){ - sprintf(Env->errstr,"Invalid DBAddr: '%s'",dbaddr); - Env->errcode=1; - php_error(E_WARNING,"%s(): Invalid DBAddr", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - } - Agent=UdmAgentInit(NULL,Env,0); -#elif UDM_VERSION_ID >= 30200 - Env=UdmAllocEnv(); - Env->vars=UdmAllocVarList(); - Env->DBAddr=strdup(dbaddr); - UdmEnvSetDBMode(Env,dbmode); - Agent=UdmAllocAgent(Env,0,UDM_OPEN_MODE_READ); -#else - Env=UdmAllocEnv(); - UdmEnvSetDBAddr(Env,dbaddr); - UdmEnvSetDBMode(Env,dbmode); - Agent=UdmAllocAgent(Env,0,UDM_OPEN_MODE_READ); -#endif - ZEND_REGISTER_RESOURCE(return_value,Agent,le_link); - } - break; - - default: - WRONG_PARAM_COUNT; - break; - } -} -/* }}} */ - -/* {{{ proto int udm_set_agent_param(int agent, int var, string val) - Set mnoGoSearch agent session parameters */ -DLEXPORT PHP_FUNCTION(udm_set_agent_param) -{ - pval **yyagent, **yyvar, **yyval; - char *val; - int var; - UDM_AGENT * Agent; - - switch(ZEND_NUM_ARGS()){ - - case 3: - if(zend_get_parameters_ex(3,&yyagent,&yyvar,&yyval)==FAILURE){ - RETURN_FALSE; - } - convert_to_long_ex(yyvar); - convert_to_string_ex(yyval); - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-agent", le_link); - var = Z_LVAL_PP(yyvar); - val = Z_STRVAL_PP(yyval); - - break; - - default: - WRONG_PARAM_COUNT; - break; - } - - switch(var){ - case UDM_PARAM_PAGE_SIZE: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"ps",val); -#else - Agent->page_size=atoi(val); - if(Agent->page_size<1)Agent->page_size=20; -#endif - break; - - case UDM_PARAM_PAGE_NUM: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"np",val); -#else - Agent->page_number=atoi(val); - if(Agent->page_number<0)Agent->page_number=0; -#endif - break; - - case UDM_PARAM_SEARCH_MODE: - switch (atoi(val)){ - case UDM_MODE_ALL: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"m","all"); -#else - Agent->search_mode=UDM_MODE_ALL; -#endif - break; - - case UDM_MODE_ANY: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"m","any"); -#else - Agent->search_mode=UDM_MODE_ANY; -#endif - break; - - case UDM_MODE_BOOL: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"m","all"); -#else - Agent->search_mode=UDM_MODE_BOOL; -#endif - break; - - case UDM_MODE_PHRASE: -#if UDM_VERSION_ID >= 30200 - php_error(E_WARNING,"%s(): Unknown search mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; -#else - Agent->search_mode=UDM_MODE_PHRASE; -#endif - break; - - default: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"m","all"); -#else - Agent->search_mode=UDM_MODE_ALL; -#endif - php_error(E_WARNING,"%s(): Unknown search mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - break; - - case UDM_PARAM_WORD_MATCH: - switch (atoi(val)){ - case UDM_MATCH_WORD: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"wm","wrd"); -#else - Agent->word_match=UDM_MATCH_WORD; -#endif - break; - - case UDM_MATCH_BEGIN: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"wm","beg"); -#else - Agent->word_match=UDM_MATCH_BEGIN; -#endif - break; - - case UDM_MATCH_END: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"wm","end"); -#else - Agent->word_match=UDM_MATCH_END; -#endif - break; - - case UDM_MATCH_SUBSTR: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"wm","sub"); -#else - Agent->word_match=UDM_MATCH_SUBSTR; -#endif - break; - - default: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"wm","wrd"); -#else - Agent->word_match=UDM_MATCH_WORD; -#endif - php_error(E_WARNING,"%s(): Unknown word match mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - break; - case UDM_PARAM_CACHE_MODE: - switch (atoi(val)){ - case UDM_CACHE_ENABLED: -#if UDM_VERSION_ID < 30200 - Agent->cache_mode=UDM_CACHE_ENABLED; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"Cache","yes"); -#else - UdmReplaceStrVar(Agent->Conf->vars,"Cache","yes",UDM_VARSRC_GLOBAL); -#endif - break; - - case UDM_CACHE_DISABLED: -#if UDM_VERSION_ID < 30200 - Agent->cache_mode=UDM_CACHE_DISABLED; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"Cache","no"); -#else - UdmReplaceStrVar(Agent->Conf->vars,"Cache","no",UDM_VARSRC_GLOBAL); -#endif - break; - - default: -#if UDM_VERSION_ID < 30200 - Agent->cache_mode=UDM_CACHE_DISABLED; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"Cache","no"); -#else - UdmReplaceStrVar(Agent->Conf->vars,"Cache","no",UDM_VARSRC_GLOBAL); -#endif - php_error(E_WARNING,"%s(): Unknown cache mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - - break; - - case UDM_PARAM_TRACK_MODE: - switch (atoi(val)){ - case UDM_TRACK_ENABLED: -#if UDM_VERSION_ID < 30200 - Agent->track_mode|=UDM_TRACK_QUERIES; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"TrackQuery","yes"); -#else - UdmReplaceStrVar(Agent->Conf->vars,"TrackQuery","yes",UDM_VARSRC_GLOBAL); -#endif - break; - - case UDM_TRACK_DISABLED: -#if UDM_VERSION_ID < 30200 - Agent->track_mode &= ~(UDM_TRACK_QUERIES); -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"TrackQuery","no"); -#else - UdmReplaceStrVar(Agent->Conf->vars,"TrackQuery","no",UDM_VARSRC_GLOBAL); -#endif - - break; - - default: -#if UDM_VERSION_ID < 30200 - Agent->track_mode &= ~(UDM_TRACK_QUERIES); -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"TrackQuery","no"); -#else - UdmReplaceStrVar(Agent->Conf->vars,"TrackQuery","no",UDM_VARSRC_GLOBAL); -#endif - php_error(E_WARNING,"%s(): Unknown track mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - - break; - - case UDM_PARAM_PHRASE_MODE: -#if UDM_VERSION_ID < 30200 - switch (atoi(val)){ - case UDM_PHRASE_ENABLED: - Agent->Conf->use_phrases=UDM_PHRASE_ENABLED; - break; - - case UDM_PHRASE_DISABLED: - Agent->Conf->use_phrases=UDM_PHRASE_DISABLED; - break; - - default: - php_error(E_WARNING,"%s(): Unknown phrase mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } -#endif - break; - - case UDM_PARAM_ISPELL_PREFIXES: - switch (atoi(val)){ - case UDM_PREFIXES_ENABLED: -#if UDM_VERSION_ID < 30200 - Agent->Conf->ispell_mode |= UDM_ISPELL_USE_PREFIXES; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"IspellUsePrefixes","1"); -#else - UdmAddIntVar(Agent->Conf->vars, "IspellUsePrefixes", 1, UDM_VARSRC_GLOBAL); -#endif - break; - - case UDM_PREFIXES_DISABLED: -#if UDM_VERSION_ID < 30200 - Agent->Conf->ispell_mode &= ~UDM_ISPELL_USE_PREFIXES; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"IspellUsePrefixes","0"); -#else - UdmAddIntVar(Agent->Conf->vars, "IspellUsePrefixes", 0, UDM_VARSRC_GLOBAL); -#endif - break; - - - default: -#if UDM_VERSION_ID < 30200 - Agent->Conf->ispell_mode |= UDM_ISPELL_USE_PREFIXES; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"IspellUsePrefixes","0"); -#else - UdmAddIntVar(Agent->Conf->vars, "IspellUsePrefixes", 1, UDM_VARSRC_GLOBAL); -#endif - php_error(E_WARNING,"%s(): Unknown ispell prefixes mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - - break; - - case UDM_PARAM_CHARSET: - case UDM_PARAM_LOCAL_CHARSET: -#if UDM_VERSION_ID < 30200 - Agent->Conf->local_charset=UdmGetCharset(val); - Agent->charset=Agent->Conf->local_charset; -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"LocalCharset",val); - { - const char * charset=UdmVarListFindStr(&Agent->Conf->Vars,"LocalCharset","iso-8859-1"); - Agent->Conf->lcs=UdmGetCharSet(charset); - } -#else - Agent->Conf->local_charset=strdup(val); - UdmReplaceStrVar(Agent->Conf->vars,"LocalCharset",val,UDM_VARSRC_GLOBAL); -#endif - - break; - -#if UDM_VERSION_ID >= 30200 - case UDM_PARAM_BROWSER_CHARSET: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"BrowserCharset",val); - { - const char * charset=UdmVarListFindStr(&Agent->Conf->Vars,"BrowserCharset","iso-8859-1"); - Agent->Conf->lcs=UdmGetCharSet(charset); - } -#else - Agent->Conf->browser_charset=strdup(val); - UdmReplaceStrVar(Agent->Conf->vars,"BrowserCharset",val,UDM_VARSRC_GLOBAL); -#endif - break; - - case UDM_PARAM_HLBEG: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"HlBeg",val); -#else - UdmReplaceStrVar(Agent->Conf->vars,"HlBeg",val,UDM_VARSRC_GLOBAL); -#endif - break; - - case UDM_PARAM_HLEND: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"HlEnd",val); -#else - UdmReplaceStrVar(Agent->Conf->vars,"HlEnd",val,UDM_VARSRC_GLOBAL); -#endif - break; - - case UDM_PARAM_SYNONYM: - if (UdmSynonymListLoad(Agent->Conf,val)) { - php_error(E_WARNING, "%s(): %s", get_active_function_name(TSRMLS_C),Agent->Conf->errstr); - RETURN_FALSE; -#if UDM_VERSION_ID >= 30204 - } else UdmSynonymListSort(&(Agent->Conf->Synonyms)); -#else - } else UdmSynonymListSort(&(Agent->Conf->SynList)); -#endif - break; - - case UDM_PARAM_SEARCHD: -#if UDM_VERSION_ID <= 30203 - UdmSDCLientListAdd(&(Agent->Conf->sdcl),val); - { - size_t i; - for(i=0;i<Agent->Conf->sdcl.nclients;i++){ - UdmSDCLientListAdd(&Agent->sdcl,Agent->Conf->sdcl.Clients[i].addr); - } - } -#endif - break; - - case UDM_PARAM_QSTRING: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"QUERY_STRING",val); -#else - UdmReplaceStrVar(Agent->Conf->vars,"QUERY_STRING",val,UDM_VARSRC_GLOBAL); -#endif - break; - - - case UDM_PARAM_REMOTE_ADDR: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"IP",val); -#else - UdmReplaceStrVar(Agent->Conf->vars,"IP",val,UDM_VARSRC_GLOBAL); -#endif - break; -#endif - - case UDM_PARAM_STOPTABLE: -#if UDM_VERSION_ID < 30200 - strcat(Agent->Conf->stop_tables," "); - strcat(Agent->Conf->stop_tables,val); -#endif - break; - - case UDM_PARAM_STOPFILE: -#if UDM_VERSION_ID >= 30204 - if (UdmStopListLoad(Agent->Conf,val)) { -#else - if (UdmFileLoadStopList(Agent->Conf,val)) { -#endif - php_error(E_WARNING, "%s(): %s", Agent->Conf->errstr, get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - } - break; - - case UDM_PARAM_WEIGHT_FACTOR: -#if UDM_VERSION_ID < 30200 - Agent->weight_factor=strdup(val); -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"wf",val); -#else - UdmReplaceStrVar(Agent->Conf->vars,"wf",val,UDM_VARSRC_GLOBAL); - { - size_t len; - - len=strlen(val); - if((len>0)&&(len<256)){ - const char *sec; - int sn; - - for(sn=0;sn<256;sn++){ - Agent->wf[sn]=0; - } - - for(sec=val+len-1;sec>=val;sec--){ - Agent->wf[len-(sec-val)]=UdmHex2Int(*sec); - } - } - } -#endif - break; - - case UDM_PARAM_MIN_WORD_LEN: -#if UDM_VERSION_ID >= 30204 - Agent->Conf->WordParam.min_word_len=atoi(val); -#else - Agent->Conf->min_word_len=atoi(val); -#endif - break; - - case UDM_PARAM_MAX_WORD_LEN: -#if UDM_VERSION_ID >= 30204 - Agent->Conf->WordParam.max_word_len=atoi(val); -#else - Agent->Conf->max_word_len=atoi(val); -#endif - break; - - case UDM_PARAM_CROSS_WORDS: - switch (atoi(val)){ - case UDM_CROSS_WORDS_ENABLED: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"CrossWords","yes"); -#else - Agent->Conf->use_crossword=UDM_CROSS_WORDS_ENABLED; -#endif - break; - - case UDM_CROSS_WORDS_DISABLED: -#if UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"CrossWords","no"); -#else - Agent->Conf->use_crossword=UDM_CROSS_WORDS_DISABLED; -#endif - break; - - default: - php_error(E_WARNING,"%s(): Unknown crosswords mode", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - - break; - -#if UDM_VERSION_ID > 30112 - - case UDM_PARAM_VARDIR: -#if UDM_VERSION_ID < 30200 - udm_snprintf(Agent->Conf->vardir,sizeof(Agent->Conf->vardir)-1,"%s%s",val,UDMSLASHSTR); -#elif UDM_VERSION_ID >= 30204 - UdmVarListReplaceStr(&Agent->Conf->Vars,"Vardir",val); - snprintf(Agent->Conf->vardir,sizeof(Agent->Conf->vardir)-1,"%s%s",val,UDMSLASHSTR); -#else - snprintf(Agent->Conf->vardir,sizeof(Agent->Conf->vardir)-1,"%s%s",val,UDMSLASHSTR); -#endif - break; - -#if UDM_VERSION_ID >= 30204 - case UDM_PARAM_QUERY: - UdmVarListReplaceStr(&Agent->Conf->Vars,"q",val); - - break; -#endif - -#endif - default: - php_error(E_WARNING,"%s(): Unknown agent session parameter", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_load_ispell_data(int agent, int var, string val1, [string charset], string val2, int flag) - Load ispell data */ -DLEXPORT PHP_FUNCTION(udm_load_ispell_data) -{ - pval **yyagent, **yyvar, **yyval1, **yyval2, **yyflag, **yycharset ; - char *val1, *val2, *charset; - int var, flag; - UDM_AGENT * Agent; - - switch(ZEND_NUM_ARGS()){ - - case 5: - if(zend_get_parameters_ex(5,&yyagent,&yyvar,&yyval1,&yyval2,&yyflag)==FAILURE){ - RETURN_FALSE; - } - convert_to_long_ex(yyvar); - convert_to_long_ex(yyflag); - convert_to_string_ex(yyval1); - convert_to_string_ex(yyval2); - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-agent", le_link); - var = Z_LVAL_PP(yyvar); - flag = Z_LVAL_PP(yyflag); - val1 = Z_STRVAL_PP(yyval1); - val2 = Z_STRVAL_PP(yyval2); - charset = "us-ascii"; - - break; - - case 6: - if(zend_get_parameters_ex(6,&yyagent,&yyvar,&yyval1,&yycharset,&yyval2,&yyflag)==FAILURE){ - RETURN_FALSE; - } - convert_to_long_ex(yyvar); - convert_to_long_ex(yyflag); - convert_to_string_ex(yyval1); - convert_to_string_ex(yyval2); - convert_to_string_ex(yycharset); - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-agent", le_link); - var = Z_LVAL_PP(yyvar); - flag = Z_LVAL_PP(yyflag); - val1 = Z_STRVAL_PP(yyval1); - val2 = Z_STRVAL_PP(yyval2); - charset = Z_STRVAL_PP(yycharset); - - break; - - default: - WRONG_PARAM_COUNT; - break; - } - - - switch(var){ -#if UDM_VERSION_ID < 30200 - case UDM_ISPELL_TYPE_DB: - Agent->Conf->ispell_mode |= UDM_ISPELL_MODE_DB; - - if (UdmDBImportAffixes(Agent,Agent->charset) || - UdmImportDictionaryFromDB(Agent)) { - RETURN_FALSE; - } - - break; - -#if UDM_VERSION_ID > 30111 - - case UDM_ISPELL_TYPE_SERVER: - Agent->Conf->ispell_mode &= ~UDM_ISPELL_MODE_DB; - Agent->Conf->ispell_mode |= UDM_ISPELL_MODE_SERVER; - - Agent->Conf->spellhost = strdup(val1); - - break; - -#endif -#endif - - case UDM_ISPELL_TYPE_AFFIX: -#if UDM_VERSION_ID < 30200 - Agent->Conf->ispell_mode &= ~UDM_ISPELL_MODE_DB; - -#if UDM_VERSION_ID > 30111 - Agent->Conf->ispell_mode &= ~UDM_ISPELL_MODE_SERVER; -#endif - - if (UdmImportAffixes(Agent->Conf,val1,val2,NULL,0)) { - php_error(E_WARNING,"%s(): Cannot load affix file %s", get_active_function_name(TSRMLS_C),val2); - RETURN_FALSE; - } -#else - if (UdmImportAffixes(Agent->Conf,val1,charset,val2)) { - php_error(E_WARNING,"%s(): Cannot load affix file %s", get_active_function_name(TSRMLS_C),val2); - RETURN_FALSE; - } - -#endif - break; - - case UDM_ISPELL_TYPE_SPELL: -#if UDM_VERSION_ID < 30200 - Agent->Conf->ispell_mode &= ~UDM_ISPELL_MODE_DB; - -#if UDM_VERSION_ID > 30111 - Agent->Conf->ispell_mode &= ~UDM_ISPELL_MODE_SERVER; -#endif - - if (UdmImportDictionary(Agent->Conf,val1,val2,1,"")) { - php_error(E_WARNING,"%s(): Cannot load spell file %s", get_active_function_name(TSRMLS_C),val2); - RETURN_FALSE; - } -#else - if (UdmImportDictionary(Agent->Conf,val1,charset,val2,0,"")) { - php_error(E_WARNING,"%s(): Cannot load spell file %s", get_active_function_name(TSRMLS_C),val2); - RETURN_FALSE; - } -#endif - break; - - - default: - php_error(E_WARNING,"%s(): Unknown ispell type parameter", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - - if (flag) { -#if UDM_VERSION_ID >= 30204 - if(Agent->Conf->Spells.nspell) { - UdmSortDictionary(&Agent->Conf->Spells); - UdmSortAffixes(&Agent->Conf->Affixes,&Agent->Conf->Spells); - } -#else - if(Agent->Conf->nspell) { - UdmSortDictionary(Agent->Conf); - UdmSortAffixes(Agent->Conf); - } -#endif - } - - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_free_ispell_data(int agent) - Free memory allocated for ispell data */ -DLEXPORT PHP_FUNCTION(udm_free_ispell_data) -{ - pval ** yyagent; - UDM_AGENT * Agent; - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyagent)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-Agent", le_link); - -#if UDM_VERSION_ID >= 30204 - UdmSpellListFree(&Agent->Conf->Spells); - UdmAffixListFree(&Agent->Conf->Affixes); -#elif UDM_VERSION_ID > 30111 - UdmFreeIspell(Agent->Conf); -#endif - - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_add_search_limit(int agent, int var, string val) - Add mnoGoSearch search restrictions */ -DLEXPORT PHP_FUNCTION(udm_add_search_limit) -{ - pval **yyagent, **yyvar, **yyval; - char *val; - int var; - UDM_AGENT * Agent; - - switch(ZEND_NUM_ARGS()){ - - case 3: - if(zend_get_parameters_ex(3,&yyagent,&yyvar,&yyval)==FAILURE){ - RETURN_FALSE; - } - convert_to_long_ex(yyvar); - convert_to_string_ex(yyval); - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-agent", le_link); - var = Z_LVAL_PP(yyvar); - val = Z_STRVAL_PP(yyval); - - break; - - default: - WRONG_PARAM_COUNT; - break; - } - - switch(var){ - case UDM_LIMIT_URL: -#if UDM_VERSION_ID >= 30204 - UdmVarListAddStr(&Agent->Conf->Vars,"ul",val); -#else - UdmAddURLLimit(Agent->Conf,val); -#endif - break; - - case UDM_LIMIT_TAG: -#if UDM_VERSION_ID >= 30204 - UdmVarListAddStr(&Agent->Conf->Vars,"t",val); -#else - UdmAddTagLimit(Agent->Conf,val); -#endif - break; - - case UDM_LIMIT_LANG: -#if UDM_VERSION_ID >= 30204 - UdmVarListAddStr(&Agent->Conf->Vars,"lang",val); -#else - UdmAddLangLimit(Agent->Conf,val); -#endif - break; - - case UDM_LIMIT_CAT: -#if UDM_VERSION_ID >= 30204 - UdmVarListAddStr(&Agent->Conf->Vars,"cat",val); -#else - UdmAddCatLimit(Agent->Conf,val); -#endif - break; - - case UDM_LIMIT_DATE: -#if UDM_VERSION_ID < 30200 - { - struct udm_stl_info_t stl_info = { 0, 0, 0 }; - - if (val[0] == '>') { - Z_TYPE(stl_info)=1; - } else if (val[0] == '<') { - Z_TYPE(stl_info)=-1; - } else { - php_error(E_WARNING,"%s(): Incorrect date limit format", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - } - - stl_info.t1=(time_t)(atol(val+1)); - UdmAddTimeLimit(Agent->Conf,&stl_info); - } -#endif - break; - default: - php_error(E_WARNING,"%s(): Unknown search limit parameter", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_clear_search_limits(int agent) - Clear all mnoGoSearch search restrictions */ -DLEXPORT PHP_FUNCTION(udm_clear_search_limits) -{ - pval ** yyagent; - UDM_AGENT * Agent; - int i; - - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyagent)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-Agent", le_link); -#if UDM_VERSION_ID >= 30204 - for(i=0;i<Agent->Conf->Vars.nvars;i++){ - if ((!strcasecmp("ul",Agent->Conf->Vars.Var[i].name))|| - (!strcasecmp("cat",Agent->Conf->Vars.Var[i].name))|| - (!strcasecmp("t",Agent->Conf->Vars.Var[i].name))|| - (!strcasecmp("lang",Agent->Conf->Vars.Var[i].name))) { - UDM_FREE(Agent->Conf->Vars.Var[i].name); - UDM_FREE(Agent->Conf->Vars.Var[i].val); - Agent->Conf->Vars.nvars--; - } - } -#else - UdmClearLimits(Agent->Conf); -#endif - RETURN_TRUE; -} -/* }}} */ - -#if UDM_VERSION_ID >= 30200 -/* {{{ proto int udm_check_charset(int agent, string charset) - Check if the given charset is known to mnogosearch */ -DLEXPORT PHP_FUNCTION(udm_check_charset) -{ - pval ** yycharset, ** yyagent; - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent,&yycharset)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - convert_to_string_ex(yycharset); - - - if (UdmGetCharSet(Z_STRVAL_PP(yycharset))) { - RETURN_TRUE; - } else { - RETURN_FALSE; - } -} -/* }}} */ -#endif - -#if UDM_VERSION_ID >= 30203 -/* {{{ proto int udm_crc32(int agent, string str) - Return CRC32 checksum of gived string */ -DLEXPORT PHP_FUNCTION(udm_crc32) -{ - pval ** yystr, ** yyagent; - char *str; - int crc32; - char buf[32]; - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent,&yystr)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - convert_to_string_ex(yystr); - str = Z_STRVAL_PP(yystr); - - crc32=UdmCRC32((str),strlen(str)); - snprintf(buf,sizeof(buf)-1,"%u",crc32); - - RETURN_STRING(buf,1); -} -/* }}} */ -#endif - -#if UDM_VERSION_ID == 30203 -/* {{{ proto int udm_open_stored(int agent, string storedaddr) - Open connection to stored */ -DLEXPORT PHP_FUNCTION(udm_open_stored) -{ - pval ** yyagent, ** yyaddr; - - int s; - char * addr; - const char *hello = "F\0"; - - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent, &yyaddr)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - - convert_to_string_ex(yyaddr); - addr = Z_STRVAL_PP(yyaddr); - - UdmReplaceStrVar(Agent->Conf->vars,"StoredAddr",addr,UDM_VARSRC_GLOBAL); - Agent->Conf->stored_addr = strdup(UdmFindStrVar(Agent->Conf->vars, "StoredAddr", "localhost")); - - s = UdmStoreOpen(Agent->Conf); - - if (s >= 0) { - send(s, hello, 1, 0); - RETURN_LONG(s); - } else RETURN_FALSE; -} -/* }}} */ - -/* {{{ proto int udm_close_stored(int agent, int link) - Open connection to stored */ -DLEXPORT PHP_FUNCTION(udm_close_stored) -{ - pval ** yylink, ** yyagent; - - int s; - unsigned int rec_id = 0; - - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent, &yylink)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - - convert_to_long_ex(yylink); - s = Z_LVAL_PP(yylink); - - - send(s, &rec_id, sizeof(rec_id), 0); - closesocket(s); - - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_check_stored(int agent, int link, string doc_id) - Open connection to stored */ -DLEXPORT PHP_FUNCTION(udm_check_stored) -{ - pval ** yyid, ** yylink, ** yyagent; - - int s; - unsigned int rec_id = 0; - int store_found; - - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 3: { - if (zend_get_parameters_ex(3, &yyagent, &yylink, &yyid)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - - convert_to_long_ex(yylink); - s = Z_LVAL_PP(yylink); - - convert_to_string_ex(yyid); - - rec_id=strtoul(Z_STRVAL_PP(yyid),NULL,10); - - send(s, &rec_id, sizeof(rec_id), 0); - if (UdmRecvAll(s, &store_found, sizeof(store_found), MSG_WAITALL) < 0) { - RETURN_LONG(store_found); - } else RETURN_FALSE; -} -/* }}} */ -#endif - -#if UDM_VERSION_ID >= 30204 -/* {{{ proto int udm_parse_query_string(int agent, string str) - Parses query string, initialises variables and search limits taken from it */ -DLEXPORT PHP_FUNCTION(udm_parse_query_string) -{ - pval ** yystr, ** yyagent; - char *str; - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent,&yystr)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - convert_to_string_ex(yystr); - str = Z_STRVAL_PP(yystr); - - UdmParseQueryString(Agent,&Agent->Conf->Vars,str); - RETURN_TRUE; -} -/* }}} */ -#endif - -/* {{{ proto int udm_find(int agent, string query) - Perform search */ -DLEXPORT PHP_FUNCTION(udm_find) -{ - pval ** yyquery, ** yyagent; - UDM_RESULT * Res; - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent,&yyquery)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - convert_to_string_ex(yyquery); - -#if UDM_VERSION_ID < 30200 - if ((Res=UdmFind(Agent,UdmTolower(Z_STRVAL_PP(yyquery),Agent->charset)))) { -#else - if ((Res=UdmFind(Agent,Z_STRVAL_PP(yyquery)))) { -#endif - ZEND_REGISTER_RESOURCE(return_value,Res,le_res); - } else { - RETURN_FALSE; - } -} -/* }}} */ - -/* {{{ proto string udm_get_res_field(int res, int row, int field) - Fetch mnoGoSearch result field */ -DLEXPORT PHP_FUNCTION(udm_get_res_field) -{ - pval **yyres, **yyrow_num, **yyfield_name; - - UDM_RESULT * Res; - int row,field; - - switch(ZEND_NUM_ARGS()){ - case 3: { - if (zend_get_parameters_ex(3, &yyres,&yyrow_num,&yyfield_name)==FAILURE){ - RETURN_FALSE; - } - convert_to_string_ex(yyrow_num); - convert_to_string_ex(yyfield_name); - field=atoi(Z_STRVAL_PP(yyfield_name)); - row=atoi(Z_STRVAL_PP(yyrow_num)); - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Res, UDM_RESULT *, yyres, -1, "mnoGoSearch-Result", le_res); - if(row<Res->num_rows){ - switch(field){ - case UDM_FIELD_URL: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&Res->Doc[row].Sections,"URL",""),1); -#else - RETURN_STRING((Res->Doc[row].url)?(Res->Doc[row].url):"",1); -#endif - break; - - case UDM_FIELD_CONTENT: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Content-Type",""),1); -#else - RETURN_STRING((Res->Doc[row].content_type)?(Res->Doc[row].content_type):"",1); -#endif - break; - - case UDM_FIELD_TITLE: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Title",""),1); -#else - RETURN_STRING((Res->Doc[row].title)?(Res->Doc[row].title):"",1); -#endif - break; - - case UDM_FIELD_KEYWORDS: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Meta.Keywords",""),1); -#else - RETURN_STRING((Res->Doc[row].keywords)?(Res->Doc[row].keywords):"",1); -#endif - break; - - case UDM_FIELD_DESC: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Meta.Description",""),1); -#else - RETURN_STRING((Res->Doc[row].description)?(Res->Doc[row].description):"",1); -#endif - break; - - case UDM_FIELD_TEXT: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Body",""),1); -#else - RETURN_STRING((Res->Doc[row].text)?(Res->Doc[row].text):"",1); -#endif - break; - - case UDM_FIELD_SIZE: -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmVarListFindInt(&(Res->Doc[row].Sections),"Content-Length",0)); -#else - RETURN_LONG((Res->Doc[row].size)); -#endif - break; - - case UDM_FIELD_URLID: -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmVarListFindInt(&(Res->Doc[row].Sections),"ID",0)); -#else - RETURN_LONG((Res->Doc[row].url_id)); -#endif - break; - - case UDM_FIELD_RATING: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Score",""),1); -#else - RETURN_LONG((Res->Doc[row].rating)); -#endif - break; - - case UDM_FIELD_MODIFIED: -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmVarListFindInt(&(Res->Doc[row].Sections),"Last-Modified",0)); -#else - RETURN_LONG((Res->Doc[row].last_mod_time)); -#endif - break; - - case UDM_FIELD_ORDER: -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmVarListFindInt(&(Res->Doc[row].Sections),"Order",0)); -#else - RETURN_LONG((Res->Doc[row].order)); -#endif - break; - - case UDM_FIELD_CRC: -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmVarListFindInt(&(Res->Doc[row].Sections),"crc32",0)); -#else - RETURN_LONG((Res->Doc[row].crc32)); -#endif - break; - - case UDM_FIELD_CATEGORY: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Category",""),1); -#else - RETURN_STRING((Res->Doc[row].category)?(Res->Doc[row].category):"",1); -#endif - break; - -#if UDM_VERSION_ID >= 30203 - case UDM_FIELD_LANG: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Content-Language",""),1); -#else - RETURN_STRING((Res->Doc[row].lang)?(Res->Doc[row].lang):"",1); -#endif - break; - - case UDM_FIELD_CHARSET: -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((char *)UdmVarListFindStr(&(Res->Doc[row].Sections),"Charset",""),1); -#else - RETURN_STRING((Res->Doc[row].charset)?(Res->Doc[row].charset):"",1); -#endif - break; -#endif - - default: - php_error(E_WARNING,"%s(): Unknown mnoGoSearch field name", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } - }else{ - php_error(E_WARNING,"%s(): row number too large", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - } -} -/* }}} */ - -/* {{{ proto string udm_get_res_param(int res, int param) - Get mnoGoSearch result parameters */ -DLEXPORT PHP_FUNCTION(udm_get_res_param) -{ - pval ** yyres, ** yyparam; - int param; - UDM_RESULT * Res; - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyres, &yyparam)==FAILURE) { - RETURN_FALSE; - } - convert_to_long_ex(yyparam); - param=(Z_LVAL_PP(yyparam)); - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Res, UDM_RESULT *, yyres, -1, "mnoGoSearch-Result", le_res); - switch(param){ - case UDM_PARAM_NUM_ROWS: - RETURN_LONG(Res->num_rows); - break; - - case UDM_PARAM_FOUND: - RETURN_LONG(Res->total_found); - break; - - case UDM_PARAM_WORDINFO: -#if UDM_VERSION_ID >= 30204 - { - int len,i; - for(len = i = 0; i < Res->WWList.nwords; i++) - len += Res->WWList.Word[i].len; - { - size_t wsize=(1+len*15)*sizeof(char); - char *wordinfo = (char*) malloc(wsize); - int corder = -1, ccount = 0; - - *wordinfo = '\0'; - - for(i = 0; i < Res->WWList.nwords; i++){ - if ((Res->WWList.Word[i].count > 0) || (Res->WWList.Word[i].origin == UDM_WORD_ORIGIN_QUERY)) { - if(wordinfo[0]) strcat(wordinfo,", "); - sprintf(UDM_STREND(wordinfo)," %s : %d", Res->WWList.Word[i].word, Res->WWList.Word[i].count); - } else if (Res->WWList.Word[i].origin == UDM_WORD_ORIGIN_STOP) { - if(wordinfo[0]) strcat(wordinfo,", "); - sprintf(UDM_STREND(wordinfo)," %s : stopword", Res->WWList.Word[i].word); - } - } - RETURN_STRING(wordinfo,1); - } - } -#else - RETURN_STRING((Res->wordinfo)?(Res->wordinfo):"",1); -#endif - break; - -#if UDM_VERSION_ID >= 30204 - case UDM_PARAM_WORDINFO_ALL: - { - int len,i; - for(len = i = 0; i < Res->WWList.nwords; i++) - len += Res->WWList.Word[i].len; - { - size_t wsize=(1+len*15)*sizeof(char); - char *wordinfo = (char*) malloc(wsize); - int corder = -1, ccount = 0; - - *wordinfo = '\0'; - - for(i = 0; i < Res->WWList.nwords; i++){ - if (Res->WWList.Word[i].order != corder) { - if(wordinfo[0]) { - sprintf(UDM_STREND(wordinfo)," / %d, ", ccount); - } - ccount = Res->WWList.Word[i].count; - if (Res->WWList.Word[i].origin == UDM_WORD_ORIGIN_STOP) { - sprintf(UDM_STREND(wordinfo)," %s : stopword", Res->WWList.Word[i].word); - } else { - sprintf(UDM_STREND(wordinfo)," %s : %d", Res->WWList.Word[i].word, Res->WWList.Word[i].count); - corder = Res->WWList.Word[i].order; - } - } else { - ccount += Res->WWList.Word[i].count; - } - } - if (Res->WWList.nwords) { - sprintf(UDM_STREND(wordinfo)," / %d", ccount); - } - RETURN_STRING(wordinfo,1); - } - } - break; -#endif - - case UDM_PARAM_SEARCHTIME: - RETURN_DOUBLE(((double)Res->work_time)/1000); - break; - - case UDM_PARAM_FIRST_DOC: - RETURN_LONG(Res->first); - break; - - case UDM_PARAM_LAST_DOC: - RETURN_LONG(Res->last); - break; - - default: - php_error(E_WARNING,"%s(): Unknown mnoGoSearch param name", get_active_function_name(TSRMLS_C)); - RETURN_FALSE; - break; - } -} -/* }}} */ - -/* {{{ proto int udm_free_res(int res) - mnoGoSearch free result */ -DLEXPORT PHP_FUNCTION(udm_free_res) -{ - pval ** yyres; - UDM_RESULT * Res; - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyres)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Res, UDM_RESULT *, yyres, -1, "mnoGoSearch-Result", le_res); - zend_list_delete(Z_LVAL_PP(yyres)); - - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_free_agent(int agent) - Free mnoGoSearch session */ -DLEXPORT PHP_FUNCTION(udm_free_agent) -{ - pval ** yyagent; - UDM_RESULT * Agent; - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyagent)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_RESULT *, yyagent, -1, "mnoGoSearch-agent", le_link); - zend_list_delete(Z_LVAL_PP(yyagent)); - - RETURN_TRUE; -} -/* }}} */ - -/* {{{ proto int udm_errno(int agent) - Get mnoGoSearch error number */ -DLEXPORT PHP_FUNCTION(udm_errno) -{ - pval ** yyagent; - UDM_AGENT * Agent; - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyagent)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-Agent", le_link); -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmEnvErrCode(Agent->Conf)); -#else - RETURN_LONG(UdmDBErrorCode(Agent->db)); -#endif -} -/* }}} */ - -/* {{{ proto string udm_error(int agent) - Get mnoGoSearch error message */ -DLEXPORT PHP_FUNCTION(udm_error) -{ - pval ** yyagent; - UDM_AGENT * Agent; - - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyagent)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, -1, "mnoGoSearch-Agent", le_link); -#if UDM_VERSION_ID >= 30204 - RETURN_STRING((UdmEnvErrMsg(Agent->Conf))?(UdmEnvErrMsg(Agent->Conf)):"",1); -#else - RETURN_STRING((UdmDBErrorMsg(Agent->db))?(UdmDBErrorMsg(Agent->db)):"",1); -#endif -} -/* }}} */ - -/* {{{ proto int udm_api_version() - Get mnoGoSearch API version */ -DLEXPORT PHP_FUNCTION(udm_api_version) -{ - RETURN_LONG(UDM_VERSION_ID); -} -/* }}} */ - -/* {{{ proto array udm_cat_list(int agent, string category) - Get mnoGoSearch categories list with the same root */ -DLEXPORT PHP_FUNCTION(udm_cat_list) -{ - pval ** yycat, ** yyagent; - UDM_AGENT * Agent; - char *cat; - UDM_CATEGORY *c=NULL; - char *buf=NULL; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent,&yycat)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - convert_to_string_ex(yycat); - cat = Z_STRVAL_PP(yycat); - -#if UDM_VERSION_ID >= 30204 - if (NULL==(c=(UDM_CATEGORY *)malloc(sizeof(UDM_CATEGORY)))) RETURN_FALSE; - if (NULL==(c->Category=malloc(sizeof(UDM_CATITEM)))) RETURN_FALSE; - strncpy(c->addr,cat,sizeof(c->addr)-1); - if(UdmCatAction(Agent,c,UDM_CAT_ACTION_LIST,Agent->Conf->db)){ -#else - if((c=UdmCatList(Agent,cat))){ -#endif - if (array_init(return_value)==FAILURE) { - RETURN_FALSE; - } - - if (!(buf=calloc(1,UDMSTRSIZ+1))) { - RETURN_FALSE; - } - -#if UDM_VERSION_ID >= 30204 - { - int i; - for(i==0;i<c->ncategories;i++){ - snprintf(buf, UDMSTRSIZ, "%s%s",c->Category[i].link[0]?"@ ":"", c->Category[i].name); - add_next_index_string(return_value, c->Category[i].link[0]?c->Category[i].link:c->Category[i].path, 1); - add_next_index_string(return_value, buf, 1); - c++; - } - } -#else - while(c->rec_id){ - snprintf(buf, UDMSTRSIZ, "%s%s",c->link[0]?"@ ":"", c->name); - add_next_index_string(return_value, c->link[0]?c->link:c->path, 1); - add_next_index_string(return_value, buf, 1); - c++; - } -#endif - free(buf); -#if UDM_VERSION_ID >= 30204 - free(c->Category); - free(c); -#endif -} else { - RETURN_FALSE; - } -} -/* }}} */ - -/* {{{ proto array udm_cat_path(int agent, string category) - Get mnoGoSearch categories path from the root to the given catgory */ -DLEXPORT PHP_FUNCTION(udm_cat_path) -{ - pval ** yycat, ** yyagent; - UDM_AGENT * Agent; - char *cat; - UDM_CATEGORY *c=NULL; - char *buf=NULL; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 2: { - if (zend_get_parameters_ex(2, &yyagent,&yycat)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); - convert_to_string_ex(yycat); - cat = Z_STRVAL_PP(yycat); - -#if UDM_VERSION_ID >= 30204 - if (NULL==(c=(UDM_CATEGORY *)malloc(sizeof(UDM_CATEGORY)))) RETURN_FALSE; - if (NULL==(c->Category=malloc(sizeof(UDM_CATITEM)))) RETURN_FALSE; - strncpy(c->addr,cat,sizeof(c->addr)-1); - if(UdmCatAction(Agent,c,UDM_CAT_ACTION_PATH,Agent->Conf->db)){ -#else - if((c=UdmCatPath(Agent,cat))){ -#endif - if (array_init(return_value)==FAILURE) { - RETURN_FALSE; - } - - if (!(buf=calloc(1,UDMSTRSIZ+1))) { - RETURN_FALSE; - } - -#if UDM_VERSION_ID >= 30204 - { - int i; - for(i==0;i<c->ncategories;i++){ - snprintf(buf, UDMSTRSIZ, "%s%s",c->Category[i].link[0]?"@ ":"", c->Category[i].name); - add_next_index_string(return_value, c->Category[i].link[0]?c->Category[i].link:c->Category[i].path, 1); - add_next_index_string(return_value, buf, 1); - c++; - } - } -#else - while(c->rec_id){ - snprintf(buf, UDMSTRSIZ, "%s%s",c->link[0]?"@ ":"", c->name); - add_next_index_string(return_value, c->link[0]?c->link:c->path, 1); - add_next_index_string(return_value, buf, 1); - c++; - } -#endif - free(buf); -#if UDM_VERSION_ID >= 30204 - free(c->Category); - free(c); -#endif - } else { - RETURN_FALSE; - } -} -/* }}} */ - -#if UDM_VERSION_ID > 30110 -/* {{{ proto int udm_get_doc_count(int agent) - Get total number of documents in database */ -DLEXPORT PHP_FUNCTION(udm_get_doc_count) -{ - pval ** yyagent; - UDM_AGENT * Agent; - int id=-1; - - switch(ZEND_NUM_ARGS()){ - case 1: { - if (zend_get_parameters_ex(1, &yyagent)==FAILURE) { - RETURN_FALSE; - } - } - break; - default: - WRONG_PARAM_COUNT; - break; - } - ZEND_FETCH_RESOURCE(Agent, UDM_AGENT *, yyagent, id, "mnoGoSearch-Agent", le_link); -#if UDM_VERSION_ID >= 30204 - RETURN_LONG(UdmURLAction(Agent,NULL,UDM_URL_ACTION_DOCCOUNT,Agent->Conf->db)); -#else - RETURN_LONG(UdmGetDocCount(Agent)); -#endif -} -/* }}} */ -#endif - - -#endif - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - * vim600: sw=4 ts=4 fdm=marker - * vim<600: sw=4 ts=4 - */ diff --git a/ext/mnogosearch/php_mnogo.h b/ext/mnogosearch/php_mnogo.h deleted file mode 100644 index ab91a520a9..0000000000 --- a/ext/mnogosearch/php_mnogo.h +++ /dev/null @@ -1,107 +0,0 @@ -/* $Source$ */ -/* $Id$ */ - -/* - +----------------------------------------------------------------------+ - | PHP Version 4 | - +----------------------------------------------------------------------+ - | Copyright (c) 1997-2002 The PHP Group | - +----------------------------------------------------------------------+ - | This source file is subject to version 2.02 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available at through the world-wide-web at | - | http://www.php.net/license/2_02.txt. | - | If you did not receive a copy of the PHP license and are unable to | - | obtain it through the world-wide-web, please send a note to | - | license@php.net so we can mail you a copy immediately. | - +----------------------------------------------------------------------+ - | Authors: | - | Initial version by Alex Barkov <bar@izhcom.ru> | - | and Ramil Kalimullin <ram@izhcom.ru> | - | Further development by Sergey Kartashoff <gluke@mail.ru> | - +----------------------------------------------------------------------+ - */ - -#ifndef _PHP_MNOGO_H -#define _PHP_MNOGO_H - -#if HAVE_MNOGOSEARCH - -#include <udm_config.h> -#include <udmsearch.h> - -#if UDM_VERSION_ID >= 30203 -#include <udm_crc32.h> -#include <udm_store.h> -#endif - -extern zend_module_entry mnogosearch_module_entry; -#define mnogosearch_module_ptr &mnogosearch_module_entry - -#ifdef PHP_WIN32 -#define PHP_MNOGO_API __declspec(dllexport) -#else -#define PHP_MNOGO_API -#endif - -#ifdef ZTS -#include "TSRM.h" -#endif - -/* mnoGoSearch functions */ -DLEXPORT PHP_MINIT_FUNCTION(mnogosearch); -DLEXPORT PHP_RINIT_FUNCTION(mnogosearch); -DLEXPORT PHP_MSHUTDOWN_FUNCTION(mnogosearch); -DLEXPORT PHP_MINFO_FUNCTION(mnogosearch); - -DLEXPORT PHP_FUNCTION(udm_api_version); -#if UDM_VERSION_ID >= 30200 -DLEXPORT PHP_FUNCTION(udm_check_charset); -#if UDM_VERSION_ID == 30203 -DLEXPORT PHP_FUNCTION(udm_open_stored); -DLEXPORT PHP_FUNCTION(udm_check_stored); -DLEXPORT PHP_FUNCTION(udm_close_stored); -#endif -#if UDM_VERSION_ID >= 30203 -DLEXPORT PHP_FUNCTION(udm_crc32); -#endif -#if UDM_VERSION_ID >= 30204 -DLEXPORT PHP_FUNCTION(udm_parse_query_string); -#endif -#endif - -DLEXPORT PHP_FUNCTION(udm_alloc_agent); -DLEXPORT PHP_FUNCTION(udm_set_agent_param); - -DLEXPORT PHP_FUNCTION(udm_load_ispell_data); -DLEXPORT PHP_FUNCTION(udm_free_ispell_data); - -DLEXPORT PHP_FUNCTION(udm_add_search_limit); -DLEXPORT PHP_FUNCTION(udm_clear_search_limits); - -DLEXPORT PHP_FUNCTION(udm_error); -DLEXPORT PHP_FUNCTION(udm_errno); - -DLEXPORT PHP_FUNCTION(udm_find); -DLEXPORT PHP_FUNCTION(udm_get_res_field); -DLEXPORT PHP_FUNCTION(udm_get_res_param); - -DLEXPORT PHP_FUNCTION(udm_cat_list); -DLEXPORT PHP_FUNCTION(udm_cat_path); - -DLEXPORT PHP_FUNCTION(udm_free_res); -DLEXPORT PHP_FUNCTION(udm_free_agent); - -#if UDM_VERSION_ID > 30110 -DLEXPORT PHP_FUNCTION(udm_get_doc_count); -#endif - -#else - -#define mnogosearch_module_ptr NULL - -#endif - -#define phpext_mnogosearch_ptr mnogosearch_module_ptr - -#endif /* _PHP_MNOGO_H */ |