1. Volume Shadow Copy Service ...

    windows 2003 提供的 "新" 功能... 其實也不算新了, 都已經要邁入第四年了, 不過卻是個很實用的東西..

    簡單的說, vss 是建立在 file system 以下的服務, 它可以替你的 storage 做 snapshot, 跟一般的備份不一樣, 它是用 "copy on write" 的方式. 意思就是, 當我要求現在替我的硬碟做一次 snapshot, 只要這份 snapshot 不刪除, 我都隨時可以找到這時的檔案內容.

    聽起來就是一般的備份嘛, 不過它的作法完全不同. snapshot 很快就可以作好, 是快到 0.x sec 這種程度, 它只是在目前的資料上做個記號, 只要檔案沒更新, 完全沒有資料需要被備份. 而已經作了 snapshot 的資料要被更新時, 它才立即做了一份 copy, 實際上的更新動作是 copy 一份出來才 update. 這就是 "copy on write" 的作法.

    講那麼多幹嘛? 因為當年研究所考試台大有考 "copy on write" ... 當時年紀輕什麼都不懂, 想破頭也寫不出來, 後來考完出來翻書才恍然大悟, 只怪書翻的太晚... :~ 所以印相就特別清楚.. 哈哈

    win2003 提供的 vss 其實不只如此, 它還提供了 provider 的架構, 意思是做 snapshot 的機制, 有可能換成其它軟體來處理, 或是其它硬體, 像是 Microsoft 自己的 SQL2005, Exchange2007, Data Protection 2006, 還有其它備份軟體... 等等工具都會受惠. 這些軟體可以基於 vss 再開發出更進階的功能, 像 SQL2005 也在 db 上提供了 snapshot, Exchange2007 也靠 vss 做出更完整的檔案備份及複寫功能...

    不過這些對大部份自己用的電腦都沒啥用, 大家不都是現成電腦買來, windows 灌好就開始用了... 最近花了些時間研究一下, 發現還挺好用的:

    1. 在 disk properties 上可以看到 shadow copy 的畫面, 你可以定期做 snapshot
    2. 做好 snapshot 後, 透過網路芳鄰來看這個 share folder 就會有額外的 options
    3. 按下 view 就可以把過去的備份叫出來, 也可以還原到某個時間的檔案內容

    很棒的功能, 不過跟我的需求有點差距... 我希望用 snapshot 解決我碰到的一些問題:

    1. 我必需要更可靠的備份作業, 我要把資料 "真正" 的 copy 出來, 而不是只留著 snapshot.
    2. copy 的動作要花一些時間, 但是 copy 時有可能資料也正在被修改 or 鎖定..
    3. 我需要隨時做這些動作, 而不是像 2003 內建的, 只能排排程定期做.. 最好是可以寫成批次檔 (老人家的壞習慣... Orz)

    最後找到的方式, 很陽春, 不過已經足夠解決我的問題了 (H), 就順手貼出來, 邏輯上的步驟, 是:

    1. 要開始備份前, 先做一次 snapshot
    2. 之後備份作業從 snapshot copy 出來, 而不是從 current state copy 出來, 就不會有 lock or update 的問題
    3. 動作完成後, snapshot 就可以砍了, 當然要留著也無所謂...

    要做成批次檔, 一次完成的話, 則有這兩項關鍵:

    1. 命令列執行建立及刪除 snapshot 的方式: 用 vssadmin.exe
    2. 讓其它工具 (我用 RAR.exe) 直接讀取 snapshot 的方式, vss 是以 UNC 的路逕提供:
      \\localhost\d$\@GMT-2006.11.28-23.00.01

    其中 \\nest\Home 是一般的 UNC 路逕, 後面加的 @GMT-...... 則是做 snapshot 的 timestamp, 以我來說, 要備份這目錄只要這樣下:

    RAR.exe a -r c:\backup.rar \\nest\Home\@GMT-2006.11.28-23.00.01

    說穿了沒啥特別的, 只不過找到了最後兩項關鍵, 命令列指令, 跟存取 snapshot 的路逕, 解決掉了我多年來的困擾, 每次要備份檔案一下這個 lock 一下那個 lock, 不然就是得先關一堆程式才能 copy 的困擾. 不過 windows xp 的 vss 好像就沒這麼完整, 這些作法目前只有 windows 2003 能夠用, 殘念... 不知道 vista 有沒有類似的東西可以用? :D

    2006/12/06 技術隨筆 有的沒的

  2. Ya!! Community.Chicken-House.Net 滿兩週年了 :D

    嗯, 這個站架起來的第一篇是 2004/11/19 貼的, 剛好滿兩年 :D

    當然再之前我自己寫的那個 forum.net 不算在內啦, 被唸到臭頭的網頁 :~~ 這個只是拿來練功用, 想當年這個 forum 也替我賺了不少獎品 :D, 現在小皮愛玩的 xbox (看 2004/01/05 那篇), 路癡用的 PDA 導航, 老婆大人每天當電視看的 HP 15" LCD.. 還有老爸用的 scanner / printer (2004/10/13那篇)... 都是這程式賺來的.. (H)

    如果把 forum.net 也算進去的話, 可以追溯到這篇... 2003/06/08...

    如果把更早的留言板 (當年只用 xml 檔當 storage, 沒有用 database) 算進去.. 哇靠, 這篇更早,  2002/07/01 ...

    當時還沒花錢買 chicken-house.net 這個 domain name, 用的還是免費的 chicken.27south.com .. 南方廿七號養雞場... -_-

    再往前算? BBS ... 嗯, 好, 不提當年勇了 [H]

    謝謝大家的支持, chicken-house.net 會繼續開下去的 :D

    2006/11/19 有的沒的 當年勇

  3. Digital Camera Filer - Source Code (update)

    這個程式其實很簡單, 最麻煩的兩個部份都找到現成的 library 就解決掉了, 剩下的就只有剪剪貼貼的手工業而以. 先介紹這個 tools 開發時用到的兩套 library:

    1. PhotoLibrary: 封裝 System.Drawing.Image 方便讀取 EXIF 等資訊.
      Project Site: http://www.gotdotnet.com/workspaces/workspace.aspx...
    2. Microsoft RAW Image Viewer: 它提供了 canon sdk 及 .net wrapper
      Download Site: http://www.microsoft.com/downloads/details.aspx?fa...

    扣掉這兩套 lib 幫的忙之外, 其它剩下的就真的沒啥好看的了... 只有一些五四三的還能拿來講一講... 底下是整個 project 的 class diagram:

    程式主要是用到 Factory Patterns, 每種要處理的檔案類型各有一種對應的 MediaFiler 類別來負責, 之後主程式就是 recursive 找出所有的檔案, 一個一個丟給 MediaFiler 處理而以. 簡單的說明一下這幾個 class:

    • class MediaFiler: 沒啥好說的, 所有的 MediaFiler 都要從這個抽像類別繼承下來. MediaFiler 會處理單一個特定格式的檔案歸檔動作.
    • class CanonPairThumbMediaFiler: 一樣是抽像類別, 不過處理的檔案類型較特別, 專門處理會附帶一個縮圖檔 ( *.thm , 內容為 JPEG 格式縮圖 ) 的檔案類型.

    扣掉這兩個 abstract class, 剩下就一個蘿蔔一個坑了... 來點名吧:

    • JpegMediaFiler: 就是處理 *.jpg 的 MediaFiler
    • CanonRawMediaFiler: 處理 *.crw (會附帶處理對應的 .thm)
    • CanonVideoMediaFiler: 處理 *.avi (會附帶處理對應的 .thm)

     

    [update: 2006/11/20]

    講這麼多還丟 source code 幹嘛? 其實有個目的, 就是這工具的架構及選用的 library 其實已經有足夠的擴充能力去適應非 canon 的檔案格式了, 改版後做了一點調整, 搭配了 Attribute 來達成這目的, 舉片段的 code 當例子:

      237         public static MediaFiler Create(string sourceFile)

      238         {

      239             FileInfo sf = new FileInfo(sourceFile);

      240             foreach (Type t in GetAvailableMediaFilers())

      241             {

      242                 //

      243                 //  match

      244                 //

      245                 MediaFilerFileExtensionAttribute ea = GetFileExtensionAttribute(t);

      246                 if (string.Compare(ea.FileExtension, sf.Extension, true) == 0)

      247                 {

      248                     //

      249                     //  file extension match

      250                     //

      251                     ConstructorInfo ctor = t.GetConstructor(new Type[] { typeof(string) });

      252                     return ctor.Invoke(new object[] { sourceFile }) as MediaFiler;

      253                 }

      254             }

      255             return null;

      256         }

      

     for loop 的部份就是列出所有已載入 AppDomain 的 Assemblies 裡所有包含的 Type, 過濾的條件是:

    1. 要繼承自 class MediaFiler
    2. class 要有貼上 MediaFilerFileExtensionAttribute 自訂屬性

    符合這兩個條件的所有 type 就會一個一個拿來比對. 也許有人會問, 用 attrib 看起來比較強嗎? 這種典型的應用不是應該用 abstract method, 讓底下的 class 來實作就好?

    是的, 如果我用 java 寫的話, 我會這麼做. 不過, polymophism 的前題就是要有 instance, 我連要用那個 class 來產生 instance 都還不曉得, 如何能享用到 polymphism 的好處? 用 static method 就沒有這種好處了, 況且 c# 語法也沒有辦法強迫衍生類別一定要 implements 某些 static method ...

    這時透過 attrib 就可以很漂亮的解決這個問題, 細節就不管了, 總之我透過 custom attribute 替每個 MediaFiler 標明, 每個 MediaFiler 負責的 file extension 為何.

    動態挑到適當的 MediaFiler 後, 剩下的就靠 Reflection 產生 instance, 收工.

     

    看起來有點小題大作, 目的只有一個, 如果有新的檔案格式要支援怎麼辦? 目前的架構很簡單, 只要加上新的 MediaFiler implementation, 然後用 custom attribute 標明它負責的是那種 file extension, 其它就通通結束了, Factory Pattern 核心的部份 Create( ) 完全不用改.

    優點不只如此, 還可以再做的徹底一點, 其它檔案類型的支援, 甚至不用改到原本的 code / .exe, 只要另外開 class library project, 寫在其它的 assembly, 丟在同一個目錄下執行就好了. 以往要做到 plug-ins  架構的程式非常麻煩, 現在十行左右的 code 就完成了.

     

    最後, 要看 source code 的人可以到下面列的網址下載整個 project. 順便廣告一下我自己寫的 zip folder http handler (H), 幹嘛用的? 直接把 zip 檔丟上來, 透過 http handler 加持, 就可以把 .zip 檔視為一個目錄了... 方便的很, 上面的 class diagram 其實就是藏在 zip 檔裡的圖而以... 我就不用另外再維護兩份檔案了 (一份圖檔, 一份 zip 下載檔)

    Source Code (Visual Studio 2005 Project): http://www.chicken-house.net/files/chicken/Chicken...

    2006/11/18 .NET 技術隨筆

  4. Canon Digital Camera 記憶卡歸檔工具 - Release Notes

    好戲不拖棚了, 這個小工具寫到現在, 大部份的問題都解決掉了, 接下來除非有碰到啥 Bug, 否則就不會再大改版了. 在這裡總結一下:

     

    overview:

    DigitalCameraFiler 是專為數位相機記憶卡歸檔用的工具, 包括一般相片, raw file, 及 video clip, 可以依照拍照時的各種資訊 (exif, 包括拍照時間, 相機型號, 光圈值, 快門值... etc) 的組合當成檔名及目錄名稱自動歸檔. 這個工具沒有 windows 介面, 為 Console Application. 可以搭配批次等等工具一起使用.

     

    how it work:

    這工具運作的方式很簡單, 它會掃描指定的目錄 (記憶卡) 下的所有檔案, 碰到支援的檔案類型就會依照定義好的歸檔動作去處理它. 以下是這個工具支援的幾種類型, 及它的處理方式:

    1. JPEG file: 最常見的類型, 碰到 *.jpg 檔會先依照 exif 裡的 Orientation 值決定要不要把照片轉正. 轉好後就把照片放到指定位置.
    2. RAW file: 支援 Canon 的 *.crw 檔案. crw 會搭配對應的 .thm 檔, 會從這兩個檔案取得必要的 exif 資訊, 用來做歸檔的動作. 除了把 .crw 放到指定位置之外, 也會另外把 .crw 轉成 .jpg 放在同一個目錄下. 在轉換檔案格式的同時, 也會把對應的 .thm 檔的 exif 都複製一份到 .jpg 檔.
    3. VIDEO file: 支援 Canon 拍攝的 MJPEG ( *.avi ) 檔. Canon 一樣會準備一份對應的 .thm 檔, 歸檔 .avi 時就會依照對應的 .thm 內的 exif 資訊為準.

     

    configuration:

    這個工具主要的目的就是依照 exif 等資訊來安排歸檔的路逕, 因此設定的方式採取 .net framework 裡通用的 format string 格式為準. 細節可以直接參考 MSDN 網站, 設定的方式如下:

    pattern: 格式化字串. 大括號 { } 內的數字代表要用後面定的第幾個 exif 代碼替代.

    exif list: 你要取用的 exif variable list. 序號從 0 開始算.

    舉例來說, 如果你指定的 pattern 為:

    " c:\photos\{0:yyyy-MM-dd}\{1}-{2}"

    而指定的 exif variable list 為:

    " DateTime,Model,FileName"

    則用我的 G2 在 2006/11/11 拍的照片 IMG_1234.jpg 則會被歸檔到這個位置:

    c:\photos\2006-11-11\Canon PowerShot G2-IMG_1234.jpg

    pattern 可以依照這樣的原則任意指定, 不存在的目錄會自動建立, 而可用的 exif variable 到底有多少? 在命令列執行這個工具, 不帶任何參數的話就會列出所有的變數名. 這些設定寫在 DigitalCameraFiler.exe.config 檔案內, pattern 可以各別為 JPEG / RAW / VIDEO 分別指定, 而 EXIF List 則是共用的.

     

    下回會把 source code 也一起 release 出來, 請有耐心點等待 :D

     

    安裝檔下載位置: http://www.chicken-house.net/files/chicken/ChickenHouse.Tools.DigitalCameraFiler.Binary.zip

    2006/11/17 .NET 技術隨筆

  5. IQ test ...

    同事給的 IQ test 網站: http://web.tickle.com/tests/uiq/index-pop.jsp?sid=...

    只有 124 分 :'(

    共有 40 題, 英文的題目... 看來敗在英文太爛, 真糟糕, 語言能力只有 40% ~ 50% 的水準 :~~~

    測完有詳細的 report, 分四個領域個別分析你的能力.. 貼一小段我的測試報告上來:

     

     

     

     

     


    Congratulations, Andrew!
    Your IQ score is 124

    This number is based on a scientific formula that compares how many questions you answered correctly on the Classic IQ Test relative to others.
    Your Intellectual Type is Precision Processor. This means you're exceptionally good at discovering quick solutions to problems, especially ones that involve math or logic. You're also resourceful and able to think on your feet. And that's just some of what we know about you from your test results.

     

     

     

    Mathematical Intelligence

    Your Mathematical Percentile
    90th percentile

    You scored in the 90th percentile on the mathematical intelligence scale.This means that you scored higher than 80% - 90% of people who took the test and that 10% - 20% scored higher than you did. The scale above illustrates this visually.
    Your mathematical intelligence score represents your combined ability to reason and calculate. You scored relatively high, which means you're probably the one your friends look to when splitting the lunch bill or calculating your waitresses' tip. You may or may not be known as a math whiz, but number crunching might come a little easier to you than it does others.

     

     

     

    Visual-Spatial Intelligence

    Your Visual-Spatial Percentile
    70th percentile

    You scored in the 70th percentile on the visual-spatial intelligence scale.
    This means that you scored higher than 60% - 70% of people who took the test and that 30% - 40% scored higher than you did. The scale above illustrates this visually.
    The visual-spatial component of intelligence measures your ability to extract a visual pattern and from that envision what should come next in a sequence. Your score was relatively high, which could mean that you're the one navigating the map when you're on an outing with friends. You have, in some capacity, an ability to think in pictures. Maybe this strength comes out in subtle ways, like how you play chess or form metaphors.

     

     

     

    Linguistic Intelligence

    Your Linguistic Percentile
    50th percentile

    You scored in the 50th percentile on the linguistic intelligence scale.
    This means that you scored higher than 40% - 50% of people who took the test and that 50% - 60% scored higher than you did. The scale above illustrates this visually.
    Linguistic abilities include reading, writing and communicating with words. Tickle's test measures knowledge of vocabulary, ease in completing word analogies and the ability to think critically about a statement based on its semantic structure. Your score was relatively low, which could just mean that you convey ideas through other means than verbally. Or maybe it just means you find other ways to spend your time than doing crossword puzzles.

     

     

     

    Logical Intelligence

    Your Logical Percentile
    100th percentile

    You scored in the 100th percentile on the logical intelligence scale.
    This means that you scored higher than 90% - 100% of people who took the test and that 0% - 10% scored higher than you did. The scale above illustrates this visually.
    Tickle's logical intelligence questions assess your ability to think things through. The questions determine the extent to which you use reasoning and logic to determine the best solution to a problem. Your logic score was relatively high, which could mean that when the car breaks down, your friends look to you to help figure out not only what's wrong, but how to fix it and how you're going to get to the next gas station.

    2006/11/15 有的沒的 當年勇