Re: [Firebird-devel] GlobalStorage

2016-02-26 Thread Alex Peshkoff
On 02/26/2016 05:16 PM, Dimitry Sibiryakov wrote:
> 26.02.2016 14:51, Alex Peshkoff wrote:
>> Better keep Array 'public AutoStorage'.
> But in this case every derived class will have to declare constructor 
> with call to
> getDefaultMemoryPool() inside which is more than necessary.
>

Yes, it will have to do it when working with Firebird::Array.


--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] GlobalStorage

2016-02-26 Thread Dimitry Sibiryakov
26.02.2016 14:51, Alex Peshkoff wrote:
> Better keep Array 'public AutoStorage'.

   But in this case every derived class will have to declare constructor with 
call to 
getDefaultMemoryPool() inside which is more than necessary.

-- 
   WBR, SD.

--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] Firebird 3 packages on distro

2016-02-26 Thread Philippe Makowski
Le 26/02/16 13:36, Michal Kubecek a écrit :
> I'm not familiar with Debian packaging, is there an easier way to see
> how are files divided into packages than going through
>
>
> https://anonscm.debian.org/cgit/pkg-firebird/3.0.git/tree/debian/make_packages.sh
>
> ?
>
you can look here :
https://packages.debian.org/source/experimental/firebird3.0




--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] GlobalStorage

2016-02-26 Thread Alex Peshkoff
On 02/26/2016 04:43 PM, Dimitry Sibiryakov wrote:
> 26.02.2016 14:21, Dimitry Sibiryakov wrote:
>> This word is not in GlobalStorage declaration, but in "class Array
>> : protected Storage".
> What is better: change declaration of Array or re-declare the operators 
> in every
> derived class?
>

Better keep Array 'public AutoStorage'.



--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] GlobalStorage

2016-02-26 Thread Dimitry Sibiryakov
26.02.2016 14:21, Dimitry Sibiryakov wrote:
> This word is not in GlobalStorage declaration, but in "class Array
> : protected Storage".

   What is better: change declaration of Array or re-declare the operators in 
every 
derived class?

-- 
   WBR, SD.

--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] GlobalStorage

2016-02-26 Thread Dimitry Sibiryakov
26.02.2016 14:11, Alex Peshkoff wrote:
> Where is word protected?

   Oops, you are right. This word is not in GlobalStorage declaration, but in 
"class Array 
: protected Storage".

-- 
   WBR, SD.

--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] GlobalStorage

2016-02-26 Thread Alex Peshkoff
On 02/25/2016 07:03 PM, Dimitry Sibiryakov wrote:
> Hello, All.
>
> Comment on subj says that
>
>>  // Global storage makes it possible to use new and delete for classes,
>>  // based on it, to behave traditionally, i.e. get memory from permanent 
>> pool.
> But at the same time new and delete are declared protected that makes 
> them impossible
> to use outside of class' members. Why?
>

Where is word protected?

// Global storage makes it possible to use new and delete for classes,
 // based on it, to behave traditionally, i.e. get memory from 
permanent pool.
 class GlobalStorage
 {
*public:**
*void* operator new(size_t size ALLOC_PARAMS)
 {
 return getDefaultMemoryPool()->allocate(size ALLOC_PASS_ARGS);
 }



--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


Re: [Firebird-devel] Firebird 3 packages on distro

2016-02-26 Thread Michal Kubecek
On Thu, Feb 25, 2016 at 10:33:46AM +0100, Philippe Makowski wrote:
> Hi,
> 
> I'm working on the Firebird 3 package for Centos 7
> 
> to have some coherence between distros , I took a look at :
> https://build.opensuse.org/package/show/home:mkubecek:firebird30/firebird
> 
> and
> 
> https://anonscm.debian.org/cgit/pkg-firebird/3.0.git/
> 
> Can we coordinate our work ?
> 
> I like the way Debian split the package, Michal, what about doing the 
> same in Suse ? (I will certainly do the same in Mageia, Fedora and Centos)

I'm not familiar with Debian packaging, is there an easier way to see
how are files divided into packages than going through

  
https://anonscm.debian.org/cgit/pkg-firebird/3.0.git/tree/debian/make_packages.sh

?

So far I noticed libib_util separated into its own package, this
definitely looks reasonable.

   Michal


--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


[Firebird-devel] [FB-Tracker] Created: (CORE-5117) Firebird embedded hangs and crashes when disconnect if not called fb_shutdown function

2016-02-26 Thread Simonov Denis (JIRA)
Firebird embedded hangs and crashes when disconnect if not called fb_shutdown 
function
--

 Key: CORE-5117
 URL: http://tracker.firebirdsql.org/browse/CORE-5117
 Project: Firebird Core
  Issue Type: Bug
  Components: Engine
Affects Versions: 2.5.5
 Environment: Firebird 2.5.6.26976 and IBExpert
Reporter: Simonov Denis




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel


[Firebird-devel] [FB-Tracker] Created: (CORE-5116) gbak backup error

2016-02-26 Thread JIRA
gbak backup error
-

 Key: CORE-5116
 URL: http://tracker.firebirdsql.org/browse/CORE-5116
 Project: Firebird Core
  Issue Type: Bug
  Components: GBAK
Affects Versions: 2.5.3 Update 1
Reporter: Attila Molnár


Hi!

One of our customer has a backup problem, sometimes gbak fails. See attached 
logs. It fails on the same spot so this is not a network issue, as the error 
message suggests. Maybe FB crashes server side?
The database has no error (at least gfix does not repor any error).
The gbak is started via Windows scheduer.
Contact me if you need the database for testing.

Thank  you!

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

   

--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151=/4140
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel