-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFile.cfc
182 lines (154 loc) · 4.67 KB
/
File.cfc
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
component {
variables.fileContent = "";
variables.filePath = "";
variables.parser = "";
variables.isScript = false;
variables.fileLength = 0;
variables.isComponentFile = false;
function init(string filePath="", string fileContent="", string parser="detect") {
if (len(arguments.fileContent) == 0 && len(arguments.filePath) > 0) {
variables.fileContent = fileRead(arguments.filePath);
} else {
variables.fileContent = arguments.fileContent;
}
variables.filePath = arguments.filePath;
variables.fileLength = len(variables.fileContent);
if (arguments.parser == "detect") {
local.hasScriptComponentPattern = reFindNoCase("component[^>*]*{", variables.fileContent);
if (local.hasScriptComponentPattern) {
local.componentString = mid(variables.fileContent, local.hasScriptComponentPattern, 10);
//must be component followed by space or {
local.hasScriptComponentPattern = trim(local.componentString) == "component" || local.componentString == "component{";
}
local.hasTagComponentPattern = !findNoCase("<" & "cfcomponent", variables.fileContent);
if (local.hasScriptComponentPattern && !local.hasTagComponentPattern) {
//script cfc
variables.isScript = true;
variables.isComponentFile = true;
} else if (local.hasTagComponentPattern && local.hasScriptComponentPattern) {
//possible that cfcomponent it could be in a comment
if (reFindNoCase("//[^\n]*cfcomponent[^\n]*[\n]", variables.fileContent)) {
variables.isScript = true;
}
else if (!reFindNoCase("<" & "cffunction", variables.fileContent) && !reFindNoCase("<" & "cfproperty", variables.fileContent)) {
//if it does not have a cffunction or cfproperty assume scritp
variables.isScript = true;
} else {
variables.isScript=false;
}
variables.isComponentFile = true;
} else {
//tag based file
variables.isScript = false;
if (local.hasTagComponentPattern) {
variables.isComponentFile = true;
}
}
} else if (parser == "script") {
variables.isScript = true;
} else {
variables.isScript = false;
}
if (!variables.isComponentFile && right(arguments.filePath, 4) == ".cfc") {
variables.isComponentFile = true;
}
if (variables.isScript) {
variables.parser = new ScriptParser();
} else {
variables.parser = new TagParser();
}
variables.parser.parse(this);
}
function getFileContent() {
return variables.fileContent;
}
function getFilePath() {
return variables.filePath;
}
function getFileLength() {
return variables.fileLength;
}
function getParser() {
return variables.parser;
}
function getStatements() {
return getParser().getStatements();
}
boolean function isScript() {
return variables.isScript;
}
boolean function isComponentFile() {
return variables.isComponentFile;
}
numeric function getLineNumber(numeric position) {
return listLen(left(variables.fileContent, arguments.position), chr(10), true);
}
numeric function getPositionInLine(numeric position) {
var i = 0;
var line = 1;
var c = "";
var p = 0;
var lines = listToArray(variables.fileContent, chr(10), true);
for (line=1;line<=arrayLen(lines);line++) {
p += len(lines[line]);
if (p >= arguments.position) {
p -= len(lines[line]);
return arguments.position - p;
}
p++;//for the \n
}
return 0;
}
public string function getLineContent(numeric lineNumber) {
var lineArray = variables.fileContent.split(chr(10));
if (arguments.lineNumber < 1 || arguments.lineNumber > arrayLen(lineArray)) {
return "";
} else {
return lineArray[arguments.lineNumber];
}
}
public array function getStatementsByName(string name) {
var stmts = [];
var s = "";
for (s in getStatements()) {
if (listFindNoCase(arguments.name, s.getName())) {
arrayAppend(stmts, s);
}
}
return stmts;
}
public array function getStatementsAtPosition(numeric pos) {
var s = "";
var stmts = [];
for (s in getStatements()) {
if (s.getStartPosition() <= arguments.pos && s.getEndPosition() >= arguments.pos) {
arrayAppend(stmts, s);
}
}
return stmts;
}
public boolean function hasStatementAtPosition(numeric pos) {
var s = "";
var stmts = [];
for (s in getStatements()) {
if (s.getStartPosition() <= arguments.pos && s.getEndPosition() >=pos) {
return true;
}
}
return false;
}
public function getStatementAtPosition(numeric pos) {
var stmts = getStatementsAtPosition(arguments.pos);
if (arrayLen(stmts) != 0) {
local.stmt = stmts[1];
for (local.s in stmts) {
if (local.s.getStartPosition() > local.stmt.getStartPosition()) {
local.stmt = local.s;
}
}
return local.stmt;
} else {
return javaCast("null", "");
}
}
}