blob: 977327a8daf4e4d3a9f7edc94c6fe5013f6e5fbb [file] [log] [blame]
Derek Jones0b59f272008-05-13 04:22:33 +00001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allardd2df9bc2007-04-15 17:41:17 +00002/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
Derek Allard3d879d52008-01-18 19:41:32 +00008 * @author ExpressionEngine Dev Team
Derek Allardd2df9bc2007-04-15 17:41:17 +00009 * @copyright Copyright (c) 2006, EllisLab, Inc.
Derek Jones7a9193a2008-01-21 18:39:20 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
Derek Allardd2df9bc2007-04-15 17:41:17 +000012 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * Database Cache Class
20 *
21 * @category Database
Derek Allard3d879d52008-01-18 19:41:32 +000022 * @author ExpressionEngine Dev Team
Derek Jones7a9193a2008-01-21 18:39:20 +000023 * @link http://codeigniter.com/user_guide/database/
Derek Allardd2df9bc2007-04-15 17:41:17 +000024 */
25class CI_DB_Cache {
26
27 var $CI;
Derek Jonesd36ade02008-05-12 15:17:41 +000028 var $db; // allows passing of db object so that multiple database connections and returned db objects can be supported
Derek Allardd2df9bc2007-04-15 17:41:17 +000029
30 /**
31 * Constructor
32 *
33 * Grabs the CI super object instance so we can access it.
34 *
35 */
Derek Jonesd36ade02008-05-12 15:17:41 +000036 function CI_DB_Cache(&$db)
Derek Allardd2df9bc2007-04-15 17:41:17 +000037 {
38 // Assign the main CI object to $this->CI
39 // and load the file helper since we use it a lot
40 $this->CI =& get_instance();
Derek Jonesd36ade02008-05-12 15:17:41 +000041 $this->db =& $db;
Derek Allardd2df9bc2007-04-15 17:41:17 +000042 $this->CI->load->helper('file');
43 }
44
45 // --------------------------------------------------------------------
46
47 /**
48 * Set Cache Directory Path
49 *
50 * @access public
51 * @param string the path to the cache directory
52 * @return bool
53 */
54 function check_path($path = '')
55 {
56 if ($path == '')
57 {
Derek Jonesd36ade02008-05-12 15:17:41 +000058 if ($this->db->cachedir == '')
Derek Allardd2df9bc2007-04-15 17:41:17 +000059 {
Derek Jonesd36ade02008-05-12 15:17:41 +000060 return $this->db->cache_off();
Derek Allardd2df9bc2007-04-15 17:41:17 +000061 }
62
Derek Jonesd36ade02008-05-12 15:17:41 +000063 $path = $this->db->cachedir;
Derek Allardd2df9bc2007-04-15 17:41:17 +000064 }
65
66 // Add a trailing slash to the path if needed
67 $path = preg_replace("/(.+?)\/*$/", "\\1/", $path);
Derek Allard39b622d2008-01-16 21:10:09 +000068
Derek Jones0b59f272008-05-13 04:22:33 +000069 if ( ! is_dir($path) OR ! is_really_writable($path))
Derek Allardd2df9bc2007-04-15 17:41:17 +000070 {
Derek Allardd2df9bc2007-04-15 17:41:17 +000071 // If the path is wrong we'll turn off caching
Derek Jonesd36ade02008-05-12 15:17:41 +000072 return $this->db->cache_off();
Derek Allardd2df9bc2007-04-15 17:41:17 +000073 }
74
Derek Jonesd36ade02008-05-12 15:17:41 +000075 $this->db->cachedir = $path;
Derek Allardd2df9bc2007-04-15 17:41:17 +000076 return TRUE;
77 }
78
79 // --------------------------------------------------------------------
80
81 /**
82 * Retrieve a cached query
83 *
84 * The URI being requested will become the name of the cache sub-folder.
85 * An MD5 hash of the SQL statement will become the cache file name
86 *
87 * @access public
88 * @return string
89 */
90 function read($sql)
91 {
Derek Jones0b59f272008-05-13 04:22:33 +000092 if ( ! $this->check_path())
Derek Allardd2df9bc2007-04-15 17:41:17 +000093 {
Derek Jonesd36ade02008-05-12 15:17:41 +000094 return $this->db->cache_off();
Derek Allardd2df9bc2007-04-15 17:41:17 +000095 }
96
97 $uri = ($this->CI->uri->segment(1) == FALSE) ? 'default.' : $this->CI->uri->segment(1).'+';
98 $uri .= ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
99
100 $filepath = $uri.'/'.md5($sql);
101
Derek Jonesd36ade02008-05-12 15:17:41 +0000102 if (FALSE === ($cachedata = read_file($this->db->cachedir.$filepath)))
Derek Allardd2df9bc2007-04-15 17:41:17 +0000103 {
104 return FALSE;
105 }
106
107 return unserialize($cachedata);
108 }
109
110 // --------------------------------------------------------------------
111
112 /**
113 * Write a query to a cache file
114 *
115 * @access public
116 * @return bool
117 */
118 function write($sql, $object)
119 {
Derek Jones0b59f272008-05-13 04:22:33 +0000120 if ( ! $this->check_path())
Derek Allardd2df9bc2007-04-15 17:41:17 +0000121 {
Derek Jonesd36ade02008-05-12 15:17:41 +0000122 return $this->db->cache_off();
Derek Allardd2df9bc2007-04-15 17:41:17 +0000123 }
124
125 $uri = ($this->CI->uri->segment(1) == FALSE) ? 'default.' : $this->CI->uri->segment(1).'+';
126 $uri .= ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
127
Derek Jonesd36ade02008-05-12 15:17:41 +0000128 $dir_path = $this->db->cachedir.$uri.'/';
Derek Allardd2df9bc2007-04-15 17:41:17 +0000129
130 $filename = md5($sql);
131
Derek Jones0b59f272008-05-13 04:22:33 +0000132 if ( ! @is_dir($dir_path))
Derek Allardd2df9bc2007-04-15 17:41:17 +0000133 {
Derek Jones0b59f272008-05-13 04:22:33 +0000134 if ( ! @mkdir($dir_path, DIR_WRITE_MODE))
Derek Allardd2df9bc2007-04-15 17:41:17 +0000135 {
136 return FALSE;
137 }
138
Derek Jones3ad8efe2008-04-04 18:56:04 +0000139 @chmod($dir_path, DIR_WRITE_MODE);
Derek Allardd2df9bc2007-04-15 17:41:17 +0000140 }
141
142 if (write_file($dir_path.$filename, serialize($object)) === FALSE)
143 {
144 return FALSE;
145 }
146
Derek Jones3ad8efe2008-04-04 18:56:04 +0000147 @chmod($dir_path.$filename, DIR_WRITE_MODE);
Derek Allardd2df9bc2007-04-15 17:41:17 +0000148 return TRUE;
149 }
150
151 // --------------------------------------------------------------------
152
153 /**
154 * Delete cache files within a particular directory
155 *
156 * @access public
157 * @return bool
158 */
159 function delete($segment_one = '', $segment_two = '')
160 {
161 if ($segment_one == '')
162 {
Derek Allard85c7c612008-01-14 13:18:36 +0000163 $segment_one = ($this->CI->uri->segment(1) == FALSE) ? 'default' : $this->CI->uri->segment(1);
Derek Allardd2df9bc2007-04-15 17:41:17 +0000164 }
165
166 if ($segment_two == '')
167 {
168 $segment_two = ($this->CI->uri->segment(2) == FALSE) ? 'index' : $this->CI->uri->segment(2);
169 }
170
Derek Jonesd36ade02008-05-12 15:17:41 +0000171 $dir_path = $this->db->cachedir.$segment_one.'+'.$segment_two.'/';
Derek Allardd2df9bc2007-04-15 17:41:17 +0000172
173 delete_files($dir_path, TRUE);
174 }
175
176 // --------------------------------------------------------------------
177
178 /**
179 * Delete all existing cache files
180 *
181 * @access public
182 * @return bool
183 */
184 function delete_all()
185 {
Derek Jonesd36ade02008-05-12 15:17:41 +0000186 delete_files($this->db->cachedir, TRUE);
Derek Allardd2df9bc2007-04-15 17:41:17 +0000187 }
188
189}
190
Derek Jonesd36ade02008-05-12 15:17:41 +0000191
192/* End of file DB_cache.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000193/* Location: ./system/database/DB_cache.php */