]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Process.php
Merge pull request #8566 from annando/write-tags
[friendica.git] / src / Model / Process.php
index 75d898065cdf71b9f6120ae22a9b388ed01bdd1f..18b5f785a1a619ede1c4609904ff3a83cfbd52dd 100644 (file)
@@ -1,19 +1,33 @@
 <?php
 /**
- * @file src/Model/Process.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Model;
 
-use Friendica\BaseObject;
+use Friendica\Database\DBA;
 use Friendica\Util\DateTimeFormat;
-use dba;
-
-require_once 'include/dba.php';
 
 /**
- * @brief functions for interacting with a process
+ * functions for interacting with a process
  */
-class Process extends BaseObject
+class Process
 {
        /**
         * Insert a new process row. If the pid parameter is omitted, we use the current pid
@@ -21,6 +35,7 @@ class Process extends BaseObject
         * @param string $command
         * @param string $pid
         * @return bool
+        * @throws \Exception
         */
        public static function insert($command, $pid = null)
        {
@@ -30,13 +45,13 @@ class Process extends BaseObject
                        $pid = getmypid();
                }
 
-               dba::transaction();
+               DBA::transaction();
 
-               if (!dba::exists('process', ['pid' => $pid])) {
-                       $return = dba::insert('process', ['pid' => $pid, 'command' => $command, 'created' => DateTimeFormat::utcNow()]);
+               if (!DBA::exists('process', ['pid' => $pid])) {
+                       $return = DBA::insert('process', ['pid' => $pid, 'command' => $command, 'created' => DateTimeFormat::utcNow()]);
                }
 
-               dba::commit();
+               DBA::commit();
 
                return $return;
        }
@@ -46,6 +61,7 @@ class Process extends BaseObject
         *
         * @param string $pid
         * @return bool
+        * @throws \Exception
         */
        public static function deleteByPid($pid = null)
        {
@@ -53,7 +69,7 @@ class Process extends BaseObject
                        $pid = getmypid();
                }
 
-               return dba::delete('process', ['pid' => $pid]);
+               return DBA::delete('process', ['pid' => $pid]);
        }
 
        /**
@@ -61,15 +77,15 @@ class Process extends BaseObject
         */
        public static function deleteInactive()
        {
-               dba::transaction();
+               DBA::transaction();
 
-               $processes = dba::select('process', ['pid']);
-               while($process = dba::fetch($processes)) {
+               $processes = DBA::select('process', ['pid']);
+               while($process = DBA::fetch($processes)) {
                        if (!posix_kill($process['pid'], 0)) {
                                self::deleteByPid($process['pid']);
                        }
                }
-
-               dba::commit();
+               DBA::close($processes);
+               DBA::commit();
        }
 }