2017/06/26

Linux- 關於timer定時器, delay延遲, sleep睡眠, 與中斷....等等

定時器(timer)

(參考)定時器(不懂的話,可以暫時想成個鬧鐘)分為硬件和軟件定時器,軟件定時器最終還是要依靠硬件定時器來完成。
內核在時鐘中斷發生後檢測各定時器是否到期,到期後的定時器處理函數將作為軟中斷在底半部執行。
實質上,時鐘中斷處理程序執行update_process_timers函數,該函數調用run_local_timers函數,這個函數處理TIMER_SOFTIRQ軟中斷,運行當前處理上到期的所有定時器。

Linux內核中定義提供了一些用於操作定時器的數據結構和函數如下:
1)timer_list:說定時器,當然要來個定時器的結構體

struct timer_list{    struct list_head entry; //定時器列表    unsigned long expires; //定時器到期時間    void (*function)(unsigned long) ;//定時器處理函數    unsigned long data; //作為參數被傳入定時器處理函數    struct timer_base_s *base;}

2)初始化定時器:
經過這個初始化後,entry的next為NULL,並給base賦值

void init_timer(struct timer_list *timer);

3)增加定時器:
該函數用於註冊內核定時器,並將定時器加入到內核動態定時器鍊錶中。

void add_timer(struct timer_list *timer);

4)刪除定時器:

int del_timer(struct timer_list *timer);

說明:del_timer_sync是del_timer的同步版,主要在多處理器系統中使用,如果編譯內核時不支持SMP,del_timer_sync和del_timer等價.

5)修改定時器:

int mod_timer(struct timer_list *timer, unsigned long expires);

ex: 下邊是一個使用定​​時器的模版:

struct xxx_dev /*second設備結構體*/{  struct cdev cdev; /*cdev結構體*/  ...  struct timer_list xxx_timer; /*設備要使用的定時器*/};int xxx_func1(...) //xxx驅動中某函數{  struct xxx_dev *dev = filp->private_data;    ...  /*初始化定時器*/  init_timer(&dev->xxx_timer);  dev->xxx_timer.function = &xxx_do_handle;  dev->xxx_timer.data = (unsigned long)dev;  dev->xxx_timer.expires = jiffies + delay;    add_timer(&dev->xxx_timer); /*添加(註冊)定時器*/  ...  return 0;}int xxx_func2(...) //驅動中某函數{  ...  del_timer(&second_devp->s_timer);  ...}static void xxx_do_timer(unsigned long arg) //定時器處理函數{  struct xxx_device *dev = (struct xxx_device *)(arg);    ...    //調度定時器再執行  dev->xxx_timer.expires = jiffies + delay;  add_timer(&dev->xxx_timer);}在定時器函數中往往會在做完具體工作後,延遲expires並將定時器再次添加到內核定時器鍊錶中,以便定時器能被再次觸發 

關於延遲與睡眠

在內核定時器中,常常少不了要說下內核延遲的事,請接著往下看:
1)短延遲:
在linux內核中提供了三個函數來分別實現納秒,微秒,毫秒延遲,原理上是忙等待,它根據CPU頻率進行一定次數的循環

void ndelay(unsigned long nsecs); void udelay(unsigned long usecs); void mdelay(unsigned long msecs);

毫秒延遲已經相當大了,當然更秒延遲當然要小一些,在內核中,為了性能,最好不要用mdelay,這會耗費大量cpu資源

void msleep(unsigned int millisecs); unsigned long msleep_interruptible(unsigned int millisecs); void ssleep(unsigned int seconds);

這三個是內核專門提供該我們用來處理毫秒以上的延遲。
上述函數將使得調用它的進程睡眠參數指定的秒數,其中第二個是可以被打斷的,其餘的兩個是不可以的。

2)長延遲:
內核中進行延遲最常用的方法就是比較當前的jiffies和目標jiffies(當前的加上時間間隔的jiffies),直到未來的jiffies達到目標jiffies。
比如:

unsigned long delay = jiffies + 100; //延遲100個jiffieswhile(time_before(jiffies, delay));

與time_before對應的還有一個time_after().
其實就是#define time_before(a,b) time_after(b,a);

另外兩個是time_after_eq(a,b)和time_before_eq(a,b)

