Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012-2013 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | * Zhenkai Zhu <zhenkai@cs.ucla.edu> |
| 20 | */ |
| 21 | |
| 22 | #include "action-log.h" |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 23 | #include <action-item.pb.h> |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 24 | |
| 25 | using namespace boost; |
| 26 | using namespace std; |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 27 | using namespace Ccnx; |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 28 | |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame^] | 29 | ActionLog::ActionLog (Ccnx::CcnxWrapperPtr ccnx, const boost::filesystem::path &path, |
| 30 | const std::string &localName, const std::string &sharedFolder) |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 31 | : SyncLog (path, localName) |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 32 | , m_ccnx (ccnx) |
| 33 | , m_sharedFolderName (sharedFolder) |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 34 | { |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 35 | int res = sqlite3_create_function (m_db, "apply_action", -1, SQLITE_ANY, reinterpret_cast<void*> (this), |
| 36 | ActionLog::apply_action_xFun, |
| 37 | 0, 0); |
| 38 | if (res != SQLITE_OK) |
| 39 | { |
| 40 | BOOST_THROW_EXCEPTION (Error::Db () |
| 41 | << errmsg_info_str ("Cannot create function ``apply_action''")); |
| 42 | } |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 43 | } |
| 44 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 45 | tuple<sqlite3_int64, sqlite3_int64, sqlite3_int64, string> |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 46 | ActionLog::GetExistingRecord (const std::string &filename) |
| 47 | { |
| 48 | // check if something already exists |
| 49 | sqlite3_stmt *stmt; |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 50 | int res = sqlite3_prepare_v2 (m_db, "SELECT a.version,a.device_id,a.seq_no,a.action,s.device_name " |
| 51 | "FROM ActionLog a JOIN SyncNodes s ON s.device_id = a.device_id " |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 52 | "WHERE filename=? ORDER BY a.version DESC LIMIT 1", -1, &stmt, 0); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 53 | |
| 54 | if (res != SQLITE_OK) |
| 55 | { |
| 56 | BOOST_THROW_EXCEPTION (Error::Db () |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 57 | << errmsg_info_str ("Some error with GetExistingRecord")); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 58 | } |
| 59 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 60 | // with parent with version number + 1 |
| 61 | sqlite3_int64 version = 0; |
| 62 | sqlite3_int64 parent_device_id = -1; |
| 63 | sqlite3_int64 parent_seq_no = -1; |
| 64 | string parent_device_name; |
| 65 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 66 | sqlite3_bind_text (stmt, 1, filename.c_str (), filename.size (), SQLITE_STATIC); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 67 | if (sqlite3_step (stmt) == SQLITE_ROW) |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 68 | { |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 69 | version = sqlite3_column_int64 (stmt, 0) + 1; |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 70 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 71 | if (sqlite3_column_int (stmt, 3) == 0) // prevent "linking" if the file was previously deleted |
| 72 | { |
| 73 | parent_device_id = sqlite3_column_int64 (stmt, 1); |
| 74 | parent_seq_no = sqlite3_column_int64 (stmt, 2); |
Alexander Afanasyev | 707f6df | 2013-01-04 22:46:15 -0800 | [diff] [blame] | 75 | parent_device_name = string(reinterpret_cast<const char*> (sqlite3_column_blob (stmt, 4)), sqlite3_column_bytes (stmt, 4)); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 76 | } |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 77 | } |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 78 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 79 | sqlite3_finalize (stmt); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 80 | return make_tuple (version, parent_device_id, parent_seq_no, parent_device_name); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 81 | } |
| 82 | |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 83 | // local add action. remote action is extracted from content object |
| 84 | void |
| 85 | ActionLog::AddActionUpdate (const std::string &filename, |
| 86 | const Hash &hash, |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame^] | 87 | time_t wtime, |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 88 | int mode) |
| 89 | { |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 90 | sqlite3_exec (m_db, "BEGIN TRANSACTION;", 0,0,0); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 91 | |
| 92 | sqlite3_int64 seq_no = GetNextLocalSeqNo (); |
| 93 | sqlite3_int64 version = 0; |
| 94 | sqlite3_int64 parent_device_id = -1; |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 95 | string parent_device_name; |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 96 | sqlite3_int64 parent_seq_no = -1; |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 97 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 98 | sqlite3_int64 action_time = time (0); |
| 99 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 100 | tie (version, parent_device_id, parent_seq_no, parent_device_name) = GetExistingRecord (filename); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 101 | |
| 102 | sqlite3_stmt *stmt; |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 103 | int res = sqlite3_prepare_v2 (m_db, "INSERT INTO ActionLog " |
| 104 | "(device_id, seq_no, action, filename, version, action_timestamp, " |
| 105 | "file_hash, file_atime, file_mtime, file_ctime, file_chmod, " |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 106 | "parent_device_id, parent_seq_no, " |
| 107 | "action_name, action_content_object) " |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 108 | "VALUES (?, ?, ?, ?, ?, datetime(?, 'unixepoch')," |
| 109 | " ?, datetime(?, 'unixepoch'), datetime(?, 'unixepoch'), datetime(?, 'unixepoch'), ?," |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 110 | " ?, ?, " |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 111 | " ?, ?);", -1, &stmt, 0); |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 112 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 113 | // cout << "INSERT INTO ActionLog " |
| 114 | // "(device_id, seq_no, action, filename, version, action_timestamp, " |
| 115 | // "file_hash, file_atime, file_mtime, file_ctime, file_chmod, " |
| 116 | // "parent_device_id, parent_seq_no) " |
| 117 | // "VALUES (?, ?, ?, ?, ?, datetime(?, 'unixepoch')," |
| 118 | // " ?, datetime(?, 'unixepoch'), datetime(?, 'unixepoch'), datetime(?, 'unixepoch'), ?," |
| 119 | // " ?, ?)" << endl; |
| 120 | |
| 121 | if (res != SQLITE_OK) |
| 122 | { |
| 123 | BOOST_THROW_EXCEPTION (Error::Db () |
| 124 | << errmsg_info_str (sqlite3_errmsg (m_db)) |
| 125 | ); |
| 126 | // << errmsg_info_str ("Some error with prepare AddActionUpdate")); |
| 127 | } |
| 128 | |
| 129 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 130 | sqlite3_bind_int64 (stmt, 1, m_localDeviceId); |
| 131 | sqlite3_bind_int64 (stmt, 2, seq_no); |
| 132 | sqlite3_bind_int (stmt, 3, 0); |
| 133 | sqlite3_bind_text (stmt, 4, filename.c_str (), filename.size (), SQLITE_TRANSIENT); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 134 | sqlite3_bind_int64 (stmt, 5, version); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 135 | sqlite3_bind_int64 (stmt, 6, action_time); |
| 136 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 137 | sqlite3_bind_blob (stmt, 7, hash.GetHash (), hash.GetHashBytes (), SQLITE_TRANSIENT); |
| 138 | |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame^] | 139 | // sqlite3_bind_int64 (stmt, 8, atime); // NULL |
| 140 | sqlite3_bind_int64 (stmt, 9, wtime); |
| 141 | // sqlite3_bind_int64 (stmt, 10, ctime); // NULL |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 142 | sqlite3_bind_int (stmt, 11, mode); |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 143 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 144 | if (parent_device_id > 0 && parent_seq_no > 0) |
| 145 | { |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 146 | sqlite3_bind_int64 (stmt, 12, parent_device_id); |
| 147 | sqlite3_bind_int64 (stmt, 13, parent_seq_no); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 148 | } |
| 149 | else |
| 150 | { |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 151 | sqlite3_bind_null (stmt, 12); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 152 | sqlite3_bind_null (stmt, 13); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 153 | } |
| 154 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 155 | // missing part: creating ContentObject for the action !!! |
| 156 | |
| 157 | ActionItem item; |
| 158 | item.set_action (ActionItem::UPDATE); |
| 159 | item.set_filename (filename); |
| 160 | item.set_version (version); |
| 161 | item.set_timestamp (action_time); |
| 162 | item.set_file_hash (hash.GetHash (), hash.GetHashBytes ()); |
Alexander Afanasyev | 68f2a95 | 2013-01-08 14:34:16 -0800 | [diff] [blame^] | 163 | // item.set_atime (atime); |
| 164 | item.set_mtime (wtime); |
| 165 | // item.set_ctime (ctime); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 166 | item.set_mode (mode); |
| 167 | |
| 168 | if (parent_device_id > 0 && parent_seq_no > 0) |
| 169 | { |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 170 | cout << Name (reinterpret_cast<const unsigned char *> (parent_device_name.c_str ()), |
| 171 | parent_device_name.size ()) << endl; |
Alexander Afanasyev | 707f6df | 2013-01-04 22:46:15 -0800 | [diff] [blame] | 172 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 173 | item.set_parent_device_name (parent_device_name); |
| 174 | item.set_parent_seq_no (parent_seq_no); |
| 175 | } |
| 176 | |
| 177 | // assign name to the action, serialize action, and create content object |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 178 | |
| 179 | string item_msg; |
| 180 | item.SerializeToString (&item_msg); |
| 181 | Name actionName (m_localName); |
| 182 | actionName |
| 183 | .appendComp ("action") |
| 184 | .appendComp (m_sharedFolderName) |
| 185 | .appendComp (seq_no); |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 186 | |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 187 | Bytes actionData = m_ccnx->createContentObject (actionName, item_msg.c_str (), item_msg.size ()); |
| 188 | CcnxCharbufPtr namePtr = actionName.toCcnxCharbuf (); |
| 189 | |
| 190 | sqlite3_bind_blob (stmt, 14, namePtr->buf (), namePtr->length (), SQLITE_TRANSIENT); |
| 191 | sqlite3_bind_blob (stmt, 15, &actionData[0], actionData.size (), SQLITE_TRANSIENT); |
| 192 | |
| 193 | sqlite3_step (stmt); |
| 194 | |
Alexander Afanasyev | 433ecda | 2013-01-02 22:13:45 -0800 | [diff] [blame] | 195 | sqlite3_finalize (stmt); |
| 196 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 197 | sqlite3_exec (m_db, "END TRANSACTION;", 0,0,0); |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | void |
| 201 | ActionLog::AddActionMove (const std::string &oldFile, const std::string &newFile) |
| 202 | { |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 203 | // not supported yet |
| 204 | BOOST_THROW_EXCEPTION (Error::Db () |
| 205 | << errmsg_info_str ("Move operation is not yet supported")); |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | void |
| 209 | ActionLog::AddActionDelete (const std::string &filename) |
| 210 | { |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 211 | sqlite3_exec (m_db, "BEGIN TRANSACTION;", 0,0,0); |
| 212 | |
| 213 | sqlite3_int64 version = 0; |
| 214 | sqlite3_int64 parent_device_id = -1; |
| 215 | string parent_device_name; |
| 216 | sqlite3_int64 parent_seq_no = -1; |
| 217 | |
| 218 | sqlite3_int64 action_time = time (0); |
| 219 | |
| 220 | tie (version, parent_device_id, parent_seq_no, parent_device_name) = GetExistingRecord (filename); |
| 221 | if (parent_device_id < 0) // no records exist or file was already deleted |
| 222 | { |
| 223 | sqlite3_exec (m_db, "END TRANSACTION;", 0,0,0); |
| 224 | return; |
| 225 | } |
| 226 | |
| 227 | sqlite3_int64 seq_no = GetNextLocalSeqNo (); |
| 228 | |
| 229 | sqlite3_stmt *stmt; |
| 230 | sqlite3_prepare_v2 (m_db, "INSERT INTO ActionLog " |
| 231 | "(device_id, seq_no, action, filename, version, action_timestamp, " |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 232 | "parent_device_id, parent_seq_no, " |
| 233 | "action_name, action_content_object) " |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 234 | "VALUES (?, ?, ?, ?, ?, datetime(?, 'unixepoch')," |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 235 | " ?, ?," |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 236 | " ?, ?)", -1, &stmt, 0); |
| 237 | |
| 238 | sqlite3_bind_int64 (stmt, 1, m_localDeviceId); |
| 239 | sqlite3_bind_int64 (stmt, 2, seq_no); |
| 240 | sqlite3_bind_int (stmt, 3, 1); |
| 241 | sqlite3_bind_text (stmt, 4, filename.c_str (), filename.size (), SQLITE_TRANSIENT); |
| 242 | sqlite3_bind_int64 (stmt, 5, version); |
| 243 | sqlite3_bind_int64 (stmt, 6, action_time); |
| 244 | |
| 245 | sqlite3_bind_int64 (stmt, 7, parent_device_id); |
| 246 | sqlite3_bind_int64 (stmt, 8, parent_seq_no); |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 247 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 248 | |
| 249 | ActionItem item; |
| 250 | item.set_action (ActionItem::UPDATE); |
| 251 | item.set_filename (filename); |
| 252 | item.set_version (version); |
| 253 | item.set_timestamp (action_time); |
| 254 | item.set_parent_device_name (parent_device_name); |
| 255 | item.set_parent_seq_no (parent_seq_no); |
| 256 | |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 257 | string item_msg; |
| 258 | item.SerializeToString (&item_msg); |
| 259 | Name actionName (m_localName); |
| 260 | actionName |
| 261 | .appendComp ("action") |
| 262 | .appendComp (m_sharedFolderName) |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 263 | .appendComp (seq_no); |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 264 | |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 265 | Bytes actionData = m_ccnx->createContentObject (actionName, item_msg.c_str (), item_msg.size ()); |
| 266 | CcnxCharbufPtr namePtr = actionName.toCcnxCharbuf (); |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 267 | |
Alexander Afanasyev | ebf7518 | 2013-01-07 17:00:24 -0800 | [diff] [blame] | 268 | sqlite3_bind_blob (stmt, 9, namePtr->buf (), namePtr->length (), SQLITE_TRANSIENT); |
| 269 | sqlite3_bind_blob (stmt, 10, &actionData[0], actionData.size (), SQLITE_TRANSIENT); |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 270 | |
| 271 | sqlite3_step (stmt); |
Alexander Afanasyev | c9eb68f | 2013-01-07 13:40:00 -0800 | [diff] [blame] | 272 | |
| 273 | // cout << Ccnx::Name (reinterpret_cast<const unsigned char *> (parent_device_name.c_str ()), |
| 274 | // parent_device_name.size ()) << endl; |
Alexander Afanasyev | 707f6df | 2013-01-04 22:46:15 -0800 | [diff] [blame] | 275 | |
Alexander Afanasyev | b6bc01a | 2013-01-02 23:34:20 -0800 | [diff] [blame] | 276 | // assign name to the action, serialize action, and create content object |
| 277 | |
| 278 | sqlite3_finalize (stmt); |
| 279 | |
| 280 | sqlite3_exec (m_db, "END TRANSACTION;", 0,0,0); |
Alexander Afanasyev | a199f97 | 2013-01-02 19:37:26 -0800 | [diff] [blame] | 281 | } |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 282 | |
| 283 | |
| 284 | void |
| 285 | ActionLog::apply_action_xFun (sqlite3_context *context, int argc, sqlite3_value **argv) |
| 286 | { |
| 287 | ActionLog *the = reinterpret_cast<ActionLog*> (sqlite3_user_data (context)); |
| 288 | |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 289 | if (argc != 10) |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 290 | { |
| 291 | sqlite3_result_error (context, "``apply_action'' expects 8 arguments", -1); |
| 292 | return; |
| 293 | } |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 294 | |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 295 | // cout << "apply_function called with " << argc << endl; |
| 296 | |
| 297 | // cout << "device_name: " << sqlite3_value_text (argv[0]) << endl; |
| 298 | // cout << "action: " << sqlite3_value_int (argv[1]) << endl; |
| 299 | // cout << "filename: " << sqlite3_value_text (argv[2]) << endl; |
| 300 | |
Alexander Afanasyev | d09871f | 2013-01-04 22:36:37 -0800 | [diff] [blame] | 301 | string device_name (reinterpret_cast<const char*> (sqlite3_value_blob (argv[0])), sqlite3_value_bytes (argv[0])); |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 302 | sqlite3_int64 device_id = sqlite3_value_int64 (argv[1]); |
| 303 | sqlite3_int64 seq_no = sqlite3_value_int64 (argv[2]); |
| 304 | int action = sqlite3_value_int (argv[3]); |
| 305 | string filename = reinterpret_cast<const char*> (sqlite3_value_text (argv[4])); |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 306 | |
| 307 | if (action == 0) // update |
| 308 | { |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 309 | Hash hash (sqlite3_value_blob (argv[5]), sqlite3_value_bytes (argv[5])); |
| 310 | time_t atime = static_cast<time_t> (sqlite3_value_int64 (argv[6])); |
| 311 | time_t mtime = static_cast<time_t> (sqlite3_value_int64 (argv[7])); |
| 312 | time_t ctime = static_cast<time_t> (sqlite3_value_int64 (argv[8])); |
| 313 | int mode = sqlite3_value_int (argv[9]); |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 314 | |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 315 | cout << "Update " << filename << " " << atime << " " << mtime << " " << ctime << " " << hash << endl; |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 316 | |
| 317 | sqlite3_stmt *stmt; |
| 318 | sqlite3_prepare_v2 (the->m_db, "UPDATE FileState " |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 319 | "SET " |
| 320 | "device_id=?, seq_no=?, " |
| 321 | "file_hash=?," |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 322 | "file_atime=datetime(?, 'unixepoch')," |
| 323 | "file_mtime=datetime(?, 'unixepoch')," |
| 324 | "file_ctime=datetime(?, 'unixepoch')," |
| 325 | "file_chmod=? " |
| 326 | "WHERE type=0 AND filename=?", -1, &stmt, 0); |
| 327 | |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 328 | sqlite3_bind_int64 (stmt, 1, device_id); |
| 329 | sqlite3_bind_int64 (stmt, 2, seq_no); |
| 330 | sqlite3_bind_blob (stmt, 3, hash.GetHash (), hash.GetHashBytes (), SQLITE_TRANSIENT); |
| 331 | sqlite3_bind_int64 (stmt, 4, atime); |
| 332 | sqlite3_bind_int64 (stmt, 5, mtime); |
| 333 | sqlite3_bind_int64 (stmt, 6, ctime); |
| 334 | sqlite3_bind_int (stmt, 7, mode); |
| 335 | sqlite3_bind_text (stmt, 8, filename.c_str (), -1, SQLITE_TRANSIENT); |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 336 | |
| 337 | sqlite3_step (stmt); |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 338 | |
| 339 | // cout << sqlite3_errmsg (the->m_db) << endl; |
| 340 | |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 341 | sqlite3_finalize (stmt); |
| 342 | |
| 343 | int affected_rows = sqlite3_changes (the->m_db); |
| 344 | if (affected_rows == 0) // file didn't exist |
| 345 | { |
| 346 | sqlite3_stmt *stmt; |
| 347 | sqlite3_prepare_v2 (the->m_db, "INSERT INTO FileState " |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 348 | "(type,filename,device_id,seq_no,file_hash,file_atime,file_mtime,file_ctime,file_chmod) " |
| 349 | "VALUES (0, ?, ?, ?, ?, " |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 350 | "datetime(?, 'unixepoch'), datetime(?, 'unixepoch'), datetime(?, 'unixepoch'), ?)", -1, &stmt, 0); |
| 351 | |
| 352 | sqlite3_bind_text (stmt, 1, filename.c_str (), -1, SQLITE_TRANSIENT); |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 353 | sqlite3_bind_int64 (stmt, 2, device_id); |
| 354 | sqlite3_bind_int64 (stmt, 3, seq_no); |
| 355 | sqlite3_bind_blob (stmt, 4, hash.GetHash (), hash.GetHashBytes (), SQLITE_TRANSIENT); |
| 356 | sqlite3_bind_int64 (stmt, 5, atime); |
| 357 | sqlite3_bind_int64 (stmt, 6, mtime); |
| 358 | sqlite3_bind_int64 (stmt, 7, ctime); |
| 359 | sqlite3_bind_int (stmt, 8, mode); |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 360 | |
| 361 | sqlite3_step (stmt); |
Alexander Afanasyev | 3c2b728 | 2013-01-04 20:34:51 -0800 | [diff] [blame] | 362 | // cout << sqlite3_errmsg (the->m_db) << endl; |
Alexander Afanasyev | a2f77e9 | 2013-01-03 22:46:52 -0800 | [diff] [blame] | 363 | sqlite3_finalize (stmt); |
| 364 | } |
| 365 | } |
| 366 | else if (action == 1) // delete |
| 367 | { |
| 368 | sqlite3_stmt *stmt; |
| 369 | sqlite3_prepare_v2 (the->m_db, "DELETE FROM FileState WHERE type=0 AND filename=?", -1, &stmt, 0); |
| 370 | sqlite3_bind_text (stmt, 1, filename.c_str (), -1, SQLITE_STATIC); |
| 371 | |
| 372 | cout << "Delete " << filename << endl; |
| 373 | |
| 374 | sqlite3_step (stmt); |
| 375 | sqlite3_finalize (stmt); |
| 376 | } |
Alexander Afanasyev | ee7e613 | 2013-01-03 20:03:14 -0800 | [diff] [blame] | 377 | |
| 378 | sqlite3_result_null (context); |
| 379 | } |