-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSintaksa.java
138 lines (128 loc) · 4.04 KB
/
Sintaksa.java
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
import java.lang.String;
import java.util.Stack;
import java.util.regex.*;
public class Sintaksa {
char[] slova ={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q',
'R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f','g','h',
'i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z' };
char[] brojevi = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
char[] operatori = { '+', '-', '*', '/', '%' };
char[] spec_karakteriEx = { '#', '_', '.', '$', '@', '{', '}', '[', ']', '(', ')', '=','<','>',' ','"',':','\\'};
char[] spec_karakteri = { '#', '.', '_', '$',' ' };
private boolean has(char[]set,char c)
{
for(char i :set)
if(i==c)
return true;
return false;
}
public int count(String str,Character c)
{
int i=0;
for(Character x : str.toCharArray())
{
if(c.equals(x))
i++;
}
return i;
}
public boolean IsBalanced(String a, String b,String input)
{
Stack<Character> stack = new Stack<>();
String str = input;
Character x = '~';
Character y = '^';
str = str.replace(a,x.toString());
str = str.replace(b,y.toString());
for (int i = 0; i < str.length(); i++)
{
if (x.equals(str.charAt(i)))
{
stack.push(str.charAt(i));
continue;
}
if ( y.equals(str.charAt(i) ))
if (stack.empty())
return false;
else
stack.pop();
}
return stack.empty();
}
public boolean IsValidCharacters(String input)
{
for (Character x : input.toCharArray())
{
if (!(has(operatori,x) || has(slova,x) || has(brojevi,x) || has(spec_karakteriEx,x)))
{
System.out.print(x + ":");
return false;
}
}
return true;
}
public boolean IsValidPath(String input)
{ String pattern ="include *(.+\\.txt)";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(input);
return m.find();
}
public boolean IsValidOutputCharacters(String input)
{
for (Character x : input.toCharArray())
{
if (!(has(operatori,x) || has(slova,x) || has(brojevi,x)|| has(spec_karakteri,x)))
return false;
}
return true;
}
public boolean IsValidString(String input)
{
return count(input,'"')%2==0;
}
public boolean isValidObjectName(String input)
{
if (!has(slova,input.toCharArray()[0]))
return false;
for (Character x : input.toCharArray())
{
if (!(has(slova,x) || has(brojevi,x) || has(spec_karakteri,x)))
return false;
}
return true;
}
public boolean IsDeclaration(String input)
{ Pattern p=Pattern.compile("^\\[(.*)\\] *= *(.*)$");
Matcher m=p.matcher(input);
return m.find() && isValidObjectName(m.group(1));
}
public boolean IsValidLine(String input)
{
if(!IsBalanced("(",")",input))
{
System.out.println("Parenthesis not closed");
return false;
}
if (!IsBalanced("<all_caps>", "</all_caps>", input))
{
System.out.println("Tags not closed");
return false;
}
if (!IsBalanced("{", "}", input))
{
System.out.println("Inline block not closed");
return false;
}
if(!IsValidString(input))
{
System.out.println("String invalid");
return false;
}
if (!IsValidCharacters(input))
{
System.out.println("Invalid character used");
return false;
}
return true;
}
}