3)睡著延遲:
這顯然是比忙等待好的方法,因為在未到來之前,進程會處於睡眠狀態,
把CPU空出來,讓CPU可以做別的事情,等時間到了,調用schedule_timeout()就可以喚醒它並重新調度執行。
msleep和msleep_interruptible本質上都是依靠包含了schedule_timeout的schedule_timeout_uninterruptible()和schedule_timeout_interruptible()實現。
就像下邊這樣:

void msleep(unsigned int msecs){    unsigned long timeout = msecs_to_jiffies(msecs) + 1;    while(timeout)         timeout = schedule_timeout_uninterruptible(timeout);}unsigned long msleep_interruptible(unsigned int msecs){    unsigned long timeout = msecs_to_jiffies(msecs) + 1;    while(timeout && !signal_pending(current))         timeout = schedule_timeout_interruptible(timeout);    return jiffies_to_msecs(timeout);}signed long __sched schedule_timeout_interruptible()signed long timeout){    __set_current_state(TASK_INTERRUPTIBLE);    return schedule_timeout(timeout);}signed long __sched schedule_timeout_uninterruptible()signed long timeout){    __set_current_state(TASK_UNINTERRUPTIBLE);    return schedule_timeout(timeout);}

另外還有如下:

time_on_timeout(wait_queue_head_t *q, unsigned long timeout);interruptible_sleep_on_timeout(wait_queue_head_t *q, unsigned long timeout);

這兩個將當前進程添加到等待隊列,從而在等待隊列上睡眠,當超時發生時,進程將被喚醒。


關於udelay & mdelay, 就是busy waiting方式

driver常常會需要很短且精準的delay(n microsecond/millisecond),以完成sync。
此時用jiffies就不恰當,第一單位不夠小,如果timer是100Hz,表示一個tick是10 millisecond。
第二不夠準,因為透過scheduler。在kernel裡有兩個function來完成很小的delay,不使用jiffies:

在<linux/delay.h>

void udelay(unsigned long usecs)void mdelay(unsigned long msecs)

以上兩個都是busy waiting。
udelay的實作要先談BogoMIPS,這個值是指在特定時間內CPU可執行多少個busy loop operation。
也就是說,這個CPU不做任何事可以多快(久) (how fast a processor can do nothing)。
這個值在kernel裡是一個叫做loops_per_jiffy的變數,
在userspace則可在/proc/cpuinfo裡找到。

而kernel是在init/main.c裡透過calibrate_delay()這個function來計算。
值得一提的是這個值是跟performance沒太大關係的。
這個BogoMIPS主要就是用來實作udelay。
udelay去算需要多少個loop operation來得到精確的delay。

使用udelay要小心overflow,它適合很短的delay,通常不超過1 millisecond。
長一點的delay就用mdelay。
要注意的是udelay和mdelay會影響performance,因為CPU無法做任何其他事,所以通常是用來delay以microsecond為單位比較適合。

關於schedule_timeout(), 就是會進入sleep state

另一種delay是schedule_timeout()。與上述不同的是這方法會進入sleep state,直到指定的時間結束,而不是busy waiting。
另一個是不那麼精確,因為睡完是進入run queue。
使用方式是:

/* set task's state to interruptible sleep */set_current_state(TASK_INTERRUPTIBLE);/* take a nap and wake up in "s" seconds */schedule_timeout(s * HZ);

可看出這是使用jiffies。上面的code是將這個process在interruptible的情況下睡s秒。
state必須要在TASK_INTERRUPTIBLE或是TASK_UNINTERRUPTIBLE執行schedule_timeout才會進入sleep。

其他範例如下:

首先看到怎麼透過sleep 作延遲
其中第一個判斷式 in_interrupt() 定義為
>> #define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK | NMI_MASK)) // 判斷當前是否在硬件、軟件、底半部中斷上下文 (下方補充1)

msleep_interruptible() 延遲的單位為毫秒(10^-3)
且在於等待過程可能被中斷,中斷指的是 process 可以接收 signal (下方補充2)

  xxx_sleep() - sleep  The function suspends the execution of the current thread  until the specified time out interval elapses.       msInterval - the number of milliseconds to suspend the current thread.  A value of 0 may or may not cause the current thread to yield.  void xxx_sleep( v_U32_t msInterval ){   if (in_interrupt())   {      PRINT_TRACE(XXX_MODULE_ID_XXX, XXX_TRACE_LEVEL_ERROR, "%s cannot be called from interrupt context!!!", __func__);      return;   }   msleep_interruptible(msInterval);}

