[0.4] Переписано ядро и украинска версия библиотеки

This commit is contained in:
Andriy Chaika 2011-07-05 20:22:03 +03:00
parent a0765b9fd8
commit aa6457b3e2
6 changed files with 510 additions and 494 deletions

View file

@ -256,7 +256,7 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
//Випадання букви е при відмінюванні слів типу Орел //Випадання букви е при відмінюванні слів типу Орел
if (NCLStr::substr($osnova, 0, 1) == 'О' and $this->FirstLastVowel($osnova, $this->vowels . 'гк') == 'е' and $this->Last(2) != 'сь') if (NCLStr::substr($osnova, 0, 1) == 'о' and $this->FirstLastVowel($osnova, $this->vowels . 'гк') == 'е' and $this->Last(2) != 'сь')
{ {
$delim = NCLStr::strrpos($osnova, 'е'); $delim = NCLStr::strrpos($osnova, 'е');
$osnova = NCLStr::substr($osnova, 0, $delim) . NCLStr::substr($osnova, $delim + 1, NCLStr::strlen($osnova) - $delim); $osnova = NCLStr::substr($osnova, 0, $delim) . NCLStr::substr($osnova, $delim + 1, NCLStr::strlen($osnova) - $delim);
@ -433,7 +433,7 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
{ {
if ($this->in($this->Last(1), $this->consonant . 'ь')) if ($this->in($this->Last(1), $this->consonant . 'ь'))
{ {
$osnova = $this->getOsnova($this->firstName); $osnova = $this->getOsnova($this->workingWord);
$apostrof = ''; $apostrof = '';
$duplicate = ''; $duplicate = '';
$osLast = NCLStr::substr($osnova, -1, 1); $osLast = NCLStr::substr($osnova, -1, 1);
@ -503,18 +503,7 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
*/ */
protected function manFirstName() protected function manFirstName()
{ {
return $this->RulesChain('man', array(1, 2, 3));
$this->setWorkingWord($this->firstName);
if ($this->RulesChain('man', array(1, 2, 3)))
{
$this->frule = $this->lastRule;
$this->firstResult = $this->lastResult;
}
else
{
$this->makeFirstTheSame();
}
} }
/** /**
@ -524,17 +513,7 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
*/ */
protected function womanFirstName() protected function womanFirstName()
{ {
$this->setWorkingWord($this->firstName); return $this->RulesChain('woman', array(1, 2));
if ($this->RulesChain('woman', array(1, 2)))
{
$this->frule = $this->lastRule;
$this->firstResult = $this->lastResult;
}
else
{
$this->makeFirstTheSame();
}
} }
/* /*
@ -545,17 +524,7 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
protected function manSecondName() protected function manSecondName()
{ {
$this->setWorkingWord($this->secondName); return $this->RulesChain('man', array(5, 1, 2, 3, 4));
if ($this->RulesChain('man', array(5, 1, 2, 3, 4)))
{
$this->srule = $this->lastRule;
$this->secondResult = $this->lastResult;
}
else
{
$this->makeSecondTheSame();
}
} }
/* /*
@ -566,17 +535,7 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
protected function womanSecondName() protected function womanSecondName()
{ {
$this->setWorkingWord($this->secondName); return $this->RulesChain('woman', array(3, 1));
if ($this->RulesChain('woman', array(3, 1)))
{
$this->srule = $this->lastRule;
$this->secondResult = $this->lastResult;
}
else
{
$this->makeSecondTheSame();
}
} }
/* /*
@ -587,18 +546,12 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
protected function manFatherName() protected function manFatherName()
{ {
$this->setWorkingWord($this->fatherName);
if ($this->in($this->Last(2), array('ич', 'іч'))) if ($this->in($this->Last(2), array('ич', 'іч')))
{ {
$this->wordForms($this->workingWord, array('а', 'у', 'а', 'ем', 'у', 'у')); $this->wordForms($this->workingWord, array('а', 'у', 'а', 'ем', 'у', 'у'));
$this->fatherResult = $this->lastResult;
return true; return true;
} }
else return false;
{
$this->makeFatherTheSame();
return false;
}
} }
/* /*
@ -609,127 +562,97 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
protected function womanFatherName() protected function womanFatherName()
{ {
$this->setWorkingWord($this->fatherName);
if ($this->in($this->Last(3), array('вна'))) if ($this->in($this->Last(3), array('вна')))
{ {
$this->wordForms($this->workingWord, array('и', 'і', 'у', 'ою', 'і', 'о'), 1); $this->wordForms($this->workingWord, array('и', 'і', 'у', 'ою', 'і', 'о'), 1);
$this->fatherResult = $this->lastResult;
return true; return true;
} }
else return false;
{
$this->makeFatherTheSame();
return false;
}
} }
/* protected function GenderByFirstName(NCLNameCaseWord $word)
* Автоматическое определение пола
* @return void
*/
protected function genderDetect()
{ {
$this->setWorkingWord($word->getWord());
//$this->gender = NCL::$MAN; // мужчина $man = 0; //Мужчина
if (!$this->gender) $woman = 0; //Женщина
//Попробуем выжать максимум из имени
//Если имя заканчивается на й, то скорее всего мужчина
if ($this->Last(1) == 'й')
{ {
//Определение пола по отчеству $man+=0.9;
if (isset($this->fatherName) and $this->fatherName) }
{
$LastTwo = mb_substr($this->fatherName, -2, 2, 'utf-8'); if ($this->in($this->Last(2), array('он', 'ов', 'ав', 'ам', 'ол', 'ан', 'рд', 'мп', 'ко', 'ло')))
if ($LastTwo == 'ич') {
{ $man+=0.5;
$this->gender = NCL::$MAN; // мужчина }
return true;
} if ($this->in($this->Last(3), array('бов', 'нка', 'яра', 'ила')))
if ($LastTwo == 'на') {
{ $woman+=0.5;
$this->gender = NCL::$WOMAN; // женщина }
return true;
} if ($this->in($this->Last(1), $this->consonant))
} {
$man = 0; //Мужчина $man+=0.01;
$woman = 0; //Женщина }
$FLastSymbol = mb_substr($this->firstName, -1, 1, 'utf-8'); if ($this->Last(1) == 'ь')
$FLastTwo = mb_substr($this->firstName, -2, 2, 'utf-8'); {
$FLastThree = mb_substr($this->firstName, -3, 3, 'utf-8'); $man+=0.02;
$FLastFour = mb_substr($this->firstName, -4, 4, 'utf-8'); }
$SLastSymbol = mb_substr($this->secondName, -1, 1, 'utf-8'); if ($this->in($this->Last(2), array('дь')))
$SLastTwo = mb_substr($this->secondName, -2, 2, 'utf-8'); {
$SLastThree = mb_substr($this->secondName, -3, 3, 'utf-8'); $woman+=0.1;
}
//Если нет отчества, то определяем по имени и фамилии, будем считать вероятность
if (isset($this->firstName) and $this->firstName) if ($this->in($this->Last(3), array('ель', 'бов')))
{ {
//Попробуем выжать максимум из имени $woman+=0.4;
//Если имя заканчивается на й, то скорее всего мужчина }
if ($FLastSymbol == 'й')
{ $word->setGender($man, $woman);
$man+=0.9; }
}
if (in_array($FLastTwo, array('он', 'ов', 'ав', 'ам', 'ол', 'ан', 'рд', 'мп', 'ко', 'ло'))) protected function GenderBySecondName(NCLNameCaseWord $word)
{ {
$man+=0.5; $this->setWorkingWord($word->getWord());
}
if (in_array($FLastThree, array('бов', 'нка', 'яра', 'ила'))) $man = 0; //Мужчина
{ $woman = 0; //Женщина
$woman+=0.5;
} if ($this->in($this->Last(2), array('ов', 'ин', 'ев', 'єв', 'ін', 'їн', 'ий', 'їв', 'ів', 'ой', 'ей')))
if ($this->in($FLastSymbol, $this->consonant)) {
{ $man+=0.4;
$man+=0.01; }
}
if ($FLastSymbol == 'ь') if ($this->in($this->Last(3), array('ова', 'ина', 'ева', 'єва', 'іна')))
{ {
$man+=0.02; $woman+=0.4;
} }
if (in_array($FLastTwo, array('дь'))) if ($this->in($this->Last(2), array('ая')))
{ {
$woman+=0.1; $woman+=0.4;
} }
if (in_array($FLastThree, array('ель', 'бов'))) $word->setGender($man, $woman);
{ }
$woman+=0.4;
} protected function GenderByFatherName(NCLNameCaseWord $word)
} {
$this->setWorkingWord($word->getWord());
// $man*=1.2;
// $woman*=1.2; if ($this->Last(2) == 'ич')
{
if (isset($this->secondName) and $this->secondName) $word->setGender(10, 0); // мужчина
{ }
if (in_array($SLastTwo, array('ов', 'ин', 'ев', 'єв', 'ін', 'їн', 'ий', 'їв', 'ів', 'ой', 'ей'))) if ($this->Last(2) == 'на')
{ {
$man+=0.4; $word->setGender(0, 12); // женщина
}
if (in_array($SLastThree, array('ова', 'ина', 'ева', 'єва', 'іна')))
{
$woman+=0.4;
}
if (in_array($SLastTwo, array('ая')))
{
$woman+=0.4;
}
}
//Теперь смотрим, кто больше набрал
if ($man > $woman)
{
$this->gender = NCL::$MAN;
}
else
{
$this->gender = NCL::$WOMAN;
}
} }
return true;
} }
/* /*
@ -737,8 +660,9 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
* @return integer $number - 1-фамили 2-имя 3-отчество * @return integer $number - 1-фамили 2-имя 3-отчество
*/ */
protected function detectNamePart($namepart) protected function detectNamePart(NCLNameCaseWord $word)
{ {
$namepart = $word->getWord();
$this->setWorkingWord($namepart); $this->setWorkingWord($namepart);
//Считаем вероятность //Считаем вероятность
@ -785,15 +709,15 @@ class NCLNameCaseUa extends NCLNameCaseCore implements NCLNameCaseInterface
if ($first == $max) if ($first == $max)
{ {
return 'N'; $word->setNamePart('N');
} }
elseif ($second == $max) elseif ($second == $max)
{ {
return 'S'; $word->setNamePart('S');
} }
else else
{ {
return 'F'; $word->setNamePart('F');
} }
} }

View file

@ -1,5 +1,6 @@
<?php <?php
if(!defined('NCL_DIR'))
if (!defined('NCL_DIR'))
{ {
define('NCL_DIR', dirname(__FILE__)); define('NCL_DIR', dirname(__FILE__));
} }
@ -11,82 +12,23 @@ require_once NCL_DIR . '/NCLNameCaseWord.php';
class NCLNameCaseCore extends NCL class NCLNameCaseCore extends NCL
{ {
/**
* Система уже готово к склонению или нет
* @var bool
*/
protected $ready = false;
/**
* Все слова уже просклонялись
* @var bool
*/
protected $finished = false;
/** /**
* Список всех слов * Список всех слов
* @var array * @var array
*/ */
protected $words = array(); protected $words = array();
/** DEPRECATED
* Имя для склонения
* @var string
*/
protected $firstName = "";
/** DEPRECATED
* Фамилия для склонения
* @var string
*/
protected $secondName = "";
/** DEPRECATED
* Отчество для склонения
* @var string
*/
protected $fatherName = "";
/**
* @var integer
* Пол человека
* <li>0 - не известно</li>
* <li>1 - мужчина</li>
* <li>2 - женщина</li>
*/
protected $gender = 0;
/** DEPRECATED
* @var array()
* Результат склонения имени
*/
protected $firstResult = array();
/** DEPRECATED
* @var array()
* Результат склонения фамилии
*/
protected $secondResult = array();
/** DEPRECATED
* @var array()
* Результат склонения отчества
*/
protected $fatherResult = array();
/*
* @var integer
* Номер правила по которому не склоняется имя/фамилия
*/
protected $error = "";
/** DEPRECATED
* @var integer
* Номер правила по которому склоняется имя
*/
protected $frule = "";
/** DEPRECATED
* @var integer
* Номер правила по которому не склоняется фамилия
*/
protected $srule = "";
/* /*
* Слово с которым работаем сейчас * Слово с которым работаем сейчас
* @var string * @var string
@ -108,6 +50,7 @@ class NCLNameCaseCore extends NCL
* @var array * @var array
*/ */
protected $lastResult = array(); protected $lastResult = array();
protected $index = array();
/** /**
* Сброс всех настроек * Сброс всех настроек
@ -117,7 +60,21 @@ class NCLNameCaseCore extends NCL
$this->lastRule = 0; $this->lastRule = 0;
$this->lastResult = array(); $this->lastResult = array();
} }
protected function fullReset()
{
$this->words = array();
$this->index = array('N' => array(), 'F' => array(), 'S' => array());
$this->reset();
$this->notReady();
}
protected function notReady()
{
$this->ready = false;
$this->finished = false;
}
/** /**
* Установить номер парвила * Установить номер парвила
* @param int $index * @param int $index
@ -126,9 +83,7 @@ class NCLNameCaseCore extends NCL
{ {
$this->lastRule = $index; $this->lastRule = $index;
} }
/* /*
* Установить текущее слово * Установить текущее слово
*/ */
@ -167,7 +122,7 @@ class NCLNameCaseCore extends NCL
} }
return $this->workindLastCache[$length][$stopAfter]; return $this->workindLastCache[$length][$stopAfter];
} }
/** /**
* Выполняет над словом типа $gender (man / woman) в порядке указанов в $rulesArray * Выполняет над словом типа $gender (man / woman) в порядке указанов в $rulesArray
* @param string $gender - мужские/женский правила * @param string $gender - мужские/женский правила
@ -176,10 +131,10 @@ class NCLNameCaseCore extends NCL
*/ */
protected function RulesChain($gender, $rulesArray) protected function RulesChain($gender, $rulesArray)
{ {
foreach($rulesArray as $ruleID) foreach ($rulesArray as $ruleID)
{ {
$ruleMethod = $gender.'Rule'.$ruleID; $ruleMethod = $gender . 'Rule' . $ruleID;
if($this->$ruleMethod()) if ($this->$ruleMethod())
{ {
return true; return true;
} }
@ -187,33 +142,6 @@ class NCLNameCaseCore extends NCL
return false; return false;
} }
protected function makeFirstTheSame()
{
$this->firstResult = array_fill(0, $this->CaseCount, $this->firstName);
}
/*
* Функция, которая ставит фамилию во всех падежах в форме именительного падежа.
*
* @return void
*/
protected function makeSecondTheSame()
{
$this->secondResult = array_fill(0, $this->CaseCount, $this->secondName);
}
/*
* Функция, которая ставит фамилию во всех падежах в форме именительного падежа.
*
* @return void
*/
protected function makeFatherTheSame()
{
$this->fatherResult = array_fill(0, $this->CaseCount, $this->fatherName);
}
/* /*
* Функция проверяет, входит ли буква в строку. * Функция проверяет, входит ли буква в строку.
* *
@ -279,7 +207,7 @@ class NCLNameCaseCore extends NCL
protected function wordForms($word, $endings, $replaceLast=0) protected function wordForms($word, $endings, $replaceLast=0)
{ {
//Создаем массив с именительный падежом //Создаем массив с именительный падежом
$result = array($word); $result = array($this->workingWord);
//Убираем в окончание лишние буквы //Убираем в окончание лишние буквы
$word = NCLStr::substr($word, 0, NCLStr::strlen($word) - $replaceLast); $word = NCLStr::substr($word, 0, NCLStr::strlen($word) - $replaceLast);
@ -292,31 +220,6 @@ class NCLNameCaseCore extends NCL
$this->lastResult = $result; $this->lastResult = $result;
} }
/*
* DEPRECATED!!!
*/
protected function padeg($word, $endings, $replaceLast=false, $replaceTwoLast=false)
{
$result = array($word);
if ($replaceTwoLast == true)
{
//убираем последнею букву
$word = mb_substr($word, 0, mb_strlen($word, 'utf-8') - 2, 'utf-8');
}
elseif ($replaceLast == true)
{
//убираем последнею букву
$word = mb_substr($word, 0, mb_strlen($word, 'utf-8') - 1, 'utf-8');
}
$i = 0;
for ($i = 0; $i < ($this->CaseCount - 1); $i++)
{
$result[$i + 1] = $word . $endings[$i];
}
return $result;
}
/* /*
* Установка имени * Установка имени
* *
@ -327,7 +230,13 @@ class NCLNameCaseCore extends NCL
public function setFirstName($firstname="") public function setFirstName($firstname="")
{ {
$this->firstName = $firstname; if ($firstname)
{
$index = count($this->words);
$this->words[$index] = new NCLNameCaseWord($firstname);
$this->words[$index]->setNamePart('N');
$this->notReady();
}
} }
/* /*
@ -340,7 +249,13 @@ class NCLNameCaseCore extends NCL
public function setSecondName($secondname="") public function setSecondName($secondname="")
{ {
$this->secondName = $secondname; if ($secondname)
{
$index = count($this->words);
$this->words[$index] = new NCLNameCaseWord($secondname);
$this->words[$index]->setNamePart('S');
$this->notReady();
}
} }
/* /*
@ -353,7 +268,13 @@ class NCLNameCaseCore extends NCL
public function setFatherName($fathername="") public function setFatherName($fathername="")
{ {
$this->fatherName = $fathername; if ($fathername)
{
$index = count($this->words);
$this->words[$index] = new NCLNameCaseWord($fathername);
$this->words[$index]->setNamePart('F');
$this->notReady();
}
} }
/* /*
@ -368,7 +289,10 @@ class NCLNameCaseCore extends NCL
public function setGender($gender=0) public function setGender($gender=0)
{ {
$this->gender = $gender; foreach ($this->words as $word)
{
$word->setTrueGender($gender);
}
} }
/* /*
@ -427,6 +351,96 @@ class NCLNameCaseCore extends NCL
$this->setSecondName($secondname); $this->setSecondName($secondname);
} }
protected function prepareNamePart(NCLNameCaseWord $word)
{
if (!$word->getNamePart())
{
$this->detectNamePart($word);
}
}
protected function prepareAllNameParts()
{
foreach ($this->words as $word)
{
$this->prepareNamePart($word);
}
}
protected function prepareGender(NCLNameCaseWord $word)
{
if (!$word->isGenderSolved())
{
$namePart = $word->getNamePart();
switch ($namePart)
{
case 'N': $this->GenderByFirstName($word);
break;
case 'F': $this->GenderByFatherName($word);
break;
case 'S': $this->GenderBySecondName($word);
break;
}
}
}
protected function solveGender()
{
//Ищем, может гдето пол уже установлен
foreach ($this->words as $word)
{
if ($word->isGenderSolved())
{
$this->setGender($word->gender());
return true;
}
}
//Если нет тогда определяем у каждого слова и потом сумируем
$man = 0;
$woman = 0;
foreach ($this->words as $word)
{
$this->prepareGender($word);
$gender = $word->getGender();
$man+=$gender[NCL::$MAN];
$woman+=$gender[NCL::$WOMAN];
}
if ($man > $woman)
{
$this->setGender(NCL::$MAN);
}
else
{
$this->setGender(NCL::$WOMAN);
}
return true;
}
protected function generateIndex()
{
$this->index = array('N' => array(), 'S' => array(), 'F' => array());
foreach ($this->words as $index => $word)
{
$namepart = $word->getNamePart();
$this->index[$namepart][] = $index;
}
}
protected function prepareEverything()
{
if (!$this->ready)
{
$this->prepareAllNameParts();
$this->solveGender();
$this->generateIndex();
$this->ready = true;
}
}
/* /*
* Автоматическое определение пола * Автоматическое определение пола
* Возвращает пол по ФИО * Возвращает пол по ФИО
@ -435,9 +449,12 @@ class NCLNameCaseCore extends NCL
public function genderAutoDetect() public function genderAutoDetect()
{ {
$this->gender = null; $this->prepareEverything();
$this->genderDetect(); if (isset($this->words[0]))
return $this->gender; {
return $this->words[0]->gender();
}
return false;
} }
/* /*
@ -447,137 +464,120 @@ class NCLNameCaseCore extends NCL
public function splitFullName($fullname) public function splitFullName($fullname)
{ {
$this->firstName = '';
$this->secondName = '';
$this->fatherName = '';
$this->gender = null;
$fullname = trim($fullname); $fullname = trim($fullname);
$list = explode(' ', $fullname); $list = explode(' ', $fullname);
$found = array();
$duplicate = array(); foreach ($list as $word)
$c = count($list);
for ($i = 0; $i < $c; $i++)
{ {
if (trim($list[$i])) $this->words[] = new NCLNameCaseWord($word);
{
$found[$i][0] = $this->detectNamePart($list[$i]);
$found[$i][1] = $list[$i];
if ($found[$i][0] == 'N')
{
$this->firstName = $found[$i][1];
}
elseif ($found[$i][0] == 'S')
{
$this->secondName = $found[$i][1];
}
elseif ($found[$i][0] == 'F')
{
$this->fatherName = $found[$i][1];
}
}
} }
$format = array(); $this->prepareEverything();
foreach ($found as $value) $formatArr = array();
foreach ($this->words as $word)
{ {
$format[] = $value; $formatArr[] = $word->getNamePart();
} }
if (count($format) == 1)
return implode(' ', $formatArr);
}
protected function WordCase(NCLNameCaseWord $word)
{
$gender = ($word->gender() == NCL::$MAN ? 'man' : 'woman');
$namepart = '';
switch ($word->getNamePart())
{ {
return $format[0][0]; case 'F': $namepart = 'Father'; break;
case 'N': $namepart = 'First'; break;
case 'S': $namepart = 'Second'; break;
}
$method = $gender . $namepart . 'Name';
$this->setWorkingWord($word->getWord());
if ($this->$method())
{
$word->setNameCases($this->lastResult);
$word->setRule($this->lastRule);
} }
else else
{ {
return $format; $word->setNameCases(array_fill(0, $this->CaseCount, $word->getWord()));
$word->setRule(-1);
} }
} }
/* protected function AllWordCases()
* Склонение имени
*
* @return boolean
*/
protected function FirstName()
{ {
$this->genderDetect(); if (!$this->finished)
if ($this->firstName)
{ {
if ($this->gender == 1) $this->prepareEverything();
foreach ($this->words as $word)
{ {
$result = $this->manFirstName(); $this->WordCase($word);
} }
else
{ $this->finished = true;
$result = $this->womanFirstName();
}
$this->firstResult[0] = $this->firstName;
return $result;
}
else
{
$this->firstResult = array_fill(0, $this->CaseCount, "");
return false;
} }
} }
/* private function getWordCase(NCLNameCaseWord $word, $number=null)
* Склонение фамилии
*
* @return boolean
*/
protected function SecondName()
{ {
$this->genderDetect(); $cases = $word->getNameCases();
if ($this->secondName) if (is_null($number) or $number < 0 or $number > ($this->CaseCount - 1))
{ {
if ($this->gender == 1) return $cases;
{
$result = $this->manSecondName();
}
else
{
$result = $this->womanSecondName();
}
$this->secondResult[0] = $this->secondName;
return $result;
} }
else else
{ {
$this->secondResult = array_fill(0, $this->CaseCount, ""); return $cases[$number];
return false;
} }
} }
/* /**
* Склонение отчеств * Возвращает склееные результаты склонения
* * @param array $indexArray - индексы слов, которые необходимо склеить
* @return boolean * @param int $number -
*/ */
private function getCasesConnected($indexArray, $number=null)
protected function FatherName()
{ {
$this->genderDetect(); $readyArr = array();
if ($this->fatherName) foreach ($indexArray as $index)
{ {
if ($this->gender == 1) $readyArr[] = $this->getWordCase($this->words[$index], $number);
}
$all = count($readyArr);
if ($all)
{
if (is_array($readyArr[0]))
{ {
$result = $this->manFatherName(); //Масив нужно скелить каждый падеж
$resultArr = array();
for ($case = 0; $case < $this->CaseCount; $case++)
{
$tmp = array();
for ($i = 0; $i < $all; $i++)
{
$tmp[] = $readyArr[$i][$case];
}
$resultArr[$case] = implode(' ', $tmp);
}
return $resultArr;
} }
else else
{ {
$result = $this->womanFatherName(); return implode(' ', $readyArr);
} }
$this->fatherResult[0] = $this->fatherName;
return $result;
}
else
{
$this->fatherResult = array_fill(0, $this->CaseCount, "");
return false;
} }
return '';
} }
/* /*
@ -588,24 +588,9 @@ class NCLNameCaseCore extends NCL
public function getFirstNameCase($number=null) public function getFirstNameCase($number=null)
{ {
if (!isset($this->firstResult[0]) or $this->firstResult[0] <> $this->firstName) $this->AllWordCases();
{
$this->FirstName();
}
if ($number < 0 or $number > ($this->CaseCount - 1))
{
$number = null;
}
if (is_null($number)) return $this->getCasesConnected($this->index['N'], $number);
{
//Возвращаем все падежи
return $this->firstResult;
}
else
{
return $this->firstResult[$number];
}
} }
/* /*
@ -616,24 +601,9 @@ class NCLNameCaseCore extends NCL
public function getSecondNameCase($number=null) public function getSecondNameCase($number=null)
{ {
if (!isset($this->secondResult[0]) or $this->secondResult[0] <> $this->secondName) $this->AllWordCases();
{
$this->SecondName();
}
if ($number < 0 or $number > ($this->CaseCount - 1))
{
$number = null;
}
if (is_null($number)) return $this->getCasesConnected($this->index['S'], $number);
{
//Возвращаем все падежи
return $this->secondResult;
}
else
{
return $this->secondResult[$number];
}
} }
/* /*
@ -644,24 +614,9 @@ class NCLNameCaseCore extends NCL
public function getFatherNameCase($number=null) public function getFatherNameCase($number=null)
{ {
if (!isset($this->fatherResult[0]) or $this->fatherResult[0] <> $this->fatherName) $this->AllWordCases();
{
$this->FatherName();
}
if ($number < 0 or $number > ($this->CaseCount - 1))
{
$number = null;
}
if (is_null($number)) return $this->getCasesConnected($this->index['F'], $number);
{
//Возвращаем все падежи
return $this->fatherResult;
}
else
{
return $this->fatherResult[$number];
}
} }
/* /*
@ -672,8 +627,12 @@ class NCLNameCaseCore extends NCL
public function qFirstName($firstName, $CaseNumber=null, $gender=0) public function qFirstName($firstName, $CaseNumber=null, $gender=0)
{ {
$this->gender = $gender; $this->fullReset();
$this->firstName = $firstName; $this->setFirstName($firstName);
if ($gender)
{
$this->setGender($gender);
}
return $this->getFirstNameCase($CaseNumber); return $this->getFirstNameCase($CaseNumber);
} }
@ -685,8 +644,13 @@ class NCLNameCaseCore extends NCL
public function qSecondName($secondName, $CaseNumber=null, $gender=0) public function qSecondName($secondName, $CaseNumber=null, $gender=0)
{ {
$this->gender = $gender; $this->fullReset();
$this->secondName = $secondName; $this->setSecondName($secondName);
if ($gender)
{
$this->setGender($gender);
}
return $this->getSecondNameCase($CaseNumber); return $this->getSecondNameCase($CaseNumber);
} }
@ -698,8 +662,12 @@ class NCLNameCaseCore extends NCL
public function qFatherName($fatherName, $CaseNumber=null, $gender=0) public function qFatherName($fatherName, $CaseNumber=null, $gender=0)
{ {
$this->gender = $gender; $this->fullReset();
$this->fatherName = $fatherName; $this->setFatherName($fatherName);
if ($gender)
{
$this->setGender($gender);
}
return $this->getFatherNameCase($CaseNumber); return $this->getFatherNameCase($CaseNumber);
} }
@ -719,12 +687,13 @@ class NCLNameCaseCore extends NCL
{ {
return $this->getFormattedArrayHard($format); return $this->getFormattedArrayHard($format);
} }
$length = mb_strlen($format);
$length = NCLStr::strlen($format);
$result = array(); $result = array();
$cases = array(); $cases = array();
for ($i = 0; $i < $length; $i++) for ($i = 0; $i < $length; $i++)
{ {
$symbol = mb_substr($format, $i, 1); $symbol = NCLStr::substr($format, $i, 1);
if ($symbol == 'S') if ($symbol == 'S')
{ {
$cases['S'] = $this->getSecondNameCase(); $cases['S'] = $this->getSecondNameCase();
@ -744,7 +713,7 @@ class NCLNameCaseCore extends NCL
$line = ""; $line = "";
for ($i = 0; $i < $length; $i++) for ($i = 0; $i < $length; $i++)
{ {
$symbol = mb_substr($format, $i, 1); $symbol = NCLStr::substr($format, $i, 1);
if ($symbol == 'S') if ($symbol == 'S')
{ {
$line.=$cases['S'][$curCase]; $line.=$cases['S'][$curCase];
@ -857,7 +826,7 @@ class NCLNameCaseCore extends NCL
public function getFormatted($caseNum=0, $format="S N F") public function getFormatted($caseNum=0, $format="S N F")
{ {
//Если не указан формат используем другую функцию //Если не указан падеж используем другую функцию
if (is_null($caseNum)) if (is_null($caseNum))
{ {
return $this->getFormattedArray($format); return $this->getFormattedArray($format);
@ -869,11 +838,11 @@ class NCLNameCaseCore extends NCL
} }
else else
{ {
$length = mb_strlen($format); $length = NCLStr::strlen($format);
$result = ""; $result = "";
for ($i = 0; $i < $length; $i++) for ($i = 0; $i < $length; $i++)
{ {
$symbol = mb_substr($format, $i, 1); $symbol = NCLStr::substr($format, $i, 1);
if ($symbol == 'S') if ($symbol == 'S')
{ {
$result.=$this->getSecondNameCase($caseNum); $result.=$this->getSecondNameCase($caseNum);
@ -907,24 +876,18 @@ class NCLNameCaseCore extends NCL
public function qFullName($secondName="", $firstName="", $fatherName="", $gender=0, $caseNum=0, $format="S N F") public function qFullName($secondName="", $firstName="", $fatherName="", $gender=0, $caseNum=0, $format="S N F")
{ {
$this->gender = $gender; $this->fullReset();
$this->firstName = $firstName; $this->setFirstName($firstName);
$this->secondName = $secondName; $this->setSecondName($secondName);
$this->fatherName = $fatherName; $this->setFatherName($fatherName);
if ($gender)
{
$this->setGender($gender);
}
return $this->getFormatted($caseNum, $format); return $this->getFormatted($caseNum, $format);
} }
public function getFirstNameRule()
{
return $this->frule;
}
public function getSecondNameRule()
{
return $this->srule;
}
/* /*
* Быстрое склонение имени. Передается один параметр строка, где может быть ФИО в любом виде. Есть необязательный параметр пол. И так ще необязательный параметр падеж. Если падеж указан, тогда возвращается строка в том падеже, если нет тогда все возможные падежи. * Быстрое склонение имени. Передается один параметр строка, где может быть ФИО в любом виде. Есть необязательный параметр пол. И так ще необязательный параметр падеж. Если падеж указан, тогда возвращается строка в том падеже, если нет тогда все возможные падежи.
* *
@ -933,9 +896,12 @@ class NCLNameCaseCore extends NCL
public function q($fullname, $caseNum=null, $gender=null) public function q($fullname, $caseNum=null, $gender=null)
{ {
$this->fullReset();
$format = $this->splitFullName($fullname); $format = $this->splitFullName($fullname);
$this->gender = $gender; if ($gender)
$this->genderAutoDetect(); {
$this->setGender($gender);
}
return $this->getFormatted($caseNum, $format); return $this->getFormatted($caseNum, $format);
} }

View file

@ -45,10 +45,6 @@ interface NCLNameCaseInterface
public function qFullName($secondName="", $firstName="", $fatherName="", $gender=0, $caseNum=0, $format="S N F"); public function qFullName($secondName="", $firstName="", $fatherName="", $gender=0, $caseNum=0, $format="S N F");
public function getFirstNameRule();
public function getSecondNameRule();
public function q($fullname, $caseNum=null, $gender=null); public function q($fullname, $caseNum=null, $gender=null);
} }

View file

@ -1,4 +1,5 @@
<?php <?php
/** /**
* Description of NCL * Description of NCL
* *
@ -6,42 +7,161 @@
*/ */
class NCLNameCaseWord class NCLNameCaseWord
{ {
private $word = '';
/** /**
* Тип текущей записи (Фамилия/Имя/Отчество) * Тип текущей записи (Фамилия/Имя/Отчество)
* @var string * @var string
*/ */
private $namePart = null; private $namePart = null;
/** /**
* Вероятность, что мужчина * Вероятность, что мужчина
* @var int * @var int
*/ */
private $genderMan = 0; private $genderMan = 0;
/** /**
* Вероятность, что женщина * Вероятность, что женщина
* @var int * @var int
*/ */
private $genderWoman = 0; private $genderWoman = 0;
private $genderSolved = 0;
private $letterMask = ''; private $letterMask = '';
private $isUpperCase = false;
private $NameCases = array();
/** private $rule = 0;
* @var NCLNameCaseCore $core
*/
private $core;
/** /**
* Создать запись из слова * Создать запись из слова
* @param string $word * @param string $word
* @param NCLNameCaseCore $core * @param NCLNameCaseCore $core
*/ */
public function __construct($word, $core) public function __construct($word)
{ {
$this->core = $core; $this->generateMask($word);
$this->word = NCLStr::strtolower($word);
}
private function generateMask($word)
{
$letters = NCLStr::splitLetters($word);
$mask = array();
$this->isUpperCase = true;
foreach ($letters as $letter)
{
if (NCLStr::isLowerCase($letter))
{
$mask[] = 'x';
$this->isUpperCase = false;
}
else
{
$mask[] = 'X';
}
}
$this->letterMask = $mask;
}
private function returnMask()
{
if ($this->isUpperCase)
{
foreach ($this->NameCases as $index => $case)
{
$this->NameCases[$index] = NCLStr::strtoupper($this->NameCases[$index]);
}
}
else
{
$splitedMask = $this->letterMask;
$maskLength = count($splitedMask);
foreach ($this->NameCases as $index => $case)
{
$caseLength = NCLStr::strlen($case);
$max = min(array($caseLength, $maskLength));
$this->NameCases[$index] = '';
for ($letterIndex = 0; $letterIndex < $max; $letterIndex++)
{
$letter = NCLStr::substr($case, $letterIndex, 1);
if ($splitedMask[$letterIndex] == 'X')
{
$letter = NCLStr::strtoupper($letter);
}
$this->NameCases[$index] .= $letter;
}
$this->NameCases[$index] .= NCLStr::substr($case, $max, $caseLength-$maskLength);
}
}
}
public function setNameCases($nameCases)
{
$this->NameCases = $nameCases;
$this->returnMask();
}
public function getNameCases()
{
return $this->NameCases;
}
public function gender()
{
if (!$this->genderSolved)
{
if ($this->genderMan > $this->genderWoman)
{
$this->genderSolved = NCL::$MAN;
}
else
{
$this->genderSolved = NCL::$WOMAN;
}
}
return $this->genderSolved;
}
public function setGender($man, $woman)
{
$this->genderMan = $man;
$this->genderWoman = $woman;
}
public function setTrueGender($gender)
{
$this->genderSolved = $gender;
}
public function getGender()
{
return array(NCL::$MAN => $this->genderMan, NCL::$WOMAN => $this->genderWoman);
}
public function setNamePart($namePart)
{
$this->namePart = $namePart;
}
public function getNamePart()
{
return $this->namePart;
}
public function getWord()
{
return $this->word;
}
public function isGenderSolved()
{
return ($this->genderSolved ? true : false);
}
public function setRule($ruleID)
{
$this->rule = $ruleID;
} }
} }
?> ?>

View file

@ -72,6 +72,11 @@ class NCLStr
{ {
return ($phrase == NCLStr::strtolower($phrase)); return ($phrase == NCLStr::strtolower($phrase));
} }
static function isUpperCase($phrase)
{
return ($phrase == NCLStr::strtoupper($phrase));
}
static function splitLetters($phrase) static function splitLetters($phrase)
{ {
@ -84,6 +89,11 @@ class NCLStr
return $resultArr; return $resultArr;
} }
static function connectLetters($lettersArr)
{
return implode('', $lettersArr);
}
static function explode($pattern, $string) static function explode($pattern, $string)
{ {
return mb_split($pattern, $string); return mb_split($pattern, $string);

View file

@ -3,6 +3,6 @@
header('Content-type: text/html; charset=utf-8'); header('Content-type: text/html; charset=utf-8');
require '../Library/NCL.NameCase.ua.php'; require '../Library/NCL.NameCase.ua.php';
$ob = new NCLNameCaseUa; $ob = new NCLNameCaseUa;
print_r($ob->qSecondName('Сорока',null,2)); print_r($ob->qFirstName('Ялина',null,2));
echo $ob->getSecondNameRule(); echo $ob->getSecondNameRule();
?> ?>