Updated: 15/09/2002; 12:48:42 a.m..
Python Community Server (development progress)
A weblog about programming in Python, C#, Java, Perl and C++ - and the occasional comment on PyCS development
        

Friday, 5 July 2002

Due to a bit of a mess we got into with the dynamic DNS the other day, all rcs.myelin.cjb.net URLs are going to be a bit shaky from now on.  Currently they point to cached copies of the RSS feeds from pycs.net, so you'll be a bit out of date if you're subscribing to them.  There is a redirect in place to keep links working, but Radio doesn't seem to follow HTTP "Moved Permanently" signs, so you'll have to do it manually.

The new RSS URL for this weblog is http://www.pycs.net/devlog/rss.xml - please check your subscriptions and change the "Python Community Server (development progress)" one to use the new URL if you're subscribed to the old one.

Sorry for the inconvenience!


1:04:55 AM    comment []

From Microsoft:

Here's some example C code using the current C runtime functions:

void UnsafeFunc(LPTSTR szPath,DWORD cchPath) {
   TCHAR szCWD[MAX_PATH];

   GetCurrentDirectory(ARRAYSIZE(szCWD), szCWD);
   strncpy(szPath, szCWD, cchPath);
   strncat(szPath, TEXT("\\"), cchPath);
   strncat(szPath, TEXT("desktop.ini"),cchPath);
}

The same code using strsafe is:

bool SaferFunc(LPTSTR szPath,DWORD cchPath) {
   TCHAR szCWD[MAX_PATH];

   if (GetCurrentDirectory(ARRAYSIZE(szCWD), szCWD)            &&
      SUCCEEDED(StringCchCopy(szPath, cchPath, szCWD))     &&
      SUCCEEDED(StringCchCat(szPath, cchPath, TEXT("\\"))) &&
      SUCCEEDED(StringCchCat(szPath, cchPath, TEXT("desktop.ini")))) {
         return true;
   }

   return false;
}

Pop quiz - what does this code actually do?

Answer: GetCurrentDirectory() gets the CWD.  The first strncpy() copies the CWD into szPath.  The second one adds a backslash, and the third one adds 'desktop.ini'.

Oh - you mean:

def SafeByDefault():
    import os
    return os.getcwd() + r'desktop.ini'

Right.

Or, if you really don't want to get too far away from C:

#include <string>
using namespace std;

string SafeInCxx()
{
    TCHAR szCWD[ MAX_PATH ];
    GetCurrentDirectory( ARRAYSIZE(szCWD), szCWD );
    return (string) szCWD + "\\desktop.ini";
}

Safe, and at the same time almost readable.  Why do people still write applications in pure C?  Even if you don't know C++, you can still use a C++ compiler and take advantage of things like the standard library's string-handling routines.

A lot of people out there will tell you that you have to either program totally in C or totally in C++, but that's not true.  You can use a C++ compiler and use as much or as little of the language as you like.  You'll find yourself writing more object oriented code over time, but you don't have to learn the whole language before you start.  You don't have to put up with C's severe lack of useful datatypes!

Start by learning about std::string; it'll immediately make your code much more secure, and readable at the same time.  Then take a look at std::list<> and see how you can throw out all the dodgy code you've written to manage linked lists and replace it with something that is at once simpler and more functional, and often faster.

Yes, the standard C++ library is quick.  My informal tests have shown that iterating over a C++ vector using a typesafe iterator can actually be quicker than iterating over a C array using a pointer.

Your code will become larger, and will use more memory, but the memory usage will still only be 10% of what an equivalent app written in C# or Java would be -- the "bloat" here is a non-issue if you are writing code for a desktop machine.


12:53:19 AM    comment []


© Copyright 2002 Phillip Pearson.
 
July 2002
Sun Mon Tue Wed Thu Fri Sat
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      
Jun   Aug

[Macro error: Can't render navigator links because an error occurred: "The file "C:\Program Files\Radio UserLand\www\#navigatorLinks.xml" wasn't found.".]
Click here to visit the Radio UserLand website.

Subscribe to "Python Community Server (development progress)" in Radio UserLand.

Click to see the XML version of this web page.

Click here to send an email to the editor of this weblog.