接著看這個小API
它實作與msleep()很像, 只是差別在使用 usecs_to_jiffies()
而msleep()是使用 msecs_to_jiffies()

  xx_sleep_us() - sleep  The function suspends the execution of the current thread  until the specified time out interval elapses.       usInterval - the number of microseconds to suspend the current thread.  A value of 0 may or may not cause the current thread to yield.     --------------------------------------------------------------------------*/void xxx_sleep_us( v_U32_t usInterval ){   unsigned long timeout = usecs_to_jiffies(usInterval) + 1;   if (in_interrupt())   {      PRINT_TRACE(XXX_MODULE_ID_XXX, XXX_TRACE_LEVEL_ERROR, "%s cannot be called from interrupt context!!!", __func__);      return;   }   while (timeout && !signal_pending(current))       timeout = schedule_timeout_interruptible(timeout);}

最後一個例子,
則是透過udelay()實作busy wait

  xxx_busy_wait() - busy wait  The function places the current thread in busy wait until the specified time out interval elapses.   If the interval is greater than 50us on WM, the behaviour is undefined.       para: usInterval - the number of microseconds to busy wait.  void xxx_busy_wait( v_U32_t usInterval ){    udelay(usInterval);}

Reference

Delaying Execution
補充1: in_irq() in_softirq() in_interrupt() 函數區別

#define hardirq_count() (preempt_count() & HARDIRQ_MASK)#define softirq_count() (preempt_count() & SOFTIRQ_MASK)#define irq_count() (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK | NMI_MASK))/** Are we doing bottom half or hardware interrupt processing?* Are we in a softirq context? Interrupt context?*/#define in_irq() (hardirq_count()) //判断当前是否在硬件中断上下文#define in_softirq() (softirq_count()) //判断当前是否在软件中断上下文#define in_interrupt() (irq_count()) //判断当前是否在硬件、软件、底半部中断上下文

補充2: 不忙碌的等待
如果在等待過程中,希望 CPU 去做其它事的話,可以用定義在「linux/delay.h」中 sleep 系列的等待函式:

void ssleep(unsigned int seconds);void msleep(unsigned int msecs);unsigned long msleep_interruptible(unsigned int msecs);

延遲的單位分別為秒、毫秒(10^-3)、毫秒(10^-3)。
msleep_interruptible() 與 msleep() 不同的地方在於等待過程可能被中斷,中斷指的是 process 可以接收 signal。
如果在 msleep_interruptible() 中收到 signal 而中斷等待的話,則會回傳距離原始時限的時間(正值),否則的話傳回「0」。

2017/06/20

ubuntu裡如何設定vnc遠端遙控軟體, 讓windows連上ubuntu

利用vnc連線到ubuntu
底下分享兩個方式

第一個方式就是使用GUI介面的設定

  • 按下系統、偏好設定、遠端桌面
  • 然後勾選:允許其他使用者觀看您的桌面、允許其他使用者控制您的桌面、使用者需要輸入密碼
  • 然後輸入妳想要的密碼
  • 不要打勾:詢問您以確認
  • 這樣就可以了

第二個方式就是利用command line介面

  • 首先先不管ubuntu裡面有沒有裝vnc 都給他下這行指令啦~
    • apt-get install x11vnc
  • 安裝好了以後
    • sudo x11vnc -storepasswd [your_password] /etc/x11vnc.pass
  • 使用
    • x11vnc
      就會開始執行了

 

然後到Windows安裝VNC Viewer 

啟動vnc這樣就可以連進來了

2017/06/13

Wordpress跑馬燈外掛- Vertical marquee post titlem與Post title marquee scroll

這個外掛作者有兩款跑馬燈外掛, 方向不同, 一個垂直方向, 一個水平方向
Vertical marquee post titlem 與 Post title marquee scroll

滿符合我的需求的

他後台有四組設定
也有widget的小工具可直接放於側欄
也有short code放置於文章裡面, 如 short code: [vmpt setting=”2″] (其中數字 1 ~ 4)

