当前位置: 首页>>代码示例>>PHP>>正文


PHP Process::input方法代码示例

本文整理汇总了PHP中Process::input方法的典型用法代码示例。如果您正苦于以下问题:PHP Process::input方法的具体用法?PHP Process::input怎么用?PHP Process::input使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Process的用法示例。


在下文中一共展示了Process::input方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: ProcessRequest

 function ProcessRequest()
 {
     require_once GTFW_APP_DIR . 'module/gtfw_menu/response/Process.proc.class.php';
     $Proc = new Process();
     $post = $_POST->AsArray();
     $result = $Proc->input();
     if ($result == true) {
         Messenger::Instance()->Send('gtfw_menu', 'menu', 'view', 'html', array(NULL, 'Penambahan data berhasil', 'notebox-done'), Messenger::NextRequest);
         $redirect = Dispatcher::Instance()->GetUrl('gtfw_menu', 'menu', 'view', 'html') . '&display';
     } else {
         Messenger::Instance()->Send('gtfw_menu', 'input', 'view', 'html', array($post, implode('<br/>', $Proc->err_msg), 'notebox-warning'), Messenger::NextRequest);
         $redirect = Dispatcher::Instance()->GetUrl('gtfw_menu', 'add', 'view', 'html');
     }
     $this->RedirectTo($redirect);
 }
开发者ID:rifkiferdian,项目名称:gtfw_boostab,代码行数:15,代码来源:DoAdd.html.class.php

示例2: input_controller

function input_controller()
{
    //return array('content'=>"ok");
    global $mysqli, $redis, $user, $session, $route, $max_node_id_limit, $feed_settings;
    // There are no actions in the input module that can be performed with less than write privileges
    if (!$session['write']) {
        return array('content' => false);
    }
    global $feed, $timestore_adminkey;
    $result = false;
    include "Modules/feed/feed_model.php";
    $feed = new Feed($mysqli, $redis, $feed_settings);
    require "Modules/input/input_model.php";
    // 295
    $input = new Input($mysqli, $redis, $feed);
    require "Modules/input/process_model.php";
    // 886
    $process = new Process($mysqli, $input, $feed);
    $process->set_timezone_offset($user->get_timezone($session['userid']));
    if ($route->format == 'html') {
        if ($route->action == 'api') {
            $result = view("Modules/input/Views/input_api.php", array());
        }
        if ($route->action == 'view') {
            $result = view("Modules/input/Views/input_view.php", array());
        }
    }
    if ($route->format == 'json') {
        /*
        
        input/bulk.json?data=[[0,16,1137],[2,17,1437,3164],[4,19,1412,3077]]
        
        The first number of each node is the time offset (see below).
        
        The second number is the node id, this is the unique identifer for the wireless node.
        
        All the numbers after the first two are data values. The first node here (node 16) has only one data value: 1137.
        
        Optional offset and time parameters allow the sender to set the time
        reference for the packets.
        If none is specified, it is assumed that the last packet just arrived.
        The time for the other packets is then calculated accordingly.
        
        offset=-10 means the time of each packet is relative to [now -10 s].
        time=1387730127 means the time of each packet is relative to 1387730127
        (number of seconds since 1970-01-01 00:00:00 UTC)
        
        Examples:
        
        // legacy mode: 4 is 0, 2 is -2 and 0 is -4 seconds to now.
          input/bulk.json?data=[[0,16,1137],[2,17,1437,3164],[4,19,1412,3077]]
        // offset mode: -6 is -16 seconds to now.
          input/bulk.json?data=[[-10,16,1137],[-8,17,1437,3164],[-6,19,1412,3077]]&offset=-10
        // time mode: -6 is 1387730121
          input/bulk.json?data=[[-10,16,1137],[-8,17,1437,3164],[-6,19,1412,3077]]&time=1387730127
        // sentat (sent at) mode:
          input/bulk.json?data=[[520,16,1137],[530,17,1437,3164],[535,19,1412,3077]]&offset=543
        
        See pull request for full discussion:
        https://github.com/emoncms/emoncms/pull/118
        */
        if ($route->action == 'bulk') {
            $valid = true;
            if (!isset($_GET['data']) && isset($_POST['data'])) {
                $data = json_decode(post('data'));
            } else {
                $data = json_decode(get('data'));
            }
            $userid = $session['userid'];
            $dbinputs = $input->get_inputs($userid);
            $len = count($data);
            if ($len > 0) {
                if (isset($data[$len - 1][0])) {
                    // Sent at mode: input/bulk.json?data=[[45,16,1137],[50,17,1437,3164],[55,19,1412,3077]]&sentat=60
                    if (isset($_GET['sentat'])) {
                        $time_ref = time() - (int) $_GET['sentat'];
                    } elseif (isset($_POST['sentat'])) {
                        $time_ref = time() - (int) $_POST['sentat'];
                    } elseif (isset($_GET['offset'])) {
                        $time_ref = time() - (int) $_GET['offset'];
                    } elseif (isset($_POST['offset'])) {
                        $time_ref = time() - (int) $_POST['offset'];
                    } elseif (isset($_GET['time'])) {
                        $time_ref = (int) $_GET['time'];
                    } elseif (isset($_POST['time'])) {
                        $time_ref = (int) $_POST['time'];
                    } else {
                        $time_ref = time() - (int) $data[$len - 1][0];
                    }
                    foreach ($data as $item) {
                        if (count($item) > 2) {
                            // check for correct time format
                            $itemtime = (int) $item[0];
                            $time = $time_ref + (int) $itemtime;
                            $nodeid = $item[1];
                            $inputs = array();
                            $name = 1;
                            for ($i = 2; $i < count($item); $i++) {
                                $value = (double) $item[$i];
                                $inputs[$name] = $value;
//.........这里部分代码省略.........
开发者ID:UbiCollab,项目名称:PersuasiveCommunities,代码行数:101,代码来源:input_controller.php

示例3: wattsup_controller

function wattsup_controller()
{
    global $mysqli, $redis, $user, $session, $route, $feed_settings;
    // First up, a little hack.
    // We need to include an API key with our POST data from the Watts Up?,
    // but the stupid thing limits how long our POST location string can be.
    // SO, we put the API key in the user agent string, cause why not.
    $apikey = $_SERVER["HTTP_USER_AGENT"];
    $session = $user->apikey_session($apikey);
    if (empty($session)) {
        header($_SERVER["SERVER_PROTOCOL"] . " 401 Unauthorized");
        header('WWW-Authenticate: Bearer realm="API KEY", error="invalid_apikey", error_description="Invalid API key"');
        print "Invalid API key";
        $log = new EmonLogger(__FILE__);
        $log->error("Invalid API key '" . $apikey . "'");
        exit;
    }
    // There are no actions in the input module that can be performed with less than write privileges
    if (!$session['write']) {
        return array('content' => false);
    }
    $result = false;
    // Need to get correct files so that we can make inputs
    require_once "Modules/feed/feed_model.php";
    $feed = new Feed($mysqli, $redis, $feed_settings);
    require_once "Modules/input/input_model.php";
    $input = new Input($mysqli, $redis, $feed);
    require_once "Modules/process/process_model.php";
    $process = new Process($mysqli, $input, $feed, $user->get_timezone($session['userid']));
    // Process /wattsup/post.text messages from Watts Up? .net
    if ($route->action == 'post' && $route->format == 'text') {
        // This looks like a correctly configured Watts Up? .net POST
        $valid = true;
        $error = '';
        $userid = $session['userid'];
        $dbinputs = $input->get_inputs($userid);
        // id is set to the Watts Up? device ID
        $nodeid = preg_replace('/[^\\p{N}\\p{L}_\\s-.]/u', '', post('id'));
        // Make sure we can do this. Copied from input_controller.php
        $validate_access = $input->validate_access($dbinputs, $nodeid);
        if (!$validate_access['success']) {
            $valid = false;
            $error = $validate_access['message'];
        } else {
            // Insert this record into the emoncms format
            $time = time();
            // Array to store the relevant fields in
            $data = array();
            $watts = post('w');
            $volts = post('v');
            $amps = post('a');
            $watth = post('wh');
            $maxwatts = post('wmx');
            $maxvolts = post('vmx');
            $maxamps = post('amx');
            $minwatts = post('wmi');
            $minvolts = post('vmi');
            $minamps = post('ami');
            $pf = post('pf');
            $pcy = post('pcy');
            $freq = post('frq');
            $voltamps = post('va');
            # Only include fields we actually got
            if (is_numeric($watts)) {
                $data['watts'] = $watts / 10;
            }
            if (is_numeric($volts)) {
                $data['volts'] = $volts / 10;
            }
            if (is_numeric($amps)) {
                $data['amps'] = $amps / 1000;
            }
            if (is_numeric($watth)) {
                $data['watt_hours'] = $watth / 1000;
            }
            if (is_numeric($maxwatts)) {
                $data['max_watts'] = $maxwatts / 10;
            }
            if (is_numeric($maxvolts)) {
                $data['max_volts'] = $maxvolts / 10;
            }
            if (is_numeric($maxamps)) {
                $data['max_amps'] = $maxamps / 1000;
            }
            if (is_numeric($minwatts)) {
                $data['min_watts'] = $minwatts / 10;
            }
            if (is_numeric($minvolts)) {
                $data['min_volts'] = $minvolts / 10;
            }
            if (is_numeric($minamps)) {
                $data['min_amps'] = $minamps / 1000;
            }
            if (is_numeric($pf)) {
                $data['power_factor'] = $pf;
            }
            if (is_numeric($pcy)) {
                $data['power_cycle'] = $pcy;
            }
            if (is_numeric($freq)) {
//.........这里部分代码省略.........
开发者ID:lab11,项目名称:emoncms-wattsup,代码行数:101,代码来源:wattsup_controller.php

示例4: array

        $time = $packet->time;
        $nodeid = $packet->nodeid;
        $data = $packet->data;
        // Load current user input meta data
        // It would be good to avoid repeated calls to this
        $dbinputs = $input->get_inputs($userid);
        if (!isset($dbinputs[$nodeid]) && count($dbinputs) >= $max_node_id_limit) {
            $log->error("Reached the maximal allowed number of diferent NodeIds, limit is {$max_node_id_limit}. Node '{$nodeid}' was ignored.");
        } else {
            $tmp = array();
            foreach ($data as $name => $value) {
                if (!isset($dbinputs[$nodeid][$name])) {
                    $inputid = $input->create_input($userid, $nodeid, $name);
                    $dbinputs[$nodeid][$name] = true;
                    $dbinputs[$nodeid][$name] = array('id' => $inputid, 'processList' => '');
                    $input->set_timevalue($dbinputs[$nodeid][$name]['id'], $time, $value);
                } else {
                    $inputid = $dbinputs[$nodeid][$name]['id'];
                    $input->set_timevalue($dbinputs[$nodeid][$name]['id'], $time, $value);
                    if ($dbinputs[$nodeid][$name]['processList']) {
                        $tmp[] = array('value' => $value, 'processList' => $dbinputs[$nodeid][$name]['processList']);
                    }
                }
            }
            foreach ($tmp as $i) {
                $process->input($time, $i['value'], $i['processList']);
            }
        }
    }
    usleep($usleep);
}
开发者ID:chaveiro,项目名称:emoncms,代码行数:31,代码来源:input_queue_processor.php

示例5: get_data

 public function get_data($feedid, $start, $end, $interval, $skipmissing, $limitinterval)
 {
     $feedid = intval($feedid);
     $processList = $this->feed->get_processlist($feedid);
     if ($processList == '' || $processList == null) {
         return false;
     }
     $start = round($start / 1000);
     $end = round($end / 1000);
     $interval = intval($interval);
     // time gap in seconds
     if ($interval < 1) {
         $interval = 1;
     }
     $dp = ceil(($end - $start) / $interval);
     // datapoints for desied range with set interval time gap
     $end = $start + $dp * $interval;
     if ($dp < 1) {
         return false;
     }
     // Check if datatype is daily so that select over range is used rather than skip select approach
     static $feed_datatype_cache = array();
     // Array to hold the cache
     if (isset($feed_datatype_cache[$feedid])) {
         $datatype = $feed_datatype_cache[$feedid];
         // Retrieve from static cache
     } else {
         $result = $this->mysqli->query("SELECT datatype FROM feeds WHERE `id` = '{$feedid}'");
         $row = $result->fetch_array();
         $datatype = $row['datatype'];
         $feed_datatype_cache[$feedid] = $datatype;
         // Cache it
     }
     if ($datatype == 2) {
         $dp = 0;
     }
     // daily
     $this->log->info("get_data() feedid={$feedid} start={$start} end={$end} int={$interval} sk={$skipmissing} li={$limitinterval}");
     $data = array();
     $dataValue = null;
     // Lets instantiate a new class of process so we can run many proceses recursively without interference
     global $session, $user;
     require_once "Modules/process/process_model.php";
     $process = new Process($this->mysqli, $this->input, $this->feed, $user->get_timezone($session['userid']));
     if ($dp > 0) {
         $range = $end - $start;
         // windows duration in seconds
         $td = $range / $dp;
         // time duration for each datapoint
         $t = $start;
         $tb = 0;
         // time between t and tb
         for ($i = 0; $i < $dp; $i++) {
             $tb = $start + intval(($i + 1) * $td);
             //next end time
             $opt_timearray = array('start' => $t, 'end' => $tb, 'interval' => $interval);
             $dataValue = $process->input($t, $dataValue, $processList, $opt_timearray);
             // execute processlist
             if ($dataValue != NULL || $skipmissing === 0) {
                 // Remove this to show white space gaps in graph
                 $time = $t * 1000;
                 if ($dataValue !== null) {
                     $dataValue = (double) $dataValue;
                 }
                 $data[] = array($time, $dataValue);
             }
             $t = $tb;
             // next start time
         }
     } else {
         //daily virtual feed
         $startslot = $process->process__getstartday($start);
         // start of day for user timezone
         $endslot = $process->process__getstartday($end);
         // end of day for user timezone
         if ($endslot < $startslot) {
             $endslot = $endslot + 86400;
         }
         // one day range
         while ($startslot < $endslot) {
             $opt_timearray = array('start' => $startslot, 'end' => $startslot + 86400, 'interval' => $interval);
             $dataValue = $process->input($startslot, $dataValue, $processList, $opt_timearray);
             // execute processlist
             if ($dataValue != NULL || $skipmissing === 0) {
                 // Remove this to show white space gaps in graph
                 $time = $startslot * 1000;
                 if ($dataValue !== null) {
                     $dataValue = (double) $dataValue;
                 }
                 $data[] = array($time, $dataValue);
             }
             $startslot += 86400;
             // inc a day
         }
     }
     return $data;
 }
开发者ID:TrystanLea,项目名称:emoncms,代码行数:97,代码来源:VirtualFeed.php

示例6: ted_controller

function ted_controller()
{
    global $mysqli, $redis, $user, $session, $route, $feed_settings;
    // Start by filtering by request path
    if ($route->action == 'post' && $route->format == 'text') {
        // Need to get the POST body
        $post = file_get_contents("php://input");
        // Look for an activation POST
        if (startsWith($post, '<ted5000Activation>')) {
            // Get the gateway and unique values
            $gateway = extract_value($post, '<Gateway>', '</Gateway>');
            $unique = extract_value($post, '<Unique>', '</Unique>');
            // Make sure this is permitted and that the user set up the device
            // in emoncms.
            $session = check_device_key($unique);
            // Need to get values for the response
            if (isset($_SERVER['HTTP_X_FORWARDED_SERVER'])) {
                $server = server('HTTP_X_FORWARDED_SERVER');
            } else {
                $server = server('HTTP_HOST');
            }
            $url = server('SCRIPT_NAME');
            $result = '<ted5000ActivationResponse>' . "<PostServer>{$server}</PostServer>" . '<UseSSL>F</UseSSL>' . '<PostPort>80</PostPort>' . '<PostURL>/ted/post.text</PostURL>' . "<AuthToken>{$unique}</AuthToken>" . '<PostRate>2</PostRate>' . '<HighPrec>T</HighPrec>' . '</ted5000ActivationResponse>';
        } else {
            if (startsWith($post, '<ted5000 ')) {
                // Got data POST
                $nodeid = extract_value($post, 'GWID="', '"');
                $unique = extract_value($post, 'auth="', '"');
                $session = check_device_key($unique);
                $userid = $session['userid'];
                // Setup variable we need to insert data
                // Need to get correct files so that we can make inputs
                require_once "Modules/feed/feed_model.php";
                $feed = new Feed($mysqli, $redis, $feed_settings);
                require_once "Modules/input/input_model.php";
                $input = new Input($mysqli, $redis, $feed);
                require_once "Modules/process/process_model.php";
                $process = new Process($mysqli, $input, $feed, $user->get_timezone($userid));
                // Fetch the known inputs from the database
                $dbinputs = $input->get_inputs($userid);
                // Make sure we can save this data.
                if ($nodeid != $session['nodeid']) {
                    header($_SERVER["SERVER_PROTOCOL"] . " 401 Unauthorized");
                    header('WWW-Authenticate: Bearer realm="Device KEY", error="invalid_nodeid", error_description="Invalid node"');
                    print "Invalid node({$nodeid}) for that device key({$unique})";
                    exit;
                }
                // Get the MTU values from the POST data
                $values = extract_mtu($post);
                $time = time();
                // Actually insert data
                $tmp = array();
                foreach ($values as $name => $value) {
                    // Check if this is an existing field in this node or not
                    if (!isset($dbinputs[$nodeid][$name])) {
                        // New field.
                        $inputid = $input->create_input($userid, $nodeid, $name);
                        $dbinputs[$nodeid][$name] = true;
                        $dbinputs[$nodeid][$name] = array('id' => $inputid, 'processList' => '');
                        $input->set_timevalue($dbinputs[$nodeid][$name]['id'], $time, $value);
                    } else {
                        // Existing field, just insert
                        $input->set_timevalue($dbinputs[$nodeid][$name]['id'], $time, $value);
                        // If there are processes listening to this field, we need
                        // to pass the data to those as well
                        if ($dbinputs[$nodeid][$name]['processList']) {
                            $tmp[] = array('value' => $value, 'processList' => $dbinputs[$nodeid][$name]['processList'], 'opt' => array('sourcetype' => "WATTSUP", 'sourceid' => $dbinputs[$nodeid][$name]['id']));
                        }
                    }
                }
                // Actually insert all of the data to the process
                foreach ($tmp as $i) {
                    $process->input($time, $i['value'], $i['processList'], $i['opt']);
                }
                $result = 'ok';
            } else {
                $result = 'Unknown';
            }
        }
    }
    return array('content' => $result);
}
开发者ID:lab11,项目名称:emoncms-ted,代码行数:82,代码来源:ted_controller.php

示例7: nodes_controller

function nodes_controller()
{
    global $route, $redis, $mysqli, $feed_settings, $session;
    $result = false;
    if (!$session['write']) {
        return array('content' => $result);
    }
    $emoncms_config_file = "/home/pi/data/emoncms.conf";
    include "Modules/feed/feed_model.php";
    $feed = new Feed($mysqli, $redis, $feed_settings);
    include "Modules/nodes/process.php";
    $process = new Process($mysqli, $feed);
    if ($route->action == 'view') {
        $route->format = "html";
        $result = view("Modules/nodes/nodes.php", array());
        return array('content' => $result, 'fullwidth' => true);
    } elseif ($route->action == 'apidocs') {
        $route->format = "html";
        $result = view("Modules/nodes/apidocs.html", array());
        return array('content' => $result, 'fullwidth' => false);
    }
    if ($route->method == 'GET' || $route->method == 'POST' || $route->method == 'DELETE') {
        $route->format = "json";
        $url = explode("/", rtrim($_GET['q'], "/"));
        $input = false;
        $input = file_get_contents('php://input');
        if (isset($_GET['val'])) {
            $input = $_GET['val'];
        }
        $nodeid = false;
        $rxtx = false;
        $varid = false;
        $prop = false;
        if (isset($url[1]) && is_numeric($url[1])) {
            $nodeid = $url[1];
        }
        if (isset($url[2])) {
            if (is_numeric($url[2])) {
                $varid = $url[2];
            } elseif ($url[2] == "rx") {
                $rxtx = "rx";
                if (isset($url[3]) && is_numeric($url[3])) {
                    $varid = $url[3];
                }
            } elseif ($url[2] == "tx") {
                $rxtx = "tx";
                if (isset($url[3]) && is_numeric($url[3])) {
                    $varid = $url[3];
                }
            }
        }
        if ($varid) {
            $varid--;
        }
        // user index starts from 1, code index starts from 0
        $propid = 1;
        if ($nodeid !== false) {
            $propid++;
        }
        if ($varid !== false) {
            $propid++;
        }
        if ($rxtx !== false) {
            $propid++;
        }
        if (isset($url[$propid])) {
            $prop = $url[$propid];
        }
        if (!$redis->exists("config")) {
            $config = json_decode(file_get_contents($emoncms_config_file));
            $redis->set("config", json_encode($config));
        } else {
            $config = json_decode($redis->get("config"));
        }
        if ($route->method == 'POST') {
            $config_changed = false;
            // if ($nodeid===false && $varid===false && $prop!==false) {
            //     if ($prop=="config") $redis->set("config",$input);
            // }
            if ($nodeid !== false && $varid === false && $prop !== false) {
                if ($config == null) {
                    $config = new stdClass();
                    $config_changed = true;
                }
                if (!isset($config->{$nodeid})) {
                    $config->{$nodeid} = new stdClass();
                    $config->{$nodeid}->nodename = "";
                    $config->{$nodeid}->hardware = "";
                    $config->{$nodeid}->firmware = "";
                    $config->{$nodeid}->rx = new stdClass();
                    $config->{$nodeid}->rx->names = array();
                    $config->{$nodeid}->rx->units = array();
                    $config->{$nodeid}->rx->processlists = array();
                    $config->{$nodeid}->tx = new stdClass();
                    $config->{$nodeid}->tx->names = array();
                    $config->{$nodeid}->tx->units = array();
                    $config->{$nodeid}->tx->processlists = array();
                    $config_changed = true;
                }
                if ($prop == "values") {
//.........这里部分代码省略.........
开发者ID:hmm01i,项目名称:nodes,代码行数:101,代码来源:nodes_controller.php

示例8: exit

<?php

require_once 'env.php';
$idx = Process::input('-i');
$all = Process::input('-a');
if (!flock($_lock = fopen(basename(__FILE__) . ".{$idx}.lck", 'w'), LOCK_EX | LOCK_NB)) {
    exit(date('c') . ' another proccess is running' . PHP_EOL);
}
set_time_limit(0);
$process = new Process_SendRoomStatMail($idx, $all);
$process();
// End of file : sendRoomStatMail_per_day.php
开发者ID:null-1,项目名称:fangtaitong,代码行数:12,代码来源:sendRoomStatMail_per_day.php


注:本文中的Process::input方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。