jerf.cat
驱动中牛
驱动中牛
  • 注册日期2002-03-30
  • 最后登录2005-09-10
  • 粉丝0
  • 关注0
  • 积分0分
  • 威望0点
  • 贡献值0点
  • 好评度0点
  • 原创分0分
  • 专家分0分
阅读:2994回复:0

Integrating Build and Developer Studio

楼主#
更多 发布于:2002-05-30 13:39
Integrating Build and Developer Studio

Ó 1996-1997 OSR Open Systems Resources, Inc.

Code samples for this article are also available online.

Soon after I started working on commercial products targeted for the Windows NT operating system, I realized that there was no way that I was going to put up with the hideous command line oriented build shells that come with the NT DDK. I like nice, gui-oriented, integrated development environments reminiscent of the Unix days with an X terminal with XEmacs running on it to glue together everything from my email to source code control.

Environment

There are a couple of small features that I insist on in order to do serious software development:

I demand syntax coloring. I want my RGB. There is no way I am going to stare at monochrome pages of source code. I would go blind. I’m not kidding.

I insist on automated browsing. I personally can’t remember more than about 3 or 4 things at any point in time, so navigating quickly from an object to its definition with a click of the mouse is just about my speed. I surround myself with computers to extend my mental capabilities, not strain them.

When I get a compilation error, it is non-negotiable that I must be able to click on the error message and have my nose rubbed in my own stupid code errors. I will never again count lines or demand that my editor insert hideous line numbers into the source display. The same goes for getting syntax for an API interface. I must be able to cut and paste from the description of the interface into the source code I am editing, without any major shuffling of display real estate.

My team must use software repositories and automated build facilities. I don’t know about you, but for me source code control works like this: when I attempt to alter a file, if the file is under source code control it gets checked out. This method, it turns out, is one of the best practices in software engineering for testing the validity of source code modifications. In other words, you and I should always have our checked-in source code under some sort of regularly scheduled build discipline.

I refuse to use more than one basic programming environment per operating system. You won’t catch me using one set of tools to create drivers and then a totally different set of tools to create the applications that use those drivers. I have enough trouble keeping one set of tools house trained.

Oh yes, one final thing: if the operating system vendor says that device drivers must be built using the vendor supplied build utilities, then well of course all of the features above must work in conjunction with the vendor supplied build utilities.

Limitations

Now it turns out that Microsoft Developer Studio (Visual C++ 4.x aka MSDS) together with Source Safe (or another source code control tool that is compatible with Developer Studio), does everything I want…er, almost everything. For some reason (which I cannot fathom and care not to comment on), there is no support in Developer Studio for building device drivers (Oh yes and the editor is a little lacking in the extensibility department, but so much else is right with Developer Studio that I am willing to ignore this).

Yes, I’ve seen the stuff put forth by MSDN about how you can hack driver support into Developer Studio. How charming. I really want to hack device drivers. I don’t know about your customers, but our customers actually get upset when our products don’t work. I’d much rather use processes that are not in the category of Use At Your Own Risk. Oh yes, and there are a few other small things, like support. Just suppose you happen to trip over a defect in NT while testing your device driver and wish to have Microsoft actually support you in resolving this claim. I think that if I were Microsoft, I wouldn’t even start to listen to your problem until your device driver was built using the supported build utilities.

Solution

So, here is what I did, and in retrospect, it wasn’t a big deal. Rather than some hard to get right and fragile custom build procedure, all I use is one shell script, ddkbuild.bat, and the external Makefile project type in Developer Studio for my driver development.

The shell script is rather simple (given that it uses the dreadful DOS shell, it must be simple): It takes a couple of command line arguments, runs the setenv.bat file from the DDK, and produces a build for you (free or checked, as you command). The script then does some postprocessing of the output from build, and creates browse files for you (if you are nice). Finally ddkbuild confronts you with all of your stupid coding errors. (FYI, all of this occurs inside the MSDS IDE). When ddkbuild completes, you just click on an error message and you are beamed right up to your error. There are two major limitations: You have to have your source tree in the DDK distribution tree, and your drivers are placed in %BASEDIR%\\lib\\ (you have no choice in this decision). Feel free to modify ddkbuild to overcome these limitations, or to extend it in any way you see fit.

Using ddkbuild.bat

In order to understand the ddkbuild process let’s walk through the creation of a simple dd. project.

Startup MSDS and select File/NEW/Project Workspace.

From the New Project Workspace dialogue select Makefile as the project type. Choose a name for your project (I’m using demo) and a location within the dd. tree. For my example, the location is C:\\DDK\\src\\osr\\demo. Click Create... and select Yes when MSDS asks if you want to specify command line settings. You should be at the Project Settings dialogue (shown the next picture.).

 



For the debug build, your task is to make your window look as follows:


(The Build command line should read ddkbuild checked %BASEDIR%\\src\\osr\\demo, the Rebuild all line should read -cf, the Output file name is not needed but I used demo.sys in the example, and finally the Browse info file name is demo.bsc), and like figure z for the free build.

The only change between the Debug and Release versions is that the Build command line for the Release version replaces checked with free.



 

OK. So far pretty easy, right? Now there are one or two other steps you need to take. First, make sure that you have the DDK bin directory in your MSDS path. (Look at the Tools\\Options\\Directories dialogue
游客

返回顶部