官方介紹

https://tw.wordpress.org/plugins/post-title-marquee-scroll/
Post title marquee scroll is a simple wordpress plugin to create the marquee scroll in the website with post title. In the admin we have option to choose the category and display order. We can add this plugin directly in the theme files. Also we have widget and short code option.

https://tw.wordpress.org/plugins/vertical-marquee-post-title/
This plugin will create the vertical marquee effect in your website, if you want your post title to move vertically (scroll upward or downwards) in the screen use this plugin. We are using the simple marquee tag to move the text vertically, and tested this plugin in all the leading internet browsers. admin option available to set the scroll effects and colors scheme.

Features of this plugin

Easy to customize
Easy styles override option
Configurable scroll amount
Option to update scroll delay
Option to update the scroll direction
Option to pause the scroller on mouse over
Option to choose category
Option to select order
Option to enter number of post to scroll

Plugin configuration

Drag and drop the widget : Go to widget menu and drag and drop the Vertical marquee post title widget to your sidebar location.

Short code for pages and posts : Use the below short code in the pages and posts.
[vmpt setting=”1″]
[vmpt setting=”2″]
[vmpt setting=”3″]
[vmpt setting=”4″]

Add directly in the theme : Add the below PHP code in your theme PHP file, for example if you want to add this slider in your website footer, just activate the plugin and add this code in footer.php file.

<?php vmptshow(); ?>

2017/06/08

Woocommerce 客製化有台灣的縣市欄位下拉選單&對應的鄉鎮市下拉選單

使用Wordpress的熱門購物車外掛, 最常被客戶要求修改的部分, 收件資料的縣市鄉鎮要能夠讓消費者自動下拉選擇, 以下是開發修改步驟:

事前準備:

1. 安裝 WooCommerce 購物車主體外掛
2. 安裝 Woo Checkout Field Editor Pro外掛: 可以客製化最後的結帳欄位
3. 安裝 WooCommerce Direct Checkout外掛: 可以讓客戶直接購買, 跳至結帳畫面

步驟1. WooCommerce 官方本來就有開放State的修改:

(官方出處)
安裝這個WooCommerce外掛之後, 便可以將以下的程式碼加入function.php, 縣市列表即可生效
當然要注意把國家代碼選TW, 如下的 $states[‘TW’]

/** * Code goes in functions.php or a custom plugin. Replace XX with the country code your changing. */add_filter( 'woocommerce_states', 'custom_woocommerce_states' );function custom_woocommerce_states( $states ) {	$states['TW'] = array(		        '基隆市' => '基隆市',		        '台北市' => '台北市',		        '新北市' => '新北市',		        '宜蘭縣' => '宜蘭縣',		        '桃園市' => '桃園市',		        '新竹市' => '新竹市',		        '新竹縣' => '新竹縣',		        '苗栗縣' => '苗栗縣',		        '台中市' => '台中市',		        '彰化縣' => '彰化縣',		        '南投縣' => '南投縣',		        '雲林縣' => '雲林縣',		        '嘉義市' => '嘉義市',		        '嘉義縣' => '嘉義縣',		        '台南市' => '台南市',		        '高雄市' => '高雄市',		        '屏東縣' => '屏東縣',		        '花蓮縣' => '花蓮縣',		        '台東縣' => '台東縣',		        '澎湖縣' => '澎湖縣',		        '金門縣' => '金門縣',		        '馬祖縣' => '馬祖縣'			);	return $states;}

下一頁還有步驟2喔!

步驟2. 新增外掛 WC City Select 以擴充:

(外掛介紹)
第一步驟做完之後, 請安裝WC City Select這個外掛, 然後再將以下的程式碼加入function.php, 即可呼應步驟1的縣市列表, 同樣需要留意的是要選的國家代碼也是TW, 如以下的 $cities[‘TW’]

add_filter( 'wc_city_select_cities', 'my_cities' );function my_cities( $cities ) {  $cities['TW'] = array('台北市' => array('中正區','大同區','中山區','松山區','大安區','萬華區','信義區','士林區','北投區','內湖區','南港區','文山區'  	),'基隆市' => array('仁愛區','信義區','中正區','中山區','安樂區','暖暖區','七堵區',  	),'新北市' => array('萬里區','金山區','板橋區','汐止區','深坑區','石碇區','瑞芳區','平溪區','雙溪區','貢寮區','新店區','坪林區','烏來區','永和區','中和區','土城區','三峽區','樹林區','鶯歌區','三重區','新莊區','泰山區','林口區','蘆洲區','五股區','八里區','淡水區','三芝區','石門區'  	),'宜蘭縣' => array('宜蘭市','頭城鎮','礁溪鄉','壯圍鄉','員山鄉','羅東鎮','三星鄉','大同鄉','五結鄉','冬山鄉','蘇澳鎮','南澳鄉'   	),'新竹縣' => array('竹北市','湖口鄉','新豐鄉','新埔鎮','關西鎮','芎林鄉','寶山鄉','竹東鎮','五峰鄉','橫山鄉','尖石鄉','北埔鄉','峨眉鄉'   	),'新竹市' => array('北區','東區','香山區'  	),'桃園市' => array('中壢區','平鎮區','龍潭區','楊梅區','新屋區','觀音區','桃園區','龜山區','八德區','大溪區','復興區','大園區','蘆竹區'   	),'苗栗縣' => array('竹南鎮','頭份市','三灣鄉','南庄鄉','獅潭鄉','後龍鎮','通霄鎮','苑裡鎮','苗栗市','造橋鄉','頭屋鄉','公館鄉','大湖鄉', '泰安鄉','銅鑼鄉','三義鄉','西湖鄉','卓蘭鎮'  	),'台中市' => array('中區','東區','南區','西區','北區','北屯區','西屯區','南屯區','太平區','大里區','霧峰區','烏日區','豐原區','后里區','石岡區','東勢區','和平區','新社區','潭子區','大雅區','神岡區','大肚區','沙鹿區','龍井區','梧棲區','清水區','大甲區','外埔區','大安區'  	),'彰化縣' => array('彰化市','芬園鄉','花壇鄉','秀水鄉','鹿港鎮','福興鄉','線西鄉','和美鎮','伸港鄉','員林市','社頭鄉','永靖鄉','埔心鄉','溪湖鎮','大村鄉','埔鹽鄉','田中鎮','北斗鎮','田尾鄉','埤頭鄉','溪州鄉','竹塘鄉','二林鎮','大城鄉','芳苑鄉','二水鄉'),'南投縣' => array('南投市','中寮鄉','草屯鎮','國姓鄉','埔里鎮','仁愛鄉','名間鄉','集集鎮','水里鄉','魚池鄉','信義鄉','竹山鎮','鹿谷鄉'),'嘉義縣' => array('番路鄉','梅山鄉','竹崎鄉','阿里山	','中埔鄉','大埔鄉','水上鄉','鹿草鄉','太保市','朴子市','東石鄉','六腳鄉','新港鄉','民雄鄉','大林鎮','溪口鄉','義竹鄉','布袋鎮'),'嘉義市' => array('東區','西區'),'雲林縣' => array('斗南鎮','大埤鄉','虎尾鎮','土庫鎮','褒忠鄉','東勢鄉','臺西鄉','崙背鄉','麥寮鄉','斗六市','林內鄉','古坑鄉','莿桐鄉','西螺鎮','二崙鄉','北港鎮','水林鄉','口湖鄉','四湖鄉','元長鄉'),'台南市' => array('中西區','東區','南區','北區','安平區','安南區','永康區','歸仁區','新化區','左鎮區','玉井區','楠西區','南化區','仁德區','關廟區','龍崎區','官田區','麻豆區','佳里區','西港區','七股區','將軍區','學甲區','北門區','新營區','後壁區','白河區','東山區','六甲區','下營區','柳營區','鹽水區','善化區','大內區','山上區','新市區','安定區',),'高雄市' => array('新興區','前金區','苓雅區','鹽埕區','鼓山區','旗津區','前鎮區','三民區','楠梓區','小港區','左營區','仁武區','大社區','岡山區','路竹區','阿蓮區','田寮區','燕巢區','橋頭區','梓官區','彌陀區','永安區','湖內區','鳳山區','大寮區','林園區','鳥松區','大樹區','旗山區','美濃區','六龜區','內門區','杉林區','甲仙區','桃源區','那瑪夏區','茂林區','茄萣區',       	),'屏東縣' => array('屏東市','三地門鄉','霧臺鄉','瑪家鄉','九如鄉','里港鄉','高樹鄉','鹽埔鄉','長治鄉','麟洛鄉','竹田鄉','內埔鄉','萬丹鄉','潮州鎮','泰武鄉','來義鄉','萬巒鄉','崁頂鄉','新埤鄉','南州鄉','林邊鄉','東港鎮','琉球鄉','佳冬鄉','新園鄉','枋寮鄉','枋山鄉','春日鄉','獅子鄉','車城鄉','牡丹鄉','恆春鎮','滿州鄉'   	),'台東縣' => array('臺東市','綠島鄉','蘭嶼鄉','延平鄉','卑南鄉','鹿野鄉','關山鎮','海端鄉','池上鄉','東河鄉','成功鎮','長濱鄉','太麻里鄉','金峰鄉','大武鄉','達仁鄉',   	),'花蓮縣' => array('花蓮市','新城鄉','秀林鄉','吉安鄉','壽豐鄉','鳳林鎮','光復鄉','豐濱鄉','瑞穗鄉','萬榮鄉','玉里鎮','卓溪鄉','富里鄉'   	), '澎湖縣' => array('馬公市','湖西鄉','白沙鄉','西嶼鄉','望安鄉','七美鄉'   	), '金門縣' => array('金城鎮','金湖鎮','金沙鎮','金寧鄉','烈嶼鄉','烏坵鄉'   	), '馬祖縣' => array('北竿鄉','南竿鄉','莒光鄉','東引鄉'   	),  );  return $cities;}

