Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using PHP 5.2 to make a website

I like to have explicit names for my classes

I also have a convention saying 'the path and name of a file' match the 'name of the class'

So a class called:

ABCSiteCore_Ctrlrs_DataTransfer_ImportMergeController

would sit in my svn working copy at:

C:\_my\websrv\ABCCoUkHosting2\webserve\my_library\vendor\ABCSiteCore-6-2\ABCSiteCore\Ctrlrs\DataTransfer\ImportMergeController.php

I find the naming convention gives me a better view of my code base, leading to better understanding and reducing the feeling of complexity.

Unfortunately there seems to be a max path length on my Windows XP PC. It seems to cause problems when I try to checkout Subversion files into my working copy.

If the path is too long, I can't check it out - the checkout fails.

So I find myself taking ages just to think of a name for a domain concept.

I might want to name a class "notification service" - but I end up calling it something like "NtfctnSrvce". It also cause problems when I try to create a specification class.

say, for example i'd love to have a spec class called with an explicit name,say:

$hasBeenNotifiedSpec = new ABCSiteCore_Model_MssgSys_Rules_Customers_HasCustomerBeenSentNotificationOfOnlineTransactionPaymentByEmail($notificationLog);

if($hasBeenNotifiedSpec->isSatisfiedBy($customer))
 {
 ...do something

By using my file-to-class-name naming convention, I can simply use Windows Explorer to get a good idea of what the class does, its place /role in the Model/View/Controller pattern etc.

        ABCSiteCore\
         Model\
          MssgSys\
           Rules\
            Customer\
             HasCustomerBeenSentNotificationOfOnlineTransactionPaymentByEmail.php

Whenever i think of name for a domain concept, I've got into the habit of pasting the potential path length into a 'path length checker' to see if i can use it - its just a peice of pre-formatted text in my working-notes-wiki:

As you can see. Unfortunately that class name is getting close to the limits

C:\_my\websrv\ABCCoUkHosting2\webserve\my_library\vendor\ABCSiteCore-6-2\ABCSiteCore\Model\MssgSys\Rules\Customer\hasCustomerBeenSentNotificationOfOnlineTransactionPaymentByEmail.php

-------------------------------------------------------------------------------------------------------------------------------------------------------------------script path length danger zone------->|

----------------------------------------------------------------------------------------------------------------------------------------------------------------------max path length danger zone (inclusive .svn folder)------->|

C:\_my\websrv\ABCCoUkHosting2\webserve\my_library\vendor\ABCSiteCore-6-2\ABCSiteCore\Model\MssgSys\Rules\Customer\.svn\text-base\hasCustomerBeenSentNotificationOfOnlineTransactionPaymentByEmail.php.svn-base

Because of these path length restrictions, I tend to choose names for my entities that are not the best fit to the ubiquitous language of my domain model. This, can sometimes lead to misconceptions about how the system works, causes confusions and adds to the complexity - making development harder.

so :

  • How can I solve this issue?
  • is it solvable or is this just one one those practical constraints that we all just have to deal with?
  • is this just a PC thing? It might be time to switch to Mac or Linux.
share|improve this question
I hate this problem with a passion. Just the other week I took a project from work (lives under c:\dev) to home (living under d:\docs\me\work\src) and couldn't check it out due to path length restrictions still present in Windows 7. I believe Subversion is partly to fault here. It's the paths under the .svn folders that always hit the limit for me because they nest a couple more sub-directories and then repeat the filename. I've been wondering for while if Git would have a similar issue or not. Sorry I don't have a workable solution for you. – qes Jul 19 '10 at 15:47
yes i was just looking into Git the other day and got a bit worried when i read that it holds a local copy of the whole repository...made me think.oO(..uh oh..i can't check out my 'whole' svn repo , with trunks etc...so how would I have a whole Git repo sitting on my PC?) - i have not investigated it yet...but that was my first thought. – JW. Jul 19 '10 at 15:52
Yes, this is a design choice for Windows. Internal to your programs, you can prefix \\?\ to absolute pathnames to allow Windows to read 32K long names... – Paul Nathan Jul 19 '10 at 16:28

2 Answers

up vote 3 down vote accepted

Here's some abstract advice which may help you; yes switch operating systems, but not how you think - get virtualbox and load in a version of linux (ubuntu's nice and quick + well supported) then use that virtual os as your development os - this way you get the best of both worlds, and when you're finished working you simply close the virtual machine (saving it's state if you like) and have a nice clean pc to do what you want with.

The benefits are almost unlimited, for instance I have several virtual machines which I can load up whenever, some are testing setups, some mirror web server setups, I even have different editions of windows (such as an old XP with IE6) to test out browser bugs.

Surprisingly, I actually find my machine runs quicker using virtualbox; and please don't let the time to setup and run things worry you, as virtualbox is extremely quick, and you'll find your virtual machines load much faster than your primary os.

There are many other benefits which come with, but over all it's a very liberating experience :)

share|improve this answer
Wow - what a great answer. I feel like a great a weight has lifted off my shoulders. Another thing to add to my 'list of things to learn', but i think it will definitely save time in the future. Brilliant. – JW. Jul 19 '10 at 16:27
Forgot to say....thanks. – JW. Jul 19 '10 at 16:27
@JW no problem at all, I wouldn't add it to the list though, just do it - it honestly doesn't take any learning, download (small) install, click "create new operating system" type a name, select the OS type you're making, then simply click the settings, select the .iso you downloaded for the operating system and then click start - you're done and installing the OS, it is that simple + because it's only a light dev machine you're setting up all the normal OS swapping pain is gone (no transferring files, settings etc etc) just install os, install php+apache+svn + your ide and get going :) – nathan Jul 19 '10 at 16:47
just downloading it now. but...i hadn't thought about how my windows edition of PHPEd IDE is gonna work on an virtual Ubuntu machine. Do you run your Windows apps in a 'Windows Guest machine' inside the 'Linux Virtual box' which is inside the Windows host? – JW. Jul 19 '10 at 17:04
@JW you can simply use wine [1] to run windows apps in linux :) [or swap IDE to something like Eclipse PDT which is free] [1] nusphere.com/products/php_ide_mac_wine.htm – nathan Jul 19 '10 at 17:32
show 1 more comment

The cause is actually mentioned here: http://svn.haxx.se/users/archive-2005-02/1088.shtml

The long and short of it is that if you use absolute paths for your operations, you get access to 32k of path length. Relative paths are limited to ~255.

The Subversion libraries use relative paths. (I hate it, always have, but that's a battle I've no time to wage.) That said, if you feed Subversion an absolute path, well, paths relative to an absolute path are still themselves absolute, so you should be okay. Also, if you use TortoiseSVN on Windows, you should be okay, because it always feeds Subversion absolute paths.

Pretty embarrassing for something that is called an OS, if you ask me. Workaround: Use Tortoise SVN. However I do not like Tortoise on the other hand since it's so slow.

share|improve this answer
That's very interesting , thanks – JW. Jun 7 '11 at 11:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.