source: branches/version-2_12-dev/data/class/SC_ClassAutoloader.php @ 22206

Revision 22206, 5.4 KB checked in by kim, 11 years ago (diff)

#2003 copyrightを2013に更新

Line 
1<?php
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2013 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     * LC_* には対応していない。
36     * @return void
37     */
38    public static function autoload($class) {
39        $arrClassNamePart = explode('_', $class);
40        $is_ex = end($arrClassNamePart) === 'Ex';
41        $count = count($arrClassNamePart);
42        $classpath = $is_ex ? CLASS_EX_REALDIR : CLASS_REALDIR;
43
44        if (($arrClassNamePart[0] === 'GC' || $arrClassNamePart[0] === 'SC') && $arrClassNamePart[1] === 'Utils') {
45            $classpath .= $is_ex ? 'util_extends/' : 'util/';
46        } elseif ($arrClassNamePart[0] === 'SC' && $is_ex === true && $count >= 4) {
47            $arrClassNamePartTemp = $arrClassNamePart;
48            // FIXME クラスファイルのディレクトリ命名が変。変な現状に合わせて強引な処理をしてる。
49            $arrClassNamePartTemp[1] = $arrClassNamePartTemp[1] . '_extends';
50            $classpath .= strtolower(implode('/', array_slice($arrClassNamePartTemp, 1, -2))) . '/';
51        } elseif ($arrClassNamePart[0] === 'SC' && $is_ex === false && $count >= 3) {
52            $classpath .= strtolower(implode('/', array_slice($arrClassNamePart, 1, -1))) . '/';
53        } elseif ($arrClassNamePart[0] === 'SC') {
54            // 処理なし
55        }
56        // PEAR用
57        // FIXME トリッキー
58        else {
59            $classpath = '';
60            $class = str_replace('_', '/', $class);
61        }
62
63        $classpath .= "$class.php";
64
65        // プラグイン向けフックポイント
66        // MEMO: プラグインのローダーがDB接続を必要とするため、SC_Queryがロードされた後のみ呼び出される。
67        //       プラグイン情報のキャッシュ化が行われれば、全部にフックさせることを可能に?
68        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(true);
69        if (is_object($objPlugin)) {
70
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                    return;
117                }
118            }
119        }
120        include $classpath;
121    }
122}
Note: See TracBrowser for help on using the repository browser.