Implement IdentifyFileType function
[oota-llvm.git] / lib / System / Path.cpp
1 //===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Reid Spencer and is distributed under the 
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 //  This header file implements the operating system Path concept.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/System/Path.h"
15
16 namespace llvm {
17 using namespace sys;
18
19 //===----------------------------------------------------------------------===//
20 //=== WARNING: Implementation here must contain only TRULY operating system
21 //===          independent code. 
22 //===----------------------------------------------------------------------===//
23
24 LLVMFileType 
25 IdentifyFileType(const char*magic, unsigned length) {
26   assert(magic && "Invalid magic number string");
27   assert(length >=4 && "Invalid magic number length");
28   switch (magic[0]) {
29     case 'l':
30       if (magic[1] == 'l' && magic[2] == 'v') {
31         if (magic[3] == 'c')
32           return CompressedBytecodeFileType;
33         else if (magic[3] == 'm')
34           return BytecodeFileType;
35       }
36       break;
37
38     case '!':
39       if (length >= 8) {
40         if (memcmp(magic,"!<arch>\n",8) == 0)
41           return ArchiveFileType;
42       }
43       break;
44
45     default:
46       break;
47   }
48   return UnknownFileType;
49 }
50
51 }
52
53 // Include the truly platform-specific parts of this class.
54 #include "platform/Path.cpp"
55
56 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab