]> git.tdb.fi Git - libs/core.git/commitdiff
Update naming of internal variables and functions
authorMikko Rasa <tdb@tdb.fi>
Sun, 31 Oct 2021 11:46:57 +0000 (13:46 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 31 Oct 2021 18:30:28 +0000 (20:30 +0200)
In most cases put just an underscore in front (instead of back as it was
previously).  When a member name conflicts with a noun function, use m_
prefix.

17 files changed:
source/core/application.cpp
source/core/application.h
source/core/getopt.h
source/core/systemerror.cpp
source/core/systemerror.h
source/core/thread.cpp
source/core/thread.h
source/core/unix/thread.cpp
source/core/variant.h
source/core/windows/thread.cpp
source/debug/errorreporter.cpp
source/debug/errorreporter.h
source/io/eventobject.cpp
source/io/eventobject.h
source/io/zlibcompressed.cpp
source/io/zlibcompressed.h
source/time/datetime.cpp

index dda4440270e64c78e5388ea282afb9993c6525fb..1fbe15452fd8a13d39c3c0939d2c09419e5b6733 100644 (file)
@@ -15,26 +15,26 @@ using namespace std;
 
 namespace Msp {
 
-Application *Application::app_ = 0;
-Application::Starter *Application::starter_ = 0;
-const char *Application::argv0_ = 0;
-string Application::name_;
-void *Application::data_ = 0;
+Application *Application::_app = 0;
+Application::Starter *Application::_starter = 0;
+const char *Application::_argv0 = 0;
+string Application::_name;
+void *Application::_data = 0;
 
 Application::Application(const string &n)
 {
-       if(app_)
+       if(_app)
                throw logic_error("instance already exists");
 
        if(!n.empty())
-               name_ = n;
+               _name = n;
        else
-               name_ = FS::basename(argv0_);
+               _name = FS::basename(_argv0);
 }
 
 int Application::run(int argc, char **argv, void *data, void (*created_callback)(void *))
 {
-       if(!starter_)
+       if(!_starter)
        {
                IO::cerr.write("Application::run called with no RegisteredApplication class!\n");
                return 126;
@@ -46,7 +46,7 @@ int Application::run(int argc, char **argv, void *data, void (*created_callback)
        {
                try
                {
-                       app_ = starter_->create_app(argc, argv);
+                       _app = _starter->create_app(argc, argv);
                }
                catch(const usage_error &e)
                {
@@ -57,9 +57,9 @@ int Application::run(int argc, char **argv, void *data, void (*created_callback)
                if(created_callback)
                        created_callback(data);
 
-               int result = app_->main();
-               Application *a = app_;
-               app_ = 0;
+               int result = _app->main();
+               Application *a = _app;
+               _app = 0;
                delete a;
                return result;
        }
@@ -84,8 +84,8 @@ int Application::run(int argc, char **argv, void *data, void (*created_callback)
                        }
                }
 
-               delete app_;
-               app_ = 0;
+               delete _app;
+               _app = 0;
 
                return 124;
        }
@@ -93,7 +93,7 @@ int Application::run(int argc, char **argv, void *data, void (*created_callback)
 
 void Application::set_startup_info(const char *argv0, void *data)
 {
-       if(argv0_)
+       if(_argv0)
                throw logic_error("startup info already set");
 
        static FS::Path exe;
@@ -113,8 +113,8 @@ void Application::set_startup_info(const char *argv0, void *data)
        if(exe.empty())
                exe = FS::realpath(argv0);
 
-       argv0_ = exe.c_str();
-       data_ = data;
+       _argv0 = exe.c_str();
+       _data = data;
 }
 
 int Application::main()
@@ -128,7 +128,7 @@ int Application::main()
 
 void Application::catch_signal(int s)
 {
-       signal(s, &sighandler_);
+       signal(s, &_sighandler);
 }
 
 void Application::exit(int c)
@@ -137,18 +137,18 @@ void Application::exit(int c)
        exit_code = c;
 }
 
-void Application::sighandler_(int s)
+void Application::_sighandler(int s)
 {
-       app_->sighandler(s);
+       _app->sighandler(s);
 }
 
 
 Application::Starter::Starter()
 {
-       if(starter_)
+       if(_starter)
                throw logic_error("Can't create more than one Starter instance");
 
-       starter_ = this;
+       _starter = this;
 }
 
 } // namespace Msp
index 019dee1f3793f1ff0c10203e760b3cd02a17d9b2..c3c693d3052a2fb9808bc3018cdecd40218102d2 100644 (file)
@@ -27,11 +27,11 @@ protected:
        int exit_code = 0;
 
 private:
-       static Starter *starter_;
-       static Application *app_;
-       static const char *argv0_;
-       static std::string name_;
-       static void *data_;
+       static Starter *_starter;
+       static Application *_app;
+       static const char *_argv0;
+       static std::string _name;
+       static void *_data;
 
 protected:
        Application(const std::string & = std::string());
@@ -53,9 +53,9 @@ public:
        Application::run(). */
        static void set_startup_info(const char *, void *);
 
-       static void *get_data() { return data_; }
-       static const char *get_argv0() { return argv0_; }
-       static const std::string &get_name() { return name_; }
+       static void *get_data() { return _data; }
+       static const char *get_argv0() { return _argv0; }
+       static const std::string &get_name() { return _name; }
 
 protected:
        /** Default main loop.  Calls tick() repeatedly until exit() is called.  A
@@ -76,7 +76,7 @@ protected:
 private:
        /** Static wrapper function to call a member function of the Application
        instance. */
-       static void sighandler_(int);
+       static void _sighandler(int);
 };
 
 
@@ -94,16 +94,16 @@ private:
                Application *create_app(int argc, char **argv) { return new T(argc, argv); }
        };
 
-       static Starter starter_;
+       static Starter _starter;
 
 protected:
        RegisteredApplication(const std::string &n = std::string()):
                Application(n)
-       { (void)starter_; }  // Force the starter into existence
+       { (void)_starter; }  // Force the starter into existence
 };
 
 template<typename T>
-typename RegisteredApplication<T>::Starter RegisteredApplication<T>::starter_;
+typename RegisteredApplication<T>::Starter RegisteredApplication<T>::_starter;
 
 } // namespace Msp
 
