]> granicus.if.org Git - icinga2/commitdiff
Remove extraneous whitespace
authorGunnar Beutner <gunnar.beutner@icinga.com>
Wed, 13 Dec 2017 11:54:14 +0000 (12:54 +0100)
committerGunnar Beutner <gunnar.beutner@icinga.com>
Thu, 14 Dec 2017 07:50:09 +0000 (08:50 +0100)
42 files changed:
icinga-app/icinga.cpp
icinga-app/icinga.rc
icinga-installer/icinga-installer.cpp
icinga-studio/forms.cpp
icinga-studio/forms.h
icinga-studio/icinga.rc
icinga-studio/mainform.cpp
lib/base/array.cpp
lib/base/base64.cpp
lib/base/dictionary.hpp
lib/base/json.cpp
lib/base/object.hpp
lib/base/serializer.cpp
lib/base/tlsutility.cpp
lib/base/type.hpp
lib/base/typetype-script.cpp
lib/base/value.hpp
lib/compat/compatlogger.cpp
lib/config/config_parser.yy
lib/config/configcompiler.hpp
lib/config/configitem.hpp
lib/config/expression.hpp
lib/db_ido/dbevents.cpp
lib/icinga/dependency-apply.cpp
lib/icinga/dependency.cpp
lib/icinga/notification-apply.cpp
lib/icinga/scheduleddowntime-apply.cpp
lib/icinga/service-apply.cpp
lib/livestatus/aggregator.hpp
lib/remote/apiclient.hpp
lib/remote/apilistener.hpp
lib/remote/consolehandler.cpp
lib/remote/objectqueryhandler.cpp
plugins/check_disk.cpp
plugins/check_network.cpp
plugins/check_ping.cpp
plugins/check_procs.cpp
plugins/check_service.cpp
plugins/check_update.cpp
plugins/check_uptime.cpp
plugins/check_users.cpp
plugins/thresholds.cpp

index acc8f42abd67afb8381b9a2e028517aa45a01129..2dfe7154177f17597905e6a7f1e564efde22d4c4 100644 (file)
@@ -59,7 +59,7 @@ static HANDLE l_Job;
 static std::vector<String> GetLogLevelCompletionSuggestions(const String& arg)
 {
        std::vector<String> result;
-       
+
        String debugLevel = "debug";
        if (debugLevel.Find(arg) == 0)
                result.push_back(debugLevel);
@@ -460,10 +460,10 @@ static int Main(void)
                } else if (command && command->GetImpersonationLevel() == ImpersonateIcinga) {
                        String group = Application::GetRunAsGroup();
                        String user = Application::GetRunAsUser();
-       
+
                        errno = 0;
                        struct group *gr = getgrnam(group.CStr());
-       
+
                        if (!gr) {
                                if (errno == 0) {
                                        Log(LogCritical, "cli")
@@ -475,7 +475,7 @@ static int Main(void)
                                        return EXIT_FAILURE;
                                }
                        }
-       
+
                        if (getgid() != gr->gr_gid) {
                                if (!vm.count("reload-internal") && setgroups(0, NULL) < 0) {
                                        Log(LogCritical, "cli")
@@ -484,17 +484,17 @@ static int Main(void)
                                            << "Please re-run this command as a privileged user or using the \"" << user << "\" account.";
                                        return EXIT_FAILURE;
                                }
-       
+
                                if (setgid(gr->gr_gid) < 0) {
                                        Log(LogCritical, "cli")
                                            << "setgid() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
                                        return EXIT_FAILURE;
                                }
                        }
-       
+
                        errno = 0;
                        struct passwd *pw = getpwnam(user.CStr());
-       
+
                        if (!pw) {
                                if (errno == 0) {
                                        Log(LogCritical, "cli")
@@ -506,7 +506,7 @@ static int Main(void)
                                        return EXIT_FAILURE;
                                }
                        }
-       
+
                        // also activate the additional groups the configured user is member of
                        if (getuid() != pw->pw_uid) {
                                if (!vm.count("reload-internal") && initgroups(user.CStr(), pw->pw_gid) < 0) {
@@ -516,7 +516,7 @@ static int Main(void)
                                            << "Please re-run this command as a privileged user or using the \"" << user << "\" account.";
                                        return EXIT_FAILURE;
                                }
-       
+
                                if (setuid(pw->pw_uid) < 0) {
                                        Log(LogCritical, "cli")
                                            << "setuid() failed with error code " << errno << ", \"" << Utility::FormatErrorNumber(errno) << "\"";
@@ -780,7 +780,7 @@ static VOID WINAPI ServiceMain(DWORD argc, LPSTR *argv)
                        break;
 
                DWORD exitStatus;
-               
+
                if (!GetExitCodeProcess(pi.hProcess, &exitStatus))
                        break;
 
index 5d7f64722fe2ce85ccaf3ad9819f2962e25eb7f9..9294f989bc0ce468f040a0621ff7f8411d4569b9 100644 (file)
@@ -26,7 +26,7 @@ BEGIN
                        VALUE "ProductVersion", VERSION
                END
        END
-       
+
        BLOCK "VarFileInfo"
        BEGIN
                VALUE "Translation", 0x409, 0x04E4
index 438ddc37db7eba7ddc1a0f8299293ef382ba918d..455ff28316d245ffc6f08c396f8e1ed7fb08cf37 100644 (file)
@@ -54,7 +54,7 @@ static bool ExecuteCommand(const std::string& app, const std::string& arguments)
        sei.nShow = SW_HIDE;
        if (!ShellExecuteEx(&sei))
                return false;
-       
+
        if (!sei.hProcess)
                return false;
 
@@ -221,7 +221,7 @@ static int UpgradeNSIS(void)
                        return 1;
 
                _rmdir(installPath.c_str());
-       }       
+       }
 
        return 0;
 }