下一頁還有步驟3喔!

步驟3. 如何移除資料裡的國家覽位:

做完步驟1與2後, 基本上已經完成縣市與鄉鎮市的選單自動下拉功能, 而步驟3只是小修改
你可以在style.css或其他擴充css的地方, 加入以下的語法將國家的欄位隱藏起來, 看不見但還是有存在

.woocommerce-billing-fields #billing_country_field {display: none;}

完成如下:

下圖就是完成之後的樣子
記得要透過外掛 Woo Checkout Field Editor Pro 作客製化結帳欄位, 把順序調整一下, 再將不需要的東西移除!
OK!

更多參考:

2017/06/01

WP-PostViews外掛-好用的額外功能 可以透過API 操作與更改網址參數使用

更新:
另一個外掛 WordPress Popular Posts 也有類似功能, 鄉親可以自行研究看看

更改主循环排序,按照文章展示次数浏览

只要启用了WP-PostViews,你的网站就自动获得了这种排序浏览的方式
WP-PostViews还自带了排序功能,通常首页展示的文章是按照发布时间来排序的,你可知道只需要在url中添加一些参数就可以改变排序。例如

按照访问次数由多到少排序,尝试这样访问你的网站

http://yourdomain.com/?v_sortby=views

按照访问次数由少到多排序,添加这样的参数

http://yourdomain.com/?v_sortby=views&v_orderby=asc

WP-PostViews API

WP-PostViews定义的函数也可以单独调用,它提供的views小工具就是调用这些函数工作的。

<?php get_least_viewed($mode = '', $limit = 10, $chars = 0, $display = true) ?>//显示最冷门文章//$mode: post | page | both (相当于widget中的Statistics Type设置)//$limit: 显示多少篇文章//$chars: 标题长度//$display: 为true则直接显示,否则作为字符串返回
<?php get_most_viewed($mode = '', $limit = 10, $chars = 0, $display = true) ?>//显示最热门文章
<?php get_least_viewed_category($category_id = 0, $mode = '', $limit = 10, $chars = 0, $display = true) ?>//显示某个或某些目录下最冷门文
<?php get_most_viewed_category($category_id = 0, $mode = '', $limit = 10, $chars = 0, $display = true) ?>//显示某个或某些目录下最热门文章
<?php get_most_viewed_tag($tag_id = 0, $mode = '', $limit = 10, $chars = 0, $display = true) ?>//显示指定标签下的最热门文章
<?php get_least_viewed_tag($tag_id = 0, $mode = '', $limit = 10, $chars = 0, $display = true) ?>//显示指定标签下的最冷门文章
<?php get_totalviews(); ?>//显示全站文章总共被浏览过多少次