index 5c21ccb97bb7142aeb2b968ebd0e8e23e1303676..ed6cf86195d2419cf7e3b579e470b64e242bc0bd 100644 (file)
@@ -13,13 +13,13 @@ namespace Msp {
 class usage_error: public std::runtime_error
 {
 private:
-       std::string help_;
+       std::string m_help;
 
 public:
-       usage_error(const std::string &w, const std::string &h = std::string()): std::runtime_error(w), help_(h) { }
+       usage_error(const std::string &w, const std::string &h = std::string()): std::runtime_error(w), m_help(h) { }
        virtual ~usage_error() throw() = default;
 
-       const char *help() const throw() { return help_.c_str(); }
+       const char *help() const throw() { return m_help.c_str(); }
 };
 
 
index 5424ef0ee647d564a624eb4e190553d7a808f88e..c6fd341cfcec873e59bef36c161c851f33d4338c 100644 (file)
@@ -7,12 +7,12 @@ namespace Msp {
 
 system_error::system_error(const string &w, int c):
        runtime_error(w+": "+get_message(c)),
-       code_(c)
+       m_code(c)
 { }
 
 system_error::system_error(const string &w, const string &e):
        runtime_error(w+": "+e),
-       code_(numeric_limits<int>::min())
+       m_code(numeric_limits<int>::min())
 { }
 
 } // namespace Msp
index d0a5634cf38e04cc5d70e2df3e677c622878ed97..1662cec37f0f779f06bc6b80bab1ec36d547393c 100644 (file)
@@ -9,14 +9,14 @@ namespace Msp {
 class system_error: public std::runtime_error
 {
 private:
-       int code_;
+       int m_code;
 
 public:
        system_error(const std::string &, int = -1);
        system_error(const std::string &, const std::string &);
        virtual ~system_error() throw() = default;
 
-       int code() const throw() { return code_; }
+       int code() const throw() { return m_code; }
 
 private:
        static std::string get_message(int);
index e03dcb86062f09af9368471cbb21f947aa751cf3..841cc3f48e8111a894dc9151268fce3858dcd4f0 100644 (file)
@@ -7,42 +7,42 @@ using namespace std;
 namespace Msp {
 
 Thread::Thread(const string &name):
-       priv_(new Private),
-       name_(name)
+       _priv(new Private),
+       _name(name)
 { }
 
 Thread::~Thread()
 {
        kill();
        join();
-       delete priv_;
+       delete _priv;
 }
 
 void Thread::join()
 {
-       if(state_>=JOINED)
+       if(_state>=JOINED)
                return;
 
        platform_join();
-       state_ = JOINED;
+       _state = JOINED;
 }
 
 void Thread::kill()
 {
-       if(state_!=RUNNING)
+       if(_state!=RUNNING)
                return;
 
        platform_kill();
-       state_ = KILLED;
+       _state = KILLED;
 }
 
 void Thread::launch()
 {
-       if(state_>=RUNNING)
+       if(_state>=RUNNING)
                throw logic_error("already launched");
 
        platform_launch();
-       state_ = RUNNING;
+       _state = RUNNING;
 }
 
 ThreadReturn THREAD_CALL Thread::Private::main_wrapper(void *arg)
@@ -50,7 +50,7 @@ ThreadReturn THREAD_CALL Thread::Private::main_wrapper(void *arg)
        Thread *thread = reinterpret_cast<Thread *>(arg);
        thread->platform_setname();
        thread->main();
-       thread->state_ = FINISHED;
+       thread->_state = FINISHED;
        return 0;
 }
 
index c84fb668a7c494ca47fa965e46ceb587866a0162..ae9a0dda832b716445ad81b9493b8a7c24ca6778 100644 (file)
@@ -27,19 +27,19 @@ private:
                JOINED
        };
 
-       Private *priv_ = 0;
-       std::string name_;
-       State state_ = PENDING;
+       Private *_priv = 0;
+       std::string _name;
+       State _state = PENDING;
 
 protected:
        Thread(const std::string & = std::string());
 public:
        virtual ~Thread();
 
-       const std::string &get_name() const { return name_; }
+       const std::string &get_name() const { return _name; }
 
        /** Indicates whether the thread has finished running. */
-       bool is_finished() { return state_>=FINISHED; }
+       bool is_finished() { return _state>=FINISHED; }
 
        /** Waits for the thread to exit.  Calling this from the thread will cause a
        deadlock. */
index 119d55f0571600a4b57de1bd1fea054acc1fb9d2..1ddcaaea4bcf947a50fb411f0991a86b8b47def9 100644 (file)
@@ -7,24 +7,24 @@ namespace Msp {
 
 void Thread::platform_join()
 {
-       pthread_join(priv_->handle, 0);
+       pthread_join(_priv->handle, 0);
 }
 
 void Thread::platform_kill()
 {
-       pthread_kill(priv_->handle, SIGKILL);
+       pthread_kill(_priv->handle, SIGKILL);
 }
 
 void Thread::platform_launch()
 {
-       pthread_create(&priv_->handle, 0, &Private::main_wrapper, this);
+       pthread_create(&_priv->handle, 0, &Private::main_wrapper, this);
 }
 
 void Thread::platform_setname()
 {
 #if defined(__GLIBC__) && (__GLIBC__>2 || (__GLIBC__==2 && __GLIBC_MINOR__>=12))
-       if(!name_.empty())
-               pthread_setname_np(priv_->handle, name_.c_str());
+       if(!_name.empty())
+               pthread_setname_np(_priv->handle, _name.c_str());
 #endif
 }
 
index 1ad086e70381254422d92330e277b7fd43f4826d..2e9caaf9b79440bacff303975a208321f6cdcd22 100644 (file)
@@ -39,14 +39,14 @@ private:
                virtual const std::type_info &type_id() const { return typeid(T); }
                virtual StoreBase *clone() const { return new Store<T>(data); }
                virtual bool type_equals(const StoreBase &s) const { return dynamic_cast<const Store<T> *>(&s); }
-               virtual bool value_equals(const StoreBase &s) const { return value_equals_<T>(s); }
+               virtual bool value_equals(const StoreBase &s) const { return _value_equals<T>(s); }
 
                template<typename U>
-               typename std::enable_if<IsEqualityComparable<U>::value, bool>::type value_equals_(const StoreBase &s) const
+               typename std::enable_if<IsEqualityComparable<U>::value, bool>::type _value_equals(const StoreBase &s) const
                { const Store<T> *t = dynamic_cast<const Store<T> *>(&s); return (t && t->data==data); }
 
                template<typename U>
-               typename std::enable_if<!IsEqualityComparable<U>::value, bool>::type value_equals_(const StoreBase &) const
+               typename std::enable_if<!IsEqualityComparable<U>::value, bool>::type _value_equals(const StoreBase &) const
                { return false; }
        };
 
index ab02c4d04094394e384b91defd717b70ac5918df..24830943e6f096c7985171a1b26eeb4077c1f3a5 100644 (file)
@@ -6,18 +6,18 @@ namespace Msp {
 
 void Thread::platform_join()
 {
-       WaitForSingleObject(priv_->handle, INFINITE);
+       WaitForSingleObject(_priv->handle, INFINITE);
 }
 
 void Thread::platform_kill()
 {
-       TerminateThread(priv_->handle, 0);
+       TerminateThread(_priv->handle, 0);
 }
 
 void Thread::platform_launch()
 {
        DWORD dummy;  // Win9x needs the lpTthreadId parameter
-       priv_->handle = CreateThread(0, 0, &Private::main_wrapper, this, 0, &dummy);
+       _priv->handle = CreateThread(0, 0, &Private::main_wrapper, this, 0, &dummy);
 }
 
 void Thread::platform_setname()
index d4d51bcc4610a82fc6a28b7d6611f2d68275dd0a..8f080a307c1dbebb64605d73ee92d33685d5d608 100644 (file)
@@ -3,17 +3,17 @@
 namespace Msp {
 namespace Debug {
 
-ErrorReporter *ErrorReporter::current = 0;
+ErrorReporter *ErrorReporter::_current = 0;
 
 ErrorReporter::ErrorReporter():
-       prev(current)
+       _prev(_current)
 {
-       current = this;
+       _current = this;
 }
 
 ErrorReporter::~ErrorReporter()
 {
-       current = prev;
+       _current = _prev;
 }
 
 } // namespace Debug
index 4a146744674ffc8973ad5321138fbfb968eb6caa..dca8f522ebeddf0113a74efa754c91f7026d7cff 100644 (file)
@@ -10,16 +10,16 @@ namespace Debug {
 class ErrorReporter: private NonCopyable
 {
 private:
-       ErrorReporter *prev = 0;
+       ErrorReporter *_prev = 0;
 
-       static ErrorReporter *current;
+       static ErrorReporter *_current;
 
 protected:
        ErrorReporter();
 public:
        virtual ~ErrorReporter();
 
-       static const ErrorReporter *get_current() { return current; }
+       static const ErrorReporter *get_current() { return _current; }
 
        virtual bool report_uncaught_exception(const std::exception &) const = 0;
 };
index 714ed065a43b1ddd959dd179cc98a46ca90c34d4..7d5ab5bf099e408593313218e2b70bef74aa43f6 100644 (file)
@@ -11,8 +11,8 @@ EventObject::~EventObject()
 
 void EventObject::set_events(PollEvent e)
 {
-       events = e;
-       signal_events_changed.emit(events);
+       _events = e;
+       signal_events_changed.emit(_events);
 }
 
 void EventObject::event(PollEvent ev)
index 3feb74fa3cf3b66dd83f7ac954451b5c8ee2f1c1..5a3b280feb1c295c2ee8287d1aeeb0c5d6937959 100644 (file)
@@ -25,7 +25,7 @@ public:
        sigc::signal<void, PollEvent> signal_events_changed;
 
 private:
-       PollEvent events = P_NONE;
+       PollEvent _events = P_NONE;
 
 protected:
        EventObject();
@@ -35,7 +35,7 @@ protected:
 public:
        /** Returns a mask of the currently interesting events.  Used by
        EventDispatcher. */
-       PollEvent get_events() const { return events; }
+       PollEvent get_events() const { return _events; }
 
        /** Returns a handle for polling. */
        virtual const Handle &get_event_handle() = 0;
index b3cb312ae9721666d5f860d8878d517691684ee3..6c06cf3fd952870dc243817a6d3f786ac8434f92 100644 (file)
@@ -14,7 +14,7 @@ zlib_error::zlib_error(const string &w, int c):
 #else
        runtime_error(w),
 #endif
-       code_(c)
+       m_code(c)
 { }
 
 
index fb12d61a4eff0fdcb07386582b759c302fc361dd..da7313b4c42a62a3838045b0737eefbb919f7044 100644 (file)
@@ -12,13 +12,13 @@ namespace IO {
 class zlib_error: public std::runtime_error
 {
 private:
-       int code_;
+       int m_code;
 
 public:
        zlib_error(const std::string &, int);
        virtual ~zlib_error() throw() = default;
 
-       int code() const throw() { return code_; }
+       int code() const throw() { return m_code; }
 };
 
 /**
index f61e62e12ae2b3a18abc91fc6dcf9f8c953b06a5..e011f3b2ac0b8a3681048bd1c59e17194dbda03c 100644 (file)
@@ -29,7 +29,7 @@ inline unsigned char month_days(int y, unsigned char m)
 }
 
 template<typename T>
-inline int cmp_(T a, T b)
+inline int _cmp(T a, T b)
 {
        if(a<b)
                return -1;
@@ -231,19 +231,19 @@ DateTime &DateTime::operator-=(const TimeDelta &td)
 
 int DateTime::cmp(const DateTime &dt) const
 {
-       if(int c = cmp_(year, dt.year))
+       if(int c = _cmp(year, dt.year))
                return c;
-       if(int c = cmp_(month, dt.month))
+       if(int c = _cmp(month, dt.month))
                return c;
-       if(int c = cmp_(mday, dt.mday))
+       if(int c = _cmp(mday, dt.mday))
                return c;
-       if(int c = cmp_(hour, dt.hour))
+       if(int c = _cmp(hour, dt.hour))
                return c;
-       if(int c = cmp_(minute, dt.minute))
+       if(int c = _cmp(minute, dt.minute))
                return c;
-       if(int c = cmp_(second, dt.second))
+       if(int c = _cmp(second, dt.second))
                return c;
-       if(int c = cmp_(usec, dt.usec))
+       if(int c = _cmp(usec, dt.usec))
                return c;
        return 0;
 }