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
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 1997-2014. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
-module(klas3).
-compile(export_all).
ftab(new) ->
mnesia:create_table([{name, friendsTable3},
{snmp, [{key, integer}]},
{attributes, [a1,a2]}]);
ftab(delete) ->
ok.
ftab(is_set_ok, [2], _Cols) ->
% io:format("calling ftab is_set_ok - fail~n"),
{inconsistentValue, 2};
ftab(is_set_ok, _, _Cols) ->
% io:format("calling ftab is_set_ok - ok~n"),
{noError, 0};
ftab(undo, [3], _Cols) ->
% io:format("calling ftab undo - fail~n"),
{undoFailed, 2};
ftab(undo, [1], _Cols) ->
% io:format("calling ftab undo~n"),
{noError, 0};
ftab(set, [4], _Cols) ->
{commitFailed, 2};
ftab(Op, RowIndex, Cols) ->
snmp_generic:table_func(Op, RowIndex, Cols, {friendsTable3, mnesia}).
fname(new) -> ok;
fname(delete) -> ok;
fname(get) ->
Str2 = (catch begin
case snmpa:current_request_id() of
{value, Int} when is_integer(Int) -> ok;
{value, _} -> throw("bad_int");
_ -> throw("bad_req")
end,
case snmpa:current_community() of
{value, Str} when is_list(Str) -> Str;
{value, _} -> throw("bad_str");
_ -> throw("bad_com")
end,
case snmpa:current_address() of
{value, {[_A,_B,_C,_D], E}} when is_integer(E) -> ok;
{value, {D, _}} when is_atom(D) -> ok;
{value, Ip} ->
throw(format_string("bad_ip: ~p", [Ip]));
Other ->
throw(format_string("bad_adr: ~p", [Other]))
end,
case snmpa:current_net_if_data() of
{value, []} -> ok;
{value, [{request_ref, R}]} when is_reference(R) -> ok;
{value, _} -> throw("bad_nil");
_ -> throw("bad_nid")
end,
"ok"
end),
{value, Str2}.
fname(is_set_ok, "hoj") ->
inconsistentValue;
fname(is_set_ok, "xfail") ->
i_know_this_is_wrong_it_should_be_user_error;
fname(is_set_ok, _) ->
% io:format("calling fname is_set_ok~n"),
noError;
fname(set, "fel") -> commitFailed;
fname(set, _) -> noError;
fname(undo, "ufail") ->
% io:format("calling fname undo - fail~n"),
undoFailed;
fname(undo, _) ->
% io:format("calling fname undo~n"),
noError.
%% snmp_mgr:s([{[fStatus2, 1], 4}, {[fname2,0], "ok"}]). -> noError
%% snmp_mgr:s([{[fStatus2, 1], 4}, {[fname2,0], "hoj"}]). -> {badValue, 2}
%% snmp_mgr:s([{[fStatus2, 3], 4}, {[fname2,0], "hoj"}]). -> {genErr, 1}
%% snmp_mgr:s([{[fStatus2, 4], 4}, {[fname2,0], "ok"}]). -> {genErr, 1}
%% snmp_mgr:s([{[fStatus2, 4], 4}, {[fname2,0], "ufail"}]). -> {genErr, 1}
%% snmp_mgr:s([{[fStatus2, 1], 4}, {[fname2,0], "xfail"}]). -> {genErr, 2}
fname4(get) ->
{value, none}.
ftab2(_) ->
ok.
%% Following 2 clauses is for OTP-1222
ftab2(is_set_ok, [1], _Cols) ->
% bad column - In: col 2 & 3
io:format("** Here comes Error Report is_set_ok bad column~n"),
{inconsistentValue, 1};
ftab2(is_set_ok, _, _Cols) ->
{noError, 0};
ftab2(set, [2], _Cols) ->
% bad column - In: col 2 & 3
io:format("** Here comes Error Report set bad column~n"),
{commitFailed, 4};
ftab2(set, _, _Cols) ->
{noError, 0};
%% Unfortunatly we can't force the undo - we don't know which var
%% is tried first.
%ftab2(undo, [3], Cols) ->
% % bad column - In: col 2 & 3
% io:format("** Here comes (no Error Report) undo bad column~n"),
% {undoFailed, 5};
%ftab2(undo, _, Cols) ->
% {noError, 0};
ftab2(get, [4], _Cols) ->
% bad return value
io:format("** Here comes Error Report get 1 bad return~n"),
[];
ftab2(get, [5], _Cols) ->
% bad return value
io:format("** Here comes Error Report get 2 bad return~n"),
[{value, 1}];
ftab2(get, [6], _Cols) ->
% bad return value
io:format("** Here comes Error Report get 3 bad return~n"),
[{value,1},{value,2},{value,3}];
ftab2(get_next, [7], _Cols) ->
% bad return value
io:format("** Here comes Error Report get_next 1 bad return~n"),
[];
ftab2(get_next, [8], _Cols) ->
% bad return value
io:format("** Here comes Error Report get_next 2 bad return~n"),
[endOfTable];
ftab2(get_next, [9], _Cols) ->
% bad return value
io:format("** Here comes Error Report get_next 3 bad return~n"),
[{[1,5],1},{[2,5],3},{[2,6],3}].
format_string(Format, Args) ->
lists:flatten(io_lib:format(Format, Args)).
|