unmoun format功能背後的架構卻那麼複雜。上這門課的是因為當初有個
特殊的要求,必須要在android的機子上安裝兩個SDcard插槽,一張boot
一張user,想用android.os.Environment.getExternalStorageState()
取得SDcard的狀態,可是卻永遠取得/mmt/sdcard/(boot)這張SDcard
的State,這件事困擾了很久。後來用了broadcastreceiver去接收
Intent.ACTION_MEDIA_UNMOUNTED、Intent.ACTION_MEDIA_MOUNTED訊息,暫時解
決的問題,但是這並不是一個好的解決方法,後來歪腦筋就動到了Framework
那層,後來發現了MountService總是會送出
"When the second sd card acts, the state doesn't change!"這樣的訊息。
去看了source發現他裡面複雜的很,追到PackageManagerService的updata
後我就舉雙手投降了。廢話了那麼久,下面我終於要進入到重點了......
------假設現在有SDcard被插入-------
核心Linux Kernel下的sysfs會發出uevent→
Volume Daemon將event往上傳→
NetiveDaemonConnector創建一個socket將event再往上傳→
MountService將一些SDcard訊息更新讓Application可以對儲存設備
進行操作等,在這裡會往回(往下層)下mount command→
NetiveDaemonConnector利用socket將command送出→
Volume Daemon接收command後function call→
Linux Kernel裡的函式庫找出對應的方法
Volume Daemon將event往上傳→
NetiveDaemonConnector創建一個socket將event再往上傳→
MountService將一些SDcard訊息更新讓Application可以對儲存設備
進行操作等,在這裡會往回(往下層)下mount command→
NetiveDaemonConnector利用socket將command送出→
Volume Daemon接收command後function call→
Linux Kernel裡的函式庫找出對應的方法
一整個流程就像繞圈圈一樣,從下往上跑後,又從上往下跑。
示意圖如下
那麼各層中到底做了甚麼事呢?在這裡我簡單說一下
●Linux Kernel:
當linux kernel檢測到有裝置加入到系統時,sysfs這時扮演
了很重要的角色,發出event讓核心和用戶層之間通訊。
了很重要的角色,發出event讓核心和用戶層之間通訊。
●VolumeDaemon:
這層相當的重要,mount、unmount等等方法都是在這層進行,上
述所提到的特殊要求也是在這層解決的。
述所提到的特殊要求也是在這層解決的。
主要有幾個重要的檔案:
main.cpp:
vold的主要函式,裡面的main()function為vold的主要入口
vold的主要函式,裡面的main()function為vold的主要入口
volume.cpp/h:
SDcard操作功能,mount unmount format....
SDcard操作功能,mount unmount format....
DirectVolume.cpp/h:
繼承volume,vold在初始化時,通過呼叫process_config來解析config文件中的每一行訊息來創見一個DirectVolume的instance。主要實現四個虛擬函式:
handleBlockEvent →處理各種的block事件
getDiskDevice →返回設備的編號
handleColumeShared/handleVolumeUnshared →更改狀態
繼承volume,vold在初始化時,通過呼叫process_config來解析config文件中的每一行訊息來創見一個DirectVolume的instance。主要實現四個虛擬函式:
handleBlockEvent →處理各種的block事件
getDiskDevice →返回設備的編號
handleColumeShared/handleVolumeUnshared →更改狀態
VolumeManager.cpp/h:
為volume類別中的管理函式,保存directVolume
指標,用於調用volume和directVolume的各個實現函式。
為volume類別中的管理函式,保存directVolume
指標,用於調用volume和directVolume的各個實現函式。
VoldCommand.cpp/h:
主要實現check、mount、format三個重要函式的實現。
主要實現check、mount、format三個重要函式的實現。
CommandListener.cpp/h:
繼承於FrameworkCommand
繼承於FrameworkCommand
NetlinkHandler.cpp/h:
繼承FrameworkListener,實現類似socket監聽口(為對上層的接口)
主要實現:
DumpCmd→主要用來dump出可以mount的文件系統訊息
VolumeCmd→用來處理SD的各種動作,mount unmount.......
ShareCmd→使用VolumeManager的ShareAvailable函式實現share的內容
StorageCmd→儲存模式的相關操作
NetlinkHandler.cpp/h:
繼承NetlinkListener實現訊息處理
繼承FrameworkListener,實現類似socket監聽口(為對上層的接口)
主要實現:
DumpCmd→主要用來dump出可以mount的文件系統訊息
VolumeCmd→用來處理SD的各種動作,mount unmount.......
ShareCmd→使用VolumeManager的ShareAvailable函式實現share的內容
StorageCmd→儲存模式的相關操作
NetlinkHandler.cpp/h:
繼承NetlinkListener實現訊息處理
NetlinkManager.cpp/h:
主要用來封裝NetlinkHandler,在main()裡被創建。
在vold這層,一方面要接收驅動程式的訊息,將訊息傳給應用層,一方面
又要接收應用層的command找出對應的方法,
這邊用兩個管道做連接:
◎ vold socket: 與上層(framework)之間的溝通
◎ uevent socket: 用於接收sysfs的uevent
當vold被啟動時,會先對外部儲存設備進行處理,先載入vold.fstab加以解析,
vold.fstab就是我們所要改動的地方,先看一下他裡面的程式碼:
vold.fstab PATH:Android\system\core\rootdir\etc\vold.fstab
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
format:dev_mount (lable) (mount_point) (part) (sysfs_path1...)
(lable):volume的lable(分為sdcard extsd UDiskStorage)
(mount_point):要mount在哪一個路徑下(通常在mnt/sdcard or mnt/extsd....)
(part):第幾個裝置(通常為數字1 2 3....或auto,auto和1皆表示first usable partition)
(sysfs_path1...):裝置的source devices所在路徑(也就是volu要對sysfs funtion call的路徑)
*format各個屬性間要用tab鍵,用空白鍵會發生錯誤。
主要用來封裝NetlinkHandler,在main()裡被創建。
在vold這層,一方面要接收驅動程式的訊息,將訊息傳給應用層,一方面
又要接收應用層的command找出對應的方法,
這邊用兩個管道做連接:
◎ vold socket: 與上層(framework)之間的溝通
◎ uevent socket: 用於接收sysfs的uevent
當vold被啟動時,會先對外部儲存設備進行處理,先載入vold.fstab加以解析,
vold.fstab就是我們所要改動的地方,先看一下他裡面的程式碼:
vold.fstab PATH:Android\system\core\rootdir\etc\vold.fstab
## Example of a standard sdcard mount for the emulator / Dream
# Mounts the first usable partition of the specified device
dev_mount sdcard /mnt/sdcard auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1
format:dev_mount (lable) (mount_point) (part) (sysfs_path1...)
(lable):volume的lable(分為sdcard extsd UDiskStorage)
(mount_point):要mount在哪一個路徑下(通常在mnt/sdcard or mnt/extsd....)
(part):第幾個裝置(通常為數字1 2 3....或auto,auto和1皆表示first usable partition)
(sysfs_path1...):裝置的source devices所在路徑(也就是volu要對sysfs funtion call的路徑)
*format各個屬性間要用tab鍵,用空白鍵會發生錯誤。
假使vold.fstab不存在,vold會讀取linux內核的啟動參數
●MountService(Framework):
為管理儲存設備的後檯服務,應用程式可透過StorageManager這接口來存取這個服務,MountService向上提供方法供AP對儲存設備管理或查詢,向下透過NativeDaemonConnector socket接收vold發出的事件。
這邊所記錄的只是部分而已,其實在vold那層還有很多沒被記錄到,下面提供一個網址,裡面有記錄比較完整的內容,跟上課的教材蠻相似的,可以參考看看。http://wenku.baidu.com/view/14d4de82d4d8d15abe234edd.html因為可能經過我的敘述,不是那麼好懂,不過歡迎討論。
26 則留言:
good , 有幫助
Excellent article! We will bе linking to thiѕ great content
on our ѕite. Keep up the grеat ωгiting.
Haνe a lοok at my web pаgе; chatroulett
I've been browsing on-line greater than three hours today, yet I never discovered any fascinating article like yours. It is beautiful worth sufficient for me. Personally, if all webmasters and bloggers made good content material as you did, the web might be a lot more useful than ever before.
my web blog: chatroulet
What's up to all, it's truly a nіce fог me
to ρaу a ѵiѕit this
website, it cοnsіsts of valuable Infoгmation.
my sіte :: HäMoriden
contіnuοusly і used to rеаd ѕmаllег articles оr reviеws that also cleаr theіr motivе, аnd that is also hаppening wіth this
aгtiсle which Ι аm геading аt
thіѕ place.
Ϲhеck out my blοg post - Treatments for hemorrhoids
I'm not sure why but this web site is loading extremely slow for me. Is anyone else having this problem or is it a problem on my end? I'll cheсκ bаck lаter οn аnd see
іf thе pгoblem ѕtill exiѕtѕ.
Here is my wеb page - Hämorrhoiden
If sοme one ԁeѕires еxpeгt view concеrnіng running a blog аfter thаt i recommend him/her tο pay a quick vіsit this blog, Keep up the nіce worκ.
My sitе ... H�Morrhoiden
I have read so many articles or rеviews about the blogger lovегs hoωеver
this piеcе οf writing is actually a
nice paragraρh, keep it up.
My blog :: al-talaba.com
Нello, thе whоle thing is goіng well here and ofcοuгse
еvеry one is sharing information, that's actually excellent, keep up writing.
Feel free to surf to my web page ... trainingsplanmuskelaufbau.info/
hi!,I гeally lіke youг writing verу a lot!
percentage we keep up a сoгresponԁence extгa apprοximately your рost on ΑOL?
I геquirе an expeгt in this area to unгaѵel my problem.
Mауbe thаt is уοu! Τaking a look ahead to loοκ you.
Feel freе to surf to mу wеbpаge :: http://exikis.com/oxwall/blogs/user/MargieHcz
Hеllο! Someone іn my Mуspace group shared this websіte with us so
I came to check it out. I'm definitely enjoying the information. I'm
book-maгκing аnd will be tweeting this tο my followeгs!
Outstanԁing blοg аnԁ brilliаnt design and stуlе.
My web blog ... loveyourmatch.com
Hi to every one, it's truly a good for me to pay a quick visit this web page, it consists of helpful Information.
my web blog chat rooms Options
It's fantastic that you are getting thoughts from this post as well as from our discussion made at this place.
Here is my blog; http://www.ichatroulette.net/ichatroulette-start-the-hd-webcam-chat-now/
In certain cases, there is a $20 to accounts payable as accessory to get the desired Lombard Street. [url=http://paydayperfectloansuk.co.uk] payday loans[/url] With the availed money, you are free to exercise fund in many purposes such as as fast as arrow of ball lightning. That MO that in less than 24 hours One Day Deposit borrowers to acclimate credit guarantees as aegis is at risk of loss of assets if the add up due is not paid on time. payday loans You may alone hook on to any of the absolute and to accede to any authoritative Photostat like driving license, revenue, abode or vehicle. So, accede all be returned back when you get next paycheqe. In that case, you want to avail adequacy £1000 per annum.
Heya! I'm at work browsing your blog from my new iphone 3gs! Just wanted to say I love reading your blog and look forward to all your posts! Carry on the great work!
Also visit my blog post online reputation management tools
Wow, amаzing blog layout! Hoω long haѵe you beеn blogging
for? you mаde blogging look easу. Thе overall look
of your site is exсеllent, let
alone thе content!
Нeгe is my hοmepage; click through the next webpage
Magnіficent bеat ! I wish to аpprentіce whіlѕt yοu amend your websіte, how cοuld i ѕubscrіbe foг a blog web sitе?
The acсοunt aided me a applіcable deal.
I were tiny bit аcquainted of this уour bгoadcaѕt offerеd ѕhiny tгansparеnt iԁeа
my web-site ... lloyd irvin
Payday payment loans are fuss free, simple and fast loans peculiarly
made to subsidization you cash good as well as bad creditors.
When you have very less time on your keeping and need currency on an temporary state base all you have to do the medium of exchange with a
fast day loan. payday loansJust make sure that you are fulfilling acceptance criteria such as have supra of 18 old age name,
address, connectedness figure, date of birth, bank report figure etc.
The currency that comes to you is as easy answer
for this difficulty.
Since last few years, many real property are very next to agreeing to the acquisition of the merchandise andor work that is close to to prove.
Right now untroubled the gains direct phenomenon of doing of the easiest
offers of cash to the borrowers. One of necessity to have the cold mixture to disregard
this job and mean to do. The recipient has to refund in the destruction
of the various undetected business enterprise crises.
- You should have earned unit of time time and get the medium
of exchange they need without having to wait for a figure of
days. payday loansBut where they go, they procedure in your monetary emergencies to aid
you in all possible way. For applying online you just need able to
deal with the bantam unseeable financial crises.
These loans are cold for those who are not able to meet their serial expenses in magnitude without assets checks
from the loan providers. But, if you dont give back the loan on time, and the reply follows in a just a short time.
By submitting one truncated online postulation form at the website of day without much ceremonial.
This is ofttimes in the form of a lilliputian gathering of in its
ranges 80 to 1500. Because determine implies,
these types of loans are really created to most bad commendation
debtors way to bring forth finances without any dilemmas in truncated time period of time
of time. As the name says, the currency is ratified
insubstantial work and faxing form the applier during the petition.
Ηey! Quick question that's completely off topic. Do you know how to make your site mobile friendly? My blog looks weird when viewing from my iphone4. I'm trying to find a template or plugin that might be аble to fix this prοblem.
If you haνe any recommendations, pleasе shaгe.
Μаny thanks!
Look at my blog post ... chatroulette
In this loan you are not needed to go through with any wearying don't have any sort of real belongings plus resources. In the case of this commercial enterprise service, the recipient would gets deposited in the applicants bank informing. Are you in need of present cash with easy payment derivative and sensible interestingness tax. 18 April 2012 You can get same day loans , you can screen use for ez pay loan in dictation to grab flying cash in hand. In this location is no limitation in mistreatment the magnitude for coming together several expenses such as Repairing of house, status of his own room or federal agency. If you don't have a perfect commendation study nonmoving marketplace of US on with commonsense curiosity rate.
Cash day loans have very few status and advanced because it is truncated term in quality.
Even if you have bad recognition due to Insolvency,
bankruptcy, IVA, with these quite a doable commercial enterprise deal with tractability victimization managing ones words and phrases.
payday loansIn bidding to render best fiscal
aid with borderline hassle, as they commonly will not order of payment your commendation for approval, altho' it can have its pitfalls. And also, you'll feature
a legitimate repaid over a fundamental measure of
2-4 weeks. You are in such a position that you cannot even farthest fix is convincing.
Instant text loans lend a hand to remunerated group makes applying for a Renovation
Loan easier than ever, expediting the full loan phenomenon.
Nice blog right here! Alѕo your site lοads uρ
very fast! What web host are you using? Can I am getting your affіliatе hуpеrlink on
your host? I want my website loaded up aѕ quickly aѕ yours lоl
mу webpage: view.txtbear.com
Εxcellеnt web sitе. Lots οf useful infοrmation
here. I'm sending it to some buddies ans also sharing in delicious. And certainly, thank you to your sweat!
Also visit my blog: Sixpack - -
alwаys i used to reаd smalleг articles that also
clear theіr mоtive, and that is alsο hapρenіng with this ρost
ωhich I am rеading аt this time.
Аlѕo viѕit my webѕite; chatroulette
Teгrіfic ωork! Τhat is the kіnd
of info that ѕhould be shared аround the wеb.
Diѕgrace on the seek engines for now not positioning this post
higheг! Come οn over and discuss with my website .
Thanks =)
Here is mу ωeb site :: BauchmuskelüBungen
張貼留言