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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsFileSystemDataSource_h__
#define nsFileSystemDataSource_h__
#include "nsIRDFDataSource.h"
#include "nsIRDFLiteral.h"
#include "nsIRDFResource.h"
#include "nsIRDFService.h"
#include "nsCOMPtr.h"
#include "nsString.h"
#include "mozilla/Attributes.h"
#if defined(XP_UNIX) || defined(XP_WIN)
#define USE_NC_EXTENSION
#endif
class FileSystemDataSource final : public nsIRDFDataSource
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIRDFDATASOURCE
static nsresult Create(nsISupports* aOuter,
const nsIID& aIID, void **aResult);
nsresult Init();
private:
FileSystemDataSource() { }
~FileSystemDataSource() { }
// helper methods
bool isFileURI(nsIRDFResource* aResource);
bool isDirURI(nsIRDFResource* aSource);
nsresult GetVolumeList(nsISimpleEnumerator **aResult);
nsresult GetFolderList(nsIRDFResource *source, bool allowHidden, bool onlyFirst, nsISimpleEnumerator **aResult);
nsresult GetName(nsIRDFResource *source, nsIRDFLiteral** aResult);
nsresult GetURL(nsIRDFResource *source, bool *isFavorite, nsIRDFLiteral** aResult);
nsresult GetFileSize(nsIRDFResource *source, nsIRDFInt** aResult);
nsresult GetLastMod(nsIRDFResource *source, nsIRDFDate** aResult);
nsCOMPtr<nsIRDFService> mRDFService;
// pseudo-constants
nsCOMPtr<nsIRDFResource> mNC_FileSystemRoot;
nsCOMPtr<nsIRDFResource> mNC_Child;
nsCOMPtr<nsIRDFResource> mNC_Name;
nsCOMPtr<nsIRDFResource> mNC_URL;
nsCOMPtr<nsIRDFResource> mNC_Icon;
nsCOMPtr<nsIRDFResource> mNC_Length;
nsCOMPtr<nsIRDFResource> mNC_IsDirectory;
nsCOMPtr<nsIRDFResource> mWEB_LastMod;
nsCOMPtr<nsIRDFResource> mNC_FileSystemObject;
nsCOMPtr<nsIRDFResource> mNC_pulse;
nsCOMPtr<nsIRDFResource> mRDF_InstanceOf;
nsCOMPtr<nsIRDFResource> mRDF_type;
nsCOMPtr<nsIRDFLiteral> mLiteralTrue;
nsCOMPtr<nsIRDFLiteral> mLiteralFalse;
#ifdef USE_NC_EXTENSION
nsresult GetExtension(nsIRDFResource *source, nsIRDFLiteral** aResult);
nsCOMPtr<nsIRDFResource> mNC_extension;
#endif
#ifdef XP_WIN
bool isValidFolder(nsIRDFResource *source);
nsresult getIEFavoriteURL(nsIRDFResource *source, nsString aFileURL, nsIRDFLiteral **urlLiteral);
nsCOMPtr<nsIRDFResource> mNC_IEFavoriteObject;
nsCOMPtr<nsIRDFResource> mNC_IEFavoriteFolder;
nsCString ieFavoritesDir;
#endif
};
#endif // nsFileSystemDataSource_h__
|