index b1e052f94e9ac0b81978437c8381293321c8432a..2cf189e22388d1e41e9b6fcf27b0d0af595f4176 100644 (file)
 MainFormBase::MainFormBase( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style )
 {
        this->SetSizeHints( wxSize( 800,569 ), wxDefaultSize );
-       
+
        m_MenuBar = new wxMenuBar( 0 );
        wxMenu* m_FileMenu;
        m_FileMenu = new wxMenu();
        wxMenuItem* m_QuitMenuItem;
        m_QuitMenuItem = new wxMenuItem( m_FileMenu, wxID_EXIT, wxString( wxT("&Quit") ) , wxEmptyString, wxITEM_NORMAL );
        m_FileMenu->Append( m_QuitMenuItem );
-       
+
        m_MenuBar->Append( m_FileMenu, wxT("&File") ); 
-       
+
        wxMenu* m_HelpMenu;
        m_HelpMenu = new wxMenu();
        wxMenuItem* m_AboutMenuItem;
        m_AboutMenuItem = new wxMenuItem( m_HelpMenu, wxID_ABOUT, wxString( wxT("&About Icinga Studio...") ) , wxEmptyString, wxITEM_NORMAL );
        m_HelpMenu->Append( m_AboutMenuItem );
-       
+
        m_MenuBar->Append( m_HelpMenu, wxT("&Help") ); 
-       
+
        this->SetMenuBar( m_MenuBar );
-       
+
        wxBoxSizer* m_DialogSizer;
        m_DialogSizer = new wxBoxSizer( wxVERTICAL );
-       
+
        wxBoxSizer* m_ConnectionDetailsSizer;
        m_ConnectionDetailsSizer = new wxBoxSizer( wxHORIZONTAL );
-       
+
        m_TypesTree = new wxTreeCtrl( this, wxID_ANY, wxDefaultPosition, wxSize( 315,-1 ), wxTR_DEFAULT_STYLE|wxTR_HIDE_ROOT );
        m_ConnectionDetailsSizer->Add( m_TypesTree, 0, wxALL|wxEXPAND, 2 );
-       
+
        wxBoxSizer* m_ObjectDetailsSizer;
        m_ObjectDetailsSizer = new wxBoxSizer( wxVERTICAL );
-       
+
        m_ObjectsList = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT );
        m_ObjectDetailsSizer->Add( m_ObjectsList, 1, wxALL|wxEXPAND, 2 );
-       
+
        m_PropertyGrid = new wxPropertyGrid(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxPG_DEFAULT_STYLE);
        m_ObjectDetailsSizer->Add( m_PropertyGrid, 1, wxALL|wxEXPAND, 5 );
-       
-       
+
+
        m_ConnectionDetailsSizer->Add( m_ObjectDetailsSizer, 1, wxEXPAND, 5 );
-       
-       
+
+
        m_DialogSizer->Add( m_ConnectionDetailsSizer, 1, wxEXPAND, 5 );
-       
-       
+
+
        this->SetSizer( m_DialogSizer );
        this->Layout();
        m_StatusBar = this->CreateStatusBar( 1, wxST_SIZEGRIP, wxID_ANY );
-       
+
        this->Centre( wxBOTH );
-       
+
        // Connect Events
        this->Connect( m_QuitMenuItem->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( MainFormBase::OnQuitClicked ) );
        this->Connect( m_AboutMenuItem->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( MainFormBase::OnAboutClicked ) );
@@ -79,89 +79,89 @@ MainFormBase::~MainFormBase()
        this->Disconnect( wxID_ABOUT, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( MainFormBase::OnAboutClicked ) );
        m_TypesTree->Disconnect( wxEVT_COMMAND_TREE_SEL_CHANGED, wxTreeEventHandler( MainFormBase::OnTypeSelected ), NULL, this );
        m_ObjectsList->Disconnect( wxEVT_COMMAND_LIST_ITEM_SELECTED, wxListEventHandler( MainFormBase::OnObjectSelected ), NULL, this );
