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

Revision 22567, 5.4 KB checked in by shutta, 11 years ago (diff)

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

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     *
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        }
58        // PEAR用
59        // FIXME トリッキー
60        else {
61            $classpath = '';
62            $class = str_replace('_', '/', $class);
63        }
64
65        $classpath .= "$class.php";
66
67        // プラグイン向けフックポイント
68        // MEMO: プラグインのローダーがDB接続を必要とするため、SC_Queryがロードされた後のみ呼び出される。
69        //       プラグイン情報のキャッシュ化が行われれば、全部にフックさせることを可能に?
70        $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance(true);
71        if (is_object($objPlugin)) {
72
73            // 元の設定を一時保存
74            $plugin_class = $class;
75            $plugin_classpath = $classpath;
76
77            $objPlugin->doAction('loadClassFileChange', array(&$plugin_class, &$plugin_classpath));
78
79            // FIXME: トリッキーな処理で _Ex ファイルを無視しないようにする(無視するとユーザーカスタマイズで分かりにくい)
80            //        SC_XXXX_Ex がロードされる場合にextendsのchainを
81            //        SC_XXXX_Ex -> SC_XXXX から、 SC_XXXX_Ex -> $class (-> SC_XXXX) と変える。
82            //        そうでない場合は、直接置き換えと想定して帰ってきたクラスをロードする
83            if (is_array($plugin_class) && count($plugin_class) > 0) {
84                $arrPluginClassName = $plugin_class;
85                $arrPluginClassPath = $plugin_classpath;
86
87                foreach ($arrPluginClassName as $key => $plugin_class) {
88                    $plugin_classpath = $arrPluginClassPath[$key];
89
90                    if ($is_ex) {
91                        // Ex ファイルへのフックの場合のみチェイン変更する。
92
93                        if ($parent_classname) {
94                            $exp = "/(class[ ]+{$plugin_class}[ ]+extends +)[a-zA-Z_\-]+( *{?)/";
95                            $replace = '$1' . $parent_classname . '$2';
96
97                            $base_class_str = file_get_contents($plugin_classpath);
98                            $base_class_str = str_replace(array('<?php', '?>'), '', $base_class_str);
99                            $base_class_str = preg_replace($exp, $replace, $base_class_str, 1);
100                            eval($base_class_str);
101                        } else {
102                            include $plugin_classpath;
103                        }
104
105                        $parent_classname = $plugin_class;
106                    } else {
107                        include $plugin_classpath;
108                    }
109                }
110
111                if ($is_ex) {
112                    $exp = "/(class[ ]+{$class}[ ]+extends +)[a-zA-Z_\-]+( *{?)/";
113                    $replace = '$1' . $parent_classname . '$2';
114                    $base_class_str = file_get_contents($classpath);
115                    $base_class_str = str_replace(array('<?php', '?>'), '', $base_class_str);
116                    $base_class_str = preg_replace($exp, $replace, $base_class_str, 1);
117                    eval($base_class_str);
118                    return;
119                }
120            }
121        }
122        include $classpath;
123    }
124}
Note: See TracBrowser for help on using the repository browser.