source: branches/version-2_13-dev/data/class/SC_ClassAutoloader.php @ 23546

Revision 23546, 5.7 KB checked in by shutta, 10 years ago (diff)

#2580 Copyrightを更新
Copyrightを2014に更新

Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2014 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23
24/**
25 * クラスのオートローディングクラス
26 *
27 * @package Page
28 * @author LOCKON CO.,LTD.
29 * @version $Id$
30 */
31class SC_ClassAutoloader
32{
33    /**
34     * クラスのオートローディング本体
35     *
36     * LC_* には対応していない。
37     * @return void
38     */
39    public static function autoload($class)
40    {
41        $arrClassNamePart = explode('_', $class);
42        $is_ex = end($arrClassNamePart) === 'Ex';
43        $count = count($arrClassNamePart);
44        $classpath = $is_ex ? CLASS_EX_REALDIR : CLASS_REALDIR;
45
46        if (($arrClassNamePart[0] === 'GC' || $arrClassNamePart[0] === 'SC') && $arrClassNamePart[1] === 'Utils') {
47            $classpath .= $is_ex ? 'util_extends/' : 'util/';
48        } elseif ($arrClassNamePart[0] === 'SC' && $is_ex === true && $count >= 4) {
49            $arrClassNamePartTemp = $arrClassNamePart;
50            // FIXME クラスファイルのディレクトリ命名が変。変な現状に合わせて強引な処理をしてる。
51            $arrClassNamePartTemp[1] = $arrClassNamePartTemp[1] . '_extends';
52            $classpath .= strtolower(implode('/', array_slice($arrClassNamePartTemp, 1, -2))) . '/';
53        } elseif ($arrClassNamePart[0] === 'SC' && $is_ex === false && $count >= 3) {
54            $classpath .= strtolower(implode('/', array_slice($arrClassNamePart, 1, -1))) . '/';
55        } elseif ($arrClassNamePart[0] === 'SC') {
56            // 処理なし
57        } else {
58            // PEAR用
59            // FIXME トリッキー
60            $classpath = '';
61            $class = str_replace('_', '/', $class);
62        }
63
64        $classpath .= "$class.php";
65
66        // プラグイン向けフックポイント
67        // MEMO: プラグインのローダーがDB接続を必要とするため、SC_Queryがロードされた後のみ呼び出される。
68        //       プラグイン情報のキャッシュ化が行われれば、全部にフックさせることを可能に?
69        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(true);
70        if (is_object($objPlugin)) {
71            // 元の設定を一時保存
72            $plugin_class = $class;
73            $plugin_classpath = $classpath;
74
75            $objPlugin->doAction('loadClassFileChange', array(&$plugin_class, &$plugin_classpath));
76
77            // FIXME: トリッキーな処理で _Ex ファイルを無視しないようにする(無視するとユーザーカスタマイズで分かりにくい)
78            //        SC_XXXX_Ex がロードされる場合にextendsのchainを
79            //        SC_XXXX_Ex -> SC_XXXX から、 SC_XXXX_Ex -> $class (-> SC_XXXX) と変える。
80            //        そうでない場合は、直接置き換えと想定して帰ってきたクラスをロードする
81            if (is_array($plugin_class) && count($plugin_class) > 0) {
82                $arrPluginClassName = $plugin_class;
83                $arrPluginClassPath = $plugin_classpath;
84
85                foreach ($arrPluginClassName as $key => $plugin_class) {
86                    $plugin_classpath = $arrPluginClassPath[$key];
87
88                    if ($is_ex) {
89                        // Ex ファイルへのフックの場合のみチェイン変更する。
90
91                        if ($parent_classname) {
92                            $exp = "/(class[ ]+{$plugin_class}[ ]+extends +)[a-zA-Z_\-]+( *{?)/";
93                            $replace = '$1' . $parent_classname . '$2';
94
95                            $base_class_str = file_get_contents($plugin_classpath);
96                            $base_class_str = str_replace(array('<?php', '?>'), '', $base_class_str);
97                            $base_class_str = preg_replace($exp, $replace, $base_class_str, 1);
98                            eval($base_class_str);
99                        } else {
100                            include $plugin_classpath;
101                        }
102
103                        $parent_classname = $plugin_class;
104                    } else {
105                        include $plugin_classpath;
106                    }
107                }
108
109                if ($is_ex) {
110                    $exp = "/(class[ ]+{$class}[ ]+extends +)[a-zA-Z_\-]+( *{?)/";
111                    $replace = '$1' . $parent_classname . '$2';
112                    $base_class_str = file_get_contents($classpath);
113                    $base_class_str = str_replace(array('<?php', '?>'), '', $base_class_str);
114                    $base_class_str = preg_replace($exp, $replace, $base_class_str, 1);
115                    eval($base_class_str);
116
117                    return;
118                }
119            }
120        }
121        if (file_exists($classpath)) {
122            include $classpath;
123        } else {
124            $arrPath = explode(PATH_SEPARATOR, get_include_path());
125            foreach ($arrPath as $path) {
126                if (file_exists($path . '/' .$classpath)) {
127                    include $classpath;
128                    break;
129                }
130            }
131        }
132    }
133}
Note: See TracBrowser for help on using the repository browser.