-       
+
 }
 
 ConnectFormBase::ConnectFormBase( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
 {
        this->SetSizeHints( wxDefaultSize, wxDefaultSize );
-       
+
        wxBoxSizer* m_DialogSizer;
        m_DialogSizer = new wxBoxSizer( wxVERTICAL );
-       
+
        wxPanel* m_ConnectionDetailsPanel;
        m_ConnectionDetailsPanel = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
        wxStaticBoxSizer* m_DetailsSizer;
        m_DetailsSizer = new wxStaticBoxSizer( new wxStaticBox( m_ConnectionDetailsPanel, wxID_ANY, wxT("Connection Details") ), wxVERTICAL );
-       
+
        wxStaticText* m_HostLabel;
        m_HostLabel = new wxStaticText( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxT("Host:"), wxDefaultPosition, wxDefaultSize, 0 );
        m_HostLabel->Wrap( -1 );
        m_DetailsSizer->Add( m_HostLabel, 0, wxALL, 5 );
-       
+
        m_HostText = new wxTextCtrl( m_DetailsSizer->GetStaticBox(), wxID_OK, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
        m_DetailsSizer->Add( m_HostText, 0, wxALL|wxEXPAND, 5 );
-       
+
        wxStaticText* m_PortLabel;
        m_PortLabel = new wxStaticText( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxT("Port:"), wxDefaultPosition, wxDefaultSize, 0 );
        m_PortLabel->Wrap( -1 );
        m_DetailsSizer->Add( m_PortLabel, 0, wxALL, 5 );
-       
+
        m_PortText = new wxTextCtrl( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
        m_DetailsSizer->Add( m_PortText, 0, wxALL, 5 );
-       
+
        wxStaticText* m_UserLabel;
        m_UserLabel = new wxStaticText( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxT("API User:"), wxDefaultPosition, wxDefaultSize, 0 );
        m_UserLabel->Wrap( -1 );
        m_DetailsSizer->Add( m_UserLabel, 0, wxALL, 5 );
-       
+
        m_UserText = new wxTextCtrl( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
        m_DetailsSizer->Add( m_UserText, 0, wxALL|wxEXPAND, 5 );
-       
+
        wxStaticText* m_PasswordLabel;
        m_PasswordLabel = new wxStaticText( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxT("API Password:"), wxDefaultPosition, wxDefaultSize, 0 );
        m_PasswordLabel->Wrap( -1 );
        m_DetailsSizer->Add( m_PasswordLabel, 0, wxALL, 5 );
-       
+
        m_PasswordText = new wxTextCtrl( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD );
        m_DetailsSizer->Add( m_PasswordText, 0, wxALL|wxEXPAND, 5 );
-       
+
        wxStaticText* m_InfoLabel;
        m_InfoLabel = new wxStaticText( m_DetailsSizer->GetStaticBox(), wxID_ANY, wxT("You can find the username and password for the default user in /etc/icinga2/conf.d/api-users.conf."), wxDefaultPosition, wxDefaultSize, 0 );
        m_InfoLabel->Wrap( 270 );
        m_DetailsSizer->Add( m_InfoLabel, 0, wxALL, 5 );
-       
-       
+
+
        m_ConnectionDetailsPanel->SetSizer( m_DetailsSizer );
        m_ConnectionDetailsPanel->Layout();
        m_DetailsSizer->Fit( m_ConnectionDetailsPanel );
        m_DialogSizer->Add( m_ConnectionDetailsPanel, 1, wxEXPAND | wxALL, 5 );
-       
+
        wxPanel* m_ButtonsPanel;
        m_ButtonsPanel = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
        wxBoxSizer* m_ButtonsSizer;
        m_ButtonsSizer = new wxBoxSizer( wxHORIZONTAL );
-       
+
        m_Buttons = new wxStdDialogButtonSizer();
        m_ButtonsOK = new wxButton( m_ButtonsPanel, wxID_OK );
        m_Buttons->AddButton( m_ButtonsOK );
        m_ButtonsCancel = new wxButton( m_ButtonsPanel, wxID_CANCEL );
        m_Buttons->AddButton( m_ButtonsCancel );
        m_Buttons->Realize();
-       
+
        m_ButtonsSizer->Add( m_Buttons, 1, wxEXPAND, 5 );
-       
-       
+
+
        m_ButtonsPanel->SetSizer( m_ButtonsSizer );
        m_ButtonsPanel->Layout();
        m_ButtonsSizer->Fit( m_ButtonsPanel );
        m_DialogSizer->Add( m_ButtonsPanel, 0, wxEXPAND | wxALL, 5 );
-       
-       
+
+
        this->SetSizer( m_DialogSizer );
        this->Layout();
        m_DialogSizer->Fit( this );
-       
+
        this->Centre( wxBOTH );
 }
 
@@ -172,65 +172,65 @@ ConnectFormBase::~ConnectFormBase()
 AboutFormBase::AboutFormBase( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
 {
        this->SetSizeHints( wxDefaultSize, wxDefaultSize );
-       
+
        wxBoxSizer* m_DialogSizer;
        m_DialogSizer = new wxBoxSizer( wxVERTICAL );
-       
+
        wxBoxSizer* m_InfoSizer;
        m_InfoSizer = new wxBoxSizer( wxHORIZONTAL );
-       
+
        wxStaticBitmap* m_ProductIcon;
        m_ProductIcon = new wxStaticBitmap( this, wxID_ANY, wxBitmap( icinga_xpm ), wxDefaultPosition, wxDefaultSize, 0 );
        m_InfoSizer->Add( m_ProductIcon, 0, wxALL, 5 );
-       
+
        wxBoxSizer* m_AboutInfoSizer;
        m_AboutInfoSizer = new wxBoxSizer( wxVERTICAL );
-       
+
        wxStaticText* m_ProductNameLabel;
        m_ProductNameLabel = new wxStaticText( this, wxID_ANY, wxT("Icinga Studio"), wxDefaultPosition, wxDefaultSize, 0 );
        m_ProductNameLabel->Wrap( -1 );
        m_AboutInfoSizer->Add( m_ProductNameLabel, 0, wxALL, 5 );
-       
+
        m_VersionLabel = new wxStaticText( this, wxID_ANY, wxT("Version"), wxDefaultPosition, wxDefaultSize, 0 );
        m_VersionLabel->Wrap( -1 );
        m_AboutInfoSizer->Add( m_VersionLabel, 0, wxALL, 5 );
-       
+
        wxStaticText* m_CopyrightLabel;
        m_CopyrightLabel = new wxStaticText( this, wxID_ANY, wxT("Copyright (c) 2015 Icinga Development Team"), wxDefaultPosition, wxDefaultSize, 0 );
        m_CopyrightLabel->Wrap( -1 );
        m_AboutInfoSizer->Add( m_CopyrightLabel, 0, wxALL, 5 );
-       
-       
+
+
        m_InfoSizer->Add( m_AboutInfoSizer, 1, wxEXPAND, 5 );
-       
-       
+
+
        m_DialogSizer->Add( m_InfoSizer, 1, wxEXPAND, 5 );
-       
+
        wxPanel* m_ButtonsPanel;
        m_ButtonsPanel = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
        wxBoxSizer* m_ButtonsSizer;
        m_ButtonsSizer = new wxBoxSizer( wxVERTICAL );
-       
+
        wxStdDialogButtonSizer* m_Buttons;
        wxButton* m_ButtonsOK;
        m_Buttons = new wxStdDialogButtonSizer();
        m_ButtonsOK = new wxButton( m_ButtonsPanel, wxID_OK );
        m_Buttons->AddButton( m_ButtonsOK );
        m_Buttons->Realize();
-       
+
        m_ButtonsSizer->Add( m_Buttons, 0, wxEXPAND, 5 );
-       
-       
+
+
        m_ButtonsPanel->SetSizer( m_ButtonsSizer );
        m_ButtonsPanel->Layout();
        m_ButtonsSizer->Fit( m_ButtonsPanel );
        m_DialogSizer->Add( m_ButtonsPanel, 0, wxEXPAND | wxALL, 5 );
-       
-       
+
+
        this->SetSizer( m_DialogSizer );
        this->Layout();
        m_DialogSizer->Fit( this );
-       
+
        this->Centre( wxBOTH );
 }
 
index c125ecbbb45a7486395a5f026b1a8abd9cc073a9..77f6f3f3da9db0c5682b5bf7120437423d8f7457 100644 (file)
 class MainFormBase : public wxFrame 
 {
        private:
-       
+
        protected:
                wxMenuBar* m_MenuBar;
                wxTreeCtrl* m_TypesTree;
                wxListCtrl* m_ObjectsList;
                wxPropertyGrid* m_PropertyGrid;
                wxStatusBar* m_StatusBar;
-               
+
                // Virtual event handlers, overide them in your derived class
                virtual void OnQuitClicked( wxCommandEvent& event ) { event.Skip(); }
                virtual void OnAboutClicked( wxCommandEvent& event ) { event.Skip(); }
                virtual void OnTypeSelected( wxTreeEvent& event ) { event.Skip(); }
                virtual void OnObjectSelected( wxListEvent& event ) { event.Skip(); }
-               
-       
+
+
        public:
-               
+
                MainFormBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Icinga Studio"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 800,569 ), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL );
-               
+
                ~MainFormBase();
-       
+
 };
 
 ///////////////////////////////////////////////////////////////////////////////
@@ -71,7 +71,7 @@ class MainFormBase : public wxFrame
 class ConnectFormBase : public wxDialog 
 {
        private:
-       
+
        protected:
                wxTextCtrl* m_HostText;
                wxTextCtrl* m_PortText;
@@ -80,12 +80,12 @@ class ConnectFormBase : public wxDialog
                wxStdDialogButtonSizer* m_Buttons;
                wxButton* m_ButtonsOK;
                wxButton* m_ButtonsCancel;
-       
+
        public:
-               
+
                ConnectFormBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Icinga Studio - Connect"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE ); 
                ~ConnectFormBase();
-       
+
 };
 
 ///////////////////////////////////////////////////////////////////////////////
@@ -94,15 +94,15 @@ class ConnectFormBase : public wxDialog
 class AboutFormBase : public wxDialog 
 {
        private:
-       
+
        protected:
                wxStaticText* m_VersionLabel;
-       
+
        public:
-               
+
                AboutFormBase( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("About Icinga Studio"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE ); 
                ~AboutFormBase();
-       
+
 };
 
 #endif //__FORMS_H__
index abcda3f4edade2897831bef04ff9d515cbc876cc..554dd6e42d45a3960a6154286926706c4989d011 100644 (file)
@@ -26,7 +26,7 @@ BEGIN
                        VALUE "ProductVersion", VERSION
                END
        END
-       
+
        BLOCK "VarFileInfo"
        BEGIN
                VALUE "Translation", 0x409, 0x04E4
index 5f226b4fc2a277e979dc59b4cd42ffafdd20bb93..2b4f644deed7142c41ccf87cb2c0dae802ec8d87 100644 (file)
@@ -45,7 +45,7 @@ MainForm::MainForm(wxWindow *parent, const Url::Ptr& url)
        SetTitle(title);
 
        m_ObjectsList->InsertColumn(0, "Name", 0, 300);
-       
+
        m_PropertyGrid->SetColumnCount(3);
 }
 
@@ -205,7 +205,7 @@ wxPGProperty *MainForm::ValueToProperty(const String& name, const Value& value)
                return prop;
        } else if (value.IsObjectType<Dictionary>()) {
                wxStringProperty *prop = new wxStringProperty(name.GetData(), wxPG_LABEL);
-               
+
                Dictionary::Ptr dict = value;
 
                {
index a493e81778a5fc0c015bbf876b7b4fde63aa52c0..21dcc7613d2f21a710b0e0619cc340b775e08907 100644 (file)
@@ -207,12 +207,12 @@ Array::Ptr Array::ShallowClone(void) const
 Object::Ptr Array::Clone(void) const
 {
        Array::Ptr arr = new Array();
-       
+
        ObjectLock olock(this);
        for (const Value& val : m_Data) {
                arr->Add(val.Clone());
        }
-       
+
        return arr;
 }
 
index bbbc9b09eae64e625f70fb9030045b4d3a5cdebd..e430ba512a1d22d9b764cc09d1111930acd646f0 100644 (file)
@@ -52,7 +52,7 @@ String Base64::Decode(const String& input)
        BIO_set_flags(bio64, BIO_FLAGS_BASE64_NO_NL);
 
        char *outbuf = new char[input.GetLength()];
-       
+
        size_t len = 0;
        int rc;
 
index 23a0e8e01aebe06aaa4862890e4ec8abcbe93a21..298079ba775adcdca69b0c12dd907819c7a0db44 100644 (file)
@@ -113,7 +113,7 @@ public:
        std::vector<String> GetKeys(void) const;
 
        static Object::Ptr GetPrototype(void);
-       
+
        virtual Object::Ptr Clone(void) const override;
 
        virtual String ToString(void) const override;
index 3a6d19ba81260d8bfa05d38e417294dfb5be2752..df75087017c320aa12a559be657d4002a3ba8d70 100644 (file)
@@ -291,7 +291,7 @@ static int DecodeEndMapOrArray(void *ctx)
 static int DecodeStartArray(void *ctx)
 {
        JsonContext *context = static_cast<JsonContext *>(ctx);
-       
+
        try {
                context->Push(new Array());
        } catch (...) {
index 5418722c7dbbc1038d03575d6f148c8e747efb7c..dcbeff7b82eb541ff6d1c6c55bdc1d7d24e0cb7b 100644 (file)
@@ -134,7 +134,7 @@ public:
 #endif /* I2_DEBUG */
 
        static Object::Ptr GetPrototype(void);
-       
+
        virtual Object::Ptr Clone(void) const;
 
        static intrusive_ptr<Type> TypeInstance;
index f51493aeaf58acb35e62d0ec9e4eac7142023f06..c05fdabfdcb2e561313310acf95f21ebaf2bafd5 100644 (file)
@@ -115,7 +115,7 @@ static Object::Ptr DeserializeObject(const Object::Ptr& object, const Dictionary
                return object;
 
        Object::Ptr instance;
-       
+
        if (object)
                instance = object;
        else
@@ -127,7 +127,7 @@ static Object::Ptr DeserializeObject(const Object::Ptr& object, const Dictionary
                        continue;
 
                int fid = type->GetFieldId(kv.first);
-       
+
                if (fid < 0)
                        continue;
 
index 215dc7de3d99e177924dd28005808ac76d97dee7..04a6bd1ed3e4e0dc969140d77948e2a49b9f13c0 100644 (file)
@@ -440,10 +440,10 @@ int MakeX509CSR(const String& cn, const String& keyfile, const String& csrfile,
 
                X509_REQ_set_version(req, 0);
                X509_REQ_set_pubkey(req, key);
-       
+
                X509_NAME *name = X509_REQ_get_subject_name(req);
                X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, (unsigned char *)cn.CStr(), -1, -1, 0);
-       
+
                if (!ca) {
                        String san = "DNS:" + cn;
                        X509_EXTENSION *subjectAltNameExt = X509V3_EXT_conf_nid(NULL, NULL, NID_subject_alt_name, const_cast<char *>(san.CStr()));
@@ -457,10 +457,10 @@ int MakeX509CSR(const String& cn, const String& keyfile, const String& csrfile,
                }
 
                X509_REQ_sign(req, key, EVP_sha256());
-       
+
                Log(LogInformation, "base")
                    << "Writing certificate signing request to '" << csrfile << "'.";
-       
+
                bio = BIO_new_file(const_cast<char *>(csrfile.CStr()), "w");
 
                if (!bio) {
@@ -482,7 +482,7 @@ int MakeX509CSR(const String& cn, const String& keyfile, const String& csrfile,
                }
 
                BIO_free(bio);
-       
+
                X509_REQ_free(req);
        }
 
index b6204b4be685bf14790b70ee51132d03cf6e9133..072d28672655ee1cf3ba1b242c92cd9bf0dd5baa 100644 (file)
@@ -103,7 +103,7 @@ public:
        virtual Value GetField(int id) const override;
 
        virtual std::vector<String> GetLoadDependencies(void) const;
-       
+
        typedef std::function<void (const Object::Ptr&, const Value&)> AttributeHandler;
        virtual void RegisterAttributeHandler(int fieldId, const AttributeHandler& callback);
 
@@ -125,7 +125,7 @@ public:
        virtual int GetFieldId(const String& name) const override;
        virtual Field GetFieldInfo(int id) const override;
        virtual int GetFieldCount(void) const override;
-       
+
        static Object::Ptr GetPrototype(void);
 
 protected:
index 21ef5d572ffe4f6bd513ceb2c871e5955ac11281..284c26b9c63f70690e70da9e20a80f62e91715ab 100644 (file)
@@ -35,7 +35,7 @@ static void TypeRegisterAttributeHandler(const String& fieldName, const Function
 {
        ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
        Type::Ptr self = static_cast<Type::Ptr>(vframe->Self);
-       
+
        int fid = self->GetFieldId(fieldName);
        self->RegisterAttributeHandler(fid, std::bind(&InvokeAttributeHandlerHelper, callback, _1, _2));
 }
index bb32a9b0a01ec8b344262aa8945603bcc9285b38..0eab3712cbe41e51e036af9b64b6dfa87a2444c6 100644 (file)
@@ -280,7 +280,7 @@ public:
        String GetTypeName(void) const;
 
        Type::Ptr GetReflectionType(void) const;
-       
+
        Value Clone(void) const;
 
        template<typename T>
index f397500956cd9377945bbb4fdb890ba049b0e20b..6ce2891d5accbc48c75afe0698582f948d7ce06d 100644 (file)
@@ -68,10 +68,10 @@ void CompatLogger::Start(bool runtimeCreated)
        Downtime::OnDowntimeTriggered.connect(std::bind(&CompatLogger::TriggerDowntimeHandler, this, _1));
        Downtime::OnDowntimeRemoved.connect(std::bind(&CompatLogger::RemoveDowntimeHandler, this, _1));
        Checkable::OnEventCommandExecuted.connect(std::bind(&CompatLogger::EventCommandHandler, this, _1));
-       
+
        Checkable::OnFlappingChanged.connect(std::bind(&CompatLogger::FlappingChangedHandler, this, _1));
        Checkable::OnEnableFlappingChanged.connect(std::bind(&CompatLogger::EnableFlappingChangedHandler, this, _1));
-       
+
        ExternalCommandProcessor::OnNewExternalCommand.connect(std::bind(&CompatLogger::ExternalCommandHandler, this, _2, _3));
 
        m_RotationTimer = new Timer();
@@ -315,7 +315,7 @@ void CompatLogger::FlappingChangedHandler(const Checkable::Ptr& checkable)
 
        String flapping_state_str;
        String flapping_output;
-       
+
        if (checkable->IsFlapping()) {
                flapping_output = "Checkable appears to have started flapping (" + Convert::ToString(checkable->GetFlappingCurrent()) + "% change >= " + Convert::ToString(checkable->GetFlappingThresholdHigh()) + "% threshold)";
                flapping_state_str = "STARTED";
@@ -356,7 +356,7 @@ void CompatLogger::EnableFlappingChangedHandler(const Checkable::Ptr& checkable)
 
        if (checkable->GetEnableFlapping())
                return;
-               
+
        String flapping_output = "Flap detection has been disabled";
        String flapping_state_str = "DISABLED";
 
index 688429a53ff74bfea068930f0cbefa9d8294cfdb..af9b2a019bc548c9c806ed6190988d18b3d49bd5 100644 (file)
@@ -674,7 +674,7 @@ lterm: T_LIBRARY rterm
        }
        | rterm_side_effect
        ;
-       
+
 rterm_items: /* empty */
        {
                $$ = new std::vector<Expression *>();
index 08d362c529c412cd95b3a1d84b25b597bd616c08..5820562cc01e0daaecbe7e13d86edcbd9bc4bdd1 100644 (file)
@@ -105,7 +105,7 @@ public:
 
        void SetZone(const String& zone);
        String GetZone(void) const;
-       
+
        void SetPackage(const String& package);
        String GetPackage(void) const;
 
index e65b8ed3232d57cc24f6ac28a56c240669b5a5da..c61887ff27cee610678ba9a9f54cac5aad332b08 100644 (file)
@@ -65,7 +65,7 @@ public:
        Dictionary::Ptr GetScope(void) const;
 
        ConfigObject::Ptr GetObject(void) const;
-       
+
        static ConfigItem::Ptr GetByTypeAndName(const Type::Ptr& type,
            const String& name);
 
index 9c15096507d8bf360074482794c381a7d63f9b0f..c5cd197b34f7a3bdefe7dc538061d2f66fad2401 100644 (file)
@@ -292,7 +292,7 @@ public:
        BinaryExpression(Expression *operand1, Expression *operand2, const DebugInfo& debugInfo = DebugInfo())
                : DebuggableExpression(debugInfo), m_Operand1(operand1), m_Operand2(operand2)
        { }
-       
+
        ~BinaryExpression(void)
        {
                delete m_Operand1;
@@ -325,7 +325,7 @@ private:
 
        friend I2_CONFIG_API void BindToScope(Expression *& expr, ScopeSpecifier scopeSpec);
 };
-       
+
 class I2_CONFIG_API NegateExpression : public UnaryExpression
 {
 public:
@@ -336,7 +336,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API LogicalNegateExpression : public UnaryExpression
 {
 public:
@@ -358,7 +358,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API SubtractExpression : public BinaryExpression
 {
 public:
@@ -369,7 +369,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API MultiplyExpression : public BinaryExpression
 {
 public:
@@ -380,7 +380,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API DivideExpression : public BinaryExpression
 {
 public:
@@ -424,7 +424,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API BinaryOrExpression : public BinaryExpression
 {
 public:
@@ -435,7 +435,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API ShiftLeftExpression : public BinaryExpression
 {
 public:
@@ -446,7 +446,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API ShiftRightExpression : public BinaryExpression
 {
 public:
@@ -457,7 +457,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API EqualExpression : public BinaryExpression
 {
 public:
@@ -468,7 +468,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API NotEqualExpression : public BinaryExpression
 {
 public:
@@ -479,7 +479,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API LessThanExpression : public BinaryExpression
 {
 public:
@@ -490,7 +490,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API GreaterThanExpression : public BinaryExpression
 {
 public:
@@ -501,7 +501,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API LessThanOrEqualExpression : public BinaryExpression
 {
 public:
@@ -512,7 +512,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API GreaterThanOrEqualExpression : public BinaryExpression
 {
 public:
@@ -523,7 +523,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API InExpression : public BinaryExpression
 {
 public:
@@ -534,7 +534,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API NotInExpression : public BinaryExpression
 {
 public:
@@ -545,7 +545,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API LogicalAndExpression : public BinaryExpression
 {
 public:
@@ -556,7 +556,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API LogicalOrExpression : public BinaryExpression
 {
 public:
@@ -567,7 +567,7 @@ public:
 protected:
        virtual ExpressionResult DoEvaluate(ScriptFrame& frame, DebugHint *dhint) const override;
 };
-       
+
 class I2_CONFIG_API FunctionCallExpression : public DebuggableExpression
 {
 public:
@@ -590,7 +590,7 @@ public:
        Expression *m_FName;
        std::vector<Expression *> m_Args;
 };
-       
+
 class I2_CONFIG_API ArrayExpression : public DebuggableExpression
 {
 public:
@@ -610,7 +610,7 @@ protected:
 private:
        std::vector<Expression *> m_Expressions;
 };
-       
+
 class I2_CONFIG_API DictExpression : public DebuggableExpression
 {
 public:
@@ -635,7 +635,7 @@ private:
 
        friend I2_CONFIG_API void BindToScope(Expression *& expr, ScopeSpecifier scopeSpec);
 };
-       
+
 class I2_CONFIG_API SetExpression : public BinaryExpression
 {
 public:
@@ -924,7 +924,7 @@ private:
        std::map<String, Expression *> *m_ClosedVars;
        std::shared_ptr<Expression> m_Expression;
 };
-       
+
 class I2_CONFIG_API ForExpression : public DebuggableExpression
 {
 public:
index d67901c907ed9bd4472bba2249ee48201fe809ea..d3795e9625052404d2d7105a83ac5aecf2217fe2 100644 (file)
@@ -1182,7 +1182,7 @@ void DbEvents::AddFlappingChangedLogHistory(const Checkable::Ptr& checkable)
 {
        String flapping_state_str;
        String flapping_output;
-       
+
        if (checkable->IsFlapping()) {
                flapping_output = "Service appears to have started flapping (" + Convert::ToString(checkable->GetFlappingCurrent()) + "% change >= " + Convert::ToString(checkable->GetFlappingThresholdHigh()) + "% threshold)";
                flapping_state_str = "STARTED";
@@ -1219,7 +1219,7 @@ void DbEvents::AddEnableFlappingChangedLogHistory(const Checkable::Ptr& checkabl
 {
        if (!checkable->GetEnableFlapping())
                return;
-               
+
        String flapping_output = "Flap detection has been disabled";
        String flapping_state_str = "DISABLED";
 
@@ -1348,7 +1348,7 @@ void DbEvents::AddEnableFlappingChangedHistory(const Checkable::Ptr& checkable)
 
        if (!checkable->GetEnableFlapping())
                return;
-               
+
        fields1->Set("event_type", 1001);
        fields1->Set("reason_type", 2);
 
index b4df4dd7d8b50d32d16cebb8ef7ae922ab677240..d86b687514688b28d0ef1a34c6fd30818e9c4395 100644 (file)
@@ -136,7 +136,7 @@ bool Dependency::EvaluateApplyRule(const Checkable::Ptr& checkable, const ApplyR
        } else if (vinstances.IsObjectType<Dictionary>()) {
                if (rule.GetFVVar().IsEmpty())
                        BOOST_THROW_EXCEPTION(ScriptError("Array iterator requires value to be an array.", di));
-       
+
                Dictionary::Ptr dict = vinstances;
 
                for (const String& key : dict->GetKeys()) {
index 8aec486d2b086d83d93a03752a1451737859ced7..15e922a817e04157f975c21be97a4d62393c7a80 100644 (file)
@@ -91,7 +91,7 @@ void Dependency::OnAllConfigLoaded(void)
                else
                        m_Child = childHost->GetServiceByShortName(GetChildServiceName());
        }
-       
+
        if (!m_Child)
                BOOST_THROW_EXCEPTION(ScriptError("Dependency '" + GetName() + "' references a child host/service which doesn't exist.", GetDebugInfo()));
 
@@ -105,7 +105,7 @@ void Dependency::OnAllConfigLoaded(void)
                else
                        m_Parent = parentHost->GetServiceByShortName(GetParentServiceName());
        }
-       
+
        if (!m_Parent)
                BOOST_THROW_EXCEPTION(ScriptError("Dependency '" + GetName() + "' references a parent host/service which doesn't exist.", GetDebugInfo()));
 
index 7f8930f4edac91dc58e676e05078bdea3ad1fc41..89c2f327f3486bc26b6d7e37ecf9400450f45291 100644 (file)
@@ -135,7 +135,7 @@ bool Notification::EvaluateApplyRule(const Checkable::Ptr& checkable, const Appl
        } else if (vinstances.IsObjectType<Dictionary>()) {
                if (rule.GetFVVar().IsEmpty())
                        BOOST_THROW_EXCEPTION(ScriptError("Array iterator requires value to be an array.", di));
-       
+
                Dictionary::Ptr dict = vinstances;
 
                for (const String& key : dict->GetKeys()) {
index 752ba36d71e7f58a5686223e7682848bdb811461..42b61e2821783462bd9e931544e15051bbd55263 100644 (file)
@@ -134,7 +134,7 @@ bool ScheduledDowntime::EvaluateApplyRule(const Checkable::Ptr& checkable, const
        } else if (vinstances.IsObjectType<Dictionary>()) {
                if (rule.GetFVVar().IsEmpty())
                        BOOST_THROW_EXCEPTION(ScriptError("Array iterator requires value to be an array.", di));
-       
+
                Dictionary::Ptr dict = vinstances;
 
                for (const String& key : dict->GetKeys()) {
index 360285f3a1d35f4f9ba63ebd158ae7c6d554fc49..5c4f75521e32ab88a11bd4c592e86d382e7687f9 100644 (file)
@@ -123,7 +123,7 @@ bool Service::EvaluateApplyRule(const Host::Ptr& host, const ApplyRule& rule)
        } else if (vinstances.IsObjectType<Dictionary>()) {
                if (rule.GetFVVar().IsEmpty())
                        BOOST_THROW_EXCEPTION(ScriptError("Array iterator requires value to be an array.", di));
-       
+
                Dictionary::Ptr dict = vinstances;
 
                for (const String& key : dict->GetKeys()) {
index 36fb792fe020c07fbd7cbf1aaa7e5ee3931c4599..6a613c4ac8a256a76bae5885fd4c800082acd80b 100644 (file)
@@ -49,9 +49,9 @@ public:
 
 protected:
        Aggregator(void);
-       
+
        Filter::Ptr GetFilter(void) const;
-       
+
 private:
        Filter::Ptr m_Filter;
 };
index 554682694f4f6da299c7b374e45ed050b831184f..3777feeeda318d9345a0b94e4ddac867abbeae2d 100644 (file)
@@ -104,7 +104,7 @@ public:
        typedef std::function<void(boost::exception_ptr, const Value&)> ExecuteScriptCompletionCallback;
        void ExecuteScript(const String& session, const String& command, bool sandboxed,
            const ExecuteScriptCompletionCallback& callback) const;
-       
+
        typedef std::function<void(boost::exception_ptr, const Array::Ptr&)> AutocompleteScriptCompletionCallback;
        void AutocompleteScript(const String& session, const String& command, bool sandboxed,
            const AutocompleteScriptCompletionCallback& callback) const;
index 052209319b96d2a74bc2dfecdc6c503a365ac514..ebfd13b59ae6efb7adfcaec081bda32dd72c63a6 100644 (file)
@@ -91,12 +91,12 @@ public:
 
        /* filesync */
        static Value ConfigUpdateHandler(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& params);
-       
+
        /* configsync */
        static void ConfigUpdateObjectHandler(const ConfigObject::Ptr& object, const Value& cookie);
        static Value ConfigUpdateObjectAPIHandler(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& params);
        static Value ConfigDeleteObjectAPIHandler(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& params);
-       
+
        static Value HelloAPIHandler(const MessageOrigin::Ptr& origin, const Dictionary::Ptr& params);
 
        static void UpdateObjectAuthority(void);
index bf69d9559f2d4792a1b15dbeb273e7700c257d73..9004a57aef865544aa12c4d23cb0f3dded1bd95b 100644 (file)
@@ -264,7 +264,7 @@ static void AddSuggestions(std::vector<String>& matches, const String& word, con
 }
 
 std::vector<String> ConsoleHandler::GetAutocompletionSuggestions(const String& word, ScriptFrame& frame)
-{      
+{
        std::vector<String> matches;
 
        for (const String& keyword : ConfigWriter::GetKeywords()) {
index db731396a521b539c7e29e57f1b91633c5752dbc..7de4790a3c377c68c5c0c7e7bdf6a1c83c00eddf 100644 (file)
@@ -58,7 +58,7 @@ Dictionary::Ptr ObjectQueryHandler::SerializeObjectAttrs(const Object::Ptr& obje
                ObjectLock olock(attrs);
                for (const String& attr : attrs) {
                        String userAttr;
-                       
+
                        if (isJoin) {
                                String::SizeType dpos = attr.FindFirstOf(".");
                                if (dpos == String::NPos)
index f38d2cd64711b768e4904d77a84579e99137ebab..1242368473157ace437d22fa554c64bbd51f19e0 100644 (file)
@@ -51,7 +51,7 @@ INT wmain(INT argc, WCHAR **argv)
                ret = check_drives(vDrives, printInfo.exclude_drives);
        else
                ret = check_drives(vDrives, printInfo);
-       
+
        if (ret != -1)
                return ret;
 
@@ -165,7 +165,7 @@ static INT parseArguments(INT ac, WCHAR **av, po::variables_map& vm, printInfoSt
                        return 3;
                }
        }
-       
+
        if (vm.count("path")) 
                printInfo.drives = vm["path"].as<std::vector<std::wstring>>();
 
@@ -208,7 +208,7 @@ static INT printOutput(printInfoStruct& printInfo, std::vector<drive>& vDrives)
 
        if (printInfo.showUsed)
                output = L"DISK OK - used space:";
-       
+
        double tCap = 0, tFree = 0, tUsed = 0;
 
        for (std::vector<drive>::iterator it = vDrives.begin(); it != vDrives.end(); it++) {
@@ -249,7 +249,7 @@ static INT printOutput(printInfoStruct& printInfo, std::vector<drive>& vDrives)
 
        if (state == WARNING) {
                output = L"DISK WARNING - free space:";
-               
+
                if (printInfo.showUsed)
                        output = L"DISK WARNING - used space:";
        }
index 63e4d45abc144c2d6e9f7ed582c1fa3b7df98aa9..c00e8981d5855babb395af02258c0b1737872235 100644 (file)
@@ -57,7 +57,7 @@ INT wmain(INT argc, WCHAR **argv)
        ret = check_network(vInterfaces);
        if (ret != -1)
                return ret;
-               
+
        return printOutput(printInfo, vInterfaces, mapNames);
 }
 
@@ -157,7 +157,7 @@ INT parseArguments(INT ac, WCHAR **av, po::variables_map& vm, printInfoStruct& p
                        return 3;
                }
        }
-       
+
        if (vm.count("debug"))
                debug = TRUE;
 
@@ -249,11 +249,11 @@ INT check_network(std::vector <nInterface>& vInterfaces)
        err = PdhAddEnglishCounter(phQuery, perfIn, NULL, &phCounterIn);
        if (!SUCCEEDED(err)) 
                goto die;
-       
+
        err = PdhAddEnglishCounter(phQuery, perfOut, NULL, &phCounterOut);
        if (!SUCCEEDED(err)) 
                goto die;
-       
+
        if (debug)
                std::wcout << L"Collecting first batch of query data" << '\n';
 
@@ -275,13 +275,13 @@ INT check_network(std::vector <nInterface>& vInterfaces)
 
        if (debug)
                std::wcout << L"Creating formatted counter arrays" << '\n';
-       
+
        err = PdhGetFormattedCounterArray(phCounterIn, PDH_FMT_LONG, &dwBufferSizeIn, &dwItemCount, pDisplayValuesIn);
        if (err == PDH_MORE_DATA || SUCCEEDED(err))
                pDisplayValuesIn = reinterpret_cast<PDH_FMT_COUNTERVALUE_ITEM*>(new BYTE[dwItemCount*dwBufferSizeIn]);
        else
                goto die;
-       
+
        err = PdhGetFormattedCounterArray(phCounterOut, PDH_FMT_LONG, &dwBufferSizeOut, &dwItemCount, pDisplayValuesOut);
        if (err == PDH_MORE_DATA || SUCCEEDED(err))
                pDisplayValuesOut = reinterpret_cast<PDH_FMT_COUNTERVALUE_ITEM*>(new BYTE[dwItemCount*dwBufferSizeIn]);
index 1cbdbe373168d396e3d8e82682564a4c25b848cc..2c1ccf5061c402039b046f91f5b9767de2af10bd 100644 (file)
@@ -454,7 +454,7 @@ INT check_ping6(CONST printInfoStruct& pi, response& response)
                                std::wcout << L"Dropped: echo reply status " << pEchoReply->Status << '\n';
                        continue;
                }
-               
+
                rtt += pEchoReply->RoundTripTime;
 
                if (debug)
index c698ab5fa66c72b6cca511fe2044fe937e68bde2..70d57e6d77726a9d133aba5c0ebae9f49c2854ca 100644 (file)
@@ -292,7 +292,7 @@ INT countProcs(CONST std::wstring user)
                DomainName = NULL;
                dwAcctName = 1;
                dwDomainName = 1;
-               
+
                if (debug)
                        std::wcout << L"Looking up SID" << '\n';
 
@@ -301,7 +301,7 @@ INT countProcs(CONST std::wstring user)
                        (LPDWORD)&dwAcctName, DomainName, (LPDWORD)&dwDomainName, &sidNameUse)
                        && GetLastError() != ERROR_INSUFFICIENT_BUFFER)
                        continue;
-               
+
                AcctName = reinterpret_cast<LPWSTR>(new WCHAR[dwAcctName]);
                DomainName = reinterpret_cast<LPWSTR>(new WCHAR[dwDomainName]);
 
@@ -316,7 +316,7 @@ INT countProcs(CONST std::wstring user)
                        if (debug)
                                std::wcout << L"Is process of " << wuser << L" (" << numProcs << L")" << '\n';
                }
-               
+
                delete[] reinterpret_cast<LPWSTR>(AcctName);
                delete[] reinterpret_cast<LPWSTR>(DomainName);
 
index fbd7ef2577c0e9f477a79400762982e9ba9956f3..d92b2f7dd71247f0a09ee861e5f4bb2a3a4a5d4c 100644 (file)
@@ -132,7 +132,7 @@ INT parseArguments(INT ac, WCHAR **av, po::variables_map& vm, printInfoStruct& p
 
        if (vm.count("D"))
                debug = TRUE;
-       
+
        return -1;
 }
 
@@ -269,7 +269,7 @@ DWORD ServiceStatus(CONST printInfoStruct& printInfo)
        hService = OpenService(hSCM, printInfo.service.c_str(), SERVICE_QUERY_STATUS);
        if (hService == NULL)
                goto die;
-       
+
        QueryServiceStatusEx(hService, SC_STATUS_PROCESS_INFO, NULL, 0, &cbBufSize);
        if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
                goto die;
index d739bc6363a86f03a8d7fb73dbb8fcd4529166f7..27af5e1da87793155e30db55fa422daa90da1fd3 100644 (file)
@@ -40,7 +40,7 @@ INT wmain(INT argc, WCHAR **argv)
        INT ret = parseArguments(argc, argv, vm, printInfo);
        if (ret != -1)
                return ret;
-       
+
        ret = check_update(printInfo);
        if (ret != -1)
                return ret;
index 568bb23eb444251c82acfd4c309d393346f0b5ff..0eee377a93dd0391235fd83af7cade8ec2e94693 100644 (file)
@@ -35,7 +35,7 @@ INT wmain(INT argc, WCHAR **argv)
        po::variables_map vm;
        printInfoStruct printInfo = { };
        INT ret = parseArguments(argc, argv, vm, printInfo);
-       
+
        if (ret != -1)
                return ret;
 
@@ -51,7 +51,7 @@ INT parseArguments(INT ac, WCHAR **av, po::variables_map& vm, printInfoStruct& p
        WCHAR *progName = PathFindFileName(namePath);
 
        po::options_description desc;
-       
+
        desc.add_options()
                ("help,h", "Print help message and exit")
                ("version,V", "Print version and exit")
@@ -198,7 +198,7 @@ VOID getUptime(printInfoStruct& printInfo)
                std::wcout << L"Getting uptime in milliseconds" << '\n';
 
        boost::chrono::milliseconds uptime = boost::chrono::milliseconds(GetTickCount64());
-       
+
        if (debug)
                std::wcout << L"Converting requested unit (default: seconds)" << '\n';
 
index 2ee25e154129e2d11b833abfe41b516565c3f86e..03f8737471e243c5a59ee97efb49859119a62362 100644 (file)
@@ -185,7 +185,7 @@ INT check_users(printInfoStruct& printInfo)
 
        if (debug) 
                std::wcout << L"Trying to enumerate terminal sessions" << '\n';
-       
+
        if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &pSessionInfo, &count)) {
                std::wcout << L"Failed to enumerate terminal sessions" << '\n';
                die();
@@ -218,7 +218,7 @@ INT check_users(printInfoStruct& printInfo)
 
                if (!len)
                        continue;
-               
+
                if (pSessionInfo[index].State == WTSActive || pSessionInfo[index].State == WTSDisconnected) {
                        users++;
                        if (debug)
index 8070912e6db77812846ec12f82370977738087e4..29aede81834a83e4f213d8e67f079bf80ff74d29 100644 (file)
@@ -122,7 +122,7 @@ std::wstring threshold::pString(CONST DOUBLE max)
                .append(upperStr).append(L"]");
        } else 
                s.append(lowerStr);
-       
+
        return s;
 }